Class FileAllocator

java.lang.Object
org.simpleframework.util.buffer.FileAllocator
All Implemented Interfaces:
Closeable, AutoCloseable, Allocator

public class FileAllocator extends Object implements Allocator
The FileAllocator object is used to create buffers that can be written to the file system. This creates buffers as files if they are larger than the specified limit. This ensures that buffers of arbitrary large size can be created. All buffer sizes under the limit are created using byte arrays allocated on the executing VM heap. This ensures that optimal performance is maintained for buffers of reasonable size.
Author:
Niall Gallagher
  • Constructor Summary

    Constructors
    Constructor
    Description
    Constructor for the FileAllocator object.
    FileAllocator(int limit)
    Constructor for the FileAllocator object.
    Constructor for the FileAllocator object.
    FileAllocator(String prefix, int limit)
    Constructor for the FileAllocator object.
  • Method Summary

    Modifier and Type
    Method
    Description
    This will allocate a file buffer which will write data for the buffer to a file.
    allocate(int size)
    This will allocate a file buffer which will write data for the buffer to a file.
    void
    This method is used to close the allocator so that resources that are occupied by the allocator can be freed.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • FileAllocator

      public FileAllocator() throws IOException
      Constructor for the FileAllocator object. This is used to create buffers in memory up to a threshold size. If a buffer is required over the threshold size then the data is written to a file, where it can be retrieved at a later point.
      Throws:
      IOException
    • FileAllocator

      public FileAllocator(int limit) throws IOException
      Constructor for the FileAllocator object. This is used to create buffers in memory up to a threshold size. If a buffer is required over the threshold size then the data is written to a file, where it can be retrieved at a later point.
      Parameters:
      limit - this is the maximum size for a heap buffer
      Throws:
      IOException
    • FileAllocator

      public FileAllocator(String prefix) throws IOException
      Constructor for the FileAllocator object. This is used to create buffers in memory up to a threshold size. If a buffer is required over the threshold size then the data is written to a file, where it can be retrieved at a later point.
      Parameters:
      prefix - this is the file prefix for the file buffers
      Throws:
      IOException
    • FileAllocator

      public FileAllocator(String prefix, int limit) throws IOException
      Constructor for the FileAllocator object. This is used to create buffers in memory up to a threshold size. If a buffer is required over the threshold size then the data is written to a file, where it can be retrieved at a later point.
      Parameters:
      prefix - this is the file prefix for the file buffers
      limit - this is the maximum size for a heap buffer
      Throws:
      IOException
  • Method Details

    • allocate

      public Buffer allocate() throws IOException
      This will allocate a file buffer which will write data for the buffer to a file. Buffers allocated by this method can be of arbitrary size as data is appended directly to a temporary file. This ensures there is no upper limit for appended data.
      Specified by:
      allocate in interface Allocator
      Returns:
      a buffer which will write to a temporary file
      Throws:
      IOException
    • allocate

      public Buffer allocate(int size) throws IOException
      This will allocate a file buffer which will write data for the buffer to a file. Buffers allocated by this method can be of arbitrary size as data is appended directly to a temporary file. This ensures there is no upper limit for appended data. If the size required is less than the limit then the buffer is an in memory array which provides optimal performance.
      Specified by:
      allocate in interface Allocator
      Parameters:
      size - this is the size of the buffer to be created
      Returns:
      a buffer which will write to a created temporary file
      Throws:
      IOException
    • close

      public void close() throws IOException
      This method is used to close the allocator so that resources that are occupied by the allocator can be freed. This will allow the allocator to be created and closed repeatedly in a single process without holding on to resources such as mapped file buffers or threads.
      Specified by:
      close in interface Allocator
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Throws:
      IOException