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

org.apache.logging.log4j.core.appender.RandomAccessFileManager Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta2
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements. See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */
package org.apache.logging.log4j.core.appender;

import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.io.RandomAccessFile;
import java.io.Serializable;
import java.nio.ByteBuffer;
import java.util.HashMap;
import java.util.Map;

import org.apache.logging.log4j.core.Layout;
import org.apache.logging.log4j.core.LoggerContext;
import org.apache.logging.log4j.core.config.Configuration;
import org.apache.logging.log4j.core.util.FileUtils;
import org.apache.logging.log4j.core.util.NullOutputStream;

/**
 * Extends OutputStreamManager but instead of using a buffered output stream,
 * this class uses a {@code ByteBuffer} and a {@code RandomAccessFile} to do the
 * I/O.
 */
public class RandomAccessFileManager extends OutputStreamManager {
    static final int DEFAULT_BUFFER_SIZE = 256 * 1024;

    private static final RandomAccessFileManagerFactory FACTORY = new RandomAccessFileManagerFactory();

    private final String advertiseURI;
    private final RandomAccessFile randomAccessFile;
    private final ThreadLocal isEndOfBatch = new ThreadLocal<>();

    protected RandomAccessFileManager(final LoggerContext loggerContext, final RandomAccessFile file, final String fileName,
            final OutputStream os, final int bufferSize, final String advertiseURI,
            final Layout layout, final boolean writeHeader) {
        super(loggerContext, os, fileName, false, layout, writeHeader, ByteBuffer.wrap(new byte[bufferSize]));
        this.randomAccessFile = file;
        this.advertiseURI = advertiseURI;
        this.isEndOfBatch.set(Boolean.FALSE);
    }

    /**
     * Returns the RandomAccessFileManager.
     *
     * @param fileName The name of the file to manage.
     * @param append true if the file should be appended to, false if it should
     *            be overwritten.
     * @param immediateFlush true if the contents should be flushed to disk on every
     *            write
     * @param bufferSize The buffer size.
     * @param advertiseURI the URI to use when advertising the file
     * @param layout The layout.
     * @param configuration The configuration.
     * @return A RandomAccessFileManager for the File.
     */
	public static RandomAccessFileManager getFileManager(final String fileName, final boolean append,
			final boolean immediateFlush, final int bufferSize, final String advertiseURI,
			final Layout layout, final Configuration configuration) {
		return narrow(RandomAccessFileManager.class, getManager(fileName,
				new FactoryData(append, immediateFlush, bufferSize, advertiseURI, layout, configuration), FACTORY));
	}

    public Boolean isEndOfBatch() {
        return isEndOfBatch.get();
    }

    public void setEndOfBatch(final boolean endOfBatch) {
        this.isEndOfBatch.set(Boolean.valueOf(endOfBatch));
    }

    @Override
    protected void writeToDestination(final byte[] bytes, final int offset, final int length) {
        try {
            randomAccessFile.write(bytes, offset, length);
        } catch (final IOException ex) {
            final String msg = "Error writing to RandomAccessFile " + getName();
            throw new AppenderLoggingException(msg, ex);
        }
    }

    @Override
    public synchronized void flush() {
        flushBuffer(byteBuffer);
    }

    @Override
    public synchronized boolean closeOutputStream() {
        flush();
        try {
            randomAccessFile.close();
            return true;
        } catch (final IOException ex) {
            logError("Unable to close RandomAccessFile", ex);
            return false;
        }
    }

    /**
     * Returns the name of the File being managed.
     *
     * @return The name of the File being managed.
     */
    public String getFileName() {
        return getName();
    }

    /**
     * Returns the buffer capacity.
     * @return the buffer size
     */
    public int getBufferSize() {
        return byteBuffer.capacity();
    }

    /**
     * Gets this FileManager's content format specified by:
     * 

* Key: "fileURI" Value: provided "advertiseURI" param. *

* * @return Map of content format keys supporting FileManager */ @Override public Map getContentFormat() { final Map result = new HashMap<>( super.getContentFormat()); result.put("fileURI", advertiseURI); return result; } /** * Factory Data. */ private static class FactoryData extends ConfigurationFactoryData { private final boolean append; private final boolean immediateFlush; private final int bufferSize; private final String advertiseURI; private final Layout layout; /** * Constructor. * * @param append Append status. * @param bufferSize size of the buffer * @param configuration The configuration. */ public FactoryData(final boolean append, final boolean immediateFlush, final int bufferSize, final String advertiseURI, final Layout layout, final Configuration configuration) { super(configuration); this.append = append; this.immediateFlush = immediateFlush; this.bufferSize = bufferSize; this.advertiseURI = advertiseURI; this.layout = layout; } } /** * Factory to create a RandomAccessFileManager. */ private static class RandomAccessFileManagerFactory implements ManagerFactory { /** * Create a RandomAccessFileManager. * * @param name The name of the File. * @param data The FactoryData * @return The RandomAccessFileManager for the File. */ @Override public RandomAccessFileManager createManager(final String name, final FactoryData data) { final File file = new File(name); if (!data.append) { file.delete(); } final boolean writeHeader = !data.append || !file.exists(); final OutputStream os = NullOutputStream.getInstance(); RandomAccessFile raf; try { FileUtils.makeParentDirs(file); raf = new RandomAccessFile(name, "rw"); if (data.append) { raf.seek(raf.length()); } else { raf.setLength(0); } return new RandomAccessFileManager(data.getLoggerContext(), raf, name, os, data.bufferSize, data.advertiseURI, data.layout, writeHeader); } catch (final Exception ex) { LOGGER.error("RandomAccessFileManager (" + name + ") " + ex, ex); } return null; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy