Interface Resource

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      void close()
      Closes this resource if this can be closed via AutoCloseable.
      boolean equalTo​(long thisOffsetBytes, Resource that, long thatOffsetBytes, long lengthBytes)
      Returns true if the given Resource has equal contents to this object in the given range of bytes.
      default boolean equalTo​(Resource that)
      Returns true if the given object (that) is an instance of this class and has contents equal to this object.
      void force()
      Forces any changes made to the contents of this memory-mapped Resource to be written to the storage device described by the configured file descriptor.
      ByteOrder getByteOrder()
      Gets the current ByteOrder.
      long getCapacity()
      Gets the capacity of this object in bytes
      MemoryRequestServer getMemoryRequestServer()
      Gets the MemoryRequestServer object, if set, for the below resources to request additional memory.
      long getTotalOffset()
      Returns the offset of address zero of this object relative to the base address of the backing resource.
      boolean isByteBufferResource()
      Returns true if this Memory is backed by a ByteBuffer.
      boolean isByteOrderCompatible​(ByteOrder byteOrder)
      Returns true if the Native ByteOrder is the same as the ByteOrder of the current Buffer or Memory and the same ByteOrder as the given byteOrder.
      boolean isDirectResource()
      If true, the backing resource is direct (off-heap) memory.
      boolean isDuplicateBufferView()
      Returns true if this instance is a duplicate of a Buffer instance.
      boolean isHeapResource()
      Returns true if this object is backed by an on-heap primitive array or an on-heap ByteBuffer.
      boolean isLoaded()
      Tells whether or not the contents of this memory-mapped Resource is resident in physical memory.
      boolean isMemoryApi()
      If true, this is a Memory or WritableMemory instance, which provides the Memory API.
      boolean isMemoryMappedResource()
      Returns true if the backing resource is a memory-mapped file.
      boolean isNonNativeOrder()
      If true, all put and get operations will assume the non-native ByteOrder.
      boolean isReadOnly()
      Returns true if this object or the backing resource is read-only.
      boolean isRegionView()
      Returns true if this instance is a region view of another Memory or Buffer
      boolean isSameResource​(Resource that)
      Returns true if the backing resource of this is identical with the backing resource of that.
      boolean isValid()
      Returns true if this object is valid and has not been closed.
      void load()
      Loads the contents of this memory-mapped Resource into physical memory.
      void setMemoryRequestServer​(MemoryRequestServer memReqSvr)
      Sets the Default MemoryRequestServer
      String toHexString​(String header, long offsetBytes, int lengthBytes)
      Returns a description of this object with an optional formatted hex string of the data for the specified a range.
      long xxHash64​(long in, long seed)
      Returns a 64-bit hash from a single long.
      long xxHash64​(long offsetBytes, long lengthBytes, long seed)
      Returns the 64-bit hash of the sequence of bytes in this object specified by offsetBytes, lengthBytes and a seed.
    • Method Detail

      • equalTo

        default boolean equalTo​(Resource that)
        Returns true if the given object (that) is an instance of this class and has contents equal to this object.
        Parameters:
        that - the given Resource object
        Returns:
        true if the given object has equal contents to this object.
        See Also:
        equalTo(long, Resource, long, long)
      • equalTo

        boolean equalTo​(long thisOffsetBytes,
                        Resource that,
                        long thatOffsetBytes,
                        long lengthBytes)
        Returns true if the given Resource has equal contents to this object in the given range of bytes. This will also check two distinct ranges within the same object for equals.
        Parameters:
        thisOffsetBytes - the starting offset in bytes for this object.
        that - the given Resource
        thatOffsetBytes - the starting offset in bytes for the given Resource object
        lengthBytes - the size of the range in bytes
        Returns:
        true if the given Resource object has equal contents to this object in the given range of bytes.
        Throws:
        IllegalStateException - if either resource is not valid.
        MemoryBoundsException - if there is a bounds violation.
      • force

        void force()
        Forces any changes made to the contents of this memory-mapped Resource to be written to the storage device described by the configured file descriptor.

        If the file descriptor associated with this memory-mapped Resource resides on a local storage device then when this method returns, it is guaranteed that all changes made to this mapped Resource since it was created, or since this method was last invoked, will have been written to that device.

        If the file descriptor associated with this memory-mapped Resource does not reside on a local device then no such guarantee is made.

        If this memory-mapped Resource was not mapped in read/write mode (FileChannel.MapMode.READ_WRITE) then invoking this method may have no effect. In particular, this method has no effect for files mapped in read-only or private mapping modes. This method may or may not have an effect for implementation-specific mapping modes.

        Throws:
        IllegalStateException - if this Resource is not valid.
        IllegalStateException - if this method is not accessed from the owning thread.
        UnsupportedOperationException - if this Resource is not memory-mapped, e.g. if isMapped() == false.
        ReadOnlyException - if this Resource is read-only.
        RuntimeException - if there is some other error writing the contents of this memory-mapped Resource to the associated storage device.
      • getByteOrder

        ByteOrder getByteOrder()
        Gets the current ByteOrder. This may be different from the ByteOrder of the backing resource and ByteOrder.nativeOrder()
        Returns:
        the current ByteOrder.
      • getCapacity

        long getCapacity()
        Gets the capacity of this object in bytes
        Returns:
        the capacity of this object in bytes
      • getMemoryRequestServer

        MemoryRequestServer getMemoryRequestServer()
        Gets the MemoryRequestServer object, if set, for the below resources to request additional memory.

        WritableMemory enables this for ByteBuffer, Heap and Direct Memory backed resources.

        WritableBuffer enables this for ByteBuffer backed resources. However, the object returned is in the form of a WritableMemory. To convert to WritableBuffer use asWritableBuffer(). To enable for Heap and Direct Buffer resources, use the WritableMemory to configure and then call asWritableBuffer().

        Map backed resources will always return null.

        The user must customize the actions of the MemoryRequestServer by implementing the MemoryRequestServer interface.

        For WritableMemory, to enable at runtime set your custom MemoryRequestServer using one of these methods:

        ForWritableBuffer, to enable at runtime set your custom MemoryRequestServer using the following method:

        Simple implementation examples include the DefaultMemoryRequestServer in the main source tree, as well as the ExampleMemoryRequestServerTest and the use with ByteBuffer documented in the DruidIssue11544Test in the test source tree.

        Returns:
        the MemoryRequestServer object or null.
      • getTotalOffset

        long getTotalOffset()
        Returns the offset of address zero of this object relative to the base address of the backing resource. This does not include the object header for heap arrays nor the initial offset of a memory-mapped file.
        Returns:
        the offset of address zero of this object relative to the base address of the backing resource.
      • isByteBufferResource

        boolean isByteBufferResource()
        Returns true if this Memory is backed by a ByteBuffer.
        Returns:
        true if this Memory is backed by a ByteBuffer.
      • isByteOrderCompatible

        boolean isByteOrderCompatible​(ByteOrder byteOrder)
        Returns true if the Native ByteOrder is the same as the ByteOrder of the current Buffer or Memory and the same ByteOrder as the given byteOrder.
        Parameters:
        byteOrder - the given ByteOrder
        Returns:
        true if the Native ByteOrder is the same as the ByteOrder of the current Buffer or Memory and the same ByteOrder as the given byteOrder.
      • isDirectResource

        boolean isDirectResource()
        If true, the backing resource is direct (off-heap) memory. This is the case for allocated direct memory, memory-mapped files, or from a wrapped ByteBuffer that was allocated direct. If false, the backing resource is the Java heap.
        Returns:
        true if the backing resource is direct (off-heap) memory.
      • isDuplicateBufferView

        boolean isDuplicateBufferView()
        Returns true if this instance is a duplicate of a Buffer instance.
        Returns:
        true if this instance is a duplicate of a Buffer instance.
      • isHeapResource

        boolean isHeapResource()
        Returns true if this object is backed by an on-heap primitive array or an on-heap ByteBuffer.
        Returns:
        true if this object is backed by an on-heap primitive array or an on-heap ByteBuffer.
      • isLoaded

        boolean isLoaded()
        Tells whether or not the contents of this memory-mapped Resource is resident in physical memory.

        A return value of true implies that it is highly likely that all of the data in this memory-mapped Resource is resident in physical memory and may therefore be accessed without incurring any virtual-memory page faults or I/O operations.

        A return value of false does not necessarily imply that all of the data in this memory-mapped Resource is not resident in physical memory.

        The returned value is a hint, rather than a guarantee, because the underlying operating system may have paged out some of this Resource's data by the time that an invocation of this method returns.

        Returns:
        true if it is likely that all of the data in this memory-mapped Resource is resident in physical memory
        Throws:
        IllegalStateException - if this Resource is not valid.
        IllegalStateException - if this method is not accessed from the owning thread.
        UnsupportedOperationException - if this Resource is not memory-mapped, e.g. if isMapped() == false.
      • isMemoryApi

        boolean isMemoryApi()
        If true, this is a Memory or WritableMemory instance, which provides the Memory API. The Memory API is the principal API for this Memory Component. It provides a rich variety of direct manipulations of four types of resources: On-heap memory, direct (off-heap) memory, memory-mapped files, and ByteBuffers. If false, this is a Buffer or WritableBuffer instance, which provides the Buffer API.

        The Buffer API is largely parallel to the Memory API except that it adds a positional API similar to that in ByteBuffer. The positional API is a convenience when iterating over structured arrays, or buffering input or output streams (thus the name).

        Returns:
        true if this is a Memory or WritableMemory instance, which provides the Memory API, otherwise this is a Buffer or WritableBuffer instance, which provides the Buffer API.
      • isMemoryMappedResource

        boolean isMemoryMappedResource()
        Returns true if the backing resource is a memory-mapped file.
        Returns:
        true if the backing resource is a memory-mapped file.
      • isNonNativeOrder

        boolean isNonNativeOrder()
        If true, all put and get operations will assume the non-native ByteOrder. Otherwise, all put and get operations will assume the native ByteOrder.
        Returns:
        true, if all put and get operations will assume the non-native ByteOrder.
      • isReadOnly

        boolean isReadOnly()
        Returns true if this object or the backing resource is read-only.
        Returns:
        true if this object or the backing resource is read-only.
      • isRegionView

        boolean isRegionView()
        Returns true if this instance is a region view of another Memory or Buffer
        Returns:
        true if this instance is a region view of another Memory or Buffer
      • isSameResource

        boolean isSameResource​(Resource that)
        Returns true if the backing resource of this is identical with the backing resource of that. The capacities must be the same. If this is a region, the region offset must also be the same.
        Parameters:
        that - A different non-null Resource
        Returns:
        true if the backing resource of this is the same as the backing resource of that.
      • isValid

        boolean isValid()
        Returns true if this object is valid and has not been closed. This is relevant only for direct (off-heap) memory and memory-mapped Files.
        Returns:
        true if this object is valid and has not been closed.
      • load

        void load()
        Loads the contents of this memory-mapped Resource into physical memory.

        This method makes a best effort to ensure that, when it returns, this contents of the memory-mapped Resource is resident in physical memory. Invoking this method may cause some number of page faults and I/O operations to occur.

        Throws:
        IllegalStateException - if this Resource is not valid.
        IllegalStateException - if this method is not accessed from the owning thread.
        UnsupportedOperationException - if this Resource is not memory-mapped, e.g. if isMapped() == false.
      • setMemoryRequestServer

        void setMemoryRequestServer​(MemoryRequestServer memReqSvr)
        Sets the Default MemoryRequestServer
        Parameters:
        memReqSvr - the given MemoryRequestServer.
      • toHexString

        String toHexString​(String header,
                           long offsetBytes,
                           int lengthBytes)
        Returns a description of this object with an optional formatted hex string of the data for the specified a range. Used primarily for testing.
        Parameters:
        header - a descriptive header
        offsetBytes - offset bytes relative to this object start
        lengthBytes - number of bytes to convert to a hex string // @param withData include output listing of byte data in the given range
        Returns:
        a formatted hex string in a human readable array
      • xxHash64

        long xxHash64​(long offsetBytes,
                      long lengthBytes,
                      long seed)
        Returns the 64-bit hash of the sequence of bytes in this object specified by offsetBytes, lengthBytes and a seed. Note that the sequence of bytes is always processed in the same order independent of endianness.
        Parameters:
        offsetBytes - the given offset in bytes to the first byte of the byte sequence.
        lengthBytes - the given length in bytes of the byte sequence.
        seed - the given long seed.
        Returns:
        the 64-bit hash of the sequence of bytes in this object specified by offsetBytes and lengthBytes.
      • xxHash64

        long xxHash64​(long in,
                      long seed)
        Returns a 64-bit hash from a single long. This method has been optimized for speed when only a single hash of a long is required.
        Parameters:
        in - A long.
        seed - A long valued seed.
        Returns:
        the hash.