/* * Licensed under the Apache License, Version 2.0 (the "License"); * * You may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * limitations under the License. * * Contributions from 2013-2017 where performed either by US government * employees, or under US Veterans Health Administration contracts. * * US Veterans Health Administration contributions by government employees * are work of the U.S. Government and are not subject to copyright * protection in the United States. Portions contributed by government * employees are USGovWork (17USC ยง105). Not subject to copyright. * * Contribution by contractors to the US Veterans Health Administration * during this period are contractually contributed under the * Apache License, Version 2.0. * * See: https://www.usa.gov/government-works * * Contributions prior to 2013: * * Copyright (C) International Health Terminology Standards Development Organisation. * Licensed under the Apache License, Version 2.0. * */ package sh.isaac.api.task; //~--- JDK imports ------------------------------------------------------------ import java.util.ArrayList; import java.util.List; import java.util.concurrent.ExecutionException; //~--- non-JDK imports -------------------------------------------------------- import javafx.concurrent.Task; //~--- classes ---------------------------------------------------------------- /** * {@link OptionalWaitTask} * This class wraps a task, where the task doesn't serve the purpose of calculating a value, * but rather, is forcing a wait on a background task. * * This allows a caller to wait for the background task, or return the value immediately. * * A use case for this is in the object builders - the object is created and read, * but a subtask is issued to write the object to disk. * * Some callers may not care to wait for the write to disk, while others may. * * @author <a href="mailto:daniel.armbrust.list@gmail.com">Dan Armbrust</a> * @param <T> the generic type */ public class OptionalWaitTask<T> { /** The background tasks. */ private final ArrayList<OptionalWaitTask<?>> backgroundTasks = new ArrayList<>(); /** The primary task. */ private final Task<Void> primaryTask; /** The value. */ private final T value; //~--- constructors -------------------------------------------------------- /** * Instantiates a new optional wait task. * * @param task the task * @param value the value * @param nestedTasks the nested tasks */ public OptionalWaitTask(Task<Void> task, T value, List<OptionalWaitTask<?>> nestedTasks) { this.primaryTask = task; if (nestedTasks != null) { this.backgroundTasks.addAll(nestedTasks); } this.value = value; } //~--- get methods --------------------------------------------------------- /** * Wait for the background task, then return the value. * * @return the t * @throws InterruptedException the interrupted exception * @throws ExecutionException the execution exception */ public T get() throws InterruptedException, ExecutionException { for (final OptionalWaitTask<?> t: this.backgroundTasks) { t.get(); } if (this.primaryTask != null) { this.primaryTask.get(); } return this.value; } /** * Calls {@link #get() but translates exceptions to runtime exceptions for convenient use in streaming APIs.} * * @return the no throw */ public T getNoThrow() { try { return get(); } catch (InterruptedException | ExecutionException e) { throw new RuntimeException(e); } } /** * Return the object immediately (but this object may not yet be serialized throughout the system). * * @return the no wait */ public T getNoWait() { return this.value; } }