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

htsjdk.samtools.util.FileAppendStreamLRUCache Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
/*
 * The MIT License
 *
 * Copyright (c) 2009 The Broad Institute
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package htsjdk.samtools.util;

import htsjdk.samtools.SAMException;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;

/**
 * LRU cache of OutputStreams to handle situation in which it is necessary to have more FileOutputStreams
 * than resource limits will allow.  Least-recently-used FileOutputStream is closed when it is pushed out of
 * the cache.  When adding a new element to the cache, the file is opened in append mode.
 *
 * Actual elements in the cache are usually BufferedOutputStreams wrapping the FileOutputStreams, but will
 * be FileOutputStreams if Defaults.BUFFER_SIZE = 0.
 *
 * @author [email protected]
 */
public class FileAppendStreamLRUCache extends ResourceLimitedMap {
    public FileAppendStreamLRUCache(final int cacheSize) {
        super(cacheSize, new Functor());
    }

    private static class Functor implements ResourceLimitedMapFunctor {
        @Override
        public OutputStream makeValue(final File file) {
            try {
                return IOUtil.maybeBufferOutputStream(new FileOutputStream(file, true));
            }
            catch (final FileNotFoundException e) {
                // In case the file could not be opened because of too many file handles, try to force
                // file handles to be closed.
                System.gc();
                System.runFinalization();
                try {
                    return IOUtil.maybeBufferOutputStream(new FileOutputStream(file, true));
                }
                catch (final FileNotFoundException e2) {
                    throw new SAMException(file + "not found", e2);
                }
            }
        }

        @Override
        public void finalizeValue(final File file, final OutputStream out) {
            try {
                out.flush();
                out.close();
            }
            catch (final IOException e) {
                throw new SAMException("Exception closing FileOutputStream for " + file, e);
            }
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy