Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/sun/management/ExtendedPlatformComponent.java
38827 views
/*1* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.management;2627import java.lang.reflect.InvocationTargetException;28import java.util.Collection;29import java.util.Collections;30import java.util.List;31import java.lang.management.PlatformManagedObject;32import java.lang.reflect.Method;3334/**35* Class to allow for an extended set of platform MXBeans36*/37public final class ExtendedPlatformComponent {38private ExtendedPlatformComponent() {} // Don't create any instances3940/**41* Get the extended set of platform MXBeans that should be registered in the42* platform MBeanServer, or an empty list if there are no such MXBeans.43*/44public static List<? extends PlatformManagedObject> getMXBeans() {45PlatformManagedObject o = getFlightRecorderBean();46if (o != null) {47return Collections.singletonList(o);48} else {49return Collections.emptyList();50}51}5253/**54* Returns the extended platform MXBean implementing the given55* mxbeanInterface, or null if there is no such MXBean.56*/57public static <T extends PlatformManagedObject>58T getMXBean(Class<T> mxbeanInterface) {5960if ("jdk.management.jfr.FlightRecorderMXBean".equals(mxbeanInterface.getName())) {61return (T)getFlightRecorderBean();62}63return null;64}6566private static PlatformManagedObject getFlightRecorderBean() {67PlatformManagedObject object = null;68try {69Class provider = Class.forName("jdk.management.jfr.internal.FlightRecorderMXBeanProvider");70Method m = provider.getDeclaredMethod("getFlightRecorderMXBean");7172object = (PlatformManagedObject)m.invoke(null);73} catch (ClassNotFoundException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {74// no jfr?75}76return object;77}78}798081