org.tinylog.writers.SharedFileWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinylog-impl Show documentation
Show all versions of tinylog-impl Show documentation
tinylog native logging implementation
The newest version!
/*
* Copyright 2017 Martin Winandy
*
* 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.
*/
package org.tinylog.writers;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.channels.FileLock;
import java.nio.charset.Charset;
import java.util.Collections;
import java.util.Map;
import org.tinylog.Level;
import org.tinylog.core.LogEntry;
import org.tinylog.provider.InternalLogger;
import org.tinylog.writers.raw.ByteArrayWriter;
/**
* Writer for outputting log entries to a shared log file. Multiple processes can write simultaneously to the same log
* file. The shared file writer ensures that no process overrides log entries of another process. Already existing files
* can be continued. The output can be buffered for improving performance, but is not recommended as outputs of
* different processes will be not in chronological order.
*/
public final class SharedFileWriter extends AbstractFormatPatternWriter {
private final RandomAccessFile lockFile;
private final FileLock lock;
private final Charset charset;
private final ByteArrayWriter writer;
/**
* @throws IOException
* Log file cannot be opened for write access
* @throws IllegalArgumentException
* Log file is not defined in configuration
*/
public SharedFileWriter() throws IOException {
this(Collections.emptyMap());
}
/**
* @param properties
* Configuration for writer
*
* @throws IOException
* Log file cannot be opened for write access
* @throws IllegalArgumentException
* Log file is not defined in configuration
*/
public SharedFileWriter(final Map properties) throws IOException {
super(properties);
String fileName = getFileName();
boolean append = getBooleanValue("append");
boolean buffered = getBooleanValue("buffered");
boolean writingThread = getBooleanValue("writingthread");
if (append) {
lockFile = null;
lock = null;
} else {
lockFile = new RandomAccessFile(fileName + ".lock", "rw");
FileLock exclusiveLock = lockFile.getChannel().tryLock(0, Long.MAX_VALUE, false);
if (exclusiveLock == null) {
append = true;
} else {
exclusiveLock.release();
}
lock = lockFile.getChannel().lock(0, Long.MAX_VALUE, true);
if (!lock.isShared()) {
append = true;
lock.release();
InternalLogger.log(Level.WARN, "Operating system does not support shared locks. "
+ "Shared file writer will only work properly, if append mode is enabled.");
}
}
charset = getCharset();
writer = createByteArrayWriter(fileName, append, buffered, !writingThread, true, charset);
}
@Override
public void write(final LogEntry logEntry) throws IOException {
byte[] data = render(logEntry).getBytes(charset);
writer.write(data, 0, data.length);
}
@Override
public void flush() throws IOException {
writer.flush();
}
@Override
public void close() throws IOException {
try {
writer.close();
} finally {
if (lockFile != null) {
try {
lock.release();
} finally {
lockFile.close();
}
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy