C0urante commented on code in PR #14064:
URL: https://github.com/apache/kafka/pull/14064#discussion_r1283444835


##########
tools/src/main/java/org/apache/kafka/tools/ConnectPluginPath.java:
##########
@@ -0,0 +1,498 @@
+/*
+ * 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.tools;
+
+import net.sourceforge.argparse4j.ArgumentParsers;
+import net.sourceforge.argparse4j.impl.Arguments;
+import net.sourceforge.argparse4j.inf.ArgumentGroup;
+import net.sourceforge.argparse4j.inf.ArgumentParser;
+import net.sourceforge.argparse4j.inf.ArgumentParserException;
+import net.sourceforge.argparse4j.inf.Namespace;
+import org.apache.kafka.common.utils.Exit;
+import org.apache.kafka.common.utils.Utils;
+import org.apache.kafka.connect.runtime.WorkerConfig;
+import org.apache.kafka.connect.runtime.isolation.ClassLoaderFactory;
+import org.apache.kafka.connect.runtime.isolation.DelegatingClassLoader;
+import org.apache.kafka.connect.runtime.isolation.PluginDesc;
+import org.apache.kafka.connect.runtime.isolation.PluginScanResult;
+import org.apache.kafka.connect.runtime.isolation.PluginSource;
+import org.apache.kafka.connect.runtime.isolation.PluginType;
+import org.apache.kafka.connect.runtime.isolation.PluginUtils;
+import org.apache.kafka.connect.runtime.isolation.ReflectionScanner;
+import org.apache.kafka.connect.runtime.isolation.ServiceLoaderScanner;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.PrintStream;
+import java.io.UncheckedIOException;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.net.URL;
+import java.net.URLConnection;
+import java.nio.charset.StandardCharsets;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.Enumeration;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.LinkedHashMap;
+import java.util.LinkedHashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Objects;
+import java.util.Properties;
+import java.util.Set;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+public class ConnectPluginPath {
+
+    private static final String MANIFEST_PREFIX = "META-INF/services/";
+    private static final int LIST_TABLE_COLUMN_COUNT = 8;
+
+    public static void main(String[] args) {
+        Exit.exit(mainNoExit(args, System.out, System.err));
+    }
+
+    public static int mainNoExit(String[] args, PrintStream out, PrintStream 
err) {
+        ArgumentParser parser = parser();
+        try {
+            Namespace namespace = parser.parseArgs(args);
+            Config config = parseConfig(parser, namespace, out);
+            runCommand(config);
+            return 0;
+        } catch (ArgumentParserException e) {
+            parser.handleError(e);
+            return 1;
+        } catch (TerseException e) {
+            err.println(e.getMessage());
+            return 2;
+        } catch (Throwable e) {
+            err.println(e.getMessage());
+            err.println(Utils.stackTrace(e));
+            return 3;
+        }
+    }
+
+    private static ArgumentParser parser() {
+        ArgumentParser parser = 
ArgumentParsers.newArgumentParser("connect-plugin-path")
+            .defaultHelp(true)
+            .description("Manage plugins on the Connect plugin.path");
+
+        ArgumentParser listCommand = parser.addSubparsers()
+            .description("List information about plugins contained within the 
specified plugin locations")
+            .dest("subcommand")
+            .addParser("list");
+
+        ArgumentParser[] subparsers = new ArgumentParser[] {
+            listCommand,
+        };
+
+        for (ArgumentParser subparser : subparsers) {
+            ArgumentGroup pluginProviders = subparser.addArgumentGroup("plugin 
providers");
+            pluginProviders.addArgument("--plugin-location")
+                .setDefault(new ArrayList<>())
+                .action(Arguments.append())
+                .help("A single plugin location (jar file or directory)");
+
+            pluginProviders.addArgument("--plugin-path")
+                .setDefault(new ArrayList<>())
+                .action(Arguments.append())
+                .help("A comma-delimited list of locations containing 
plugins");
+
+            pluginProviders.addArgument("--worker-config")
+                .setDefault(new ArrayList<>())
+                .action(Arguments.append())
+                .help("A Connect worker configuration file");
+        }
+
+        return parser;
+    }
+
+    private static Config parseConfig(ArgumentParser parser, Namespace 
namespace, PrintStream out) throws ArgumentParserException, TerseException {
+        Set<Path> locations = parseLocations(parser, namespace);
+        String subcommand = namespace.getString("subcommand");
+        if (subcommand == null) {
+            throw new ArgumentParserException("No subcommand specified", 
parser);
+        }
+        switch (subcommand) {
+            case "list":
+                return new Config(Command.LIST, locations, out);
+            default:
+                throw new ArgumentParserException("Unrecognized subcommand: '" 
+ subcommand + "'", parser);
+        }
+    }
+
+    private static Set<Path> parseLocations(ArgumentParser parser, Namespace 
namespace) throws ArgumentParserException, TerseException {
+        List<String> rawLocations = new 
ArrayList<>(namespace.getList("plugin_location"));
+        List<String> rawPluginPaths = new 
ArrayList<>(namespace.getList("plugin_path"));
+        List<String> rawWorkerConfigs = new 
ArrayList<>(namespace.getList("worker_config"));
+        if (rawLocations.isEmpty() && rawPluginPaths.isEmpty() && 
rawWorkerConfigs.isEmpty()) {
+            throw new ArgumentParserException("Must specify at least one 
--plugin-location, --plugin-path, or --worker-config", parser);
+        }
+        Set<Path> pluginLocations = new HashSet<>();
+        for (String rawWorkerConfig : rawWorkerConfigs) {
+            Properties properties;
+            try {
+                properties = Utils.loadProps(rawWorkerConfig);
+            } catch (IOException e) {
+                throw new TerseException("Unable to read worker config at " + 
rawWorkerConfig);
+            }
+            String pluginPath = 
properties.getProperty(WorkerConfig.PLUGIN_PATH_CONFIG);
+            if (pluginPath != null) {
+                rawPluginPaths.add(pluginPath);
+            }
+        }
+        for (String rawPluginPath : rawPluginPaths) {
+            try {
+                
pluginLocations.addAll(PluginUtils.pluginLocations(rawPluginPath, true));
+            } catch (UncheckedIOException e) {
+                throw new TerseException("Unable to parse plugin path " + 
rawPluginPath + ": " + e.getMessage());
+            }
+        }
+        for (String rawLocation : rawLocations) {
+            Path pluginLocation = Paths.get(rawLocation);
+            if (!pluginLocation.toFile().exists()) {
+                throw new TerseException("Specified location " + 
pluginLocation + " does not exist");
+            }
+            pluginLocations.add(pluginLocation);
+        }
+        return pluginLocations;
+    }
+
+    enum Command {
+        LIST
+    }
+
+    private static class Config {
+        private final Command command;
+        private final Set<Path> locations;
+        private final PrintStream out;
+
+        private Config(Command command, Set<Path> locations, PrintStream out) {
+            this.command = command;
+            this.locations = locations;
+            this.out = out;
+        }
+
+        @Override
+        public String toString() {
+            return "Config{" +
+                "command=" + command +
+                ", locations=" + locations +
+                '}';
+        }
+    }
+
+    public static void runCommand(Config config) throws TerseException {
+        try {
+            ClassLoader parent = ConnectPluginPath.class.getClassLoader();
+            ServiceLoaderScanner serviceLoaderScanner = new 
ServiceLoaderScanner();
+            ReflectionScanner reflectionScanner = new ReflectionScanner();
+            // Process the contents of the classpath to exclude it from later 
results.
+            PluginSource classpathSource = 
PluginUtils.classpathPluginSource(parent);
+            Map<String, Set<ManifestEntry>> classpathManifests = 
findManifests(classpathSource, Collections.emptyMap());
+            PluginScanResult classpathPlugins = 
discoverPlugins(classpathSource, reflectionScanner, serviceLoaderScanner);
+            Map<Path, Set<Row>> rowsByLocation = new LinkedHashMap<>();
+            Set<Row> classpathRows = enumerateRows(classpathSource, 
classpathManifests, classpathPlugins);
+            rowsByLocation.put(classpathSource.location(), classpathRows);
+
+            ClassLoaderFactory factory = new ClassLoaderFactory();
+            try (DelegatingClassLoader delegatingClassLoader = 
factory.newDelegatingClassLoader(parent)) {
+                beginCommand(config);
+                for (Path pluginLocation : config.locations) {
+                    PluginSource source = 
PluginUtils.isolatedPluginSource(pluginLocation, delegatingClassLoader, 
factory);
+                    Map<String, Set<ManifestEntry>> manifests = 
findManifests(source, classpathManifests);
+                    PluginScanResult plugins = discoverPlugins(source, 
reflectionScanner, serviceLoaderScanner);
+                    Set<Row> rows = enumerateRows(source, manifests, plugins);
+                    rowsByLocation.put(pluginLocation, rows);
+                    for (Row row : rows) {
+                        handlePlugin(config, row);
+                    }
+                }
+                endCommand(config, rowsByLocation);
+            }
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+    }
+
+    /**
+     * The unit of work for a command.
+     * <p>This is unique to the (source, class, type) tuple, and contains 
additional pre-computed information
+     * that pertains to this specific plugin.
+     */
+    private static class Row {
+        private final Path pluginLocation;
+        private final String className;
+        private final PluginType type;
+        private final String version;
+        private final List<String> aliases;
+        private final boolean loadable;
+        private final boolean hasManifest;
+
+        public Row(Path pluginLocation, String className, PluginType type, 
String version, List<String> aliases, boolean loadable, boolean hasManifest) {
+            this.pluginLocation = pluginLocation;
+            this.className = className;
+            this.version = version;
+            this.type = type;
+            this.aliases = aliases;
+            this.loadable = loadable;
+            this.hasManifest = hasManifest;
+        }
+
+        private boolean loadable() {
+            return loadable;
+        }
+
+        private boolean compatible() {
+            return loadable && hasManifest;
+        }
+
+        @Override
+        public boolean equals(Object o) {
+            if (this == o) return true;
+            if (o == null || getClass() != o.getClass()) return false;
+            Row row = (Row) o;
+            return pluginLocation.equals(row.pluginLocation) && 
className.equals(row.className) && type == row.type;
+        }
+
+        @Override
+        public int hashCode() {
+            return Objects.hash(pluginLocation, className, type);
+        }
+    }
+
+    private static Set<Row> enumerateRows(PluginSource source, Map<String, 
Set<ManifestEntry>> manifests, PluginScanResult scanResult) {
+        Set<Row> rows = new HashSet<>();
+        // Perform a deep copy of the manifests because we're going to be 
mutating our copy.
+        Map<String, Set<ManifestEntry>> unloadablePlugins = 
manifests.entrySet().stream()
+                .collect(Collectors.toMap(Map.Entry::getKey, e -> new 
HashSet<>(e.getValue())));
+        scanResult.forEach(pluginDesc -> {
+            // Emit a loadable row for this scan result, since it was found 
during plugin discovery
+            rows.add(newRow(source, pluginDesc.className(), pluginDesc.type(), 
pluginDesc.version(), true, manifests));
+            // Remove the ManifestEntry if it has the same className and type 
as one of the loadable plugins.
+            unloadablePlugins.getOrDefault(pluginDesc.className(), 
Collections.emptySet()).removeIf(entry -> entry.type == pluginDesc.type());
+        });
+        unloadablePlugins.values().forEach(entries -> entries.forEach(entry -> 
{
+            // Emit a non-loadable row, since all the loadable rows showed up 
in the previous iteration.
+            // Two ManifestEntries may produce the same row if they have 
different URIs
+            rows.add(newRow(source, entry.className, entry.type, 
PluginDesc.UNDEFINED_VERSION, false, manifests));
+        }));
+        return rows;
+    }
+
+    private static Row newRow(PluginSource source, String className, 
PluginType type, String version, boolean loadable, Map<String, 
Set<ManifestEntry>> manifests) {
+        Set<String> rowAliases = new LinkedHashSet<>();
+        rowAliases.add(PluginUtils.simpleName(className));
+        rowAliases.add(PluginUtils.prunedName(className, type));
+        boolean hasManifest = manifests.containsKey(className);
+        return new Row(source.location(), className, type, version, new 
ArrayList<>(rowAliases), loadable, hasManifest);
+    }
+
+    private static void beginCommand(Config config) {
+        if (config.command == Command.LIST) {
+            listTablePrint(config,
+                    "pluginName",
+                    "firstAlias",
+                    "secondAlias",
+                    "pluginVersion",
+                    "pluginType",
+                    "isLoadable",
+                    "hasManifest",
+                    "pluginLocation" // last because it is least important and 
most repetitive
+            );
+        }
+    }
+
+    private static void handlePlugin(Config config, Row row) {
+        if (config.command == Command.LIST) {
+            String firstAlias = row.aliases.size() > 0 ? row.aliases.get(0) : 
"null";
+            String secondAlias = row.aliases.size() > 1 ? row.aliases.get(1) : 
"null";
+            listTablePrint(config,
+                    row.className,
+                    firstAlias,
+                    secondAlias,
+                    row.version,
+                    row.type,
+                    row.loadable,
+                    row.hasManifest,
+                    row.pluginLocation // last because it is least important 
and most repetitive
+            );
+        }
+    }
+
+    private static void endCommand(
+            Config config,
+            Map<Path, Set<Row>> rowsByLocation
+    ) {
+        if (config.command == Command.LIST) {
+            // end the table with an empty line
+            config.out.println();
+            Set<Row> allRows = 
rowsByLocation.values().stream().flatMap(Set::stream).collect(Collectors.toSet());
+            Map<String, Set<String>> aliasCollisions = 
aliasCollisions(allRows);
+            for (Map.Entry<String, Set<String>> entry : 
aliasCollisions.entrySet()) {
+                String alias = entry.getKey();
+                Set<String> classNames = entry.getValue();
+                if (classNames.size() != 1) {
+                    config.out.printf("Ignoring ambiguous alias '%s' since it 
refers to multiple distinct plugins %s%n",

Review Comment:
   Looks great, thanks!



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to