use of com.dtflys.forest.config.ForestConfiguration in project forest by dromara.
the class MappingFilterInvoke method render.
@Override
public Object render(Object[] args) {
ForestConfiguration configuration = variableScope.getConfiguration();
Filter filter = configuration.newFilterInstance(right.getName());
List<MappingExpr> exprList = getArgList();
Object[] invokeArgs = new Object[exprList.size()];
for (int i = 0; i < exprList.size(); i++) {
MappingExpr expr = exprList.get(i);
Object renderedArg = expr.render(args);
invokeArgs[i] = renderedArg;
}
if (invokeArgs.length > 0) {
return filter.doFilter(configuration, invokeArgs[0]);
}
return null;
}
use of com.dtflys.forest.config.ForestConfiguration in project forest by dromara.
the class BaseLogHandlerLifeCycle method onProxyHandlerInitialized.
@Override
public void onProxyHandlerInitialized(InterfaceProxyHandler interfaceProxyHandler, LogHandler annotation) {
ForestConfiguration configuration = interfaceProxyHandler.getConfiguration();
LogConfiguration logConfiguration = interfaceProxyHandler.getBaseLogConfiguration();
if (logConfiguration == null) {
logConfiguration = new LogConfiguration();
logConfiguration.setLogEnabled(configuration.isLogEnabled());
logConfiguration.setLogRequest(configuration.isLogRequest());
logConfiguration.setLogResponseStatus(configuration.isLogResponseStatus());
logConfiguration.setLogResponseContent(configuration.isLogResponseContent());
interfaceProxyHandler.setBaseLogConfiguration(logConfiguration);
}
Class<? extends ForestLogHandler> logHandlerClass = annotation.value();
ForestLogHandler logHandler = null;
try {
logHandler = logHandlerClass.newInstance();
} catch (InstantiationException e) {
throw new ForestRuntimeException(e);
} catch (IllegalAccessException e) {
throw new ForestRuntimeException(e);
}
if (logHandler != null) {
logConfiguration.setLogHandler(logHandler);
} else {
logConfiguration.setLogHandler(configuration.getLogHandler());
}
}
use of com.dtflys.forest.config.ForestConfiguration in project forest by dromara.
the class LogEnabledLifeCycle method onMethodInitialized.
@Override
public void onMethodInitialized(ForestMethod method, LogEnabled annotation) {
MetaRequest metaRequest = method.getMetaRequest();
if (metaRequest == null) {
return;
}
ForestConfiguration configuration = method.getConfiguration();
LogConfiguration logConfiguration = metaRequest.getLogConfiguration();
if (logConfiguration == null) {
logConfiguration = new LogConfiguration();
metaRequest.setLogConfiguration(logConfiguration);
}
boolean logEnabled = annotation.value();
boolean logRequest = annotation.logRequest();
boolean logResponseStatus = annotation.logResponseStatus();
boolean logResponseContent = annotation.logResponseContent();
logConfiguration.setLogEnabled(logEnabled);
logConfiguration.setLogRequest(logRequest);
logConfiguration.setLogResponseStatus(logResponseStatus);
logConfiguration.setLogResponseContent(logResponseContent);
metaRequest.setLogConfiguration(logConfiguration);
}
use of com.dtflys.forest.config.ForestConfiguration in project forest by dromara.
the class ForestBeanRegister method registerForestConfiguration.
public ForestConfiguration registerForestConfiguration(ForestConfigurationProperties forestConfigurationProperties) {
BeanDefinitionBuilder beanDefinitionBuilder = BeanDefinitionBuilder.genericBeanDefinition(ForestConfiguration.class);
String id = forestConfigurationProperties.getBeanId();
if (StringUtils.isBlank(id)) {
id = "forestConfiguration";
}
Class<? extends ForestLogHandler> logHandlerClass = forestConfigurationProperties.getLogHandler();
ForestLogHandler logHandler = null;
if (logHandlerClass != null) {
try {
logHandler = logHandlerClass.newInstance();
} catch (InstantiationException e) {
throw new ForestRuntimeException(e);
} catch (IllegalAccessException e) {
throw new ForestRuntimeException(e);
}
}
beanDefinitionBuilder.addPropertyValue("maxAsyncThreadSize", forestConfigurationProperties.getMaxAsyncThreadSize()).addPropertyValue("maxConnections", forestConfigurationProperties.getMaxConnections()).addPropertyValue("maxRouteConnections", forestConfigurationProperties.getMaxRouteConnections()).addPropertyValue("timeout", forestConfigurationProperties.getTimeout()).addPropertyValue("connectTimeout", forestConfigurationProperties.getConnectTimeoutMillis()).addPropertyValue("readTimeout", forestConfigurationProperties.getReadTimeoutMillis()).addPropertyValue("charset", forestConfigurationProperties.getCharset()).addPropertyValue("retryer", forestConfigurationProperties.getRetryer()).addPropertyValue("maxRetryCount", forestConfigurationProperties.getMaxRetryCount()).addPropertyValue("maxRetryInterval", forestConfigurationProperties.getMaxRetryInterval()).addPropertyValue("autoRedirection", forestConfigurationProperties.isAutoRedirection()).addPropertyValue("logEnabled", forestConfigurationProperties.isLogEnabled()).addPropertyValue("logRequest", forestConfigurationProperties.isLogRequest()).addPropertyValue("logResponseStatus", forestConfigurationProperties.isLogResponseStatus()).addPropertyValue("logResponseContent", forestConfigurationProperties.isLogResponseContent()).addPropertyValue("logHandler", logHandler).addPropertyValue("backendName", forestConfigurationProperties.getBackend()).addPropertyValue("baseAddressScheme", forestConfigurationProperties.getBaseAddressScheme()).addPropertyValue("baseAddressHost", forestConfigurationProperties.getBaseAddressHost()).addPropertyValue("baseAddressPort", forestConfigurationProperties.getBaseAddressPort()).addPropertyValue("baseAddressSourceClass", forestConfigurationProperties.getBaseAddressSource()).addPropertyValue("successWhenClass", forestConfigurationProperties.getSuccessWhen()).addPropertyValue("retryWhenClass", forestConfigurationProperties.getRetryWhen()).addPropertyValue("interceptors", forestConfigurationProperties.getInterceptors()).addPropertyValue("sslProtocol", forestConfigurationProperties.getSslProtocol()).addPropertyValue("variables", forestConfigurationProperties.getVariables()).setLazyInit(false).setFactoryMethod("configuration");
BeanDefinition forestPropertiesBean = registerForestPropertiesBean();
beanDefinitionBuilder.addPropertyValue("properties", forestPropertiesBean);
BeanDefinition forestObjectFactoryBeanDefinition = registerForestObjectFactoryBean();
beanDefinitionBuilder.addPropertyValue("forestObjectFactory", forestObjectFactoryBeanDefinition);
BeanDefinition interceptorFactoryBeanDefinition = registerInterceptorFactoryBean();
beanDefinitionBuilder.addPropertyValue("interceptorFactory", interceptorFactoryBeanDefinition);
List<ForestSSLKeyStoreProperties> sslKeyStorePropertiesList = forestConfigurationProperties.getSslKeyStores();
ManagedMap<String, BeanDefinition> sslKeystoreMap = new ManagedMap<>();
for (ForestSSLKeyStoreProperties keyStoreProperties : sslKeyStorePropertiesList) {
registerSSLKeyStoreBean(sslKeystoreMap, keyStoreProperties);
}
BeanDefinition beanDefinition = beanDefinitionBuilder.getRawBeanDefinition();
beanDefinition.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
beanDefinition.getPropertyValues().addPropertyValue("sslKeyStores", sslKeystoreMap);
BeanDefinitionRegistry beanFactory = (BeanDefinitionRegistry) applicationContext.getBeanFactory();
beanFactory.registerBeanDefinition(id, beanDefinition);
ForestConfiguration configuration = applicationContext.getBean(id, ForestConfiguration.class);
Map<String, Class> filters = forestConfigurationProperties.getFilters();
for (Map.Entry<String, Class> entry : filters.entrySet()) {
String filterName = entry.getKey();
Class filterClass = entry.getValue();
configuration.registerFilter(filterName, filterClass);
}
ForestConvertProperties convertProperties = forestConfigurationProperties.getConverters();
if (convertProperties != null) {
registerConverter(configuration, ForestDataType.TEXT, convertProperties.getText());
registerConverter(configuration, ForestDataType.JSON, convertProperties.getJson());
registerConverter(configuration, ForestDataType.XML, convertProperties.getXml());
registerConverter(configuration, ForestDataType.BINARY, convertProperties.getBinary());
registerConverter(configuration, ForestDataType.PROTOBUF, convertProperties.getProtobuf());
}
registerConverterBeanListener(configuration);
return configuration;
}
use of com.dtflys.forest.config.ForestConfiguration in project forest by dromara.
the class TestObjectConstructor method testRegisterConstructor.
@Test
public void testRegisterConstructor() {
ForestConfiguration configuration = ForestConfiguration.createConfiguration();
configuration.getForestObjectFactory().registerConstructor(SuccessWhen.class, MySuccessWhen::new);
SuccessWhen forestObject = configuration.getForestObject(SuccessWhen.class);
assertEquals(MySuccessWhen.class, forestObject.getClass());
}
Aggregations