
io.aeron.driver.buffer.FileStoreLogFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aeron-driver Show documentation
Show all versions of aeron-driver Show documentation
Efficient reliable UDP unicast, UDP multicast, and IPC transport protocol.
/*
* Copyright 2014-2024 Real Logic Limited.
*
* 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
*
* https://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 io.aeron.driver.buffer;
import io.aeron.exceptions.AeronException;
import io.aeron.exceptions.StorageSpaceException;
import org.agrona.ErrorHandler;
import org.agrona.IoUtil;
import org.agrona.LangUtil;
import org.agrona.concurrent.status.AtomicCounter;
import java.io.File;
import java.io.IOException;
import java.io.UncheckedIOException;
import java.nio.file.FileStore;
import java.nio.file.Files;
import static io.aeron.logbuffer.LogBufferDescriptor.computeLogLength;
/**
* Factory for creating {@link RawLog}s in the source publications or publication images directories as appropriate.
*/
public class FileStoreLogFactory implements LogFactory
{
private static final String PUBLICATIONS = "publications";
private static final String IMAGES = "images";
private final long lowStorageWarningThreshold;
private final int filePageSize;
private final boolean checkStorage;
private final ErrorHandler errorHandler;
private final File publicationsDir;
private final File imagesDir;
private final FileStore fileStore;
private final AtomicCounter mappedBytesCounter;
/**
* Construct a {@link LogFactory} over a file store.
*
* @param dataDirectoryName where the log buffers will be created.
* @param filePageSize of the filesystem.
* @param checkStorage for sufficient space before allocating files.
* @param lowStorageWarningThreshold when warnings about remaining space will begin.
* @param errorHandler to call when an error is encountered.
* @param mappedBytesCounter used to keep track of how many bytes are mapped by the driver.
*/
public FileStoreLogFactory(
final String dataDirectoryName,
final int filePageSize,
final boolean checkStorage,
final long lowStorageWarningThreshold,
final ErrorHandler errorHandler,
final AtomicCounter mappedBytesCounter)
{
this.filePageSize = filePageSize;
this.lowStorageWarningThreshold = lowStorageWarningThreshold;
this.checkStorage = checkStorage;
this.errorHandler = errorHandler;
this.mappedBytesCounter = mappedBytesCounter;
final File dataDir = new File(dataDirectoryName);
publicationsDir = new File(dataDir, PUBLICATIONS);
imagesDir = new File(dataDir, IMAGES);
IoUtil.ensureDirectoryExists(publicationsDir, PUBLICATIONS);
IoUtil.ensureDirectoryExists(imagesDir, IMAGES);
try
{
fileStore = checkStorage ? Files.getFileStore(dataDir.toPath()) : null;
}
catch (final IOException ex)
{
throw new UncheckedIOException(ex);
}
}
/**
* {@inheritDoc}
*/
public void close()
{
}
/**
* Create new {@link RawLog} in the publications' directory for the supplied triplet.
*
* @param correlationId to use to distinguish this publication
* @param termBufferLength length of each term
* @param useSparseFiles for the log buffer.
* @return the newly allocated {@link RawLog}
*/
public RawLog newPublication(final long correlationId, final int termBufferLength, final boolean useSparseFiles)
{
return newInstance(publicationsDir, correlationId, termBufferLength, useSparseFiles);
}
/**
* Create new {@link RawLog} in the rebuilt publication images directory for the supplied triplet.
*
* @param correlationId to use to distinguish this connection
* @param termBufferLength to use for the log buffer
* @param useSparseFiles for the log buffer.
* @return the newly allocated {@link RawLog}
*/
public RawLog newImage(final long correlationId, final int termBufferLength, final boolean useSparseFiles)
{
return newInstance(imagesDir, correlationId, termBufferLength, useSparseFiles);
}
private RawLog newInstance(
final File rootDir,
final long correlationId,
final int termLength,
final boolean useSparseFiles)
{
final long logLength = computeLogLength(termLength, filePageSize);
checkStorage(logLength);
final File location = streamLocation(rootDir, correlationId);
return new MappedRawLog(
location, useSparseFiles, logLength, termLength, filePageSize, errorHandler, mappedBytesCounter);
}
private void checkStorage(final long logLength)
{
if (checkStorage)
{
final long usableSpace = getUsableSpace();
if (usableSpace < logLength)
{
throw new StorageSpaceException(
"insufficient usable storage for new log of length=" + logLength + " usable=" + usableSpace +
" in " + fileStore);
}
if (usableSpace <= lowStorageWarningThreshold)
{
final String msg =
"space is running low: threshold=" + lowStorageWarningThreshold +
" usable=" + usableSpace + " in " + fileStore;
errorHandler.onError(new AeronException(msg, AeronException.Category.WARN));
}
}
}
private long getUsableSpace()
{
long usableSpace = 0;
try
{
usableSpace = fileStore.getUsableSpace();
}
catch (final IOException ex)
{
LangUtil.rethrowUnchecked(ex);
}
return usableSpace;
}
private static File streamLocation(final File rootDir, final long correlationId)
{
final String fileName = correlationId + ".logbuffer";
return new File(rootDir, fileName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy