blob: 8f646a44a10eafe1455e7b077353e7bd1260e88d [file] [log] [blame]
/**
* 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.cache;
import java.io.InputStream;
import java.io.Serializable;
import net.sf.ehcache.CacheException;
import net.sf.ehcache.Ehcache;
import net.sf.ehcache.Element;
import org.apache.camel.Endpoint;
import org.apache.camel.Exchange;
import org.apache.camel.NoTypeConversionAvailableException;
import org.apache.camel.impl.DefaultProducer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CacheProducer extends DefaultProducer {
private static final transient Logger LOG = LoggerFactory.getLogger(CacheProducer.class);
private CacheConfiguration config;
private Ehcache cache;
public CacheProducer(Endpoint endpoint, CacheConfiguration config) throws Exception {
super(endpoint);
this.config = config;
}
@Override
protected void doStart() throws Exception {
super.doStart();
}
@Override
public CacheEndpoint getEndpoint() {
return (CacheEndpoint) super.getEndpoint();
}
public void process(Exchange exchange) throws Exception {
LOG.trace("Cache Name: {}", config.getCacheName());
cache = getEndpoint().initializeCache();
String key = exchange.getIn().getHeader(CacheConstants.CACHE_KEY, String.class);
String operation = exchange.getIn().getHeader(CacheConstants.CACHE_OPERATION, String.class);
if (operation == null) {
throw new CacheException(CacheConstants.CACHE_OPERATION + " header not specified in message");
}
if ((key == null) && (!operation.equalsIgnoreCase(CacheConstants.CACHE_OPERATION_DELETEALL))) {
throw new CacheException(CacheConstants.CACHE_KEY + " is not specified in message header or endpoint URL.");
}
performCacheOperation(exchange, operation, key);
//cleanup the cache headers
exchange.getIn().removeHeader(CacheConstants.CACHE_KEY);
exchange.getIn().removeHeader(CacheConstants.CACHE_OPERATION);
}
private void performCacheOperation(Exchange exchange, String operation, String key) throws Exception {
Object element;
if (operation.equalsIgnoreCase(CacheConstants.CACHE_OPERATION_ADD)) {
LOG.debug("Adding an element with key {} into the Cache", key);
element = createElementFromBody(exchange, CacheConstants.CACHE_OPERATION_ADD);
cache.put(new Element(key, element));
} else if (operation.equalsIgnoreCase(CacheConstants.CACHE_OPERATION_UPDATE)) {
LOG.debug("Updating an element with key {} into the Cache", key);
element = createElementFromBody(exchange, CacheConstants.CACHE_OPERATION_UPDATE);
cache.put(new Element(key, element));
} else if (operation.equalsIgnoreCase(CacheConstants.CACHE_OPERATION_DELETEALL)) {
LOG.debug("Deleting All elements from the Cache");
cache.removeAll();
} else if (operation.equalsIgnoreCase(CacheConstants.CACHE_OPERATION_DELETE)) {
LOG.debug("Deleting an element with key {} into the Cache", key);
cache.remove(key);
} else if (operation.equalsIgnoreCase(CacheConstants.CACHE_OPERATION_GET)) {
LOG.debug("Quering an element with key {} from the Cache", key);
if (cache.isKeyInCache(key) && cache.get(key) != null) {
exchange.getIn().setHeader(CacheConstants.CACHE_ELEMENT_WAS_FOUND, true);
exchange.getIn().setBody(cache.get(key).getValue());
} else {
exchange.getIn().removeHeader(CacheConstants.CACHE_ELEMENT_WAS_FOUND);
}
} else if (operation.equalsIgnoreCase(CacheConstants.CACHE_OPERATION_CHECK)) {
LOG.debug("Querying an element with key {} from the Cache", key);
if (cache.isKeyInCache(key)) {
exchange.getIn().setHeader(CacheConstants.CACHE_ELEMENT_WAS_FOUND, true);
} else {
exchange.getIn().removeHeader(CacheConstants.CACHE_ELEMENT_WAS_FOUND);
}
} else {
throw new CacheException(CacheConstants.CACHE_OPERATION + " " + operation + " is not supported.");
}
}
private Object createElementFromBody(Exchange exchange, String cacheOperation) throws NoTypeConversionAvailableException {
Object element;
Object body = exchange.getIn().getBody();
if (body == null) {
throw new CacheException("Body cannot be null for operation " + cacheOperation);
} else if (body instanceof Serializable) {
element = body;
} else {
InputStream is = exchange.getContext().getTypeConverter().mandatoryConvertTo(InputStream.class, body);
// Read InputStream into a byte[] buffer
element = exchange.getContext().getTypeConverter().mandatoryConvertTo(byte[].class, is);
}
return element;
}
}