Java Code Examples for jdk.jfr.consumer.RecordedClassLoader#getType()
The following examples show how to use
jdk.jfr.consumer.RecordedClassLoader#getType() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestClassDefineEvent.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Throwable { Recording recording = new Recording(); recording.enable(EVENT_NAME); TestClassLoader cl = new TestClassLoader(); recording.start(); cl.loadClass(TEST_CLASS_NAME); recording.stop(); List<RecordedEvent> events = Events.fromRecording(recording); boolean foundTestClasses = false; for (RecordedEvent event : events) { System.out.println(event); RecordedClass definedClass = event.getValue("definedClass"); if (TEST_CLASS_NAME.equals(definedClass.getName())) { RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); RecordedClass definingClassLoaderType = definingClassLoader.getType(); Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); /*Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), "Defining Class Loader should have the same name as the original class loader");*/ foundTestClasses = true; } } Asserts.assertTrue(foundTestClasses, "No class define event found for " + TEST_CLASS_NAME); }
Example 2
Source File: PrettyWriter.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
private void printClassLoader(RecordedClassLoader cl, String postFix) { // Purposely not printing class loader name to avoid cluttered output RecordedClass clazz = cl.getType(); print(clazz == null ? "null" : clazz.getName()); if (clazz != null) { print(" ("); print("id = "); print(String.valueOf(cl.getId())); println(")"); } }
Example 3
Source File: TestClassDefineEvent.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Throwable { Recording recording = new Recording(); recording.enable(EVENT_NAME); TestClassLoader cl = new TestClassLoader(); recording.start(); cl.loadClass(TEST_CLASS_NAME); recording.stop(); List<RecordedEvent> events = Events.fromRecording(recording); boolean foundTestClasses = false; for (RecordedEvent event : events) { System.out.println(event); RecordedClass definedClass = event.getValue("definedClass"); if (TEST_CLASS_NAME.equals(definedClass.getName())) { RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); RecordedClass definingClassLoaderType = definingClassLoader.getType(); Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); //Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), // "Defining Class Loader should have the same name as the original class loader"); foundTestClasses = true; } } Asserts.assertTrue(foundTestClasses, "No class define event found for " + TEST_CLASS_NAME); }
Example 4
Source File: PrettyWriter.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
private void printClassLoader(RecordedClassLoader cl, String postFix) { // Purposely not printing class loader name to avoid cluttered output RecordedClass clazz = cl.getType(); print(clazz == null ? "null" : clazz.getName()); if (clazz != null) { print(" ("); print("id = "); print(String.valueOf(cl.getId())); println(")"); } }
Example 5
Source File: TestClassDefineEvent.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public static void main(String[] args) throws Throwable { Recording recording = new Recording(); recording.enable(EVENT_NAME); TestClassLoader cl = new TestClassLoader(); recording.start(); cl.loadClass(TEST_CLASS_NAME); recording.stop(); List<RecordedEvent> events = Events.fromRecording(recording); boolean foundTestClasses = false; for (RecordedEvent event : events) { System.out.println(event); RecordedClass definedClass = event.getValue("definedClass"); if (TEST_CLASS_NAME.equals(definedClass.getName())) { RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); RecordedClass definingClassLoaderType = definingClassLoader.getType(); Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); //Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), // "Defining Class Loader should have the same name as the original class loader"); foundTestClasses = true; } } Asserts.assertTrue(foundTestClasses, "No class define event found for " + TEST_CLASS_NAME); }
Example 6
Source File: TestRecordedClassLoader.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { Recording recording = new Recording(); recording.enable(EVENT_NAME).withoutStackTrace(); TestClassLoader cl = new TestClassLoader(); recording.start(); cl.loadClass(TEST_CLASS_NAME); recording.stop(); List<RecordedEvent> events = Events.fromRecording(recording); boolean isDefined = false; System.out.println(events); for (RecordedEvent event : events) { RecordedClass definedClass = event.getValue("definedClass"); if (TEST_CLASS_NAME.equals(definedClass.getName())) { System.out.println(event); // get the RecordedClassLoader from the RecordedClass, the "definedClass" RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); // invoke RecordedClassLoader.getType() in order to validate the type of the RecordedClassLoader RecordedClass definingClassLoaderType = definingClassLoader.getType(); Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); // verify matching types Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); // get a RecordedClassLoader directly from the "definingClassLoader" field as well RecordedClassLoader definingClassLoaderFromField = event.getValue("definingClassLoader"); Asserts.assertNotNull(definingClassLoaderFromField, "Defining Class Loader instantatiated from field should not be null"); // ensure that the class loader instance used in the test actually has a name /** unsupport now Asserts.assertNotNull(cl.getName(), "Expected a valid name for the TestClassLoader"); // invoke RecordedClassLoader.getName() to get the name of the class loader instance Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), "Defining Class Loader should have the same name as the original class loader"); Asserts.assertEquals(definingClassLoaderFromField.getName(), definingClassLoader.getName(), "Defining Class Loader representations should have the same class loader name"); */ // invoke uniqueID() Asserts.assertGreaterThan(definingClassLoader.getId(), 0L, "Invalid id assignment"); // second order class loader information ("check class loader of the class loader") RecordedClassLoader classLoaderOfDefClassLoader = definingClassLoaderType.getClassLoader(); Asserts.assertNotNull(classLoaderOfDefClassLoader, "The class loader for the definining class loader should not be null"); /** unsupport now Asserts.assertEquals(cl.getClass().getClassLoader().getName(), classLoaderOfDefClassLoader.getName(), "Expected class loader name " + cl.getClass().getClassLoader().getName() + ", got name " + classLoaderOfDefClassLoader.getName()); */ RecordedClass classLoaderOfDefClassLoaderType = classLoaderOfDefClassLoader.getType(); Asserts.assertNotNull(classLoaderOfDefClassLoaderType, "The class loader type for the defining class loader should not be null"); Asserts.assertEquals(cl.getClass().getClassLoader().getClass().getName(), classLoaderOfDefClassLoaderType.getName(), "Expected type " + cl.getClass().getClassLoader().getClass().getName() + ", got type " + classLoaderOfDefClassLoaderType.getName()); Asserts.assertGreaterThan(definingClassLoader.getId(), classLoaderOfDefClassLoader.getId(), "expected id assignment invariant broken for Class Loaders"); isDefined = true; } } Asserts.assertTrue(isDefined, "No class define event found to verify RecordedClassLoader"); }
Example 7
Source File: TestRecordedClassLoader.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { Recording recording = new Recording(); recording.enable(EVENT_NAME).withoutStackTrace(); TestClassLoader cl = new TestClassLoader(); recording.start(); cl.loadClass(TEST_CLASS_NAME); recording.stop(); List<RecordedEvent> events = Events.fromRecording(recording); boolean isDefined = false; for (RecordedEvent event : events) { RecordedClass definedClass = event.getValue("definedClass"); if (TEST_CLASS_NAME.equals(definedClass.getName())) { System.out.println(event); // get the RecordedClassLoader from the RecordedClass, the "definedClass" RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); // invoke RecordedClassLoader.getType() in order to validate the type of the RecordedClassLoader RecordedClass definingClassLoaderType = definingClassLoader.getType(); Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); // verify matching types Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); // get a RecordedClassLoader directly from the "definingClassLoader" field as well RecordedClassLoader definingClassLoaderFromField = event.getValue("definingClassLoader"); Asserts.assertNotNull(definingClassLoaderFromField, "Defining Class Loader instantatiated from field should not be null"); // ensure that the class loader instance used in the test actually has a name //Asserts.assertNotNull(cl.getName(), // "Expected a valid name for the TestClassLoader"); // invoke RecordedClassLoader.getName() to get the name of the class loader instance //Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), // "Defining Class Loader should have the same name as the original class loader"); Asserts.assertEquals(definingClassLoaderFromField.getName(), definingClassLoader.getName(), "Defining Class Loader representations should have the same class loader name"); // invoke uniqueID() Asserts.assertGreaterThan(definingClassLoader.getId(), 0L, "Invalid id assignment"); // second order class loader information ("check class loader of the class loader") RecordedClassLoader classLoaderOfDefClassLoader = definingClassLoaderType.getClassLoader(); Asserts.assertNotNull(classLoaderOfDefClassLoader, "The class loader for the definining class loader should not be null"); // Asserts.assertEquals(cl.getClass().getClassLoader().getName(), classLoaderOfDefClassLoader.getName(), // "Expected class loader name " + cl.getClass().getClassLoader().getName() + ", got name " + classLoaderOfDefClassLoader.getName()); RecordedClass classLoaderOfDefClassLoaderType = classLoaderOfDefClassLoader.getType(); Asserts.assertNotNull(classLoaderOfDefClassLoaderType, "The class loader type for the defining class loader should not be null"); Asserts.assertEquals(cl.getClass().getClassLoader().getClass().getName(), classLoaderOfDefClassLoaderType.getName(), "Expected type " + cl.getClass().getClassLoader().getClass().getName() + ", got type " + classLoaderOfDefClassLoaderType.getName()); Asserts.assertGreaterThan(definingClassLoader.getId(), classLoaderOfDefClassLoader.getId(), "expected id assignment invariant broken for Class Loaders"); isDefined = true; } } Asserts.assertTrue(isDefined, "No class define event found to verify RecordedClassLoader"); }
Example 8
Source File: TestRecordedClassLoader.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public static void main(String[] args) throws Exception { Recording recording = new Recording(); recording.enable(EVENT_NAME).withoutStackTrace(); TestClassLoader cl = new TestClassLoader(); recording.start(); cl.loadClass(TEST_CLASS_NAME); recording.stop(); List<RecordedEvent> events = Events.fromRecording(recording); boolean isDefined = false; for (RecordedEvent event : events) { RecordedClass definedClass = event.getValue("definedClass"); if (TEST_CLASS_NAME.equals(definedClass.getName())) { System.out.println(event); // get the RecordedClassLoader from the RecordedClass, the "definedClass" RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); // invoke RecordedClassLoader.getType() in order to validate the type of the RecordedClassLoader RecordedClass definingClassLoaderType = definingClassLoader.getType(); Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); // verify matching types Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); // get a RecordedClassLoader directly from the "definingClassLoader" field as well RecordedClassLoader definingClassLoaderFromField = event.getValue("definingClassLoader"); Asserts.assertNotNull(definingClassLoaderFromField, "Defining Class Loader instantatiated from field should not be null"); // ensure that the class loader instance used in the test actually has a name //Asserts.assertNotNull(cl.getName(), // "Expected a valid name for the TestClassLoader"); // invoke RecordedClassLoader.getName() to get the name of the class loader instance //Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), // "Defining Class Loader should have the same name as the original class loader"); Asserts.assertEquals(definingClassLoaderFromField.getName(), definingClassLoader.getName(), "Defining Class Loader representations should have the same class loader name"); // invoke uniqueID() Asserts.assertGreaterThan(definingClassLoader.getId(), 0L, "Invalid id assignment"); // second order class loader information ("check class loader of the class loader") RecordedClassLoader classLoaderOfDefClassLoader = definingClassLoaderType.getClassLoader(); Asserts.assertNotNull(classLoaderOfDefClassLoader, "The class loader for the definining class loader should not be null"); // Asserts.assertEquals(cl.getClass().getClassLoader().getName(), classLoaderOfDefClassLoader.getName(), // "Expected class loader name " + cl.getClass().getClassLoader().getName() + ", got name " + classLoaderOfDefClassLoader.getName()); RecordedClass classLoaderOfDefClassLoaderType = classLoaderOfDefClassLoader.getType(); Asserts.assertNotNull(classLoaderOfDefClassLoaderType, "The class loader type for the defining class loader should not be null"); Asserts.assertEquals(cl.getClass().getClassLoader().getClass().getName(), classLoaderOfDefClassLoaderType.getName(), "Expected type " + cl.getClass().getClassLoader().getClass().getName() + ", got type " + classLoaderOfDefClassLoaderType.getName()); Asserts.assertGreaterThan(definingClassLoader.getId(), classLoaderOfDefClassLoader.getId(), "expected id assignment invariant broken for Class Loaders"); isDefined = true; } } Asserts.assertTrue(isDefined, "No class define event found to verify RecordedClassLoader"); }