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

com.liferay.portal.fabric.local.agent.LocalFabricAgent Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library 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 Lesser General Public License for more
 * details.
 */

package com.liferay.portal.fabric.local.agent;

import com.liferay.petra.concurrent.FutureListener;
import com.liferay.petra.concurrent.NoticeableFuture;
import com.liferay.petra.process.ProcessCallable;
import com.liferay.petra.process.ProcessConfig;
import com.liferay.petra.process.ProcessException;
import com.liferay.petra.process.ProcessExecutor;
import com.liferay.portal.fabric.agent.FabricAgent;
import com.liferay.portal.fabric.local.worker.LocalFabricWorker;
import com.liferay.portal.fabric.status.FabricStatus;
import com.liferay.portal.fabric.status.LocalFabricStatus;
import com.liferay.portal.fabric.worker.FabricWorker;

import java.io.Serializable;

import java.util.Collection;
import java.util.Collections;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.Future;

/**
 * @author Shuyang Zhou
 */
public class LocalFabricAgent implements FabricAgent {

	public LocalFabricAgent(ProcessExecutor processExecutor) {
		_processExecutor = processExecutor;
	}

	@Override
	public  FabricWorker execute(
			ProcessConfig processConfig, ProcessCallable processCallable)
		throws ProcessException {

		final FabricWorker fabricWorker = new LocalFabricWorker<>(
			_processExecutor.execute(processConfig, processCallable));

		_fabricWorkerQueue.add(fabricWorker);

		NoticeableFuture noticeableFuture =
			fabricWorker.getProcessNoticeableFuture();

		noticeableFuture.addFutureListener(
			new FutureListener() {

				@Override
				public void complete(Future future) {
					_fabricWorkerQueue.remove(fabricWorker);
				}

			});

		return fabricWorker;
	}

	@Override
	public FabricStatus getFabricStatus() {
		return LocalFabricStatus.INSTANCE;
	}

	@Override
	public Collection> getFabricWorkers() {
		return Collections.unmodifiableCollection(_fabricWorkerQueue);
	}

	private final Queue> _fabricWorkerQueue =
		new ConcurrentLinkedQueue<>();
	private final ProcessExecutor _processExecutor;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy