org.apache.camel.component.hazelcast.HazelcastComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-hazelcast Show documentation
Show all versions of camel-hazelcast Show documentation
Camel HazelCast based work queue implementation
/**
* 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.component.hazelcast;
import java.util.Map;
import com.hazelcast.config.Config;
import com.hazelcast.config.XmlConfigBuilder;
import com.hazelcast.core.Hazelcast;
import com.hazelcast.core.HazelcastInstance;
import org.apache.camel.CamelContext;
import org.apache.camel.Endpoint;
import org.apache.camel.component.hazelcast.atomicnumber.HazelcastAtomicnumberEndpoint;
import org.apache.camel.component.hazelcast.instance.HazelcastInstanceEndpoint;
import org.apache.camel.component.hazelcast.list.HazelcastListEndpoint;
import org.apache.camel.component.hazelcast.map.HazelcastMapEndpoint;
import org.apache.camel.component.hazelcast.multimap.HazelcastMultimapEndpoint;
import org.apache.camel.component.hazelcast.queue.HazelcastQueueEndpoint;
import org.apache.camel.component.hazelcast.seda.HazelcastSedaConfiguration;
import org.apache.camel.component.hazelcast.seda.HazelcastSedaEndpoint;
import org.apache.camel.component.hazelcast.topic.HazelcastTopicEndpoint;
import org.apache.camel.impl.UriEndpointComponent;
import static org.apache.camel.util.ObjectHelper.removeStartingCharacters;
public class HazelcastComponent extends UriEndpointComponent {
private final HazelcastComponentHelper helper = new HazelcastComponentHelper();
private HazelcastInstance hazelcastInstance;
private boolean createOwnInstance;
public HazelcastComponent() {
super(HazelcastDefaultEndpoint.class);
}
public HazelcastComponent(final CamelContext context) {
super(context, HazelcastDefaultEndpoint.class);
}
@Override
protected Endpoint createEndpoint(String uri, String remaining, Map parameters) throws Exception {
// Query param named 'hazelcastInstance' (if exists) overrides the instance that was set
// programmatically and cancels local instance creation as well.
HazelcastInstance hzInstance = resolveAndRemoveReferenceParameter(parameters, "hazelcastInstance",
HazelcastInstance.class);
// Now we use the hazelcastInstance from component
if (hzInstance == null) {
hzInstance = hazelcastInstance;
}
int defaultOperation = -1;
Object operation = getAndRemoveOrResolveReferenceParameter(parameters, HazelcastConstants.OPERATION_PARAM, Object.class);
if (operation == null) {
operation = getAndRemoveOrResolveReferenceParameter(parameters, "defaultOperation", Object.class);
}
if (operation != null) {
defaultOperation = helper.extractOperationNumber(operation, -1);
}
HazelcastDefaultEndpoint endpoint = null;
// check type of endpoint
if (remaining.startsWith(HazelcastConstants.MAP_PREFIX)) {
// remaining is the cache name
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.MAP_PREFIX.length()), '/');
endpoint = new HazelcastMapEndpoint(hzInstance, uri, remaining, this);
endpoint.setCommand(HazelcastCommand.map);
}
if (remaining.startsWith(HazelcastConstants.MULTIMAP_PREFIX)) {
// remaining is the cache name
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.MULTIMAP_PREFIX.length()), '/');
endpoint = new HazelcastMultimapEndpoint(hzInstance, uri, remaining, this);
endpoint.setCommand(HazelcastCommand.multimap);
}
if (remaining.startsWith(HazelcastConstants.ATOMICNUMBER_PREFIX)) {
// remaining is the name of the atomic value
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.ATOMICNUMBER_PREFIX.length()), '/');
endpoint = new HazelcastAtomicnumberEndpoint(hzInstance, uri, this, remaining);
endpoint.setCommand(HazelcastCommand.atomicvalue);
}
if (remaining.startsWith(HazelcastConstants.INSTANCE_PREFIX)) {
// remaining is anything (name it foo ;)
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.INSTANCE_PREFIX.length()), '/');
endpoint = new HazelcastInstanceEndpoint(hzInstance, uri, this);
endpoint.setCommand(HazelcastCommand.instance);
}
if (remaining.startsWith(HazelcastConstants.QUEUE_PREFIX)) {
// remaining is anything (name it foo ;)
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.QUEUE_PREFIX.length()), '/');
endpoint = new HazelcastQueueEndpoint(hzInstance, uri, this, remaining);
endpoint.setCommand(HazelcastCommand.queue);
}
if (remaining.startsWith(HazelcastConstants.TOPIC_PREFIX)) {
// remaining is anything (name it foo ;)
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.TOPIC_PREFIX.length()), '/');
endpoint = new HazelcastTopicEndpoint(hzInstance, uri, this, remaining);
endpoint.setCommand(HazelcastCommand.topic);
}
if (remaining.startsWith(HazelcastConstants.SEDA_PREFIX)) {
final HazelcastSedaConfiguration config = new HazelcastSedaConfiguration();
setProperties(config, parameters);
config.setQueueName(remaining.substring(remaining.indexOf(":") + 1, remaining.length()));
endpoint = new HazelcastSedaEndpoint(hzInstance, uri, this, config);
endpoint.setCommand(HazelcastCommand.seda);
}
if (remaining.startsWith(HazelcastConstants.LIST_PREFIX)) {
// remaining is anything (name it foo ;)
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.LIST_PREFIX.length()), '/');
endpoint = new HazelcastListEndpoint(hzInstance, uri, this, remaining);
endpoint.setCommand(HazelcastCommand.list);
}
if (endpoint == null) {
throw new IllegalArgumentException(String.format("Your URI does not provide a correct 'type' prefix. It should be anything like 'hazelcast:[%s|%s|%s|%s|%s|%s|%s]name' but is '%s'.",
HazelcastConstants.MAP_PREFIX, HazelcastConstants.MULTIMAP_PREFIX, HazelcastConstants.ATOMICNUMBER_PREFIX, HazelcastConstants.INSTANCE_PREFIX, HazelcastConstants.QUEUE_PREFIX,
HazelcastConstants.SEDA_PREFIX, HazelcastConstants.LIST_PREFIX, uri));
}
if (defaultOperation != -1) {
endpoint.setDefaultOperation(defaultOperation);
}
return endpoint;
}
@Override
public void doStart() throws Exception {
super.doStart();
if (hazelcastInstance == null) {
createOwnInstance = true;
hazelcastInstance = createOwnInstance();
}
}
@Override
public void doStop() throws Exception {
if (createOwnInstance && hazelcastInstance != null) {
hazelcastInstance.getLifecycleService().shutdown();
}
super.doStop();
}
public HazelcastInstance getHazelcastInstance() {
return hazelcastInstance;
}
public void setHazelcastInstance(HazelcastInstance hazelcastInstance) {
this.hazelcastInstance = hazelcastInstance;
}
private HazelcastInstance createOwnInstance() {
Config config = new XmlConfigBuilder().build();
// Disable the version check
config.getProperties().setProperty("hazelcast.version.check.enabled", "false");
return Hazelcast.newHazelcastInstance(config);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy