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

com.sun.electric.tool.util.concurrent.patterns.PJob Maven / Gradle / Ivy

/* -*- tab-width: 4 -*-
 *
 * Electric(tm) VLSI Design System
 *
 * File: PJob.java
 *
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
 *
 * Electric(tm) 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.
 *
 * Electric(tm) 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 Electric(tm); see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, Mass 02111-1307, USA.
 */
package com.sun.electric.tool.util.concurrent.patterns;

import com.sun.electric.tool.util.concurrent.barriers.SimpleTDBarrier;
import com.sun.electric.tool.util.concurrent.barriers.TDBarrier;
import com.sun.electric.tool.util.concurrent.exceptions.PoolNotInitializedException;
import com.sun.electric.tool.util.concurrent.runtime.taskParallel.IThreadPool;
import com.sun.electric.tool.util.concurrent.runtime.taskParallel.ThreadPool;

/**
 * Parallel job. This job ends if a new further tasks for this job are
 * available.
 * 
 */
public class PJob {

	public static final int SERIAL = -1;
	protected IThreadPool pool;
	protected TDBarrier barrier;

	public PJob() {
		this(ThreadPool.getThreadPool());
	}

	public PJob(IThreadPool pool) {
		this.pool = pool;
		this.barrier = new SimpleTDBarrier(0);
	}

	/**
	 * Call back function for thread pool workers, to tell this job that a task
	 * of this job is finished.
	 */
	public synchronized void finishTask() {
		barrier.setActive(true);
	}

	/**
	 * Executor method of a job. This function uses the default and block after
	 * starting the job.
	 */
	public void execute() {
		this.execute(true);
	}

	/**
	 * Executor method of a job. In some cases it could be necessary to start
	 * the job non-blocking, e.g. for parallel jobs.
	 */
	public void execute(boolean block) {

		// pool.start();

		if (block) {
			this.join();
		}
	}

	/**
	 * Wait for the job while not finishing.
	 */
	public void join() {
		while (!barrier.isTerminated())
			;
	}

	/**
	 * Use this method to add tasks to this job. This will affect that the new
	 * task is registered by this job.
	 * 
	 * @param task
	 */
	public void add(PTask task, int threadID) {
		if (pool != null) {
			barrier.setActive(false);
			pool.add(task, threadID);
		} else {
			throw new PoolNotInitializedException();
		}
	}

	/**
	 * Use this method to add tasks to this job. This will affect that the new
	 * task is registered by this job.
	 * 
	 * @param task
	 */
	public void add(PTask task) {
		this.add(task, PJob.SERIAL);
	}

	public IThreadPool getThreadPool() {
		return this.pool;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy