1 /*
   2  * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     7150256
  27  * @summary Basic Test for the DiagnosticCommandMBean
  28  * @author  Frederic Parain
  29  *
  30  * @run main/othervm -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.port=8127 DcmdMBeanTest
  31  */
  32 
  33 
  34 import java.io.IOException;
  35 import java.lang.management.ManagementFactory;
  36 import java.util.logging.Level;
  37 import java.util.logging.Logger;
  38 import javax.management.Descriptor;
  39 import javax.management.InstanceNotFoundException;
  40 import javax.management.IntrospectionException;
  41 import javax.management.MBeanInfo;
  42 import javax.management.MBeanOperationInfo;
  43 import javax.management.MBeanServer;
  44 import javax.management.MalformedObjectNameException;
  45 import javax.management.ObjectName;
  46 import javax.management.ReflectionException;
  47 import javax.management.*;
  48 import javax.management.remote.*;
  49 
  50 public class DcmdMBeanTest {
  51 
  52     private static String HOTSPOT_DIAGNOSTIC_MXBEAN_NAME =
  53         "com.sun.management:type=DiagnosticCommand";
  54 
  55     public static void main(String[] args) {
  56         MBeanServerConnection mbs = null;
  57         try {
  58             JMXServiceURL url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost:8127/jmxrmi");
  59             JMXConnector connector = JMXConnectorFactory.connect(url);
  60             mbs = connector.getMBeanServerConnection();
  61         } catch(Throwable t) {
  62             t.printStackTrace();
  63         }
  64         ObjectName name;
  65         try {
  66             name = new ObjectName(HOTSPOT_DIAGNOSTIC_MXBEAN_NAME);
  67             MBeanInfo info = mbs.getMBeanInfo(name);
  68             // the test should check that the MBean doesn't have any
  69             // Attribute, notification or constructor. Current version only
  70             // check operations
  71             System.out.println("Class Name:"+info.getClassName());
  72             System.out.println("Description:"+info.getDescription());
  73             MBeanOperationInfo[] opInfo = info.getOperations();
  74             System.out.println("Operations:");
  75             for(int i=0; i<opInfo.length; i++) {
  76                 printOperation(opInfo[i]);
  77                 System.out.println("\n@@@@@@\n");
  78             }
  79         } catch (InstanceNotFoundException|IntrospectionException|ReflectionException
  80                  |MalformedObjectNameException|IOException ex) {
  81             Logger.getLogger(DcmdMBeanTest.class.getName()).log(Level.SEVERE, null, ex);
  82         }
  83     }
  84     
  85     static void printOperation(MBeanOperationInfo info) {
  86         System.out.println("Name: "+info.getName());
  87         System.out.println("Description: "+info.getDescription());
  88         System.out.println("Return Type: "+info.getReturnType());
  89         System.out.println("Impact: "+info.getImpact());
  90         // print parameters info?
  91         Descriptor desc = info.getDescriptor();
  92         System.out.println("Descriptor");
  93         for(int i=0; i<desc.getFieldNames().length; i++) {
  94             if(desc.getFieldNames()[i].compareTo("dcmd.arguments") == 0) {
  95                 System.out.println("\t"+desc.getFieldNames()[i]+":");
  96                 Descriptor desc2 =
  97                         (Descriptor)desc.getFieldValue(desc.getFieldNames()[i]);
  98                 for(int j=0; j<desc2.getFieldNames().length; j++) {
  99                     System.out.println("\t\t"+desc2.getFieldNames()[j]+"=");
 100                     Descriptor desc3 =
 101                             (Descriptor)desc2.getFieldValue(desc2.getFieldNames()[j]);
 102                     for(int k=0; k<desc3.getFieldNames().length; k++) {
 103                         System.out.println("\t\t\t"+desc3.getFieldNames()[k]+"="
 104                                            +desc3.getFieldValue(desc3.getFieldNames()[k]));
 105                     }
 106                 }
 107             } else {
 108                 System.out.println("\t"+desc.getFieldNames()[i]+"="
 109                         +desc.getFieldValue(desc.getFieldNames()[i]));
 110             }
 111         }
 112     }
 113            
 114 }
 115