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

com.jaeksoft.searchlib.scheduler.ExecutionAbstract Maven / Gradle / Ivy

Go to download

OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.

The newest version!
/**   
 * License Agreement for OpenSearchServer
 *
 * Copyright (C) 2012-2013 Emmanuel Keller / Jaeksoft
 * 
 * http://www.open-search-server.com
 * 
 * This file is part of OpenSearchServer.
 *
 * OpenSearchServer is free software: you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 * OpenSearchServer is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with OpenSearchServer. 
 *  If not, see .
 **/

package com.jaeksoft.searchlib.scheduler;

import java.util.Date;

import com.jaeksoft.searchlib.util.ReadWriteLock;
import com.jaeksoft.searchlib.web.StartStopListener;

public class ExecutionAbstract {

	private ReadWriteLock rwl = new ReadWriteLock();

	private boolean active;

	private boolean running;

	private boolean abort;

	private Long runningStart;

	private Long runningEnd;

	private Date lastExecution;

	protected ExecutionAbstract() {
		running = false;
		active = false;
		abort = false;
		runningStart = null;
		runningEnd = null;
		lastExecution = null;
	}

	/**
	 * @param active
	 *            the active to set
	 */
	public void setActive(boolean active) {
		rwl.w.lock();
		try {
			this.active = active;
		} finally {
			rwl.w.unlock();
		}
	}

	/**
	 * @return the active
	 */
	public boolean isActive() {
		rwl.r.lock();
		try {
			return active;
		} finally {
			rwl.r.unlock();
		}
	}

	public boolean isRunning() {
		rwl.r.lock();
		try {
			return running;
		} finally {
			rwl.r.unlock();
		}
	}

	public boolean isNotRunning() {
		return !isRunning();
	}

	protected void runningEnd() {
		rwl.w.lock();
		try {
			running = false;
			runningEnd = System.currentTimeMillis();
		} finally {
			rwl.w.unlock();
		}
	}

	/**
	 * @return the last execution date
	 */
	final public Date getLastExecution() {
		rwl.r.lock();
		try {
			return lastExecution;
		} finally {
			rwl.r.unlock();
		}
	}

	/**
	 * Set the last execution date to the current time
	 */
	protected void setRunningNow() {
		rwl.w.lock();
		try {
			running = true;
			abort = false;
			runningStart = System.currentTimeMillis();
			runningEnd = null;
			lastExecution = new Date();
		} finally {
			rwl.w.unlock();
		}
	}

	private boolean hasRun() {
		rwl.r.lock();
		try {
			if (runningStart == null)
				return false;
			if (runningEnd == null)
				return true;
			return runningEnd >= runningStart;
		} finally {
			rwl.r.unlock();
		}
	}

	public boolean waitForStart(long secTimeOut) throws InterruptedException {
		long timeOut = System.currentTimeMillis() + secTimeOut * 1000;
		while (timeOut > System.currentTimeMillis()) {
			if (isRunning())
				return true;
			if (hasRun())
				return true;
			if (StartStopListener.isShutdown())
				return false;
			Thread.sleep(500);
		}
		return false;
	}

	public boolean waitForEnd(long secTimeOut) throws InterruptedException {
		long timeOut = System.currentTimeMillis() + secTimeOut * 1000;
		while (isRunning()) {
			if (StartStopListener.isShutdown())
				return false;
			if (secTimeOut != 0)
				if (System.currentTimeMillis() > timeOut)
					return false;
			Thread.sleep(500);
		}
		return true;
	}

	/**
	 * @return the abort
	 */
	public boolean isAbort() {
		rwl.r.lock();
		try {
			return abort;
		} finally {
			rwl.r.unlock();
		}
	}

	/**
	 * @param abort
	 *            the abort to set
	 */
	public void abort() {
		rwl.w.lock();
		try {
			this.abort = true;
		} finally {
			rwl.w.unlock();
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy