Search in sources :

Example 6 with ForestConfiguration

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;
}
Also used : ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) Filter(com.dtflys.forest.filter.Filter)

Example 7 with ForestConfiguration

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());
    }
}
Also used : ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) ForestLogHandler(com.dtflys.forest.logging.ForestLogHandler) ForestRuntimeException(com.dtflys.forest.exceptions.ForestRuntimeException) LogConfiguration(com.dtflys.forest.logging.LogConfiguration)

Example 8 with ForestConfiguration

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);
}
Also used : ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) MetaRequest(com.dtflys.forest.reflection.MetaRequest) LogConfiguration(com.dtflys.forest.logging.LogConfiguration)

Example 9 with ForestConfiguration

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;
}
Also used : ForestSSLKeyStoreProperties(com.dtflys.forest.springboot.properties.ForestSSLKeyStoreProperties) ForestConvertProperties(com.dtflys.forest.springboot.properties.ForestConvertProperties) ForestLogHandler(com.dtflys.forest.logging.ForestLogHandler) ForestRuntimeException(com.dtflys.forest.exceptions.ForestRuntimeException) BeanDefinitionRegistry(org.springframework.beans.factory.support.BeanDefinitionRegistry) BeanDefinition(org.springframework.beans.factory.config.BeanDefinition) BeanDefinitionBuilder(org.springframework.beans.factory.support.BeanDefinitionBuilder) ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) Map(java.util.Map) ManagedMap(org.springframework.beans.factory.support.ManagedMap) ManagedMap(org.springframework.beans.factory.support.ManagedMap)

Example 10 with ForestConfiguration

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());
}
Also used : ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) SuccessWhen(com.dtflys.forest.callback.SuccessWhen) Test(org.junit.Test)

Aggregations

ForestConfiguration (com.dtflys.forest.config.ForestConfiguration)23 Test (org.junit.Test)12 ForestRuntimeException (com.dtflys.forest.exceptions.ForestRuntimeException)7 HashMap (java.util.HashMap)4 ForestRequest (com.dtflys.forest.http.ForestRequest)3 ForestLogHandler (com.dtflys.forest.logging.ForestLogHandler)3 LogConfiguration (com.dtflys.forest.logging.LogConfiguration)3 SuccessWhen (com.dtflys.forest.callback.SuccessWhen)2 ForestConverter (com.dtflys.forest.converter.ForestConverter)2 MetaRequest (com.dtflys.forest.reflection.MetaRequest)2 RequestNameValue (com.dtflys.forest.utils.RequestNameValue)2 LinkedList (java.util.LinkedList)2 Map (java.util.Map)2 ClassPathXmlApplicationContext (org.springframework.context.support.ClassPathXmlApplicationContext)2 BindingVar (com.dtflys.forest.annotation.BindingVar)1 HttpBackend (com.dtflys.forest.backend.HttpBackend)1 HttpBackendSelector (com.dtflys.forest.backend.HttpBackendSelector)1 DefaultAutoConverter (com.dtflys.forest.converter.auto.DefaultAutoConverter)1 ForestFastjsonConverter (com.dtflys.forest.converter.json.ForestFastjsonConverter)1 ForestGsonConverter (com.dtflys.forest.converter.json.ForestGsonConverter)1