com.amazon.ion.impl.bin.Block Maven / Gradle / Ivy
Show all versions of ion-java Show documentation
/*
* Copyright 2007-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file 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 com.amazon.ion.impl.bin;
import java.io.Closeable;
/**
* An abstraction for a block of managed memory. A {@link Block} is acquired by a caller via
* {@link BlockAllocator#allocateBlock()} and released by {@link #close()}.
*
* This class and its implementations are not thread-safe.
*/
/*package*/ abstract class Block implements Closeable
{
/** The data backing this block. */
public final byte[] data;
/** The first index for which data has not been written to or read from. */
public int limit;
/*package*/ Block(final byte[] data)
{
this.data = data;
this.limit = 0;
}
/** Resets the limit to zero. */
public final void reset()
{
limit = 0;
}
/** Returns the unused amount of bytes from the limit to the capacity of the data array. */
public final int remaining()
{
return data.length - limit;
}
/** Returns the underlying data array's capacity. */
public final int capacity()
{
return data.length;
}
/**
* Releases the block back to the {@link BlockAllocator} from whence it was allocated from.
* This method must be called when the block is no longer needed.
* This is used to allow underlying resources to be reclaimed and/or released properly.
*/
public abstract void close();
}