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

org.apache.kafka.connect.runtime.isolation.ReflectionScanner Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.kafka.connect.runtime.isolation;

import org.apache.kafka.common.config.provider.ConfigProvider;
import org.apache.kafka.connect.connector.policy.ConnectorClientConfigOverridePolicy;
import org.apache.kafka.connect.rest.ConnectRestExtension;
import org.apache.kafka.connect.sink.SinkConnector;
import org.apache.kafka.connect.source.SourceConnector;
import org.apache.kafka.connect.storage.Converter;
import org.apache.kafka.connect.storage.HeaderConverter;
import org.apache.kafka.connect.transforms.Transformation;
import org.apache.kafka.connect.transforms.predicates.Predicate;

import org.reflections.Reflections;
import org.reflections.ReflectionsException;
import org.reflections.scanners.Scanners;
import org.reflections.util.ConfigurationBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.util.Collections;
import java.util.ServiceLoader;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;

/**
 * A {@link PluginScanner} implementation which uses reflection and {@link ServiceLoader} to discover plugins.
 * 

This implements the legacy discovery strategy, which uses a combination of reflection and service loading in * order to discover plugins. Specifically, a plugin appears in the scan result if all the following conditions are true: *

    *
  • The class and direct dependencies can be loaded
  • *
  • The class is concrete
  • *
  • The class is public
  • *
  • The class has a no-args constructor
  • *
  • The no-args constructor is public
  • *
  • Static initialization of the class completes without throwing an exception
  • *
  • The no-args constructor completes without throwing an exception
  • *
  • One of the following is true: *
      *
    • Is a subclass of {@link SinkConnector}, {@link SourceConnector}, {@link Converter}, * {@link HeaderConverter}, {@link Transformation}, or {@link Predicate}
    • *
    • Is a subclass of {@link ConfigProvider}, {@link ConnectRestExtension}, or * {@link ConnectorClientConfigOverridePolicy}, and has a {@link ServiceLoader} compatible * manifest file or module declaration
    • *
    *
  • *
*

Note: This scanner has a runtime proportional to the number of overall classes in the passed-in * {@link PluginSource} objects, which may be significant for plugins with large dependencies. For a more performant * implementation, consider using {@link ServiceLoaderScanner} and follow migration instructions for * KIP-898. */ public class ReflectionScanner extends PluginScanner { private static final Logger log = LoggerFactory.getLogger(ReflectionScanner.class); private static String versionFor(Class pluginKlass) throws ReflectiveOperationException { T pluginImpl = pluginKlass.getDeclaredConstructor().newInstance(); return versionFor(pluginImpl); } @Override protected PluginScanResult scanPlugins(PluginSource source) { ConfigurationBuilder builder = new ConfigurationBuilder(); builder.setClassLoaders(new ClassLoader[]{source.loader()}); builder.addUrls(source.urls()); builder.setScanners(Scanners.SubTypes); builder.setParallel(true); Reflections reflections = new Reflections(builder); return new PluginScanResult( getPluginDesc(reflections, PluginType.SINK, source), getPluginDesc(reflections, PluginType.SOURCE, source), getPluginDesc(reflections, PluginType.CONVERTER, source), getPluginDesc(reflections, PluginType.HEADER_CONVERTER, source), getTransformationPluginDesc(source, reflections), getPredicatePluginDesc(source, reflections), getServiceLoaderPluginDesc(PluginType.CONFIGPROVIDER, source), getServiceLoaderPluginDesc(PluginType.REST_EXTENSION, source), getServiceLoaderPluginDesc(PluginType.CONNECTOR_CLIENT_CONFIG_OVERRIDE_POLICY, source) ); } @SuppressWarnings({"unchecked"}) private SortedSet>> getPredicatePluginDesc(PluginSource source, Reflections reflections) { return (SortedSet>>) (SortedSet) getPluginDesc(reflections, PluginType.PREDICATE, source); } @SuppressWarnings({"unchecked"}) private SortedSet>> getTransformationPluginDesc(PluginSource source, Reflections reflections) { return (SortedSet>>) (SortedSet) getPluginDesc(reflections, PluginType.TRANSFORMATION, source); } @SuppressWarnings({"unchecked"}) private SortedSet> getPluginDesc( Reflections reflections, PluginType type, PluginSource source ) { Set> plugins; try { plugins = reflections.getSubTypesOf((Class) type.superClass()); } catch (ReflectionsException e) { log.debug("Reflections scanner could not find any {} in {} for URLs: {}", type, source, source.urls(), e); return Collections.emptySortedSet(); } SortedSet> result = new TreeSet<>(); for (Class pluginKlass : plugins) { if (!PluginUtils.isConcrete(pluginKlass)) { log.debug("Skipping {} in {} as it is not concrete implementation", pluginKlass, source); continue; } if (pluginKlass.getClassLoader() != source.loader()) { log.debug("{} from other classloader {} is visible from {}, excluding to prevent isolated loading", pluginKlass, pluginKlass.getClassLoader(), source); continue; } try (LoaderSwap loaderSwap = withClassLoader(source.loader())) { result.add(pluginDesc(pluginKlass, versionFor(pluginKlass), type, source)); } catch (ReflectiveOperationException | LinkageError e) { log.error("Failed to discover {} in {}: Unable to instantiate {}{}", type.simpleName(), source, pluginKlass.getSimpleName(), reflectiveErrorDescription(e), e); } } return result; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy