/* * 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.util; //~--- JDK imports ------------------------------------------------------------ import java.io.BufferedOutputStream; import java.io.IOException; import java.io.OutputStream; import java.lang.ref.WeakReference; import java.util.ArrayList; import java.util.Iterator; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.TimeUnit; //~--- non-JDK imports -------------------------------------------------------- import org.slf4j.Logger; import org.slf4j.LoggerFactory; import sh.isaac.api.Get; //~--- classes ---------------------------------------------------------------- /** * {@link TimeFlushBufferedOutputStream} * * A wrapper for a {@link BufferedOutputStream} which calls flush once a minute, to ensure * that data is not hanging out unbuffered for a long period of time, before being written to disk. * * @author <a href="mailto:daniel.armbrust.list@gmail.com">Dan Armbrust</a> */ public class TimeFlushBufferedOutputStream extends BufferedOutputStream { /** The Constant instances_. */ private static final ArrayList<WeakReference<TimeFlushBufferedOutputStream>> instances = new ArrayList<>(); /** The Constant logger. */ private static final Logger logger = LoggerFactory.getLogger(TimeFlushBufferedOutputStream.class); /** The scheduled job. */ private static ScheduledFuture<?> scheduledJob; //~--- constructors -------------------------------------------------------- /** * Instantiates a new time flush buffered output stream. * * @param out the out */ public TimeFlushBufferedOutputStream(OutputStream out) { super(out); scheduleFlush(); } /** * Instantiates a new time flush buffered output stream. * * @param out the out * @param size the size */ public TimeFlushBufferedOutputStream(OutputStream out, int size) { super(out, size); scheduleFlush(); } //~--- methods ------------------------------------------------------------- /** * Close. * * @throws IOException Signals that an I/O exception has occurred. */ @Override public void close() throws IOException { synchronized (instances) { final Iterator<WeakReference<TimeFlushBufferedOutputStream>> it = instances.iterator(); while (it.hasNext()) { if (it.next() .get() == this) { it.remove(); break; } } } super.close(); } /** * Schedule flush. */ private void scheduleFlush() { synchronized (instances) { instances.add(new WeakReference<>(this)); } // Just sync on something at the class level synchronized (logger) { if (scheduledJob == null) { logger.info("Scheduling thread to flush time flush buffers"); scheduledJob = Get.workExecutors().getScheduledThreadPoolExecutor().scheduleAtFixedRate(() -> { if (instances.isEmpty()) { scheduledJob.cancel(false); scheduledJob = null; logger.info("Stopping time flush buffer thread, as no instances are registered"); } else { logger.debug("Calling flush on " + instances.size() + " buffered writers"); synchronized (instances) { final Iterator<WeakReference<TimeFlushBufferedOutputStream>> it = instances.iterator(); while (it.hasNext()) { final WeakReference<TimeFlushBufferedOutputStream> item = it.next(); if (item.get() == null) { it.remove(); } else { try { item.get() .flush(); } catch (final Exception e) { logger.error("error during time flush", e); } } } } } },1,1,TimeUnit.MINUTES); } } } }