Renamed deployer-new to deployer, removed old deployer
This commit is contained in:
@@ -1,204 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.net.URLClassLoader;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.jar.JarFile;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
* Utility class to launch a Spring Boot application (optionally) in an isolated class
|
||||
* loader. The class loader is created in such a way that it is mostly a copy of the
|
||||
* current class loader (i.e. the one that loaded this class), but has a parent containing
|
||||
* reactor-core (if present). It can then share the reactor dependency with other class
|
||||
* loaders that the app itself creates, without any other classes being shared, other than
|
||||
* the core JDK.
|
||||
*
|
||||
* @author Mark Fisher
|
||||
* @author Dave Syer
|
||||
*/
|
||||
public class ApplicationBootstrap {
|
||||
|
||||
private static Log logger = LogFactory.getLog(ApplicationBootstrap.class);
|
||||
|
||||
private ApplicationRunner runner;
|
||||
|
||||
private URLClassLoader classLoader;
|
||||
|
||||
private static boolean isolated(String[] args) {
|
||||
for (String arg : args) {
|
||||
if (arg.equals("--function.runner.isolated=false")) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Run the provided main class as a Spring Boot application with the provided command
|
||||
* line arguments.
|
||||
* @param mainClass the main class
|
||||
* @param args the command line arguments
|
||||
*/
|
||||
public void run(Class<?> mainClass, String... args) {
|
||||
if (ApplicationBootstrap.isolated(args)) {
|
||||
runner(mainClass).run(args);
|
||||
}
|
||||
else {
|
||||
SpringApplication.run(mainClass, args);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Clean up the resources used by this instance, if any. Called automatically on a
|
||||
* runtime shutdown hook.
|
||||
*/
|
||||
public void close() {
|
||||
if (this.runner != null) {
|
||||
this.runner.close();
|
||||
this.runner = null;
|
||||
}
|
||||
if (this.classLoader != null) {
|
||||
try {
|
||||
this.classLoader.close();
|
||||
}
|
||||
catch (IOException e) {
|
||||
throw new IllegalStateException("Cannot close ClassLoader", e);
|
||||
}
|
||||
finally {
|
||||
this.classLoader = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public ApplicationRunner getRunner() {
|
||||
return this.runner;
|
||||
}
|
||||
|
||||
private ApplicationRunner runner(Class<?> mainClass) {
|
||||
if (this.runner == null) {
|
||||
synchronized (this) {
|
||||
if (this.runner == null) {
|
||||
this.classLoader = createClassLoader(mainClass);
|
||||
this.runner = new ApplicationRunner(this.classLoader,
|
||||
mainClass.getName());
|
||||
Runtime.getRuntime().addShutdownHook(new Thread(this::close));
|
||||
}
|
||||
}
|
||||
}
|
||||
return this.runner;
|
||||
}
|
||||
|
||||
private URLClassLoader createClassLoader(Class<?> mainClass) {
|
||||
URL[] urls = findClassPath(mainClass);
|
||||
if (urls.length == 1) {
|
||||
URL[] classpath = extractClasspath(urls[0]);
|
||||
if (classpath != null) {
|
||||
urls = classpath;
|
||||
}
|
||||
}
|
||||
List<URL> child = new ArrayList<>();
|
||||
List<URL> parent = new ArrayList<>();
|
||||
for (URL url : urls) {
|
||||
child.add(url);
|
||||
}
|
||||
for (URL url : urls) {
|
||||
if (isRoot(StringUtils.getFilename(clean(url.toString())))) {
|
||||
parent.add(url);
|
||||
child.remove(url);
|
||||
}
|
||||
}
|
||||
logger.debug("Parent: " + parent);
|
||||
logger.debug("Child: " + child);
|
||||
ClassLoader base = getClass().getClassLoader();
|
||||
if (!parent.isEmpty()) {
|
||||
base = new URLClassLoader(parent.toArray(new URL[0]), base.getParent());
|
||||
}
|
||||
return new URLClassLoader(child.toArray(new URL[0]), base);
|
||||
}
|
||||
|
||||
private URL[] findClassPath(Class<?> mainClass) {
|
||||
ClassLoader base = mainClass.getClassLoader();
|
||||
if (!(base instanceof URLClassLoader)) {
|
||||
try {
|
||||
// Guess the classpath, based on where we can resolve existing resources
|
||||
List<URL> list = Collections
|
||||
.list(mainClass.getClassLoader().getResources("META-INF"));
|
||||
List<URL> result = new ArrayList<>();
|
||||
result.add(mainClass.getProtectionDomain().getCodeSource().getLocation());
|
||||
for (URL url : list) {
|
||||
String path = url.toString();
|
||||
path = path.substring(0, path.length() - "/META-INF".length()) + "/";
|
||||
result.add(new URL(path));
|
||||
}
|
||||
return result.toArray(new URL[result.size()]);
|
||||
}
|
||||
catch (IOException e) {
|
||||
throw new IllegalStateException("Cannot find class path", e);
|
||||
}
|
||||
}
|
||||
else {
|
||||
@SuppressWarnings("resource")
|
||||
URLClassLoader urlClassLoader = (URLClassLoader) base;
|
||||
return urlClassLoader.getURLs();
|
||||
}
|
||||
}
|
||||
|
||||
private boolean isRoot(String file) {
|
||||
return file.startsWith("reactor-core") || file.startsWith("reactive-streams");
|
||||
}
|
||||
|
||||
private String clean(String jar) {
|
||||
// This works with fat jars like Spring Boot where the path elements look like
|
||||
// jar:file:...something.jar!/.
|
||||
return jar.endsWith("!/") ? jar.substring(0, jar.length() - 2) : jar;
|
||||
}
|
||||
|
||||
private URL[] extractClasspath(URL url) {
|
||||
// This works for a jar indirection like in surefire and IntelliJ
|
||||
if (url.toString().endsWith(".jar")) {
|
||||
JarFile jar;
|
||||
try {
|
||||
jar = new JarFile(new File(url.toURI()));
|
||||
String path = jar.getManifest().getMainAttributes()
|
||||
.getValue("Class-Path");
|
||||
if (path != null) {
|
||||
List<URL> result = new ArrayList<>();
|
||||
for (String element : path.split(" ")) {
|
||||
result.add(new URL(element));
|
||||
}
|
||||
return result.toArray(new URL[0]);
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,238 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
import javax.annotation.PreDestroy;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import org.springframework.context.support.LiveBeansView;
|
||||
import org.springframework.expression.Expression;
|
||||
import org.springframework.expression.spel.SpelParserConfiguration;
|
||||
import org.springframework.expression.spel.standard.SpelExpressionParser;
|
||||
import org.springframework.expression.spel.support.StandardEvaluationContext;
|
||||
import org.springframework.expression.spel.support.StandardTypeLocator;
|
||||
import org.springframework.util.ClassUtils;
|
||||
|
||||
/**
|
||||
* Driver class for running a Spring Boot application via an isolated classpath.
|
||||
* Initialize an instance of this class with the class loader to be used and the name of
|
||||
* the main class (usually a <code>@SpringBootApplication</code>), and then
|
||||
* {@link #run(String...)} it, cleaning up with a call to {@link #close()}.
|
||||
*
|
||||
* @author Dave Syer
|
||||
* @author Oleg Zhurakousky
|
||||
*/
|
||||
public class ApplicationRunner {
|
||||
|
||||
private static Log logger = LogFactory.getLog(ApplicationRunner.class);
|
||||
|
||||
private final ClassLoader classLoader;
|
||||
|
||||
private final String source;
|
||||
|
||||
private final SpelParserConfiguration config;
|
||||
|
||||
private final StandardTypeLocator typeLocator;
|
||||
|
||||
private StandardEvaluationContext app;
|
||||
|
||||
public ApplicationRunner(ClassLoader classLoader, String source) {
|
||||
this.classLoader = classLoader;
|
||||
this.source = source;
|
||||
this.config = new SpelParserConfiguration(null, this.classLoader);
|
||||
this.typeLocator = new StandardTypeLocator(this.classLoader);
|
||||
}
|
||||
|
||||
public void run(String... args) {
|
||||
ClassLoader contextLoader = Thread.currentThread().getContextClassLoader();
|
||||
try {
|
||||
ClassUtils.overrideThreadContextClassLoader(this.classLoader);
|
||||
Class<?> cls = this.classLoader.loadClass(ContextRunner.class.getName());
|
||||
this.app = new StandardEvaluationContext(
|
||||
cls.getDeclaredConstructor().newInstance());
|
||||
this.app.setTypeLocator(new StandardTypeLocator(this.classLoader));
|
||||
runContext(this.source, defaultProperties(UUID.randomUUID().toString()),
|
||||
args);
|
||||
}
|
||||
catch (Exception e) {
|
||||
logger.error("Cannot deploy", e);
|
||||
}
|
||||
finally {
|
||||
ClassUtils.overrideThreadContextClassLoader(contextLoader);
|
||||
}
|
||||
RuntimeException e = getError();
|
||||
if (e != null) {
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
private Map<String, String> defaultProperties(String id) {
|
||||
Map<String, String> map = new HashMap<>();
|
||||
map.put(LiveBeansView.MBEAN_DOMAIN_PROPERTY_NAME, "function-deployer-" + id);
|
||||
map.put("spring.jmx.default-domain", "function-deployer-" + id);
|
||||
map.put("spring.jmx.enabled", "false");
|
||||
return map;
|
||||
}
|
||||
|
||||
public Object getBean(String name) {
|
||||
if (this.app != null) {
|
||||
if (containsBeanByName(name)) {
|
||||
return getBeanByName(name);
|
||||
}
|
||||
try {
|
||||
return getBeanByType(name);
|
||||
}
|
||||
catch (Exception e) {
|
||||
// not there
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private boolean containsBeanByName(String name) {
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("context.containsBean(\"" + name + "\")");
|
||||
return parsed.getValue(this.app, Boolean.class);
|
||||
}
|
||||
|
||||
private Object getBeanByName(String name) {
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("context.getBean(\"" + name + "\")");
|
||||
return parsed.getValue(this.app);
|
||||
}
|
||||
|
||||
private Object getBeanByType(String name) {
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("context.getBean(T(" + name + "))");
|
||||
return parsed.getValue(this.app);
|
||||
}
|
||||
|
||||
public boolean containsBean(String name) {
|
||||
if (this.app != null) {
|
||||
if (containsBeanByName(name)) {
|
||||
return true;
|
||||
}
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("context.getBeansOfType(T(" + name + "))");
|
||||
try {
|
||||
@SuppressWarnings("unchecked")
|
||||
Map<String, Object> beans = (Map<String, Object>) parsed
|
||||
.getValue(this.app);
|
||||
return !beans.isEmpty();
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* List the bean names in the application context for a given type (by its fully
|
||||
* qualified name).
|
||||
* @param type the name of the type (Class)
|
||||
* @return the bean names of that type
|
||||
*/
|
||||
public Set<String> getBeanNames(String type) {
|
||||
if (this.app != null) {
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("context.getBeansOfType(T(" + type + "))");
|
||||
try {
|
||||
@SuppressWarnings("unchecked")
|
||||
Map<String, Object> beans = (Map<String, Object>) parsed
|
||||
.getValue(this.app);
|
||||
return beans.keySet();
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
}
|
||||
return Collections.emptySet();
|
||||
}
|
||||
|
||||
public Object evaluate(String expression, Object root, Object... attrs) {
|
||||
Expression parsed = new SpelExpressionParser(this.config)
|
||||
.parseExpression(expression);
|
||||
StandardEvaluationContext context = new StandardEvaluationContext(root);
|
||||
context.setTypeLocator(this.typeLocator);
|
||||
if (attrs.length % 2 != 0) {
|
||||
throw new IllegalArgumentException(
|
||||
"Context attributes must be name, value pairs");
|
||||
}
|
||||
for (int i = 0; i < attrs.length / 2; i++) {
|
||||
String name = (String) attrs[2 * i];
|
||||
Object value = attrs[2 * i + 1];
|
||||
context.setVariable(name, value);
|
||||
}
|
||||
return parsed.getValue(context);
|
||||
}
|
||||
|
||||
public boolean isRunning() {
|
||||
if (this.app == null) {
|
||||
return false;
|
||||
}
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("context.isRunning()");
|
||||
return parsed.getValue(this.app, Boolean.class);
|
||||
}
|
||||
|
||||
@PreDestroy
|
||||
public void close() {
|
||||
closeContext();
|
||||
}
|
||||
|
||||
private RuntimeException getError() {
|
||||
if (this.app == null) {
|
||||
return null;
|
||||
}
|
||||
Expression parsed = new SpelExpressionParser().parseExpression("error");
|
||||
Throwable e = parsed.getValue(this.app, Throwable.class);
|
||||
if (e == null) {
|
||||
return null;
|
||||
}
|
||||
if (e instanceof RuntimeException) {
|
||||
return (RuntimeException) e;
|
||||
}
|
||||
return new IllegalStateException("Cannot launch", e);
|
||||
}
|
||||
|
||||
private void runContext(String mainClass, Map<String, String> properties,
|
||||
String... args) {
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("run(#main,#properties,#args)");
|
||||
StandardEvaluationContext context = this.app;
|
||||
context.setVariable("main", mainClass);
|
||||
context.setVariable("properties", properties);
|
||||
context.setVariable("args", args);
|
||||
parsed.getValue(context);
|
||||
}
|
||||
|
||||
private void closeContext() {
|
||||
if (this.app != null) {
|
||||
Expression parsed = new SpelExpressionParser().parseExpression("close()");
|
||||
parsed.getValue(this.app);
|
||||
this.app = null;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,159 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
import java.net.URL;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.cloud.function.context.FunctionalSpringApplication;
|
||||
import org.springframework.context.ConfigurableApplicationContext;
|
||||
import org.springframework.core.env.MapPropertySource;
|
||||
import org.springframework.core.env.SimpleCommandLinePropertySource;
|
||||
import org.springframework.core.env.StandardEnvironment;
|
||||
import org.springframework.util.ClassUtils;
|
||||
import org.springframework.util.ReflectionUtils;
|
||||
|
||||
/**
|
||||
* Utility class for starting a Spring Boot application in a separate thread. Best used
|
||||
* from an isolated class loader, e.g. through {@link ApplicationRunner}.
|
||||
*
|
||||
* @author Dave Syer
|
||||
*/
|
||||
public class ContextRunner {
|
||||
|
||||
private ConfigurableApplicationContext context;
|
||||
|
||||
private Thread runThread;
|
||||
|
||||
private volatile boolean running = false;
|
||||
|
||||
private Throwable error;
|
||||
|
||||
private long timeout = 120000;
|
||||
|
||||
private static boolean isFunctional(StandardEnvironment environment) {
|
||||
if (!ClassUtils.isPresent(
|
||||
"org.springframework.cloud.function.context.FunctionalSpringApplication",
|
||||
null)) {
|
||||
return false;
|
||||
}
|
||||
return environment.resolvePlaceholders("${spring.functional.enabled:true}")
|
||||
.equals("true");
|
||||
}
|
||||
|
||||
public void run(final String source, final Map<String, Object> properties,
|
||||
final String... args) {
|
||||
// Run in new thread to ensure that the context classloader is setup
|
||||
this.runThread = new Thread(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
resetUrlHandler();
|
||||
StandardEnvironment environment = new StandardEnvironment();
|
||||
environment.getPropertySources().addAfter(
|
||||
StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME,
|
||||
new MapPropertySource("appDeployer", properties));
|
||||
if (args != null && args.length > 0) {
|
||||
environment.getPropertySources().addFirst(
|
||||
new SimpleCommandLinePropertySource("args", args));
|
||||
}
|
||||
ContextRunner.this.running = true;
|
||||
Class<?> sourceClass = ClassUtils.resolveClassName(source, null);
|
||||
SpringApplication builder = builder(sourceClass, environment);
|
||||
ContextRunner.this.context = builder.run(args);
|
||||
}
|
||||
catch (Throwable ex) {
|
||||
ContextRunner.this.error = ex;
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
this.runThread.start();
|
||||
try {
|
||||
this.runThread.join(this.timeout);
|
||||
this.running = this.context != null && this.context.isRunning();
|
||||
}
|
||||
catch (InterruptedException e) {
|
||||
this.running = false;
|
||||
Thread.currentThread().interrupt();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void close() {
|
||||
if (this.context != null) {
|
||||
this.context.close();
|
||||
resetUrlHandler();
|
||||
}
|
||||
// TODO: JDBC leak protection?
|
||||
this.running = false;
|
||||
this.runThread.setContextClassLoader(null);
|
||||
this.runThread = null;
|
||||
}
|
||||
|
||||
public ConfigurableApplicationContext getContext() {
|
||||
return this.context;
|
||||
}
|
||||
|
||||
private void resetUrlHandler() {
|
||||
if (ClassUtils.isPresent(
|
||||
"org.apache.catalina.webresources.TomcatURLStreamHandlerFactory", null)) {
|
||||
setField(ClassUtils.resolveClassName(
|
||||
"org.apache.catalina.webresources.TomcatURLStreamHandlerFactory",
|
||||
null), "instance", null);
|
||||
setField(URL.class, "factory", null);
|
||||
}
|
||||
}
|
||||
|
||||
private void setField(Class<?> type, String name, Object value) {
|
||||
Field field = ReflectionUtils.findField(type, name);
|
||||
ReflectionUtils.makeAccessible(field);
|
||||
ReflectionUtils.setField(field, null, value);
|
||||
}
|
||||
|
||||
public boolean isRunning() {
|
||||
return this.running;
|
||||
}
|
||||
|
||||
public Throwable getError() {
|
||||
return this.error;
|
||||
}
|
||||
|
||||
private SpringApplication builder(Class<?> type, StandardEnvironment environment) {
|
||||
SpringApplication application;
|
||||
if (!isFunctional(environment)) {
|
||||
application = new SpringApplication(type);
|
||||
}
|
||||
else {
|
||||
application = FunctionalSpringApplicationCreator.create(type);
|
||||
}
|
||||
application.setEnvironment(environment);
|
||||
application.setRegisterShutdownHook(false);
|
||||
return application;
|
||||
}
|
||||
|
||||
private static class FunctionalSpringApplicationCreator {
|
||||
|
||||
public static SpringApplication create(Class<?> type) {
|
||||
return new FunctionalSpringApplication(type);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
/*
|
||||
* Copyright 2019-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.lang.reflect.Field;
|
||||
import java.lang.reflect.Method;
|
||||
import java.lang.reflect.Type;
|
||||
import java.security.AccessController;
|
||||
import java.security.PrivilegedAction;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.beans.factory.BeanFactory;
|
||||
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
|
||||
import org.springframework.beans.factory.config.ConstructorArgumentValues;
|
||||
import org.springframework.beans.factory.support.AbstractBeanDefinition;
|
||||
import org.springframework.beans.factory.support.RootBeanDefinition;
|
||||
import org.springframework.core.ResolvableType;
|
||||
import org.springframework.core.io.Resource;
|
||||
import org.springframework.core.type.MethodMetadata;
|
||||
import org.springframework.util.ClassUtils;
|
||||
import org.springframework.util.ReflectionUtils;
|
||||
|
||||
/**
|
||||
* @author Oleg Zhurakousky
|
||||
* @since 3.0
|
||||
*/
|
||||
abstract class DeployerContextUtils {
|
||||
|
||||
public static Type findType(BeanFactory beanFactory, String name) {
|
||||
ConfigurableListableBeanFactory registry = (ConfigurableListableBeanFactory) beanFactory;
|
||||
AbstractBeanDefinition definition = (AbstractBeanDefinition) registry.getBeanDefinition(name);
|
||||
|
||||
Object source = definition.getSource();
|
||||
|
||||
Type param = null;
|
||||
if (source instanceof MethodMetadata) {
|
||||
param = findBeanType(definition, ((MethodMetadata) source).getDeclaringClassName(), ((MethodMetadata) source).getMethodName());
|
||||
}
|
||||
else if (source instanceof Resource) {
|
||||
param = registry.getType(name);
|
||||
}
|
||||
else {
|
||||
ResolvableType type = (ResolvableType) getField(definition, "targetType");
|
||||
if (type != null) {
|
||||
param = type.getType();
|
||||
}
|
||||
}
|
||||
return param;
|
||||
}
|
||||
|
||||
private static Type findBeanType(AbstractBeanDefinition definition, String declaringClassName, String methodName) {
|
||||
Class<?> factory = ClassUtils.resolveClassName(declaringClassName, null);
|
||||
Class<?>[] params = getParamTypes(factory, definition);
|
||||
Method method = ReflectionUtils.findMethod(factory, methodName,
|
||||
params);
|
||||
Type type = method.getGenericReturnType();
|
||||
return type;
|
||||
}
|
||||
|
||||
private static Class<?>[] getParamTypes(Class<?> factory,
|
||||
AbstractBeanDefinition definition) {
|
||||
if (definition instanceof RootBeanDefinition) {
|
||||
RootBeanDefinition root = (RootBeanDefinition) definition;
|
||||
for (Method method : getCandidateMethods(factory, root)) {
|
||||
if (root.isFactoryMethod(method)) {
|
||||
return method.getParameterTypes();
|
||||
}
|
||||
}
|
||||
}
|
||||
List<Class<?>> params = new ArrayList<>();
|
||||
for (ConstructorArgumentValues.ValueHolder holder : definition
|
||||
.getConstructorArgumentValues().getIndexedArgumentValues().values()) {
|
||||
params.add(ClassUtils.resolveClassName(holder.getType(), null));
|
||||
}
|
||||
return params.toArray(new Class<?>[0]);
|
||||
}
|
||||
|
||||
private static Method[] getCandidateMethods(final Class<?> factoryClass,
|
||||
final RootBeanDefinition mbd) {
|
||||
if (System.getSecurityManager() != null) {
|
||||
return AccessController.doPrivileged(new PrivilegedAction<Method[]>() {
|
||||
@Override
|
||||
public Method[] run() {
|
||||
return (mbd.isNonPublicAccessAllowed()
|
||||
? ReflectionUtils.getAllDeclaredMethods(factoryClass)
|
||||
: factoryClass.getMethods());
|
||||
}
|
||||
});
|
||||
}
|
||||
else {
|
||||
return (mbd.isNonPublicAccessAllowed()
|
||||
? ReflectionUtils.getAllDeclaredMethods(factoryClass)
|
||||
: factoryClass.getMethods());
|
||||
}
|
||||
}
|
||||
|
||||
private static Object getField(Object target, String name) {
|
||||
Field field = ReflectionUtils.findField(target.getClass(), name);
|
||||
if (field == null) {
|
||||
return null;
|
||||
}
|
||||
ReflectionUtils.makeAccessible(field);
|
||||
return ReflectionUtils.getField(field, target);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
import org.springframework.context.annotation.Import;
|
||||
|
||||
/**
|
||||
* Annotation to be used on a Spring Boot application if it wants to deploy a jar file
|
||||
* containing a function definition.
|
||||
* @author Dave Syer
|
||||
*
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
@Import(FunctionDeployerConfiguration.class)
|
||||
public @interface EnableFunctionDeployer {
|
||||
|
||||
}
|
||||
@@ -1,38 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
// @checkstyle:off
|
||||
|
||||
/**
|
||||
* @author Mark Fisher
|
||||
* @author Dave Syer
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableFunctionDeployer
|
||||
public class FunctionApplication {
|
||||
|
||||
public static void main(String[] args) throws IOException {
|
||||
new ApplicationBootstrap().run(FunctionApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
// @checkstyle:on
|
||||
@@ -0,0 +1,289 @@
|
||||
/*
|
||||
* Copyright 2019-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.lang.reflect.Type;
|
||||
import java.net.URL;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.loader.JarLauncher;
|
||||
import org.springframework.boot.loader.LaunchedURLClassLoader;
|
||||
import org.springframework.boot.loader.archive.Archive;
|
||||
import org.springframework.boot.loader.jar.JarFile;
|
||||
import org.springframework.cloud.function.context.FunctionRegistration;
|
||||
import org.springframework.cloud.function.context.FunctionRegistry;
|
||||
import org.springframework.cloud.function.context.catalog.FunctionTypeUtils;
|
||||
import org.springframework.expression.Expression;
|
||||
import org.springframework.expression.spel.standard.SpelExpressionParser;
|
||||
import org.springframework.expression.spel.support.StandardEvaluationContext;
|
||||
import org.springframework.expression.spel.support.StandardTypeLocator;
|
||||
import org.springframework.util.CollectionUtils;
|
||||
import org.springframework.util.ReflectionUtils;
|
||||
import org.springframework.util.ReflectionUtils.MethodCallback;
|
||||
import org.springframework.util.ReflectionUtils.MethodFilter;
|
||||
import org.springframework.util.StreamUtils;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Oleg Zhurakousky
|
||||
* @since 3.0
|
||||
*
|
||||
*/
|
||||
class FunctionArchiveDeployer extends JarLauncher {
|
||||
|
||||
private static Log logger = LogFactory.getLog(FunctionArchiveDeployer.class);
|
||||
|
||||
private final StandardEvaluationContext evalContext = new StandardEvaluationContext();
|
||||
|
||||
private LaunchedURLClassLoader archiveLoader;
|
||||
|
||||
FunctionArchiveDeployer(Archive archive) {
|
||||
super(archive);
|
||||
}
|
||||
|
||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||
void deploy(FunctionRegistry functionRegistry, FunctionProperties functionProperties, String[] args) {
|
||||
ClassLoader currentLoader = Thread.currentThread().getContextClassLoader();
|
||||
|
||||
try {
|
||||
Thread.currentThread().setContextClassLoader(createClassLoader(discoverClassPathAcrhives()));
|
||||
evalContext.setTypeLocator(new StandardTypeLocator(Thread.currentThread().getContextClassLoader()));
|
||||
|
||||
if (this.isBootApplicationWithMain()) {
|
||||
this.launchFunctionArchive(args);
|
||||
|
||||
Map<String, Object> functions = this.discoverBeanFunctions();
|
||||
if (logger.isInfoEnabled() && !CollectionUtils.isEmpty(functions)) {
|
||||
logger.info("Discovered functions in deployed application context: " + functions);
|
||||
}
|
||||
for (Entry<String, Object> entry : functions.entrySet()) {
|
||||
FunctionRegistration registration = new FunctionRegistration(entry.getValue(), entry.getKey());
|
||||
Type type = this.discoverFunctionType(entry.getKey());
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info("Registering function '" + entry.getKey() + "' of type '" + type
|
||||
+ "' in FunctionRegistry.");
|
||||
}
|
||||
registration.type(type);
|
||||
functionRegistry.register(registration);
|
||||
}
|
||||
}
|
||||
|
||||
String functionClassName = discoverFunctionClassName(functionProperties);
|
||||
if (!StringUtils.isEmpty(functionClassName)) {
|
||||
FunctionRegistration registration = this.discovereAndLoadFunctionFromClassName(functionClassName);
|
||||
if (registration != null) {
|
||||
functionRegistry.register(registration);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new IllegalStateException("Failed to deploy archive " + this.getArchive(), e);
|
||||
}
|
||||
finally {
|
||||
Thread.currentThread().setContextClassLoader(currentLoader);
|
||||
}
|
||||
}
|
||||
|
||||
void undeploy() {
|
||||
this.stopDeployedApplicationContext();
|
||||
try {
|
||||
this.archiveLoader.close();
|
||||
logger.info("Closed archive class loader");
|
||||
}
|
||||
catch (IOException e) {
|
||||
logger.error("Failed to closed archive class loader", e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ClassLoader createClassLoader(URL[] urls) throws Exception {
|
||||
String classAsPath = DeployerContextUtils.class.getName().replace('.', '/') + ".class";
|
||||
byte[] deployerContextUtilsBytes = StreamUtils
|
||||
.copyToByteArray(DeployerContextUtils.class.getClassLoader().getResourceAsStream(classAsPath));
|
||||
/*
|
||||
* While LaunchedURLClassLoader is completely disconnected with the current
|
||||
* class loader, this will ensure that certain classes (e.g., org.reactivestreams.* see #shouldLoadViaDeployerLoader() )
|
||||
* are shared across two class loaders.
|
||||
*/
|
||||
this.archiveLoader = new LaunchedURLClassLoader(urls, null) {
|
||||
@Override
|
||||
public Class<?> loadClass(String name) throws ClassNotFoundException {
|
||||
Class<?> clazz = null;
|
||||
if (shouldLoadViaDeployerLoader(name)) {
|
||||
try {
|
||||
clazz = getClass().getClassLoader().loadClass(name);
|
||||
}
|
||||
catch (Exception e) {
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug("Class '" + name + "' is not available in the current class loader. Loading it from the deployed archive.");
|
||||
}
|
||||
clazz = super.loadClass(name, false);
|
||||
}
|
||||
}
|
||||
else if (name.equals(DeployerContextUtils.class.getName())) {
|
||||
/*
|
||||
* This will ensure that `DeployerContextUtils` is available to
|
||||
* foreign class loader for cases where foreign JAR does not
|
||||
* have SCF dependencies.
|
||||
*/
|
||||
try {
|
||||
clazz = super.loadClass(name, false);
|
||||
}
|
||||
catch (Exception e) {
|
||||
clazz = defineClass(name, deployerContextUtilsBytes, 0, deployerContextUtilsBytes.length);
|
||||
}
|
||||
}
|
||||
else {
|
||||
clazz = super.loadClass(name, false);
|
||||
}
|
||||
return clazz;
|
||||
}
|
||||
};
|
||||
return this.archiveLoader;
|
||||
}
|
||||
|
||||
private boolean shouldLoadViaDeployerLoader(String name) {
|
||||
return name.startsWith("org.reactivestreams")
|
||||
|| name.startsWith("reactor.")
|
||||
|| name.startsWith("java")
|
||||
|| name.startsWith("com.sun");
|
||||
}
|
||||
|
||||
private String discoverFunctionClassName(FunctionProperties functionProperties) {
|
||||
try {
|
||||
return StringUtils.hasText(functionProperties.getFunctionClass())
|
||||
? functionProperties.getFunctionClass()
|
||||
: this.getArchive().getManifest().getMainAttributes().getValue("Function-Class");
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new IllegalStateException("Failed to discover function class name", e);
|
||||
}
|
||||
}
|
||||
|
||||
private boolean isBootApplicationWithMain() {
|
||||
try {
|
||||
return StringUtils.hasText(this.getArchive().getManifest().getMainAttributes().getValue("Start-Class"));
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
}
|
||||
|
||||
private List<Archive> discoverClassPathAcrhives() throws Exception {
|
||||
List<Archive> classPathArchives = getClassPathArchives();
|
||||
if (CollectionUtils.isEmpty(classPathArchives)) {
|
||||
classPathArchives.add(this.getArchive());
|
||||
}
|
||||
return classPathArchives;
|
||||
}
|
||||
|
||||
private FunctionRegistration<?> discovereAndLoadFunctionFromClassName(String functionClassName) throws Exception {
|
||||
FunctionRegistration<?> functionRegistration = null;
|
||||
AtomicReference<Type> typeRef = new AtomicReference<>();
|
||||
Class<?> functionClass = Thread.currentThread().getContextClassLoader().loadClass(functionClassName);
|
||||
|
||||
ReflectionUtils.doWithMethods(functionClass, new MethodCallback() {
|
||||
@Override
|
||||
public void doWith(Method method) throws IllegalArgumentException, IllegalAccessException {
|
||||
typeRef.set(FunctionTypeUtils.getFunctionTypeFromFunctionMethod(method));
|
||||
}
|
||||
}, new MethodFilter() {
|
||||
@Override
|
||||
public boolean matches(Method method) {
|
||||
String name = method.getName();
|
||||
return typeRef.get() == null && !method.isBridge()
|
||||
&& ("apply".equals(name) || "accept".equals(name) || "get".equals(name));
|
||||
}
|
||||
});
|
||||
|
||||
if (typeRef.get() != null) {
|
||||
Object functionInstance = functionClass.newInstance();
|
||||
String functionName = StringUtils.uncapitalize(functionClass.getSimpleName());
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info("Registering function class '" + functionClass + "' of type '" + typeRef.get()
|
||||
+ "' under name '" + functionName + "'.");
|
||||
}
|
||||
functionRegistration = new FunctionRegistration<>(functionInstance, functionName);
|
||||
functionRegistration.type(typeRef.get());
|
||||
}
|
||||
return functionRegistration;
|
||||
}
|
||||
|
||||
private void launchFunctionArchive(String[] args) throws Exception {
|
||||
JarFile.registerUrlProtocolHandler();
|
||||
|
||||
String mainClassName = getMainClass();
|
||||
Class<?> mainClass = Thread.currentThread().getContextClassLoader().loadClass(mainClassName);
|
||||
|
||||
Class<?> bootAppClass = Thread.currentThread().getContextClassLoader()
|
||||
.loadClass(SpringApplication.class.getName());
|
||||
Method runMethod = bootAppClass.getDeclaredMethod("run", Class.class, String[].class);
|
||||
Object applicationContext = runMethod.invoke(null, mainClass, (Object) args);
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info("Application context for archive '" + this.getArchive().getUrl() + "' is created.");
|
||||
}
|
||||
evalContext.setVariable("context", applicationContext);
|
||||
setBeanFactory(applicationContext);
|
||||
}
|
||||
|
||||
private void setBeanFactory(Object applicationContext) {
|
||||
Expression parsed = new SpelExpressionParser().parseExpression("#context.getBeanFactory()");
|
||||
Object beanFactory = parsed.getValue(this.evalContext);
|
||||
evalContext.setVariable("bf", beanFactory);
|
||||
}
|
||||
|
||||
private Type discoverFunctionType(String name) {
|
||||
evalContext.setVariable("functionName", name);
|
||||
String expr = "T(" + DeployerContextUtils.class.getName() + ").findType(#bf, #functionName)";
|
||||
Expression parsed = new SpelExpressionParser().parseExpression(expr);
|
||||
Object type = parsed.getValue(this.evalContext);
|
||||
return (Type) type;
|
||||
}
|
||||
|
||||
private void stopDeployedApplicationContext() {
|
||||
if (evalContext.lookupVariable("context") != null) { // no start-class uber jars
|
||||
Expression parsed = new SpelExpressionParser().parseExpression("#context.stop()");
|
||||
parsed.getValue(this.evalContext);
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
private Map<String, Object> discoverBeanFunctions() {
|
||||
Map<String, Object> allFunctions = new HashMap<String, Object>();
|
||||
if (evalContext.lookupVariable("context") != null) { // no start-class uber jars
|
||||
Expression parsed = new SpelExpressionParser()
|
||||
.parseExpression("#context.getBeansOfType(T(java.util.function.Function))");
|
||||
allFunctions.putAll((Map<String, Object>) parsed.getValue(this.evalContext));
|
||||
parsed = new SpelExpressionParser().parseExpression("#context.getBeansOfType(T(java.util.function.Supplier))");
|
||||
allFunctions.putAll((Map<String, Object>) parsed.getValue(this.evalContext));
|
||||
parsed = new SpelExpressionParser().parseExpression("#context.getBeansOfType(T(java.util.function.Consumer))");
|
||||
allFunctions.putAll((Map<String, Object>) parsed.getValue(this.evalContext));
|
||||
}
|
||||
return allFunctions;
|
||||
}
|
||||
}
|
||||
@@ -1,658 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.UncheckedIOException;
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.net.URLClassLoader;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
import java.util.StringTokenizer;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
import java.util.function.Consumer;
|
||||
import java.util.function.Function;
|
||||
import java.util.function.Supplier;
|
||||
import java.util.jar.JarFile;
|
||||
import java.util.jar.Manifest;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
||||
import javax.annotation.PreDestroy;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import org.springframework.beans.BeansException;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
|
||||
import org.springframework.beans.factory.config.BeanPostProcessor;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.loader.JarLauncher;
|
||||
import org.springframework.boot.loader.archive.Archive;
|
||||
import org.springframework.boot.loader.archive.ExplodedArchive;
|
||||
import org.springframework.boot.loader.archive.JarFileArchive;
|
||||
import org.springframework.boot.system.JavaVersion;
|
||||
import org.springframework.cloud.deployer.resource.support.DelegatingResourceLoader;
|
||||
import org.springframework.cloud.function.context.FunctionCatalog;
|
||||
import org.springframework.cloud.function.context.FunctionRegistration;
|
||||
import org.springframework.cloud.function.context.FunctionRegistry;
|
||||
import org.springframework.cloud.function.context.FunctionType;
|
||||
import org.springframework.cloud.function.context.catalog.FunctionInspector;
|
||||
import org.springframework.cloud.function.core.FluxFunction;
|
||||
import org.springframework.context.ConfigurableApplicationContext;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.core.env.Environment;
|
||||
import org.springframework.util.ClassUtils;
|
||||
import org.springframework.util.ObjectUtils;
|
||||
import org.springframework.util.ResourceUtils;
|
||||
import org.springframework.util.StreamUtils;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
*
|
||||
* Registers beans that will be picked up by spring-cloud-function-context magic. Sets up
|
||||
* infrastructure capable of instantiating a "functional" bean (whether Supplier, Function
|
||||
* or Consumer) loaded dynamically according to {@link FunctionProperties}.
|
||||
*
|
||||
* <p>
|
||||
* Resolves jar location provided by the user using a flexible ResourceLoader.
|
||||
* </p>
|
||||
*
|
||||
* @author Eric Bottard
|
||||
* @author Mark Fisher
|
||||
* @author Dave Syer
|
||||
* @author Oleg Zhurakousky
|
||||
*/
|
||||
@Configuration
|
||||
class FunctionCreatorConfiguration {
|
||||
|
||||
private static Log logger = LogFactory.getLog(FunctionCreatorConfiguration.class);
|
||||
|
||||
@Autowired
|
||||
private FunctionRegistry registry;
|
||||
|
||||
@Autowired
|
||||
private FunctionProperties properties;
|
||||
|
||||
@Autowired
|
||||
private DelegatingResourceLoader delegatingResourceLoader;
|
||||
|
||||
@Autowired
|
||||
private ConfigurableApplicationContext context;
|
||||
|
||||
private BeanCreatorClassLoader functionClassLoader;
|
||||
|
||||
private BeanCreator creator;
|
||||
|
||||
/**
|
||||
* Registers a function for each of the function classes passed into the
|
||||
* {@link FunctionProperties}. They are named sequentially "function0", "function1",
|
||||
* etc. The instances are created in an isolated class loader, so the jar they are
|
||||
* packed in has to define all the dependencies (except core JDK).
|
||||
*/
|
||||
@PostConstruct
|
||||
public void init() {
|
||||
URL[] urls = Arrays.stream(this.properties.getLocation())
|
||||
.flatMap(toResourceURL(this.delegatingResourceLoader))
|
||||
.toArray(URL[]::new);
|
||||
URL[] roots = Arrays.stream(this.properties.getLocation()).map(this::toUrl)
|
||||
.toArray(URL[]::new);
|
||||
|
||||
try {
|
||||
logger.info("Locating function from "
|
||||
+ Arrays.asList(this.properties.getLocation()));
|
||||
this.creator = new BeanCreator(roots, urls);
|
||||
this.creator.run(this.properties.getMain());
|
||||
Arrays.stream(functionNames()).map(this.creator::create).sequential()
|
||||
.forEach(this.creator::register);
|
||||
if (this.properties.getName().contains("|")) {
|
||||
// A composite function has to be explicitly registered before it is
|
||||
// looked up because we are using the SingleEntryFunctionRegistry
|
||||
// Object o = this.registry.lookup(Consumer.class, this.properties.getName());
|
||||
// o = this.registry.lookup(Function.class, this.properties.getName());
|
||||
// o = this.registry.lookup(Supplier.class, this.properties.getName());
|
||||
// System.out.println();
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new IllegalStateException("Cannot create functions", e);
|
||||
}
|
||||
}
|
||||
|
||||
private URL toUrl(String url) {
|
||||
if (url.equals("app:classpath")) {
|
||||
return urls()[0];
|
||||
}
|
||||
try {
|
||||
return new URL(url);
|
||||
}
|
||||
catch (MalformedURLException e) {
|
||||
throw new UncheckedIOException(e);
|
||||
}
|
||||
}
|
||||
|
||||
private String[] functionNames() {
|
||||
if (this.properties.getBean() != null && this.properties.getBean().length > 0) {
|
||||
return this.properties.getBean();
|
||||
}
|
||||
return this.creator.getFunctionNames();
|
||||
}
|
||||
|
||||
@PreDestroy
|
||||
public void close() {
|
||||
if (this.creator != null) {
|
||||
this.creator.close();
|
||||
}
|
||||
if (this.functionClassLoader != null) {
|
||||
try {
|
||||
this.functionClassLoader.close();
|
||||
this.functionClassLoader = null;
|
||||
Runtime.getRuntime().gc();
|
||||
}
|
||||
catch (IOException e) {
|
||||
throw new IllegalStateException("Cannot close function class loader", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private Function<String, Stream<URL>> toResourceURL(
|
||||
DelegatingResourceLoader resourceLoader) {
|
||||
return l -> {
|
||||
if (l.equals("app:classpath")) {
|
||||
return Stream.of(urls());
|
||||
}
|
||||
try {
|
||||
return Stream.of(resourceLoader.getResource(l).getFile().toURI().toURL());
|
||||
}
|
||||
catch (IOException e) {
|
||||
throw new UncheckedIOException(e);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
private URL[] urls() {
|
||||
if (getClass().getClassLoader() instanceof URLClassLoader) {
|
||||
return ((URLClassLoader) getClass().getClassLoader()).getURLs();
|
||||
}
|
||||
// Want to load these the test types in a disposable classloader:
|
||||
List<URL> urls = new ArrayList<>();
|
||||
String jcp = System.getProperty("java.class.path");
|
||||
StringTokenizer jcpEntries = new StringTokenizer(jcp, File.pathSeparator);
|
||||
while (jcpEntries.hasMoreTokens()) {
|
||||
String pathEntry = jcpEntries.nextToken();
|
||||
try {
|
||||
urls.add(new File(pathEntry).toURI().toURL());
|
||||
}
|
||||
catch (MalformedURLException e) {
|
||||
}
|
||||
}
|
||||
return urls.toArray(new URL[urls.size()]);
|
||||
}
|
||||
|
||||
private static final class BeanCreatorClassLoader extends URLClassLoader {
|
||||
|
||||
private BeanCreatorClassLoader(URL[] urls, ClassLoader parent) {
|
||||
super(urls, parent);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Class<?> loadClass(String name, boolean resolve)
|
||||
throws ClassNotFoundException {
|
||||
try {
|
||||
if (name.startsWith("javax.") && JavaVersion.getJavaVersion()
|
||||
.isEqualOrNewerThan(JavaVersion.NINE)) {
|
||||
return getClass().getClassLoader().loadClass(name);
|
||||
}
|
||||
return super.loadClass(name, resolve);
|
||||
}
|
||||
catch (ClassNotFoundException e) {
|
||||
if (name.contains(ContextRunner.class.getName())
|
||||
|| name.contains(PostConstruct.class.getName())) {
|
||||
// Special case for the ContextRunner. We can re-use the bytes for it,
|
||||
// and the function jar doesn't have to include them since it is only
|
||||
// used here.
|
||||
byte[] bytes;
|
||||
try {
|
||||
bytes = StreamUtils.copyToByteArray(
|
||||
getClass().getClassLoader().getResourceAsStream(
|
||||
ClassUtils.convertClassNameToResourcePath(name)
|
||||
+ ".class"));
|
||||
return defineClass(name, bytes, 0, bytes.length);
|
||||
}
|
||||
catch (IOException ex) {
|
||||
throw new ClassNotFoundException(
|
||||
"Cannot find runner class: " + name, ex);
|
||||
}
|
||||
}
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Configuration
|
||||
protected static class SingleEntryConfiguration implements BeanPostProcessor {
|
||||
|
||||
@Autowired
|
||||
private Environment env;
|
||||
|
||||
@Override
|
||||
public Object postProcessBeforeInitialization(Object bean, String beanName)
|
||||
throws BeansException {
|
||||
return bean;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object postProcessAfterInitialization(Object bean, String beanName)
|
||||
throws BeansException {
|
||||
if (bean instanceof FunctionRegistry) {
|
||||
String name = FunctionProperties
|
||||
.functionName(this.env.getProperty("function.bean", ""));
|
||||
if (name.contains("|")) {
|
||||
// A single composite function with an empty name
|
||||
bean = new SingleEntryFunctionRegistry((FunctionRegistry) bean, name);
|
||||
}
|
||||
}
|
||||
return bean;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private class ComputeLauncher extends JarLauncher {
|
||||
|
||||
ComputeLauncher(Archive archive) {
|
||||
super(archive);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMainClass() throws Exception {
|
||||
Manifest manifest = getArchive().getManifest();
|
||||
String mainClass = null;
|
||||
if (manifest != null) {
|
||||
String functionClass = manifest.getMainAttributes()
|
||||
.getValue("Function-Class");
|
||||
if (StringUtils.hasText(functionClass) && ObjectUtils.isEmpty(
|
||||
FunctionCreatorConfiguration.this.properties.getBean())) {
|
||||
FunctionCreatorConfiguration.this.properties
|
||||
.setBean(new String[] { functionClass });
|
||||
}
|
||||
mainClass = manifest.getMainAttributes().getValue("Start-Class");
|
||||
if (mainClass == null
|
||||
// Not surefire or IntelliJ
|
||||
&& !getArchive().getUrl().toString().endsWith(".jar!/")) {
|
||||
// Not a Spring Boot jar but it might have a "main" class
|
||||
mainClass = manifest.getMainAttributes().getValue("Main-Class");
|
||||
}
|
||||
}
|
||||
return mainClass;
|
||||
}
|
||||
|
||||
public URL[] getClassLoaderUrls() throws Exception {
|
||||
List<Archive> archives = getClassPathArchives();
|
||||
if (archives.isEmpty()) {
|
||||
URL url = getArchive().getUrl();
|
||||
if (url.toString().contains(".jar")) { // Surefire or IntelliJ?
|
||||
URL[] classpath = extractClasspath(url.toString());
|
||||
if (classpath != null) {
|
||||
return classpath;
|
||||
}
|
||||
}
|
||||
return new URL[] { getArchive().getUrl() };
|
||||
}
|
||||
return archives.stream().map(archive -> {
|
||||
try {
|
||||
return archive.getUrl();
|
||||
}
|
||||
catch (MalformedURLException e) {
|
||||
throw new IllegalStateException("Bad URL: " + archive, e);
|
||||
}
|
||||
}).toArray(URL[]::new);
|
||||
}
|
||||
|
||||
private URL[] extractClasspath(String url) {
|
||||
// This works for a jar indirection like in surefire and IntelliJ
|
||||
if (url.endsWith(".jar!/")) {
|
||||
url = url.substring(0, url.length() - "!/".length());
|
||||
if (url.startsWith("jar:")) {
|
||||
url = url.substring("jar:".length());
|
||||
}
|
||||
if (url.startsWith("file:")) {
|
||||
url = url.substring("file:".length());
|
||||
}
|
||||
}
|
||||
if (url.endsWith(".jar")) {
|
||||
JarFile jar;
|
||||
try {
|
||||
jar = new JarFile(new File(url));
|
||||
String path = jar.getManifest().getMainAttributes()
|
||||
.getValue("Class-Path");
|
||||
if (path != null) {
|
||||
List<URL> result = new ArrayList<>();
|
||||
for (String element : path.split(" ")) {
|
||||
result.add(new URL(element));
|
||||
}
|
||||
return result.toArray(new URL[0]);
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Encapsulates the bean and spring application context creation concerns for
|
||||
* functions. Creates a single application context if <code>run()</code> is called
|
||||
* with a non-null main class, and then uses it to lookup a function (by name and then
|
||||
* by type).
|
||||
*/
|
||||
private class BeanCreator {
|
||||
|
||||
private AtomicInteger counter = new AtomicInteger(0);
|
||||
|
||||
private ApplicationRunner runner;
|
||||
|
||||
private String defaultMain;
|
||||
|
||||
BeanCreator(URL[] roots, URL[] urls) {
|
||||
FunctionCreatorConfiguration.this.functionClassLoader = new BeanCreatorClassLoader(
|
||||
expand(urls), getParent());
|
||||
this.defaultMain = findMain(roots);
|
||||
}
|
||||
|
||||
private ClassLoader getParent() {
|
||||
ClassLoader loader = getClass().getClassLoader();
|
||||
loader = loader.getParent();
|
||||
ClassLoader parent = loader;
|
||||
while (loader.getParent() != null) {
|
||||
// If launched from a fat jar with spring.factories skip this parent level
|
||||
// (which was added by the JarLauncher).
|
||||
if (loader.getResource("META-INF/spring.factories") != null) {
|
||||
parent = loader.getParent();
|
||||
}
|
||||
loader = loader.getParent();
|
||||
}
|
||||
return parent;
|
||||
}
|
||||
|
||||
private String findMain(URL[] urls) {
|
||||
for (URL url : urls) {
|
||||
try {
|
||||
File file = ResourceUtils.getFile(url);
|
||||
if (file.exists()) {
|
||||
Archive archive = file.getName().endsWith(".jar")
|
||||
? new JarFileArchive(file) : new ExplodedArchive(file);
|
||||
String main = new ComputeLauncher(archive).getMainClass();
|
||||
if (main != null) {
|
||||
return main;
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private URL[] expand(URL[] urls) {
|
||||
List<URL> result = new ArrayList<>();
|
||||
for (URL url : urls) {
|
||||
result.addAll(expand(url));
|
||||
}
|
||||
return result.toArray(new URL[0]);
|
||||
}
|
||||
|
||||
private List<URL> expand(URL url) {
|
||||
if (!"file".equals(url.getProtocol())) {
|
||||
return Collections.singletonList(url);
|
||||
}
|
||||
try {
|
||||
File file = new File(url.toURI());
|
||||
if (file.exists()) {
|
||||
Archive archive;
|
||||
if (!url.toString().endsWith(".jar")) {
|
||||
if (!new File(file, "BOOT-INF").exists()) {
|
||||
return Collections.singletonList(url);
|
||||
}
|
||||
archive = new ExplodedArchive(file);
|
||||
}
|
||||
else {
|
||||
archive = new JarFileArchive(file);
|
||||
}
|
||||
return Arrays
|
||||
.asList(new ComputeLauncher(archive).getClassLoaderUrls());
|
||||
}
|
||||
return Collections.singletonList(url);
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new IllegalStateException("Cannot create class loader for " + url,
|
||||
e);
|
||||
}
|
||||
}
|
||||
|
||||
public void run(String main) {
|
||||
if (main == null) {
|
||||
main = this.defaultMain;
|
||||
}
|
||||
if (main == null) {
|
||||
return;
|
||||
}
|
||||
if (ClassUtils.isPresent(SpringApplication.class.getName(),
|
||||
FunctionCreatorConfiguration.this.functionClassLoader)) {
|
||||
logger.info("SpringApplication available. Bootstrapping: " + main);
|
||||
ClassLoader contextClassLoader = ClassUtils
|
||||
.overrideThreadContextClassLoader(
|
||||
FunctionCreatorConfiguration.this.functionClassLoader);
|
||||
try {
|
||||
ApplicationRunner runner = new ApplicationRunner(
|
||||
FunctionCreatorConfiguration.this.functionClassLoader, main);
|
||||
// TODO: make the runtime properties configurable
|
||||
runner.run("--spring.main.webEnvironment=false",
|
||||
"--spring.cloud.stream.enabled=false",
|
||||
"--spring.main.bannerMode=OFF",
|
||||
"--spring.main.webApplicationType=none",
|
||||
"--function.deployer.enabled=false");
|
||||
this.runner = runner;
|
||||
}
|
||||
finally {
|
||||
ClassUtils.overrideThreadContextClassLoader(contextClassLoader);
|
||||
}
|
||||
}
|
||||
else {
|
||||
throw new IllegalStateException(
|
||||
"SpringApplication not available and main class requested: "
|
||||
+ main);
|
||||
}
|
||||
}
|
||||
|
||||
public String[] getFunctionNames() {
|
||||
Set<String> list = new LinkedHashSet<>();
|
||||
ClassLoader contextClassLoader = ClassUtils.overrideThreadContextClassLoader(
|
||||
FunctionCreatorConfiguration.this.functionClassLoader);
|
||||
try {
|
||||
if (this.runner.containsBean(FunctionCatalog.class.getName())) {
|
||||
Object catalog = this.runner.getBean(FunctionCatalog.class.getName());
|
||||
@SuppressWarnings("unchecked")
|
||||
Set<String> functions = (Set<String>) this.runner
|
||||
.evaluate("getNames(#type)", catalog, "type", Function.class);
|
||||
list.addAll(functions);
|
||||
@SuppressWarnings("unchecked")
|
||||
Set<String> consumers = (Set<String>) this.runner
|
||||
.evaluate("getNames(#type)", catalog, "type", Consumer.class);
|
||||
list.addAll(consumers);
|
||||
@SuppressWarnings("unchecked")
|
||||
Set<String> suppliers = (Set<String>) this.runner
|
||||
.evaluate("getNames(#type)", catalog, "type", Supplier.class);
|
||||
list.addAll(suppliers);
|
||||
}
|
||||
if (list.isEmpty()) {
|
||||
list.addAll(this.runner.getBeanNames(Function.class.getName()));
|
||||
list.addAll(this.runner.getBeanNames(Consumer.class.getName()));
|
||||
list.addAll(this.runner.getBeanNames(Supplier.class.getName()));
|
||||
}
|
||||
return list.toArray(new String[0]);
|
||||
}
|
||||
finally {
|
||||
ClassUtils.overrideThreadContextClassLoader(contextClassLoader);
|
||||
}
|
||||
}
|
||||
|
||||
public Object create(String type) {
|
||||
ClassLoader contextClassLoader = ClassUtils.overrideThreadContextClassLoader(
|
||||
FunctionCreatorConfiguration.this.functionClassLoader);
|
||||
AutowireCapableBeanFactory factory = FunctionCreatorConfiguration.this.context
|
||||
.getAutowireCapableBeanFactory();
|
||||
try {
|
||||
Object result = null;
|
||||
if (this.runner != null) {
|
||||
result = this.runner.getBean(type);
|
||||
if (result == null) {
|
||||
if (this.runner.containsBean(FunctionCatalog.class.getName())) {
|
||||
Object catalog = this.runner
|
||||
.getBean(FunctionCatalog.class.getName());
|
||||
result = this.runner.evaluate("lookup(#function).getTarget()",
|
||||
catalog, "function", type);
|
||||
if (result != null) {
|
||||
logger.info("Located registration: " + type + " of type "
|
||||
+ result.getClass());
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
logger.info("Located bean: " + type + " of type "
|
||||
+ result.getClass());
|
||||
if (result.getClass().getName()
|
||||
.equals(FunctionRegistration.class.getName())) {
|
||||
result = this.runner.evaluate("getTarget()", result);
|
||||
}
|
||||
}
|
||||
if (result != null) {
|
||||
if (result.getClass().getName()
|
||||
.equals(FluxFunction.class.getName())) {
|
||||
result = this.runner.evaluate("getTarget()", result);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (result == null) {
|
||||
logger.info("No bean found. Instantiating: " + type);
|
||||
if (ClassUtils.isPresent(type,
|
||||
FunctionCreatorConfiguration.this.functionClassLoader)) {
|
||||
result = factory.createBean(ClassUtils.resolveClassName(type,
|
||||
FunctionCreatorConfiguration.this.functionClassLoader));
|
||||
}
|
||||
}
|
||||
if (result != null) {
|
||||
return result;
|
||||
}
|
||||
throw new IllegalStateException("Cannot create bean for: " + type);
|
||||
}
|
||||
finally {
|
||||
ClassUtils.overrideThreadContextClassLoader(contextClassLoader);
|
||||
}
|
||||
}
|
||||
|
||||
private FunctionType createFunctionType(Object functionCatalog) {
|
||||
FunctionType functionType = null;
|
||||
try {
|
||||
@SuppressWarnings("unchecked")
|
||||
String name = ((Set<String>) this.runner.evaluate("getNames(#type)", functionCatalog, "type", null))
|
||||
.stream().findFirst().orElse(null);
|
||||
if (name != null) {
|
||||
Object ft = this.runner.evaluate("getFunctionType(#name)", functionCatalog, "name", name);
|
||||
Constructor<FunctionType> ftConstructor = FunctionType.class.getDeclaredConstructor(Object.class);
|
||||
ftConstructor.setAccessible(true);
|
||||
functionType = ftConstructor.newInstance(ft);
|
||||
}
|
||||
}
|
||||
catch (Exception e) {
|
||||
throw new IllegalStateException("Failed to extract and map FunctionType", e);
|
||||
|
||||
}
|
||||
return functionType;
|
||||
}
|
||||
|
||||
public void register(Object bean) {
|
||||
if (bean == null) {
|
||||
return;
|
||||
}
|
||||
FunctionRegistration<Object> registration = new FunctionRegistration<Object>(
|
||||
bean,
|
||||
FunctionProperties.functionName(this.counter.getAndIncrement()));
|
||||
if (this.runner != null) {
|
||||
if (this.runner.containsBean(FunctionInspector.class.getName())) {
|
||||
Object functionCatalog = this.runner
|
||||
.getBean(FunctionInspector.class.getName());
|
||||
|
||||
FunctionType type = this.createFunctionType(functionCatalog);
|
||||
if (type == null) {
|
||||
Class<?> input = (Class<?>) this.runner.evaluate(
|
||||
"getInputType(#function)", functionCatalog, "function", bean);
|
||||
type = FunctionType.from(input);
|
||||
Class<?> output = findType("getOutputType", functionCatalog, bean);
|
||||
type = type.to(output);
|
||||
if (((Boolean) this.runner.evaluate("isMessage(#function)", functionCatalog,
|
||||
"function", bean))) {
|
||||
type = type.message();
|
||||
}
|
||||
Class<?> inputWrapper = findType("getInputWrapper", functionCatalog, bean);
|
||||
if (FunctionType.isWrapper(inputWrapper)) {
|
||||
type = type.wrap(inputWrapper);
|
||||
}
|
||||
Class<?> outputWrapper = findType("getOutputWrapper", functionCatalog,
|
||||
bean);
|
||||
if (FunctionType.isWrapper(outputWrapper)) {
|
||||
type = type.wrap(outputWrapper);
|
||||
}
|
||||
}
|
||||
registration.type(this.createFunctionType(functionCatalog));
|
||||
}
|
||||
}
|
||||
else {
|
||||
registration.type(FunctionType.of(bean.getClass()).getType());
|
||||
}
|
||||
registration.target(bean);
|
||||
if (registration.getType() == null) {
|
||||
registration.type(FunctionType.of(bean.getClass()).getType());
|
||||
}
|
||||
FunctionCreatorConfiguration.this.registry.register(registration);
|
||||
}
|
||||
|
||||
private Class<?> findType(String method, Object inspector, Object bean) {
|
||||
return (Class<?>) this.runner.evaluate(method + "(#function)", inspector,
|
||||
"function", bean);
|
||||
}
|
||||
|
||||
public void close() {
|
||||
if (this.runner != null) {
|
||||
this.runner.close();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
* Copyright 2017-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -16,51 +16,80 @@
|
||||
|
||||
package org.springframework.cloud.function.deployer;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
|
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
import org.springframework.boot.ApplicationArguments;
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||
import org.springframework.cloud.deployer.resource.maven.MavenProperties;
|
||||
import org.springframework.cloud.deployer.resource.maven.MavenResource;
|
||||
import org.springframework.cloud.deployer.resource.maven.MavenResourceLoader;
|
||||
import org.springframework.cloud.deployer.resource.support.DelegatingResourceLoader;
|
||||
import org.springframework.boot.loader.archive.Archive;
|
||||
import org.springframework.boot.loader.archive.JarFileArchive;
|
||||
import org.springframework.cloud.function.context.FunctionRegistry;
|
||||
import org.springframework.context.SmartLifecycle;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.context.annotation.Import;
|
||||
import org.springframework.core.io.ResourceLoader;
|
||||
|
||||
/**
|
||||
* @author Dave Syer
|
||||
*
|
||||
* @author Oleg Zhurakousky
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
*/
|
||||
@Configuration
|
||||
@ConditionalOnProperty(prefix = "function.deployer", name = "enabled", matchIfMissing = true)
|
||||
@EnableConfigurationProperties
|
||||
@Import(FunctionCreatorConfiguration.class)
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
@EnableConfigurationProperties(FunctionProperties.class)
|
||||
public class FunctionDeployerConfiguration {
|
||||
|
||||
@Bean
|
||||
@ConfigurationProperties("maven")
|
||||
public MavenProperties mavenProperties() {
|
||||
return new MavenProperties();
|
||||
}
|
||||
private static Log logger = LogFactory.getLog(FunctionDeployerConfiguration.class);
|
||||
|
||||
@Bean
|
||||
@ConfigurationProperties("function")
|
||||
public FunctionProperties functionProperties() {
|
||||
return new FunctionProperties();
|
||||
}
|
||||
SmartLifecycle functionArchiveDeployer(FunctionProperties functionProperties,
|
||||
FunctionRegistry functionRegistry, ApplicationArguments arguments) {
|
||||
|
||||
@Bean
|
||||
@ConditionalOnMissingBean(DelegatingResourceLoader.class)
|
||||
public DelegatingResourceLoader delegatingResourceLoader(
|
||||
MavenProperties mavenProperties) {
|
||||
Map<String, ResourceLoader> loaders = new HashMap<>();
|
||||
loaders.put(MavenResource.URI_SCHEME, new MavenResourceLoader(mavenProperties));
|
||||
return new DelegatingResourceLoader(loaders);
|
||||
Archive archive = null;
|
||||
try {
|
||||
archive = new JarFileArchive(new File(functionProperties.getLocation()));
|
||||
}
|
||||
catch (IOException e) {
|
||||
throw new IllegalStateException("Failed to create archive: " + functionProperties.getLocation(), e);
|
||||
}
|
||||
FunctionArchiveDeployer deployer = new FunctionArchiveDeployer(archive);
|
||||
|
||||
return new SmartLifecycle() {
|
||||
|
||||
private boolean running;
|
||||
|
||||
@Override
|
||||
public void stop() {
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info("Undeploying archive: " + functionProperties.getLocation());
|
||||
}
|
||||
deployer.undeploy();
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info("Successfully undeployed archive: " + functionProperties.getLocation());
|
||||
}
|
||||
this.running = false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void start() {
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info("Deploying archive: " + functionProperties.getLocation());
|
||||
}
|
||||
deployer.deploy(functionRegistry, functionProperties, arguments.getSourceArgs());
|
||||
this.running = true;
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info("Successfully deployed archive: " + functionProperties.getLocation());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isRunning() {
|
||||
return this.running;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
* Copyright 2017-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -16,11 +16,10 @@
|
||||
|
||||
package org.springframework.cloud.function.deployer;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||
import org.springframework.util.Assert;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
@@ -28,73 +27,52 @@ import org.springframework.util.StringUtils;
|
||||
*
|
||||
* @author Eric Bottard
|
||||
*/
|
||||
@ConfigurationProperties("spring.cloud.function")
|
||||
public class FunctionProperties {
|
||||
|
||||
/**
|
||||
* Location(s) of jar archives containing the supplier/function/consumer class to run.
|
||||
* Location of jar archive containing the supplier/function/consumer class or bean to run.
|
||||
*/
|
||||
private String[] location = new String[0];
|
||||
private String location;
|
||||
|
||||
/**
|
||||
* The bean name or fully qualified class name of the supplier/function/consumer to
|
||||
* run.
|
||||
* The name of the function to be looked up from the FunctionCatalog (e.g., bean name).
|
||||
*/
|
||||
private String[] bean = new String[0];
|
||||
private String functionName;
|
||||
|
||||
/**
|
||||
* Optional main class from which to build a Spring application context.
|
||||
* The name of the function class tyo be instantiated and loaded into FunctionCatalog. The name of the
|
||||
* function will be decapitalized simple name of this class.
|
||||
*/
|
||||
private String main;
|
||||
private String functionClass;
|
||||
|
||||
public static String functionName(String name) {
|
||||
if (!name.contains(",")) {
|
||||
return "function0";
|
||||
}
|
||||
List<String> names = new ArrayList<>();
|
||||
for (int i = 0; i <= StringUtils.countOccurrencesOf(name, ","); i++) {
|
||||
names.add("function" + i);
|
||||
}
|
||||
return StringUtils.collectionToDelimitedString(names, "|");
|
||||
public void setFunctionClass(String functionClass) {
|
||||
this.functionClass = functionClass;
|
||||
}
|
||||
|
||||
public static String functionName(int value) {
|
||||
return "function" + value;
|
||||
public String getFunctionClass() {
|
||||
return this.functionClass;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return functionName(StringUtils.arrayToDelimitedString(this.bean, ","));
|
||||
public void setFunctionName(String functionName) {
|
||||
this.functionName = StringUtils.hasText(functionName) ? functionName : "";
|
||||
}
|
||||
|
||||
public String[] getBean() {
|
||||
return this.bean;
|
||||
public String getFunctionName() {
|
||||
return this.functionName;
|
||||
}
|
||||
|
||||
public void setBean(String[] bean) {
|
||||
this.bean = bean;
|
||||
}
|
||||
|
||||
public String[] getLocation() {
|
||||
public String getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
public void setLocation(String[] location) {
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public String getMain() {
|
||||
return this.main;
|
||||
}
|
||||
|
||||
public void setMain(String main) {
|
||||
this.main = main;
|
||||
}
|
||||
|
||||
@PostConstruct
|
||||
public void init() {
|
||||
if (this.location.length == 0) {
|
||||
throw new IllegalStateException(
|
||||
"No archive location provided, please configure function.location as a jar or directory.");
|
||||
}
|
||||
Assert.notNull(this.location, "No archive location provided, please configure spring.cloud.function.location as a jar or directory.");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,63 +0,0 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed 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
|
||||
*
|
||||
* https://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.springframework.cloud.function.deployer;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.Set;
|
||||
|
||||
import org.springframework.cloud.function.context.FunctionRegistration;
|
||||
import org.springframework.cloud.function.context.FunctionRegistry;
|
||||
import org.springframework.util.StringUtils;
|
||||
|
||||
/**
|
||||
* @author Dave Syer
|
||||
*
|
||||
*/
|
||||
public class SingleEntryFunctionRegistry implements FunctionRegistry {
|
||||
|
||||
private final FunctionRegistry delegate;
|
||||
|
||||
private final String name;
|
||||
|
||||
public SingleEntryFunctionRegistry(FunctionRegistry delegate, String name) {
|
||||
this.delegate = delegate;
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T lookup(Class<?> type, String name) {
|
||||
if (StringUtils.isEmpty(name)) {
|
||||
if (this.delegate.getNames(type).size() == 1) {
|
||||
return this.delegate.lookup(type,
|
||||
this.delegate.getNames(type).iterator().next());
|
||||
}
|
||||
name = this.name;
|
||||
}
|
||||
return name.equals(this.name) ? this.delegate.lookup(type, name) : null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<String> getNames(Class<?> type) {
|
||||
return Collections.singleton(this.name);
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> void register(FunctionRegistration<T> registration) {
|
||||
this.delegate.register(registration);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=org.springframework.cloud.function.deployer.FunctionDeployerConfiguration
|
||||
Reference in New Issue
Block a user