All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kuali.common.util.runonce.smart.RunOnceExecutable Maven / Gradle / Ivy

There is a newer version: 4.4.17
Show newest version
/**
 * Copyright 2010-2014 The Kuali Foundation
 *
 * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
 *
 * 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.kuali.common.util.runonce.smart;

import org.kuali.common.util.execute.Executable;
import org.kuali.common.util.log.LoggerUtils;
import org.slf4j.Logger;

import com.google.common.base.Preconditions;

public class RunOnceExecutable implements Executable {

	private static final Logger logger = LoggerUtils.make();

	private final Executable executable;
	private final RunOnce runOnce;
	private final boolean skip;

	@Override
	public void execute() {

		// Skip has been explicitly configured
		if (skip) {
			logger.info("Skipping RunOnce");
			return;
		}

		// Give the RunOnce logic a chance to initialize itself
		runOnce.initialize();

		// If run once is not enabled, we are done
		if (!runOnce.isTrue()) {
			return;
		}

		// Transition to INPROGRESS
		runOnce.changeState(RunOnceState.INPROGRESS);

		// Make sure the run once indicator no longer returns true
		Preconditions.checkState(!runOnce.isTrue(), "Run once must be false");

		try {
			// Now that we have transitioned things to INPROGRESS and verified that the RunOnce indicator
			// no longer returns true, it is safe to fire the executable
			// This sequence of events is what prevents us from running the executable more than once
			executable.execute();

			// Transition to COMPLETED
			runOnce.changeState(RunOnceState.COMPLETED);
		} catch (Exception e) {
			// Transition to FAILED
			runOnce.changeState(RunOnceState.FAILED);
			throw new IllegalStateException("Unexpected execution error", e);
		}
	}

	public static Builder builder(Executable executable, RunOnce runOnce) {
		return new Builder(executable, runOnce);
	}

	public static class Builder {

		// Required
		private final Executable executable;
		private final RunOnce runOnce;

		// Optional
		private boolean skip = false;

		public Builder(Executable executable, RunOnce runOnce) {
			this.executable = executable;
			this.runOnce = runOnce;
		}

		public Builder skip(boolean skip) {
			this.skip = skip;
			return this;
		}

		public RunOnceExecutable build() {
			RunOnceExecutable instance = new RunOnceExecutable(this);
			validate(instance);
			return instance;
		}

		private void validate(RunOnceExecutable instance) {
			Preconditions.checkNotNull(instance.getExecutable(), "executable cannot be null");
			Preconditions.checkNotNull(instance.getRunOnce(), "runOnce cannot be null");
		}
	}

	private RunOnceExecutable(Builder builder) {
		this.executable = builder.executable;
		this.runOnce = builder.runOnce;
		this.skip = builder.skip;
	}

	public Executable getExecutable() {
		return executable;
	}

	public boolean isSkip() {
		return skip;
	}

	public RunOnce getRunOnce() {
		return runOnce;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy