summaryrefslogtreecommitdiff
path: root/gnu/java/lang/management/BeanImpl.java
blob: a7c2357b6ae9abef6c46f1c8dab08c5bda48abf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/* BeanImpl.java - A common superclass for bean implementations.
   Copyright (C) 2006 Free Software Foundation

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package gnu.java.lang.management;

import gnu.javax.management.Translator;

import java.lang.management.ManagementPermission;

import java.lang.reflect.Array;
import java.lang.reflect.Method;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

import javax.management.AttributeNotFoundException;
import javax.management.MBeanAttributeInfo;
import javax.management.MBeanConstructorInfo;
import javax.management.MBeanException;
import javax.management.MBeanInfo;
import javax.management.MBeanOperationInfo;
import javax.management.MBeanParameterInfo;
import javax.management.NotCompliantMBeanException;
import javax.management.ReflectionException;
import javax.management.StandardMBean;

import javax.management.openmbean.ArrayType;
import javax.management.openmbean.CompositeDataSupport;
import javax.management.openmbean.CompositeType;
import javax.management.openmbean.OpenDataException;
import javax.management.openmbean.OpenMBeanAttributeInfo;
import javax.management.openmbean.OpenMBeanAttributeInfoSupport;
import javax.management.openmbean.OpenMBeanConstructorInfo;
import javax.management.openmbean.OpenMBeanConstructorInfoSupport;
import javax.management.openmbean.OpenMBeanInfo;
import javax.management.openmbean.OpenMBeanInfoSupport;
import javax.management.openmbean.OpenMBeanOperationInfo;
import javax.management.openmbean.OpenMBeanOperationInfoSupport;
import javax.management.openmbean.OpenMBeanParameterInfo;
import javax.management.openmbean.OpenMBeanParameterInfoSupport;
import javax.management.openmbean.OpenType;
import javax.management.openmbean.TabularData;
import javax.management.openmbean.TabularDataSupport;
import javax.management.openmbean.TabularType;

/**
 * A common superclass for bean implementations.
 *
 * @author Andrew John Hughes (gnu_andrew@member.fsf.org)
 * @since 1.5
 */
public class BeanImpl
  extends StandardMBean
{

  /**
   * Cached open bean information.
   */
  private OpenMBeanInfo openInfo;

  /**
   * Constructs a new <code>BeanImpl</code>.
   *
   * @param iface the bean interface being implemented.
   * @throws NotCompliantMBeanException if this class doesn't implement
   *                                    the interface or a method appears
   *                                    in the interface that doesn't comply
   *                                    with the naming conventions.
   */
  protected BeanImpl(Class iface)
    throws NotCompliantMBeanException
  {
    super(iface);
  }

  protected void cacheMBeanInfo(MBeanInfo info)
  {
    if (info == null)
      return;
    try
      {
        MBeanAttributeInfo[] oldA = info.getAttributes();
        OpenMBeanAttributeInfo[] attribs =
          new OpenMBeanAttributeInfoSupport[oldA.length];
        for (int a = 0; a < oldA.length; ++a)
          {
            OpenMBeanParameterInfo param = Translator.translate(oldA[a].getType());
            if (param.getMinValue() == null)
              {
                Object[] lv;
                if (param.getLegalValues() == null)
                  lv = null;
                else
                  lv = param.getLegalValues().toArray();
                attribs[a] = new OpenMBeanAttributeInfoSupport(oldA[a].getName(),
                                                               oldA[a].getDescription(),
                                                               ((OpenType<Object>)
                                                                param.getOpenType()),
                                                               oldA[a].isReadable(),
                                                               oldA[a].isWritable(),
                                                               oldA[a].isIs(),
                                                               param.getDefaultValue(),
                                                               lv);
              }
            else
              attribs[a] = new OpenMBeanAttributeInfoSupport(oldA[a].getName(),
                                                             oldA[a].getDescription(),
                                                             ((OpenType<Object>)
                                                              param.getOpenType()),
                                                             oldA[a].isReadable(),
                                                             oldA[a].isWritable(),
                                                             oldA[a].isIs(),
                                                             param.getDefaultValue(),
                                                             ((Comparable<Object>)
                                                               param.getMinValue()),
                                                             ((Comparable<Object>)
                                                               param.getMaxValue()));
          }
        MBeanConstructorInfo[] oldC = info.getConstructors();
        OpenMBeanConstructorInfo[] cons = new OpenMBeanConstructorInfoSupport[oldC.length];
        for (int a = 0; a < oldC.length; ++a)
          cons[a] =
            new OpenMBeanConstructorInfoSupport(oldC[a].getName(),
                                                oldC[a].getDescription(),
                                                translateSignature(oldC[a].getSignature()));
        MBeanOperationInfo[] oldO = info.getOperations();
        OpenMBeanOperationInfo[] ops = new OpenMBeanOperationInfoSupport[oldO.length];
        for (int a = 0; a < oldO.length; ++a)
          ops[a] =
        new OpenMBeanOperationInfoSupport(oldO[a].getName(),
                                          oldO[a].getDescription(),
                                          translateSignature(oldO[a].getSignature()),
                                          Translator.translate(oldO[a].getReturnType()).getOpenType(),
                                          oldO[a].getImpact());
        openInfo = new OpenMBeanInfoSupport(info.getClassName(), info.getDescription(),
                                            attribs, cons, ops, info.getNotifications());
      }
    catch (OpenDataException e)
      {
        throw (InternalError) (new InternalError("A problem occurred creating the open type " +
                                                 "descriptors.").initCause(e));
      }
  }

  protected void checkMonitorPermissions()
  {
    SecurityManager sm = System.getSecurityManager();
    if (sm != null)
      sm.checkPermission(new ManagementPermission("monitor"));
  }

  protected void checkControlPermissions()
  {
    SecurityManager sm = System.getSecurityManager();
    if (sm != null)
      sm.checkPermission(new ManagementPermission("control"));
  }

  public Object getAttribute(String attribute)
    throws AttributeNotFoundException, MBeanException,
           ReflectionException
  {
    Object value = super.getAttribute(attribute);
    if (value instanceof Enum)
      return ((Enum) value).name();
    Class vClass = value.getClass();
    if (vClass.isArray())
      vClass = vClass.getComponentType();
    String cName = vClass.getName();
    String[] allowedTypes = OpenType.ALLOWED_CLASSNAMES;
    for (int a = 0; a < allowedTypes.length; ++a)
      if (cName.equals(allowedTypes[a]))
        return value;
    OpenMBeanInfo info = (OpenMBeanInfo) getMBeanInfo();
    MBeanAttributeInfo[] attribs =
      (MBeanAttributeInfo[]) info.getAttributes();
    OpenType type = null;
    for (int a = 0; a < attribs.length; ++a)
      if (attribs[a].getName().equals(attribute))
        type = ((OpenMBeanAttributeInfo) attribs[a]).getOpenType();
    if (value instanceof List)
      {
        try
          {
            Class e =
              Class.forName(((ArrayType) type).getElementOpenType().getClassName());
            List l = (List) value;
            Object[] array = (Object[]) Array.newInstance(e, l.size());
            return l.toArray(array);
          }
        catch (ClassNotFoundException e)
          {
            throw (InternalError) (new InternalError("The class of the list " +
                                                     "element type could not " +
                                                     "be created").initCause(e));
          }
      }
    if (value instanceof Map)
      {
        TabularType ttype = (TabularType) type;
        TabularData data = new TabularDataSupport(ttype);
        Iterator it = ((Map) value).entrySet().iterator();
        while (it.hasNext())
          {
            Map.Entry entry = (Map.Entry) it.next();
            try
              {
                data.put(new CompositeDataSupport(ttype.getRowType(),
                                                  new String[] {
                                                    "key",
                                                    "value"
                                                  },
                                                  new Object[] {
                                                    entry.getKey(),
                                                    entry.getValue()
                                                  }));
              }
            catch (OpenDataException e)
              {
                throw (InternalError) (new InternalError("A problem occurred " +
                                                         "converting the map " +
                                                         "to a composite data " +
                                                         "structure.").initCause(e));
              }
          }
        return data;
      }
    CompositeType cType = (CompositeType) type;
    Set names = cType.keySet();
    Iterator it = names.iterator();
    List values = new ArrayList(names.size());
    while (it.hasNext())
      {
        String field = (String) it.next();
        Method getter = null;
        try
          {
            getter = vClass.getMethod("get" + field);
          }
        catch (NoSuchMethodException e)
          {
            /* Ignored; the type tells us it's there. */
          }
        try
          {
            values.add(getter.invoke(value));
          }
        catch (IllegalAccessException e)
          {
            throw new ReflectionException(e, "Failed to retrieve " + field);
          }
        catch (IllegalArgumentException e)
          {
            throw new ReflectionException(e, "Failed to retrieve " + field);
          }
        catch (InvocationTargetException e)
          {
            throw new MBeanException((Exception) e.getCause(),
                                     "The getter of " + field +
                                     " threw an exception");
          }
      }
    try
      {
        return new CompositeDataSupport(cType,
                                        (String[])
                                        names.toArray(new String[names.size()]),
                                        values.toArray());
      }
    catch (OpenDataException e)
      {
        throw (InternalError) (new InternalError("A problem occurred " +
                                                 "converting the value " +
                                                 "to a composite data " +
                                                 "structure.").initCause(e));
      }
  }

  protected MBeanInfo getCachedMBeanInfo()
  {
    return (MBeanInfo) openInfo;
  }

  /**
   * Override this method so as to prevent the description of a constructor's
   * parameter being @code{null}.  Open MBeans can not have @code{null} descriptions,
   * but one will occur as the names of parameters aren't stored for reflection.
   *
   * @param constructor the constructor whose parameter needs describing.
   * @param parameter the parameter to be described.
   * @param sequenceNo the number of the parameter to describe.
   * @return a description of the constructor's parameter.
   */
  protected String getDescription(MBeanConstructorInfo constructor,
                                  MBeanParameterInfo parameter,
                                  int sequenceNo)
  {
    String desc = parameter.getDescription();
    if (desc == null)
      return "param" + sequenceNo;
    else
      return desc;
  }

  /**
   * Override this method so as to prevent the description of an operation's
   * parameter being @code{null}.  Open MBeans can not have @code{null} descriptions,
   * but one will occur as the names of parameters aren't stored for reflection.
   *
   * @param operation the operation whose parameter needs describing.
   * @param parameter the parameter to be described.
   * @param sequenceNo the number of the parameter to describe.
   * @return a description of the operation's parameter.
   */
  protected String getDescription(MBeanOperationInfo operation,
                                  MBeanParameterInfo parameter,
                                  int sequenceNo)
  {
    String desc = parameter.getDescription();
    if (desc == null)
      return "param" + sequenceNo;
    else
      return desc;
  }

  /**
   * Override this method so as to prevent the name of a constructor's
   * parameter being @code{null}.  Open MBeans can not have @code{null} names,
   * but one will occur as the names of parameters aren't stored for reflection.
   *
   * @param constructor the constructor whose parameter needs a name.
   * @param parameter the parameter to be named.
   * @param sequenceNo the number of the parameter to name.
   * @return a description of the constructor's parameter.
   */
  protected String getParameterName(MBeanConstructorInfo constructor,
                                    MBeanParameterInfo parameter,
                                    int sequenceNo)
  {
    String name = parameter.getName();
    if (name == null)
      return "param" + sequenceNo;
    else
      return name;
  }

  /**
   * Override this method so as to prevent the name of an operation's
   * parameter being @code{null}.  Open MBeans can not have @code{null} names,
   * but one will occur as the names of parameters aren't stored for reflection.
   *
   * @param operation the operation whose parameter needs a name.
   * @param parameter the parameter to be named.
   * @param sequenceNo the number of the parameter to name.
   * @return a description of the operation's parameter.
   */
  protected String getParameterName(MBeanOperationInfo operation,
                                    MBeanParameterInfo parameter,
                                    int sequenceNo)
  {
    String name = parameter.getName();
    if (name == null)
      return "param" + sequenceNo;
    else
      return name;
  }

  public MBeanInfo getMBeanInfo()
  {
    super.getMBeanInfo();
    return getCachedMBeanInfo();
  }

  private OpenMBeanParameterInfo[] translateSignature(MBeanParameterInfo[] oldS)
    throws OpenDataException
  {
    OpenMBeanParameterInfo[] sig = new OpenMBeanParameterInfoSupport[oldS.length];
    for (int a = 0; a < oldS.length; ++a)
      {
        OpenMBeanParameterInfo param = Translator.translate(oldS[a].getType());
        if (param.getMinValue() == null)
          {
            Object[] lv;
            if (param.getLegalValues() == null)
              lv = null;
            else
              lv = param.getLegalValues().toArray();
            sig[a] = new OpenMBeanParameterInfoSupport(oldS[a].getName(),
                                                       oldS[a].getDescription(),
                                                       ((OpenType<Object>)
                                                        param.getOpenType()),
                                                       param.getDefaultValue(),
                                                       lv);
          }
        else
          sig[a] = new OpenMBeanParameterInfoSupport(oldS[a].getName(),
                                                     oldS[a].getDescription(),
                                                     ((OpenType<Object>)
                                                      param.getOpenType()),
                                                     param.getDefaultValue(),
                                                     ((Comparable<Object>)
                                                      param.getMinValue()),
                                                     ((Comparable<Object>)
                                                      param.getMaxValue()));
      }
    return sig;
  }


}