All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.model.cloud.ServiceCallServiceChooserConfiguration Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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
 *
 *      http://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.apache.camel.model.cloud;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;

import org.apache.camel.CamelContext;
import org.apache.camel.NoFactoryAvailableException;
import org.apache.camel.cloud.ServiceChooser;
import org.apache.camel.cloud.ServiceChooserFactory;
import org.apache.camel.model.IdentifiedType;
import org.apache.camel.model.ProcessorDefinition;
import org.apache.camel.model.PropertyDefinition;
import org.apache.camel.spi.Metadata;
import org.apache.camel.util.CamelContextHelper;
import org.apache.camel.util.IntrospectionSupport;
import org.apache.camel.util.ObjectHelper;

@Metadata(label = "routing,cloud,service-discovery")
@XmlRootElement(name = "serviceChooserConfiguration")
@XmlAccessorType(XmlAccessType.FIELD)
public class ServiceCallServiceChooserConfiguration extends IdentifiedType implements ServiceChooserFactory {
    @XmlTransient
    private final ServiceCallDefinition parent;
    @XmlTransient
    private final String factoryKey;
    @XmlElement(name = "properties") @Metadata(label = "advanced")
    private List properties;

    public ServiceCallServiceChooserConfiguration() {
        this(null, null);
    }

    public ServiceCallServiceChooserConfiguration(ServiceCallDefinition parent, String factoryKey) {
        this.parent = parent;
        this.factoryKey = factoryKey;
    }

    public ServiceCallDefinition end() {
        return this.parent;
    }

    public ProcessorDefinition endParent() {
        return this.parent.end();
    }

    // *************************************************************************
    //
    // *************************************************************************

    public List getProperties() {
        return properties;
    }

    /**
     * Set client properties to use.
     * 

* These properties are specific to what service call implementation are in * use. For example if using ribbon, then the client properties are define * in com.netflix.client.config.CommonClientConfigKey. */ public void setProperties(List properties) { this.properties = properties; } /** * Adds a custom property to use. *

* These properties are specific to what service call implementation are in * use. For example if using ribbon, then the client properties are define * in com.netflix.client.config.CommonClientConfigKey. */ public ServiceCallServiceChooserConfiguration property(String key, String value) { if (properties == null) { properties = new ArrayList<>(); } PropertyDefinition prop = new PropertyDefinition(); prop.setKey(key); prop.setValue(value); properties.add(prop); return this; } protected Map getPropertiesAsMap(CamelContext camelContext) throws Exception { Map answer; if (properties == null || properties.isEmpty()) { answer = Collections.emptyMap(); } else { answer = new HashMap<>(); for (PropertyDefinition prop : properties) { // support property placeholders String key = CamelContextHelper.parseText(camelContext, prop.getKey()); String value = CamelContextHelper.parseText(camelContext, prop.getValue()); answer.put(key, value); } } return answer; } // ************************************************************************* // Factory // ************************************************************************* @Override public ServiceChooser newInstance(CamelContext camelContext) throws Exception { ObjectHelper.notNull(factoryKey, "ServiceChooser factoryKey"); ServiceChooser answer; // First try to find the factory from the registry. ServiceChooserFactory factory = CamelContextHelper.lookup(camelContext, factoryKey, ServiceChooserFactory.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(ServiceCallDefinitionConstants.RESOURCE_PATH).findClass(factoryKey); } catch (Exception e) { throw new NoFactoryAvailableException(ServiceCallDefinitionConstants.RESOURCE_PATH + factoryKey, e); } if (type != null) { if (ServiceChooserFactory.class.isAssignableFrom(type)) { factory = (ServiceChooserFactory) camelContext.getInjector().newInstance(type); } else { throw new NoFactoryAvailableException( "Resolving ServiceChooser: " + factoryKey + " detected type conflict: Not a ServiceChooserFactory implementation. Found: " + type.getName()); } } try { Map parameters = new HashMap<>(); IntrospectionSupport.getProperties(this, parameters, null, false); parameters.replaceAll( (k, v) -> { if (v != null && v instanceof String) { try { v = camelContext.resolvePropertyPlaceholders((String) v); } catch (Exception e) { throw new IllegalArgumentException( String.format("Exception while resolving %s (%s)", k, v.toString()), e ); } } return v; } ); // Convert properties to Map 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; } // ************************************************************************* // Utilities // ************************************************************************* protected void postProcessFactoryParameters(CamelContext camelContext, Map parameters) throws Exception { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy