blob: 724565ae92f25390099dd547a500c9f336cada27 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2012 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.command;
import org.eclipse.jpt.common.utility.command.Command;
import org.eclipse.jpt.common.utility.command.CommandExecutor;
import org.eclipse.jpt.common.utility.command.StatefulCommandExecutor;
import org.eclipse.jpt.common.utility.internal.StringTools;
import org.eclipse.jpt.common.utility.internal.SynchronizedBoolean;
/**
* Straightforward implementation of {@link StatefulCommandExecutor}
* that executes commands immediately by default. This executor can
* also be used to adapt simple {@link CommandExecutor}s to the
* {@link StatefulCommandExecutor} interface, providing support for
* lifecycle state.
*/
public abstract class AbstractStatefulCommandExecutor<E extends CommandExecutor>
implements StatefulCommandExecutor
{
protected final SynchronizedBoolean active = new SynchronizedBoolean(false);
protected final E commandExecutor;
protected AbstractStatefulCommandExecutor(E commandExecutor) {
super();
if (commandExecutor == null) {
throw new NullPointerException();
}
this.commandExecutor = commandExecutor;
}
public synchronized void start() {
if (this.active.isTrue()) {
throw new IllegalStateException("Not stopped."); //$NON-NLS-1$
}
this.active.setTrue();
}
/**
* If the command executor is inactive the command is simply ignored.
*/
public void execute(Command command) {
if (this.active.isTrue()) {
this.commandExecutor.execute(command);
}
}
public synchronized void stop() {
if (this.active.isFalse()) {
throw new IllegalStateException("Not started."); //$NON-NLS-1$
}
this.active.setFalse();
}
@Override
public String toString() {
return StringTools.buildToStringFor(this, this.commandExecutor);
}
}