/* * Copyright 2002-2014 the original author or authors. * * Licensed 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.springframework.integration.endpoint; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.ReentrantLock; import org.springframework.context.SmartLifecycle; import org.springframework.integration.context.IntegrationObjectSupport; import org.springframework.scheduling.TaskScheduler; /** * The base class for Message Endpoint implementations. * * <p>This class implements Lifecycle and provides an {@link #autoStartup} * property. If <code>true</code>, the endpoint will start automatically upon * initialization. Otherwise, it will require an explicit invocation of its * {@link #start()} method. The default value is <code>true</code>. * To require explicit startup, provide a value of <code>false</code> * to the {@link #setAutoStartup(boolean)} method. * * @author Mark Fisher * @author Kris Jacyna * @author Gary Russell */ public abstract class AbstractEndpoint extends IntegrationObjectSupport implements SmartLifecycle { private volatile boolean autoStartup = true; private volatile int phase = 0; private volatile boolean running; protected final ReentrantLock lifecycleLock = new ReentrantLock(); protected final Condition lifecycleCondition = this.lifecycleLock.newCondition(); public void setAutoStartup(boolean autoStartup) { this.autoStartup = autoStartup; } public void setPhase(int phase) { this.phase = phase; } @Override public void setTaskScheduler(TaskScheduler taskScheduler) { super.setTaskScheduler(taskScheduler); } // SmartLifecycle implementation @Override public final boolean isAutoStartup() { return this.autoStartup; } @Override public final int getPhase() { return this.phase; } @Override public final boolean isRunning() { this.lifecycleLock.lock(); try { return this.running; } finally { this.lifecycleLock.unlock(); } } @Override public final void start() { this.lifecycleLock.lock(); try { if (!this.running) { doStart(); this.running = true; if (logger.isInfoEnabled()) { logger.info("started " + this); } } } finally { this.lifecycleLock.unlock(); } } @Override public final void stop() { this.lifecycleLock.lock(); try { if (this.running) { doStop(); this.running = false; if (logger.isInfoEnabled()) { logger.info("stopped " + this); } } } finally { this.lifecycleLock.unlock(); } } @Override public final void stop(Runnable callback) { this.lifecycleLock.lock(); try { if (this.running) { doStop(callback); this.running = false; if (logger.isInfoEnabled()) { logger.info("stopped " + this); } } } finally { this.lifecycleLock.unlock(); } } /** * Stop the component and invoke callback. * @param callback the Runnable to invoke. */ protected void doStop(Runnable callback) { doStop(); callback.run(); } /** * Subclasses must implement this method with the start behavior. * This method will be invoked while holding the {@link #lifecycleLock}. */ protected abstract void doStart(); /** * Subclasses must implement this method with the stop behavior. * This method will be invoked while holding the {@link #lifecycleLock}. */ protected abstract void doStop(); }