//
// ========================================================================
// Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under
// the terms of the Eclipse Public License 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0
//
// This Source Code may also be made available under the following
// Secondary Licenses when the conditions for such availability set
// forth in the Eclipse Public License, v. 2.0 are satisfied:
// the Apache License v2.0 which is available at
// https://www.apache.org/licenses/LICENSE-2.0
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.util.thread.strategy;

import java.util.concurrent.Executor;

import org.eclipse.jetty.util.thread.AutoLock;
import org.eclipse.jetty.util.thread.ExecutionStrategy;
import org.eclipse.jetty.util.thread.Invocable;
import org.eclipse.jetty.util.thread.Invocable.InvocationType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

A strategy where the caller thread iterates over task production, submitting each task to an Executor for execution.

/** * <p>A strategy where the caller thread iterates over task production, submitting each * task to an {@link Executor} for execution.</p> */
public class ProduceExecuteConsume implements ExecutionStrategy { private static final Logger LOG = LoggerFactory.getLogger(ProduceExecuteConsume.class); private final AutoLock _lock = new AutoLock(); private final Producer _producer; private final Executor _executor; private State _state = State.IDLE; public ProduceExecuteConsume(Producer producer, Executor executor) { _producer = producer; _executor = executor; } @Override public void produce() { try (AutoLock lock = _lock.lock()) { switch (_state) { case IDLE: _state = State.PRODUCE; break; case PRODUCE: case EXECUTE: _state = State.EXECUTE; return; default: throw new IllegalStateException(_state.toString()); } } // Produce until we no task is found. while (true) { // Produce a task. Runnable task = _producer.produce(); if (LOG.isDebugEnabled()) LOG.debug("{} produced {}", _producer, task); if (task == null) { try (AutoLock lock = _lock.lock()) { switch (_state) { case IDLE: throw new IllegalStateException(); case PRODUCE: _state = State.IDLE; return; case EXECUTE: _state = State.PRODUCE; continue; default: throw new IllegalStateException(_state.toString()); } } } // Execute the task. if (Invocable.getInvocationType(task) == InvocationType.NON_BLOCKING) task.run(); else _executor.execute(task); } } @Override public void dispatch() { _executor.execute(this::produce); } private enum State { IDLE, PRODUCE, EXECUTE } }