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

com.jaeksoft.searchlib.process.ThreadMasterAbstract 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) 2010-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.process;

import java.lang.Thread.State;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.TreeMap;

import com.jaeksoft.searchlib.Client;
import com.jaeksoft.searchlib.Logging;
import com.jaeksoft.searchlib.SearchLibException;
import com.jaeksoft.searchlib.config.Config;
import com.jaeksoft.searchlib.util.InfoCallback;
import com.jaeksoft.searchlib.util.ReadWriteLock;
import com.jaeksoft.searchlib.util.ThreadUtils;
import com.jaeksoft.searchlib.util.Variables;

public abstract class ThreadMasterAbstract, T extends ThreadAbstract>
		extends ThreadAbstract {

	final private ReadWriteLock rwl = new ReadWriteLock();

	private final LinkedHashSet threads;

	private final TreeMap, T> threadMap;

	private volatile T[] threadArray;

	protected ThreadMasterAbstract(Config config) {
		super(config, null, null, null);
		threadArray = null;
		threads = new LinkedHashSet();
		threadMap = new TreeMap, T>();
	}

	public int getThreadsCount() {
		rwl.r.lock();
		try {
			return threads.size();
		} finally {
			rwl.r.unlock();
		}
	}

	protected void add(T thread) {
		rwl.w.lock();
		try {
			threads.add(thread);
			threadArray = null;
			thread.execute(180);
		} finally {
			rwl.w.unlock();
		}
	}

	public boolean isThread(ThreadItem crawlItem) {
		rwl.r.lock();
		try {
			return threadMap.containsKey(crawlItem);
		} finally {
			rwl.r.unlock();
		}
	}

	public T getCrawlThread(ThreadItem crawlItem) {
		rwl.r.lock();
		try {
			return threadMap.get(crawlItem);
		} finally {
			rwl.r.unlock();
		}
	}

	protected void remove(T thread) {
		rwl.w.lock();
		try {
			ThreadItem uti = thread.getThreadItem();
			if (uti != null)
				threadMap.remove(uti);
			threads.remove(thread);
			threadArray = null;
		} finally {
			rwl.w.unlock();
		}
	}

	protected abstract T[] getNewArray(int size);

	public T[] getThreads() {
		rwl.r.lock();
		try {
			if (threadArray != null)
				return threadArray;
			threadArray = getNewArray(threads.size());
			return threads.toArray(threadArray);
		} finally {
			rwl.r.unlock();
		}
	}

	@Override
	public void abort() {
		rwl.r.lock();
		try {
			super.abort();
			for (T thread : threads)
				thread.abort();
		} finally {
			rwl.r.unlock();
		}
	}

	protected void waitForChild(int maxIdleTime) {
		while (getThreadsCount() > 0) {
			try {
				synchronized (this) {
					wait(5000);
				}

				boolean masterAbort = isAborted();
				// Remove terminated thread
				rwl.w.lock();
				try {
					synchronized (threads) {
						boolean remove = false;
						Iterator it = threads.iterator();
						while (it.hasNext()) {
							T thread = it.next();
							if (thread.getThreadState() == State.TERMINATED) {
								it.remove();
								remove = true;
							} else if (masterAbort
									&& thread.isIdleTimeExhausted(maxIdleTime)) {
								// Force child aborting if the crawl master is
								// already aborting and the thread idle time
								// expired
								Logging.warn("Thread aborting (time out): "
										+ thread.getCurrentMethod());
								thread.abort();
								it.remove();
								remove = true;
							}
						}
						if (remove)
							threadArray = null;
					}
				} finally {
					rwl.w.unlock();
				}
			} catch (InterruptedException e) {
				Logging.warn(e.getMessage(), e);
			}
			ThreadUtils.sleepMs(1000);
		}
	}

	public String getChildProcessInfo() {
		rwl.r.lock();
		try {
			StringBuilder sb = new StringBuilder();
			int l = threadMap.size();
			switch (l) {
			case 0:
				sb.append("Not running");
				break;
			case 1:
				sb.append("1 process");
				break;
			default:
				sb.append(l);
				sb.append(" processes");
				break;
			}
			return sb.toString();
		} finally {
			rwl.r.unlock();
		}
	}

	public T execute(Client client, ThreadItem threadItem,
			boolean bWaitForCompletion, Variables variables,
			InfoCallback infoCallback) throws InterruptedException,
			SearchLibException {
		T crawlThread = null;
		rwl.w.lock();
		try {
			if (threadItem != null) {
				if (threadMap.containsKey(threadItem)) {
					throw new SearchLibException("The job "
							+ threadItem.toString() + " is already running");
				}
			}
			crawlThread = getNewThread(client, threadItem, variables,
					infoCallback);
			if (threadItem != null) {
				threadMap.put(threadItem, crawlThread);
				threadItem.setLastThread(crawlThread);
			}
			add(crawlThread);
		} finally {
			rwl.w.unlock();
		}
		if (crawlThread == null)
			return null;
		crawlThread.waitForStart(600);
		if (bWaitForCompletion)
			crawlThread.waitForEnd(0);
		return crawlThread;
	}

	protected T getNewThread(Client client, ThreadItem threadItem,
			Variables variables, InfoCallback infoCallback)
			throws SearchLibException {
		throw new SearchLibException("Not implemented");
	}

	@Override
	public void runner() throws Exception {
		throw new SearchLibException("Not implemented");
	}

	@Override
	public void release() {
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy