org.apache.camel.impl.engine.DefaultConsumerCache Maven / Gradle / Ivy
/*
* 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.engine;
import java.util.concurrent.RejectedExecutionException;
import org.apache.camel.CamelContext;
import org.apache.camel.Consumer;
import org.apache.camel.Endpoint;
import org.apache.camel.Exchange;
import org.apache.camel.FailedToCreateConsumerException;
import org.apache.camel.PollingConsumer;
import org.apache.camel.spi.ConsumerCache;
import org.apache.camel.spi.EndpointUtilizationStatistics;
import org.apache.camel.support.CamelContextHelper;
import org.apache.camel.support.service.ServiceHelper;
import org.apache.camel.support.service.ServiceSupport;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Cache containing created {@link org.apache.camel.Consumer}.
*/
public class DefaultConsumerCache extends ServiceSupport implements ConsumerCache {
private static final Logger LOG = LoggerFactory.getLogger(DefaultConsumerCache.class);
private final CamelContext camelContext;
private final PollingConsumerServicePool consumers;
private final Object source;
private EndpointUtilizationStatistics statistics;
private boolean extendedStatistics;
private int maxCacheSize;
public DefaultConsumerCache(Object source, CamelContext camelContext, int cacheSize) {
this.source = source;
this.camelContext = camelContext;
this.maxCacheSize = cacheSize <= 0 ? CamelContextHelper.getMaximumCachePoolSize(camelContext) : cacheSize;
this.consumers = createServicePool(camelContext, maxCacheSize);
// only if JMX is enabled
if (camelContext.getManagementStrategy().getManagementAgent() != null) {
this.extendedStatistics = camelContext.getManagementStrategy().getManagementAgent().getStatisticsLevel().isExtended();
} else {
this.extendedStatistics = false;
}
}
protected PollingConsumerServicePool createServicePool(CamelContext camelContext, int cacheSize) {
return new PollingConsumerServicePool(Endpoint::createPollingConsumer, Consumer::getEndpoint, cacheSize);
}
public boolean isExtendedStatistics() {
return extendedStatistics;
}
/**
* Whether extended JMX statistics is enabled for {@link org.apache.camel.spi.EndpointUtilizationStatistics}
*/
public void setExtendedStatistics(boolean extendedStatistics) {
this.extendedStatistics = extendedStatistics;
}
/**
* Releases an acquired producer back after usage.
*
* @param endpoint the endpoint
* @param pollingConsumer the pollingConsumer to release
*/
@Override
public void releasePollingConsumer(Endpoint endpoint, PollingConsumer pollingConsumer) {
consumers.release(endpoint, pollingConsumer);
}
/**
* Acquires a pooled PollingConsumer which you must release back again after usage using the
* {@link #releasePollingConsumer(org.apache.camel.Endpoint, org.apache.camel.PollingConsumer)} method.
*
* @param endpoint the endpoint
* @return the PollingConsumer
*/
@Override
public PollingConsumer acquirePollingConsumer(Endpoint endpoint) {
try {
PollingConsumer consumer = consumers.acquire(endpoint);
if (statistics != null) {
statistics.onHit(endpoint.getEndpointUri());
}
return consumer;
} catch (Throwable e) {
throw new FailedToCreateConsumerException(endpoint, e);
}
}
@Override
public Exchange receive(Endpoint endpoint) {
if (camelContext.isStopped()) {
throw new RejectedExecutionException("CamelContext is stopped");
}
LOG.debug("<<<< {}", endpoint);
PollingConsumer consumer = null;
try {
consumer = acquirePollingConsumer(endpoint);
return consumer.receive();
} finally {
if (consumer != null) {
releasePollingConsumer(endpoint, consumer);
}
}
}
@Override
public Exchange receive(Endpoint endpoint, long timeout) {
if (camelContext.isStopped()) {
throw new RejectedExecutionException("CamelContext is stopped");
}
LOG.debug("<<<< {}", endpoint);
PollingConsumer consumer = null;
try {
consumer = acquirePollingConsumer(endpoint);
return consumer.receive(timeout);
} finally {
if (consumer != null) {
releasePollingConsumer(endpoint, consumer);
}
}
}
@Override
public Exchange receiveNoWait(Endpoint endpoint) {
if (camelContext.isStopped()) {
throw new RejectedExecutionException("CamelContext is stopped");
}
LOG.debug("<<<< {}", endpoint);
PollingConsumer consumer = null;
try {
consumer = acquirePollingConsumer(endpoint);
return consumer.receiveNoWait();
} finally {
if (consumer != null) {
releasePollingConsumer(endpoint, consumer);
}
}
}
public CamelContext getCamelContext() {
return camelContext;
}
/**
* Gets the source which uses this cache
*
* @return the source
*/
@Override
public Object getSource() {
return source;
}
/**
* Gets the maximum cache size (capacity).
*
* @return the capacity
*/
@Override
public int getCapacity() {
return maxCacheSize;
}
/**
* Returns the current size of the cache
*
* @return the current size
*/
@Override
public int size() {
int size = consumers.size();
LOG.trace("size = {}", size);
return size;
}
/**
* Purges this cache
*/
@Override
public synchronized void purge() {
try {
consumers.stop();
consumers.start();
} catch (Exception e) {
LOG.debug("Error restarting consumer pool", e);
}
if (statistics != null) {
statistics.clear();
}
}
@Override
public void cleanUp() {
consumers.cleanUp();
}
@Override
public EndpointUtilizationStatistics getEndpointUtilizationStatistics() {
return statistics;
}
@Override
public String toString() {
return "ConsumerCache for source: " + source + ", capacity: " + getCapacity();
}
@Override
protected void doInit() throws Exception {
if (extendedStatistics) {
int max = maxCacheSize == 0 ? CamelContextHelper.getMaximumCachePoolSize(camelContext) : maxCacheSize;
statistics = new DefaultEndpointUtilizationStatistics(max);
}
ServiceHelper.initService(consumers);
}
@Override
protected void doStart() throws Exception {
if (statistics != null) {
statistics.clear();
}
ServiceHelper.startService(consumers);
}
@Override
protected void doStop() throws Exception {
ServiceHelper.stopService(consumers);
}
@Override
protected void doShutdown() throws Exception {
ServiceHelper.stopAndShutdownServices(consumers);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy