All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.rocketmq.shaded.io.opentelemetry.sdk.internal.ComponentRegistry Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.apache.rocketmq.shaded.io.opentelemetry.sdk.internal;

import org.apache.rocketmq.shaded.io.opentelemetry.sdk.common.InstrumentationScopeInfo;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.function.Function;
import javax.annotation.Nullable;

/**
 * Base class for all the provider classes (TracerProvider, MeterProvider, etc.).
 *
 * 

This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time. * * @param the type of the registered value. */ public final class ComponentRegistry { private final ConcurrentMap registry = new ConcurrentHashMap<>(); private final Function factory; public ComponentRegistry(Function factory) { this.factory = factory; } /** * Returns the registered value associated with this name and {@code null} version if any, * otherwise creates a new instance and associates it with the given name and {@code null} version * and schemaUrl. * * @param instrumentationScopeName the name of the instrumentation scope. * @return the registered value associated with this name and {@code null} version. */ public V get(String instrumentationScopeName) { return get(instrumentationScopeName, null); } /** * Returns the registered value associated with this name and version if any, otherwise creates a * new instance and associates it with the given name and version. The schemaUrl will be set to * null. * * @param instrumentationScopeName the name of the instrumentation scope. * @param instrumentationScopeVersion the version of the instrumentation scope. * @return the registered value associated with this name and version. */ public V get(String instrumentationScopeName, @Nullable String instrumentationScopeVersion) { return get(instrumentationScopeName, instrumentationScopeVersion, null); } /** * Returns the registered value associated with this name and version if any, otherwise creates a * new instance and associates it with the given name and version. * * @param instrumentationScopeName the name of the instrumentation scope. * @param instrumentationScopeVersion the version of the instrumentation scope. * @param schemaUrl the URL of the OpenTelemetry schema used by the instrumentation scope. * @return the registered value associated with this name and version. * @since 1.4.0 */ public V get( String instrumentationScopeName, @Nullable String instrumentationScopeVersion, @Nullable String schemaUrl) { InstrumentationScopeInfo instrumentationScopeInfo = InstrumentationScopeInfo.create( instrumentationScopeName, instrumentationScopeVersion, schemaUrl); // Optimistic lookup, before creating the new component. V component = registry.get(instrumentationScopeInfo); if (component != null) { return component; } V newComponent = factory.apply(instrumentationScopeInfo); V oldComponent = registry.putIfAbsent(instrumentationScopeInfo, newComponent); return oldComponent != null ? oldComponent : newComponent; } /** * Returns a {@code Collection} view of the registered components. * * @return a {@code Collection} view of the registered components. */ public Collection getComponents() { return Collections.unmodifiableCollection(new ArrayList<>(registry.values())); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy