Skip to content

Commit 701ed54

Browse files
authored
Use "class loader" instead of "classloader" consistently in docs and comments (open-telemetry#6236)
* Use "class loader" consistently instead of classloader * Java comments too * Fix bad merge
1 parent 4c5ce63 commit 701ed54

File tree

49 files changed

+127
-125
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+127
-125
lines changed

docs/agent-features.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ provides.
1616
- Ability to disable individual instrumentation, or only enable certain ones.
1717
- Ability to load a custom exporter via an external JAR library
1818
- Isolation from application
19-
- Separate Agent classloader with almost all agent-specific classes
20-
- OpenTelemetry SDK initialized in Agent classloader
19+
- Separate Agent class loader with almost all agent-specific classes
20+
- OpenTelemetry SDK initialized in Agent class loader
2121
- Shading of instrumentation libraries when used in agent
22-
- API bridge for application usage of API to access the Agent classloader's SDK
22+
- API bridge for application usage of API to access the Agent class loader's SDK
2323
- API bridge not applied if user brings incompatible API version, preventing linkage errors (similar to safety mechanism below)
2424
- [Safety mechanisms](./safety-mechanisms.md) to prevent application linkage errors
2525
- Collect all references from instrumentation to library and only apply instrumentation if they exist in application

docs/contributing/javaagent-structure.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ The only class that is loaded by the system class loader is the
1414
`io.opentelemetry.javaagent.OpenTelemetryAgent` class. This is the main class of the javaagent, it
1515
implements the
1616
[Java instrumentation agent specification](https://docs.oracle.com/javase/8/docs/api/java/lang/instrument/package-summary.html).
17-
This class is loaded during application startup by the system classloader. Its sole
18-
responsibility is to push the agent's classes into JVM's bootstrap classloader and immediately
17+
This class is loaded during application startup by the system class loader. Its sole
18+
responsibility is to push the agent's classes into JVM's bootstrap class loader and immediately
1919
delegate to the `io.opentelemetry.javaagent.bootstrap.AgentInitializer` class, living in the
2020
bootstrap class loader.
2121

@@ -62,7 +62,7 @@ versions of some of our APIs (`opentelemetry-api`, `instrumentation-api`).
6262

6363
## Agent class loader
6464

65-
The agent classloader contains almost everything else not mentioned before, including:
65+
The agent class loader contains almost everything else not mentioned before, including:
6666

6767
* **The `javaagent-tooling` module**:
6868
this module picks up the initialization process started by `OpenTelemetryAgent`
@@ -108,5 +108,5 @@ the javaagent will apply shading dynamically in the runtime, when the extension
108108

109109
## Class loader hierarchy graph
110110

111-
![Agent classloader hierarchy](classloader-hierarchy.svg)
111+
![Agent class loader hierarchy](class-loader-hierarchy.svg)
112112
[Image source](https://docs.google.com/drawings/d/1DOftemu_96_0RggzOV3hFXejqeZWTmPBgbkaUhHw--g)

docs/contributing/muzzle.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ encounters a reference to a non-instrumentation class (determined by `Instrument
3131
and the `InstrumentationModule#isHelperClass(String)` predicate). Aside from references, the
3232
collection process also builds a graph of dependencies between internal instrumentation helper
3333
classes - this dependency graph is later used to construct a list of helper classes that will be
34-
injected to the application classloader (`InstrumentationModuleMuzzle#getMuzzleHelperClassNames()`).
34+
injected to the application class loader (`InstrumentationModuleMuzzle#getMuzzleHelperClassNames()`).
3535
Muzzle also automatically generates the `InstrumentationModuleMuzzle#registerMuzzleVirtualFields()`
3636
method. All collected references are then used to generate
3737
an `InstrumentationModuleMuzzle#getMuzzleReferences` method.
@@ -53,7 +53,7 @@ actual application classpath types the whole instrumentation is discarded.
5353

5454
It is worth noting that because the muzzle check is expensive, it is only performed after a match
5555
has been made by the `InstrumentationModule#classLoaderMatcher()` and `TypeInstrumentation#typeMatcher()`
56-
matchers. The result of muzzle matcher is cached per classloader, so that it is only executed
56+
matchers. The result of muzzle matcher is cached per class loader, so that it is only executed
5757
once for the whole instrumentation module.
5858

5959
The source code of the runtime muzzle matcher is located in the `muzzle` module.

docs/contributing/writing-instrumentation-module.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ explanations of how to use a particular method and why it works the way it does.
1313

1414
An `InstrumentationModule` describes a set of individual `TypeInstrumentation` that need to be
1515
applied together to correctly instrument a specific library. Type instrumentations grouped in a
16-
module share helper classes, [muzzle runtime checks](muzzle.md), and applicable classloader criteria,
16+
module share helper classes, [muzzle runtime checks](muzzle.md), and applicable class loader criteria,
1717
and can only be enabled or disabled as a set.
1818

1919
The OpenTelemetry javaagent finds all modules by using Java's `ServiceLoader` API. To make your
@@ -88,14 +88,14 @@ public List<String> helperResourceNames() {
8888

8989
All classes referenced by service providers defined in the `helperResourceNames()` method are treated
9090
as helper classes: they're checked for invalid references and automatically injected into the
91-
application classloader.
91+
application class loader.
9292

9393
### Inject additional instrumentation helper classes manually with the `getAdditionalHelperClassNames()` method
9494

9595
If you don't use the [muzzle gradle plugins](muzzle.md), or are in a scenario that requires
9696
providing the helper classes manually (for example, an unusual SPI implementation), you can
9797
override the `getAdditionalHelperClassNames()` method to provide a list of additional helper
98-
classes to be injected into the application classloader when the instrumentation is applied:
98+
classes to be injected into the application class loader when the instrumentation is applied:
9999

100100
```java
101101
public List<String> getAdditionalHelperClassNames() {
@@ -108,7 +108,7 @@ public List<String> getAdditionalHelperClassNames() {
108108
The order of the class names returned by this method matters: if you have several helper classes
109109
extending one another, you'll want to return the base class first. For example, if you have a
110110
`B extends A` class, the list should contain `A` first and `B` second. The helper classes are
111-
injected into the application classloader after those provided by the muzzle codegen plugin.
111+
injected into the application class loader after those provided by the muzzle codegen plugin.
112112

113113
### Restrict the criteria for applying the instrumentation by extending the `classLoaderMatcher()` method
114114

docs/contributing/writing-instrumentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ here, including the instrumented library - you can only use JDK and OpenTelemetr
385385
## Writing Java agent unit tests
386386

387387
As mentioned before, tests in the `javaagent` module cannot access the javaagent instrumentation
388-
classes directly because of classloader separation - the javaagent classes are hidden and not
388+
classes directly because of class loader separation - the javaagent classes are hidden and not
389389
accessible from the instrumented application code.
390390

391391
Ideally javaagent instrumentation is just a thin wrapper over library instrumentation, and so there

docs/safety-mechanisms.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -51,25 +51,25 @@ potentially cause linkage errors.
5151

5252
## Classloader separation
5353

54-
See more detail about the classloader separation [here](./contributing/javaagent-structure.md).
54+
See more detail about the class loader separation [here](./contributing/javaagent-structure.md).
5555

56-
The Java agent makes sure to include as little code as possible in the user app's classloader, and
56+
The Java agent makes sure to include as little code as possible in the user app's class loader, and
5757
all code that is included is either unique to the agent itself or shaded in the agent build. This is
5858
because if the agent included classes that are also used by the user's app and there was a version
5959
mismatch, it could cause linkage crashes.
6060

61-
Instead of executing code in the app's classloader, the agent has its own agent classloader where
61+
Instead of executing code in the app's class loader, the agent has its own agent class loader where
6262
instrumentation is loaded and exporters and the SDK is configured. Only when applying an
6363
instrumentation (which will have passed Muzzle runtime checks) do we inject any additional classes
64-
that are needed by the instrumentation into the user's classloader. These classes are always either
64+
that are needed by the instrumentation into the user's class loader. These classes are always either
6565
unique to the agent or shaded versions of public libraries such as our library instrumentation
6666
modules and cannot cause version conflicts.
6767

68-
To ensure agent classes are not automatically loaded into the user's classloader, possibly by an
68+
To ensure agent classes are not automatically loaded into the user's class loader, possibly by an
6969
eager loading application server, they are hidden in the agent JAR as standard, non-Java files.
7070
All packages are moved into a subdirectory `inst` and all classes are renamed from `.class` to
7171
`.classdata`, ensuring applications with any sort of automatic classpath scanning will not find
72-
agent classes. The agent classloader understands this convention and unobfuscates when loading
72+
agent classes. The agent class loader understands this convention and unobfuscates when loading
7373
classes.
7474

7575
## Smoke tests

gradle-plugins/src/main/kotlin/io.opentelemetry.instrumentation.muzzle-check.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ fun createInstrumentationClassloader(): ClassLoader {
198198
}
199199

200200
fun classpathLoader(classpath: FileCollection, parent: ClassLoader): ClassLoader {
201-
logger.info("Adding to classloader:")
201+
logger.info("Adding to class loader:")
202202
val urls: Array<URL> = StreamSupport.stream(classpath.spliterator(), false)
203203
.map {
204204
logger.info("--${it}")
@@ -294,7 +294,7 @@ fun addMuzzleTask(muzzleDirective: MuzzleDirective, versionArtifact: Artifact?,
294294
if (thread.contextClassLoader === instrumentationCL
295295
|| thread.contextClassLoader === userCL) {
296296
throw GradleException(
297-
"Task ${taskName} has spawned a thread: ${thread} with classloader ${thread.contextClassLoader}. " +
297+
"Task ${taskName} has spawned a thread: ${thread} with class loader ${thread.contextClassLoader}. " +
298298
"This will prevent GC of dynamic muzzle classes. Aborting muzzle run.")
299299
}
300300
}
@@ -306,7 +306,7 @@ fun addMuzzleTask(muzzleDirective: MuzzleDirective, versionArtifact: Artifact?,
306306
}
307307

308308
fun createClassLoaderForTask(muzzleTaskConfiguration: Configuration): ClassLoader {
309-
logger.info("Creating user classloader for muzzle check")
309+
logger.info("Creating user class loader for muzzle check")
310310
val muzzleBootstrapShadowJar = shadowMuzzleBootstrap.get().archiveFile.get()
311311
return classpathLoader(muzzleTaskConfiguration + files(muzzleBootstrapShadowJar), ClassLoader.getPlatformClassLoader())
312312
}

gradle-plugins/src/main/kotlin/io/opentelemetry/javaagent/muzzle/generation/ClasspathByteBuddyPlugin.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55

66
package io.opentelemetry.javaagent.muzzle.generation
77

8-
import java.io.File
9-
import java.net.URL
10-
import java.net.URLClassLoader
118
import net.bytebuddy.ByteBuddy
129
import net.bytebuddy.build.Plugin
1310
import net.bytebuddy.description.type.TypeDescription
1411
import net.bytebuddy.dynamic.ClassFileLocator
1512
import net.bytebuddy.dynamic.DynamicType
13+
import java.io.File
14+
import java.net.URL
15+
import java.net.URLClassLoader
1616

1717
/**
1818
* Starting from version 1.10.15, ByteBuddy gradle plugin transformations require that plugin
1919
* classes are given as class instances instead of a class name string. To be able to still use a
2020
* plugin implementation that is not a buildscript dependency, this reimplements the previous logic
2121
* by taking a delegate class name and class path as arguments and loading the plugin class from the
22-
* provided classloader when the plugin is instantiated.
22+
* provided class loader when the plugin is instantiated.
2323
*/
2424
class ClasspathByteBuddyPlugin(
2525
classPath: Iterable<File>,

gradle-plugins/src/main/kotlin/io/opentelemetry/javaagent/muzzle/matcher/MuzzleGradlePluginUtil.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ package io.opentelemetry.javaagent.muzzle.matcher
2626
*/
2727

2828
// TODO the next line is not true anymore. Switch from System.err to Gradle logger.
29-
// Runs in special classloader so tedious to provide access to the Gradle logger.
29+
// Runs in special class loader so tedious to provide access to the Gradle logger.
3030
class MuzzleGradlePluginUtil {
3131

3232
companion object {
@@ -58,10 +58,10 @@ class MuzzleGradlePluginUtil {
5858
val matcherClass = agentClassLoader.loadClass("io.opentelemetry.javaagent.tooling.muzzle.ClassLoaderMatcher")
5959

6060
// We cannot reference Mismatch class directly here, because we are loaded from a different
61-
// classloader.
61+
// class loader.
6262

6363
// We cannot reference Mismatch class directly here, because we are loaded from a different
64-
// classloader.
64+
// class loader.
6565
val allMismatches = matcherClass
6666
.getMethod("matchesAll", ClassLoader::class.java, Boolean::class.javaPrimitiveType, Set::class.java)
6767
.invoke(null, userClassLoader, assertPass, excludedInstrumentationNames)

instrumentation/internal/internal-class-loader/javaagent-integration-tests/src/test/groovy/ResourceInjectionTest.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import static io.opentelemetry.instrumentation.test.utils.GcUtils.awaitGc
1313

1414
class ResourceInjectionTest extends AgentInstrumentationSpecification {
1515

16-
def "resources injected to non-delegating classloader"() {
16+
def "resources injected to non-delegating class loader"() {
1717
setup:
1818
String resourceName = 'test-resources/test-resource.txt'
1919
URL[] urls = [SystemUtils.getProtectionDomain().getCodeSource().getLocation()]

instrumentation/internal/internal-class-loader/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/classloader/BootDelegationInstrumentation.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static class Holder {
7676

7777
/**
7878
* We have to make sure that {@link BootstrapPackagePrefixesHolder} is loaded from bootstrap
79-
* classloader. After that we can use in {@link LoadClassAdvice}.
79+
* class loader. After that we can use in {@link LoadClassAdvice}.
8080
*/
8181
private static List<String> findBootstrapPackagePrefixes() {
8282
try {

instrumentation/reactor/reactor-3.1/javaagent/src/testInitialization/java/io/opentelemetry/javaagent/instrumentation/reactor/InitializationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import reactor.core.Scannable;
1414
import reactor.core.publisher.Mono;
1515

16-
// Isolated test to use clean classloader because reactor instrumentation is applied on static
16+
// Isolated test to use clean class loader because reactor instrumentation is applied on static
1717
// initialization.
1818
class InitializationTest {
1919

instrumentation/spring/spring-boot-actuator-autoconfigure-2.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/spring/actuator/SpringBootActuatorInstrumentationModule.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public SpringBootActuatorInstrumentationModule() {
2424
public void registerHelperResources(HelperResourceBuilder helperResourceBuilder) {
2525
// autoconfigure classes are loaded as resources using ClassPathResource
2626
// this line will make OpenTelemetryMeterRegistryAutoConfiguration available to all
27-
// classloaders, so that the bean classloader (different than the instrumented classloader) can
28-
// load it
27+
// classloaders, so that the bean class loader (different than the instrumented class loader)
28+
// can load it
2929
helperResourceBuilder.registerForAllClassLoaders(
3030
"io/opentelemetry/javaagent/instrumentation/spring/actuator/OpenTelemetryMeterRegistryAutoConfiguration.class");
3131
}

instrumentation/undertow-1.4/bootstrap/src/main/java/io/opentelemetry/javaagent/bootstrap/undertow/KeyHolder.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
* them as different keys then.
2121
*
2222
* <p>That is why this class exists and resides in a separate package. This package is treated in a
23-
* special way and is always loaded by bootstrap classloader. This makes sure that this class is
24-
* available to all tracers from every classloader.
23+
* special way and is always loaded by bootstrap class loader. This makes sure that this class is
24+
* available to all tracers from every class loader.
2525
*
26-
* <p>But at the same time, being loaded by bootstrap classloader, this class itself cannot initiate
27-
* the loading of {@code io.undertow.util.AttachmentKey} class. Class has to be loaded by <i>any</i>
28-
* classloader that has it, e.g. by the classloader of a Tracer that uses this key holder. After
29-
* that, <i>all</i> Tracers, loaded by all classloaders, will be able to use exactly the same sole
30-
* instance of the key.
26+
* <p>But at the same time, being loaded by bootstrap class loader, this class itself cannot
27+
* initiate the loading of {@code io.undertow.util.AttachmentKey} class. Class has to be loaded by
28+
* <i>any</i> class loader that has it, e.g. by the class loader of a Tracer that uses this key
29+
* holder. After that, <i>all</i> Tracers, loaded by all class loaders, will be able to use exactly
30+
* the same sole instance of the key.
3131
*/
3232
public final class KeyHolder {
3333
public static final ConcurrentMap<Class<?>, Object> contextKeys = new ConcurrentHashMap<>();

javaagent-bootstrap/src/main/java/io/opentelemetry/javaagent/OpenTelemetryAgent.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
* <p>The bootstrap process of the agent is somewhat complicated and care has to be taken to make
2323
* sure things do not get broken by accident.
2424
*
25-
* <p>JVM loads this class onto app's classloader, afterwards agent needs to inject its classes onto
26-
* bootstrap classpath. This leads to this class being visible on bootstrap. This in turn means that
27-
* this class may be loaded again on bootstrap by accident if we ever reference it after bootstrap
28-
* has been setup.
25+
* <p>JVM loads this class onto app's class loader, afterwards agent needs to inject its classes
26+
* onto bootstrap classpath. This leads to this class being visible on bootstrap. This in turn means
27+
* that this class may be loaded again on bootstrap by accident if we ever reference it after
28+
* bootstrap has been setup.
2929
*
3030
* <p>In order to avoid this we need to make sure we do a few things:
3131
*

javaagent-bootstrap/src/main/java/io/opentelemetry/javaagent/bootstrap/AgentClassLoader.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Classloader used to run the core agent.
3030
*
31-
* <p>It is built around the concept of a jar inside another jar. This classloader loads the files
31+
* <p>It is built around the concept of a jar inside another jar. This class loader loads the files
3232
* of the internal jar to load classes and resources.
3333
*/
3434
public class AgentClassLoader extends URLClassLoader {
@@ -324,7 +324,7 @@ public BootstrapClassLoaderProxy getBootstrapProxy() {
324324
}
325325

326326
/**
327-
* A stand-in for the bootstrap classloader. Used to look up bootstrap resources and resources
327+
* A stand-in for the bootstrap class loader. Used to look up bootstrap resources and resources
328328
* appended by instrumentation.
329329
*
330330
* <p>This class is thread safe.

javaagent-bootstrap/src/main/java/io/opentelemetry/javaagent/bootstrap/AgentInitializer.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
* <p>This class is loaded and called by {@code io.opentelemetry.javaagent.OpenTelemetryAgent}
1717
*
18-
* <p>The intention is for this class to be loaded by bootstrap classloader to make sure we have
18+
* <p>The intention is for this class to be loaded by bootstrap class loader to make sure we have
1919
* unimpeded access to the rest of agent parts.
2020
*/
2121
public final class AgentInitializer {
@@ -91,11 +91,11 @@ public static ClassLoader getExtensionsClassLoader() {
9191
}
9292

9393
/**
94-
* Create the agent classloader. This must be called after the bootstrap jar has been appended to
94+
* Create the agent class loader. This must be called after the bootstrap jar has been appended to
9595
* the bootstrap classpath.
9696
*
97-
* @param innerJarFilename Filename of internal jar to use for the classpath of the agent
98-
* classloader
97+
* @param innerJarFilename Filename of internal jar to use for the classpath of the agent class
98+
* loader
9999
* @return Agent Classloader
100100
*/
101101
private static ClassLoader createAgentClassLoader(String innerJarFilename, File javaagentFile) {

javaagent-bootstrap/src/main/java/io/opentelemetry/javaagent/bootstrap/BootstrapPackagePrefixesHolder.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
/**
1212
* {@link BootstrapPackagePrefixesHolder} is an utility class that holds package prefixes. The
13-
* classes from these packages are pushed to the bootstrap classloader.
13+
* classes from these packages are pushed to the bootstrap class loader.
1414
*
15-
* <p>The prefixes are loaded by {@code AgentInstaller} and consumed by classloader instrumentation.
16-
* The instrumentation does not have access to the installer, therefore this utility class is used
17-
* to share package prefixes.
15+
* <p>The prefixes are loaded by {@code AgentInstaller} and consumed by class loader
16+
* instrumentation. The instrumentation does not have access to the installer, therefore this
17+
* utility class is used to share package prefixes.
1818
*/
1919
public final class BootstrapPackagePrefixesHolder {
2020

0 commit comments

Comments
 (0)