Search in sources :

Example 1 with ServiceFilter

use of org.apache.camel.cloud.ServiceFilter in project camel by apache.

the class ServiceCallDefinition method retrieveServiceFilter.

// ******************************************
// ServiceFilter
// ******************************************
private ServiceFilter retrieveServiceFilter(CamelContext camelContext, Function<CamelContext, ServiceCallConfigurationDefinition> function) throws Exception {
    ServiceFilter answer = null;
    ServiceCallConfigurationDefinition config = function.apply(camelContext);
    if (config != null) {
        if (config.getServiceFilterConfiguration() != null) {
            answer = config.getServiceFilterConfiguration().newInstance(camelContext);
        } else {
            answer = retrieve(ServiceFilter.class, camelContext, config::getServiceFilter, config::getServiceFilterRef);
        }
        if (answer == null) {
            String ref = config.getServiceFilterRef();
            if (ObjectHelper.equal("healthy", ref, true)) {
                answer = new HealthyServiceFilter();
            } else if (ObjectHelper.equal("pass-through", ref, true)) {
                answer = new PassThroughServiceFilter();
            } else if (ObjectHelper.equal("passthrough", ref, true)) {
                answer = new PassThroughServiceFilter();
            }
        }
    }
    return answer;
}
Also used : PassThroughServiceFilter(org.apache.camel.impl.cloud.PassThroughServiceFilter) ServiceFilter(org.apache.camel.cloud.ServiceFilter) HealthyServiceFilter(org.apache.camel.impl.cloud.HealthyServiceFilter) PassThroughServiceFilter(org.apache.camel.impl.cloud.PassThroughServiceFilter) HealthyServiceFilter(org.apache.camel.impl.cloud.HealthyServiceFilter)

Example 2 with ServiceFilter

use of org.apache.camel.cloud.ServiceFilter in project camel by apache.

the class ServiceCallDefinition method createProcessor.

// *****************************
// Processor Factory
// *****************************
@Override
public Processor createProcessor(RouteContext routeContext) throws Exception {
    final CamelContext camelContext = routeContext.getCamelContext();
    final ServiceDiscovery serviceDiscovery = retrieveServiceDiscovery(camelContext);
    final ServiceFilter serviceFilter = retrieveServiceFilter(camelContext);
    final ServiceChooser serviceChooser = retrieveServiceChooser(camelContext);
    final LoadBalancer loadBalancer = retrieveLoadBalancer(camelContext);
    final Expression expression = retrieveExpression(camelContext);
    if (loadBalancer instanceof CamelContextAware) {
        ((CamelContextAware) loadBalancer).setCamelContext(camelContext);
    }
    if (loadBalancer instanceof ServiceDiscoveryAware) {
        ((ServiceDiscoveryAware) loadBalancer).setServiceDiscovery(serviceDiscovery);
    }
    if (loadBalancer instanceof ServiceFilterAware) {
        ((ServiceFilterAware) loadBalancer).setServiceFilter(serviceFilter);
    }
    if (loadBalancer instanceof ServiceChooserAware) {
        ((ServiceChooserAware) loadBalancer).setServiceChooser(serviceChooser);
    }
    // The component is used to configure the default scheme to use (eg camel component name).
    // The component configured on EIP takes precedence vs configured on configuration.
    String component = this.component;
    if (component == null) {
        ServiceCallConfigurationDefinition conf = retrieveConfig(camelContext);
        if (conf != null) {
            component = conf.getComponent();
        }
    }
    if (component == null) {
        ServiceCallConfigurationDefinition conf = retrieveDefaultConfig(camelContext);
        if (conf != null) {
            component = conf.getComponent();
        }
    }
    return new DefaultServiceCallProcessor(camelContext, name, component, uri, pattern, loadBalancer, expression);
}
Also used : CamelContext(org.apache.camel.CamelContext) PassThroughServiceFilter(org.apache.camel.impl.cloud.PassThroughServiceFilter) ServiceFilter(org.apache.camel.cloud.ServiceFilter) HealthyServiceFilter(org.apache.camel.impl.cloud.HealthyServiceFilter) CamelContextAware(org.apache.camel.CamelContextAware) ServiceDiscoveryAware(org.apache.camel.cloud.ServiceDiscoveryAware) ServiceChooserAware(org.apache.camel.cloud.ServiceChooserAware) DefaultServiceCallProcessor(org.apache.camel.impl.cloud.DefaultServiceCallProcessor) DefaultLoadBalancer(org.apache.camel.impl.cloud.DefaultLoadBalancer) LoadBalancer(org.apache.camel.cloud.LoadBalancer) ServiceFilterAware(org.apache.camel.cloud.ServiceFilterAware) ServiceChooser(org.apache.camel.cloud.ServiceChooser) RoundRobinServiceChooser(org.apache.camel.impl.cloud.RoundRobinServiceChooser) RandomServiceChooser(org.apache.camel.impl.cloud.RandomServiceChooser) DefaultServiceCallExpression(org.apache.camel.impl.cloud.DefaultServiceCallExpression) Expression(org.apache.camel.Expression) ServiceDiscovery(org.apache.camel.cloud.ServiceDiscovery)

Example 3 with ServiceFilter

use of org.apache.camel.cloud.ServiceFilter in project camel by apache.

the class ServiceCallServiceFilterConfiguration method newInstance.

// *************************************************************************
// Factory
// *************************************************************************
@Override
public ServiceFilter newInstance(CamelContext camelContext) throws Exception {
    ObjectHelper.notNull(factoryKey, "ServiceFilter factoryKey");
    ServiceFilter answer;
    // First try to find the factory from the registry.
    ServiceFilterFactory factory = CamelContextHelper.lookup(camelContext, factoryKey, ServiceFilterFactory.class);
    if (factory != null) {
        // If a factory is found in the registry do not re-configure it as
        // it should be pre-configured.
        answer = factory.newInstance(camelContext);
    } else {
        Class<?> type;
        try {
            // Then use Service factory.
            type = camelContext.getFactoryFinder(RESOURCE_PATH).findClass(factoryKey);
        } catch (Exception e) {
            throw new NoFactoryAvailableException(RESOURCE_PATH + factoryKey, e);
        }
        if (type != null) {
            if (ServiceFilterFactory.class.isAssignableFrom(type)) {
                factory = (ServiceFilterFactory) camelContext.getInjector().newInstance(type);
            } else {
                throw new NoFactoryAvailableException("Resolving ServiceFilter: " + factoryKey + " detected type conflict: Not a ServiceFilterFactory implementation. Found: " + type.getName());
            }
        }
        try {
            Map<String, Object> parameters = new HashMap<>();
            IntrospectionSupport.getProperties(this, parameters, null, false);
            parameters.put("properties", getPropertiesAsMap(camelContext));
            postProcessFactoryParameters(camelContext, parameters);
            IntrospectionSupport.setProperties(factory, parameters);
            answer = factory.newInstance(camelContext);
        } catch (Exception e) {
            throw new IllegalArgumentException(e);
        }
    }
    return answer;
}
Also used : ServiceFilter(org.apache.camel.cloud.ServiceFilter) ServiceFilterFactory(org.apache.camel.cloud.ServiceFilterFactory) HashMap(java.util.HashMap) NoFactoryAvailableException(org.apache.camel.NoFactoryAvailableException) NoFactoryAvailableException(org.apache.camel.NoFactoryAvailableException)

Aggregations

ServiceFilter (org.apache.camel.cloud.ServiceFilter)3 HealthyServiceFilter (org.apache.camel.impl.cloud.HealthyServiceFilter)2 PassThroughServiceFilter (org.apache.camel.impl.cloud.PassThroughServiceFilter)2 HashMap (java.util.HashMap)1 CamelContext (org.apache.camel.CamelContext)1 CamelContextAware (org.apache.camel.CamelContextAware)1 Expression (org.apache.camel.Expression)1 NoFactoryAvailableException (org.apache.camel.NoFactoryAvailableException)1 LoadBalancer (org.apache.camel.cloud.LoadBalancer)1 ServiceChooser (org.apache.camel.cloud.ServiceChooser)1 ServiceChooserAware (org.apache.camel.cloud.ServiceChooserAware)1 ServiceDiscovery (org.apache.camel.cloud.ServiceDiscovery)1 ServiceDiscoveryAware (org.apache.camel.cloud.ServiceDiscoveryAware)1 ServiceFilterAware (org.apache.camel.cloud.ServiceFilterAware)1 ServiceFilterFactory (org.apache.camel.cloud.ServiceFilterFactory)1 DefaultLoadBalancer (org.apache.camel.impl.cloud.DefaultLoadBalancer)1 DefaultServiceCallExpression (org.apache.camel.impl.cloud.DefaultServiceCallExpression)1 DefaultServiceCallProcessor (org.apache.camel.impl.cloud.DefaultServiceCallProcessor)1 RandomServiceChooser (org.apache.camel.impl.cloud.RandomServiceChooser)1 RoundRobinServiceChooser (org.apache.camel.impl.cloud.RoundRobinServiceChooser)1