Search in sources :

Example 6 with ForestConverter

use of com.dtflys.forest.converter.ForestConverter in project forest by dromara.

the class ConverterBeanListener method onApplicationEvent.

@Override
public void onApplicationEvent(ApplicationContextEvent event) {
    ApplicationContext applicationContext = event.getApplicationContext();
    ForestConfiguration forestConfiguration = this.forestConfiguration;
    if (forestConfiguration == null) {
        try {
            forestConfiguration = applicationContext.getBean(ForestConfiguration.class);
        } catch (Exception ignored) {
            throw new ForestRuntimeException("property forestConfiguration undefined", ignored);
        }
    }
    Map<String, ForestConverter> forestConverterMap = applicationContext.getBeansOfType(ForestConverter.class);
    for (ForestConverter forestConverter : forestConverterMap.values()) {
        forestConfiguration.getConverterMap().put(forestConverter.getDataType(), forestConverter);
    }
}
Also used : ApplicationContext(org.springframework.context.ApplicationContext) ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) ForestConverter(com.dtflys.forest.converter.ForestConverter) ForestRuntimeException(com.dtflys.forest.exceptions.ForestRuntimeException) ForestRuntimeException(com.dtflys.forest.exceptions.ForestRuntimeException)

Example 7 with ForestConverter

use of com.dtflys.forest.converter.ForestConverter in project forest by dromara.

the class TestForestConfiguration method testConverterMap.

@Test
public void testConverterMap() {
    ForestConfiguration configuration = ForestConfiguration.createConfiguration();
    assertNotNull(configuration.getConverterMap());
    Map<ForestDataType, ForestConverter> converterMap = new HashMap<>();
    converterMap.put(ForestDataType.JSON, new ForestFastjsonConverter());
    configuration.setConverterMap(converterMap);
    assertEquals(converterMap, configuration.getConverterMap());
}
Also used : ForestFastjsonConverter(com.dtflys.forest.converter.json.ForestFastjsonConverter) ForestConfiguration(com.dtflys.forest.config.ForestConfiguration) HashMap(java.util.HashMap) ForestConverter(com.dtflys.forest.converter.ForestConverter) ForestDataType(com.dtflys.forest.utils.ForestDataType) Test(org.junit.Test)

Example 8 with ForestConverter

use of com.dtflys.forest.converter.ForestConverter in project forest by dromara.

the class ForestMethod method processMetaRequest.

private void processMetaRequest(MetaRequest metaRequest) {
    Class[] paramTypes = method.getParameterTypes();
    Type[] genericParamTypes = method.getGenericParameterTypes();
    Annotation[][] paramAnns = method.getParameterAnnotations();
    Parameter[] parameters = method.getParameters();
    Class<? extends Annotation> reqAnnType = metaRequest.getRequestAnnotation().annotationType();
    parameterTemplateArray = new MappingParameter[paramTypes.length];
    processParameters(parameters, genericParamTypes, paramAnns);
    bodyTypeTemplate = makeTemplate(reqAnnType, "type", metaRequest.getBodyType());
    urlTemplate = makeURLTemplate(reqAnnType, "url", metaRequest.getUrl());
    typeTemplate = makeTemplate(reqAnnType, "type", metaRequest.getType());
    dataTypeTemplate = makeTemplate(reqAnnType, "dataType", metaRequest.getDataType());
    if (StringUtils.isNotEmpty(metaRequest.getContentType())) {
        contentTypeTemplate = makeTemplate(reqAnnType, "contentType", metaRequest.getContentType());
    }
    if (StringUtils.isNotEmpty(metaRequest.getUserAgent())) {
        userAgentTemplate = makeTemplate(reqAnnType, "userAgent", metaRequest.getUserAgent());
    }
    sslKeyStoreId = makeTemplate(reqAnnType, "keyStore", metaRequest.getKeyStore());
    if (StringUtils.isNotEmpty(metaRequest.getContentEncoding())) {
        encodeTemplate = makeTemplate(reqAnnType, "contentEncoding", metaRequest.getContentEncoding());
    }
    charsetTemplate = makeTemplate(reqAnnType, "charset", metaRequest.getCharset());
    if (metaRequest.getResponseEncoding() != null) {
        responseEncodingTemplate = makeTemplate(reqAnnType, "responseEncoding", metaRequest.getResponseEncoding());
    }
    sslProtocolTemplate = makeTemplate(reqAnnType, "sslProtocol", metaRequest.getSslProtocol());
    progressStep = metaRequest.getProgressStep();
    async = metaRequest.isAsync();
    retryerClass = metaRequest.getRetryer();
    Class<? extends ForestEncoder> encoderClass = metaRequest.getEncoder();
    Class<? extends ForestConverter> decoderClass = metaRequest.getDecoder();
    String[] dataArray = metaRequest.getData();
    String[] headerArray = metaRequest.getHeaders();
    Integer tout = metaRequest.getTimeout();
    if (tout != null && tout >= 0) {
        timeout = tout;
    }
    Integer ctout = metaRequest.getConnectTimeout();
    if (ctout != null && ctout >= 0) {
        connectTimeout = ctout;
    }
    Integer rtout = metaRequest.getReadTimeout();
    if (rtout != null && rtout >= 0) {
        readTimeout = rtout;
    }
    Integer rtnum = metaRequest.getRetryCount();
    if (rtnum != null && rtnum >= 0) {
        retryCount = rtnum;
    }
    maxRetryInterval = metaRequest.getMaxRetryInterval();
    logEnabled = configuration.isLogEnabled();
    if (!logEnabled) {
        logEnabled = metaRequest.isLogEnabled();
    }
    logRequest = configuration.isLogRequest();
    logResponseStatus = configuration.isLogResponseStatus();
    logResponseContent = configuration.isLogResponseContent();
    LogConfiguration metaLogConfiguration = metaRequest.getLogConfiguration();
    if (metaLogConfiguration == null && baseLogConfiguration != null) {
        metaLogConfiguration = baseLogConfiguration;
    }
    if (metaLogConfiguration != null) {
        logEnabled = metaLogConfiguration.isLogEnabled();
        logRequest = metaLogConfiguration.isLogRequest();
        logResponseStatus = metaLogConfiguration.isLogResponseStatus();
        logResponseContent = metaLogConfiguration.isLogResponseContent();
        logHandler = metaLogConfiguration.getLogHandler();
        if (logHandler == null && baseLogConfiguration != null) {
            logHandler = baseLogConfiguration.getLogHandler();
        }
    }
    if (logHandler == null && configuration.getLogHandler() != null) {
        logHandler = configuration.getLogHandler();
    }
    if (logHandler == null) {
        logHandler = new DefaultLogHandler();
    }
    logConfiguration = new LogConfiguration();
    logConfiguration.setLogEnabled(logEnabled);
    logConfiguration.setLogRequest(logRequest);
    logConfiguration.setLogResponseStatus(logResponseStatus);
    logConfiguration.setLogResponseContent(logResponseContent);
    logConfiguration.setLogHandler(logHandler);
    dataTemplateArray = new MappingTemplate[dataArray.length];
    for (int j = 0; j < dataArray.length; j++) {
        String data = dataArray[j];
        MappingTemplate dataTemplate = makeTemplate(reqAnnType, "data", data);
        dataTemplateArray[j] = dataTemplate;
    }
    headerTemplateArray = new MappingTemplate[headerArray.length];
    for (int j = 0; j < headerArray.length; j++) {
        String header = headerArray[j];
        MappingTemplate headerTemplate = makeTemplate(reqAnnType, "header", header);
        headerTemplateArray[j] = headerTemplate;
    }
    Class[] interceptorClasses = metaRequest.getInterceptor();
    if (interceptorClasses != null && interceptorClasses.length > 0) {
        for (int cidx = 0, len = interceptorClasses.length; cidx < len; cidx++) {
            Class interceptorClass = interceptorClasses[cidx];
            addInterceptor(interceptorClass);
        }
    }
    if (encoderClass != null && !encoderClass.isInterface() && ForestEncoder.class.isAssignableFrom(encoderClass)) {
        this.encoder = configuration.getForestObjectFactory().getObject(encoderClass);
    }
    if (decoderClass != null && !encoderClass.isInterface() && ForestConverter.class.isAssignableFrom(decoderClass)) {
        this.decoder = configuration.getForestObjectFactory().getObject(decoderClass);
    }
}
Also used : ForestEncoder(com.dtflys.forest.converter.ForestEncoder) MappingTemplate(com.dtflys.forest.mapping.MappingTemplate) DefaultLogHandler(com.dtflys.forest.logging.DefaultLogHandler) LogConfiguration(com.dtflys.forest.logging.LogConfiguration) ForestRequestType(com.dtflys.forest.http.ForestRequestType) ContentType(com.dtflys.forest.backend.ContentType) ForestDataType(com.dtflys.forest.utils.ForestDataType) ForestConverter(com.dtflys.forest.converter.ForestConverter) MappingParameter(com.dtflys.forest.mapping.MappingParameter) ForestQueryParameter(com.dtflys.forest.http.ForestQueryParameter)

Aggregations

ForestConverter (com.dtflys.forest.converter.ForestConverter)8 ForestDataType (com.dtflys.forest.utils.ForestDataType)5 ForestRuntimeException (com.dtflys.forest.exceptions.ForestRuntimeException)3 ContentType (com.dtflys.forest.backend.ContentType)2 ForestConfiguration (com.dtflys.forest.config.ForestConfiguration)2 ForestFastjsonConverter (com.dtflys.forest.converter.json.ForestFastjsonConverter)2 LogConfiguration (com.dtflys.forest.logging.LogConfiguration)2 Type (java.lang.reflect.Type)2 HashMap (java.util.HashMap)2 Test (org.junit.Test)2 ForestEncoder (com.dtflys.forest.converter.ForestEncoder)1 ForestHandlerException (com.dtflys.forest.exceptions.ForestHandlerException)1 DownloadFile (com.dtflys.forest.extensions.DownloadFile)1 ForestQueryParameter (com.dtflys.forest.http.ForestQueryParameter)1 ForestRequest (com.dtflys.forest.http.ForestRequest)1 ForestRequestType (com.dtflys.forest.http.ForestRequestType)1 ForestResponse (com.dtflys.forest.http.ForestResponse)1 DefaultLogHandler (com.dtflys.forest.logging.DefaultLogHandler)1 ForestLogHandler (com.dtflys.forest.logging.ForestLogHandler)1 MappingParameter (com.dtflys.forest.mapping.MappingParameter)1