/** * 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.pulsar.sql.presto; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.util.Map; import java.util.Properties; import org.apache.avro.Schema; import org.apache.pulsar.client.admin.PulsarAdmin; import org.apache.pulsar.client.admin.PulsarAdminException; import org.apache.pulsar.common.naming.TopicName; /** * A helper class containing repeatable logic used in the other classes. */ public class PulsarConnectorUtils { public static Schema parseSchema(String schemaJson) { Schema.Parser parser = new Schema.Parser(); return parser.parse(schemaJson); } public static boolean isPartitionedTopic(TopicName topicName, PulsarAdmin pulsarAdmin) throws PulsarAdminException { return pulsarAdmin.topics().getPartitionedTopicMetadata(topicName.toString()).partitions > 0; } /** * Create an instance of userClassName using provided classLoader. * This instance should implement the provided interface xface. * * @param userClassName user class name * @param xface the interface that the reflected instance should implement * @param classLoader class loader to load the class. * @return the instance */ public static T createInstance(String userClassName, Class xface, ClassLoader classLoader) { Class theCls; try { theCls = Class.forName(userClassName, true, classLoader); } catch (ClassNotFoundException cnfe) { throw new RuntimeException("User class must be in class path", cnfe); } if (!xface.isAssignableFrom(theCls)) { throw new RuntimeException(userClassName + " not " + xface.getName()); } Class tCls = (Class) theCls.asSubclass(xface); try { Constructor meth = tCls.getDeclaredConstructor(); return meth.newInstance(); } catch (InstantiationException ie) { throw new RuntimeException("User class must be concrete", ie); } catch (NoSuchMethodException e) { throw new RuntimeException("User class must have a no-arg constructor", e); } catch (IllegalAccessException e) { throw new RuntimeException("User class must a public constructor", e); } catch (InvocationTargetException e) { throw new RuntimeException("User class constructor throws exception", e); } } public static Properties getProperties(Map configMap) { Properties properties = new Properties(); for (Map.Entry entry : configMap.entrySet()) { properties.setProperty(entry.getKey(), entry.getValue()); } return properties; } public static String rewriteNamespaceDelimiterIfNeeded(String namespace, PulsarConnectorConfig config) { return config.getNamespaceDelimiterRewriteEnable() ? namespace.replace("/", config.getRewriteNamespaceDelimiter()) : namespace; } public static String restoreNamespaceDelimiterIfNeeded(String namespace, PulsarConnectorConfig config) { return config.getNamespaceDelimiterRewriteEnable() ? namespace.replace(config.getRewriteNamespaceDelimiter(), "/") : namespace; } }