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

org.apache.camel.impl.cloud.DefaultServiceCallExpression 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.impl.cloud;

import org.apache.camel.model.cloud.ServiceCallDefinition;
import org.apache.camel.support.ServiceCallExpressionSupport;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Support class for custom implementations of {@link ServiceCallDefinition ServiceCall EIP} components.
 * 

* Below are some examples how to call a service and what Camel endpoint URI is constructed based on the input: *

 serviceCall("myService") -> http4://hostname:port
 serviceCall("myService/foo") -> http4://hostname:port/foo
 serviceCall("http4:myService/foo") -> http4:hostname:port/foo
 serviceCall("myService", "http4:myService.host:myService.port/foo") -> http4:hostname:port/foo
 serviceCall("myService", "netty4:tcp:myService?connectTimeout=1000") -> netty:tcp:hostname:port?connectTimeout=1000
 * 
*/ public class DefaultServiceCallExpression extends ServiceCallExpressionSupport { private static final Logger LOGGER = LoggerFactory.getLogger(DefaultServiceCallExpression.class); public DefaultServiceCallExpression() { } public DefaultServiceCallExpression(String hostHeader, String portHeader) { super(hostHeader, portHeader); } @Override protected String buildCamelEndpointUri(String name, String host, Integer port, String uri, String contextPath, String scheme) { // build basic uri if none provided String answer = uri; if (answer == null) { answer = doBuildCamelEndpointUri(host, port, contextPath, scheme); } else { // we have existing uri, then replace the serviceName with ip:port if (answer.contains(name + ".host")) { answer = answer.replaceFirst(name + "\\.host", host); } if (answer.contains(name + ".port") && port != null) { answer = answer.replaceFirst(name + "\\.port", "" + port); } if (answer.contains(name) && port != null) { answer = answer.replaceFirst(name, host + ":" + port); } if (answer.contains(name) && port == null) { answer = answer.replaceFirst(name, host); } // include scheme if not provided if (!answer.startsWith(scheme)) { answer = scheme + ":" + answer; } } LOGGER.debug("Camel endpoint uri: {} for calling service: {} on server {}:{}", answer, name, host, port); return answer; } protected String doBuildCamelEndpointUri(String host, Integer port, String contextPath, String scheme) { if (scheme == null) { // use http/https by default if no scheme or port have been configured if (port == null) { scheme = "http4"; } else if (port == 443) { scheme = "https4"; } else { scheme = "http4"; } } String answer = scheme + "://" + host; if (port != null) { answer = answer + ":" + port; } if (contextPath != null) { if (!contextPath.startsWith("/")) { contextPath = "/" + contextPath; } answer += contextPath; } return answer; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy