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.impl.DefaultComponent;
import static org.apache.camel.util.ObjectHelper.removeStartingCharacters;
public class HazelcastComponent extends DefaultComponent {
private HazelcastInstance hazelcastInstance;
private boolean createOwnInstance;
public HazelcastComponent() {
}
public HazelcastComponent(final CamelContext context) {
super(context);
}
@Override
protected Endpoint createEndpoint(String uri, String remaining, Map parameters) throws Exception {
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(hazelcastInstance, uri, remaining, this);
}
if (remaining.startsWith(HazelcastConstants.MULTIMAP_PREFIX)) {
// remaining is the cache name
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.MULTIMAP_PREFIX.length()), '/');
endpoint = new HazelcastMultimapEndpoint(hazelcastInstance, uri, remaining, this);
}
if (remaining.startsWith(HazelcastConstants.ATOMICNUMBER_PREFIX)) {
// remaining is the name of the atomic value
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.INSTANCE_PREFIX.length()), '/');
endpoint = new HazelcastAtomicnumberEndpoint(hazelcastInstance, uri, this, remaining);
}
if (remaining.startsWith(HazelcastConstants.INSTANCE_PREFIX)) {
// remaining is anything (name it foo ;)
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.INSTANCE_PREFIX.length()), '/');
endpoint = new HazelcastInstanceEndpoint(hazelcastInstance, uri, this);
}
if (remaining.startsWith(HazelcastConstants.QUEUE_PREFIX)) {
// remaining is anything (name it foo ;)
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.QUEUE_PREFIX.length()), '/');
endpoint = new HazelcastQueueEndpoint(hazelcastInstance, uri, this, remaining);
}
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(hazelcastInstance, uri, this, config);
}
if (remaining.startsWith(HazelcastConstants.LIST_PREFIX)) {
// remaining is anything (name it foo ;)
remaining = removeStartingCharacters(remaining.substring(HazelcastConstants.LIST_PREFIX.length()), '/');
endpoint = new HazelcastListEndpoint(hazelcastInstance, uri, this, remaining);
}
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));
}
return endpoint;
}
@Override
public void doStart() throws Exception {
super.doStart();
if (hazelcastInstance == null) {
createOwnInstance = true;
Config config = new XmlConfigBuilder().build();
// Disable the version check
config.getProperties().setProperty("hazelcast.version.check.enabled", "false");
hazelcastInstance = Hazelcast.newHazelcastInstance(config);
}
}
@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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy