1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/*
* Copyright 2007 - 2018 ETH Zuerich, CISD and SIS.
*
* 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 ch.systemsx.cisd.hdf5;
import hdf.hdf5lib.exceptions.HDF5JavaException;
/**
* An interface that provides methods for reading any data sets as byte arrays (as 'opaque data',
* just like ordinary file systems treat files). This is particularly useful for opaque data types,
* which are "black boxes" to the HDF5 library.
* <p>
* Obtain an object implementing this interface by calling {@link IHDF5Reader#opaque()}.
*
* @author Bernd Rinn
*/
public interface IHDF5OpaqueReader
{
// /////////////////////////////
// Opaque tags and types
// /////////////////////////////
/**
* Returns the tag of the opaque data type associated with <var>objectPath</var>, or
* <code>null</code>, if <var>objectPath</var> is not of an opaque data type (i.e. if
* <code>reader.getDataSetInformation(objectPath).getTypeInformation().getDataClass() != HDF5DataClass.OPAQUE</code>
* ).
*
* @param objectPath The name (including path information) of the data set object in the file.
* @return The tag of the opaque data type, or <code>null</code>.
*/
public String tryGetOpaqueTag(final String objectPath);
/**
* Returns the opaque data type or <code>null</code>, if <var>objectPath</var> is not of such a
* data type.
*
* @param objectPath The name (including path information) of the data set object in the file.
* @return The opaque data type, or <code>null</code>.
*/
public HDF5OpaqueType tryGetOpaqueType(final String objectPath);
// /////////////////////////////
// Reading as byte array
// /////////////////////////////
/**
* Gets the byte array values of an attribute <var>attributeName</var> of object
* </var>objectPath</var>. The bytes read will be in the native byte-order of the machine but
* will otherwise be unchanged.
*/
public byte[] getArrayAttr(final String objectPath, final String attributeName);
/**
* Reads the data set <var>objectPath</var> as byte array. The bytes read will be in the native
* byte-order of the machine and will be ordered 'row-first' in the case of multi-dimensional
* data sets, but will otherwise be unchanged.
*
* @param objectPath The name (including path information) of the data set object in the file.
* @return The data read from the data set.
*/
public byte[] readArray(final String objectPath);
/**
* Reads a block from data set <var>objectPath</var> as byte array. The bytes read will be in
* the native byte-order of the machine, but will otherwise be unchanged.
* <em>Must not be called for data sets of rank other than 1 and must not be called on Strings!</em>
*
* @param objectPath The name (including path information) of the data set object in the file.
* @param blockSize The block size in numbers of elements (this will be the length of the
* <code>byte[]</code> returned, divided by the size of one element).
* @param blockNumber The number of the block to read (starting with 0, offset: multiply with
* <var>blockSize</var>).
* @return The data block read from the data set.
* @throws HDF5JavaException If the data set is not of rank 1 or is a String.
*/
public byte[] readArrayBlock(final String objectPath, final int blockSize,
final long blockNumber) throws HDF5JavaException;
/**
* Reads a block from data set <var>objectPath</var> as byte array. The bytes read will be in
* the native byte-order of the machine, but will otherwise be unchanged.
* <em>Must not be called for data sets of rank other than 1 and must not be called on Strings!</em>
*
* @param objectPath The name (including path information) of the data set object in the file.
* @param blockSize The block size in numbers of elements (this will be the length of the
* <code>byte[]</code> returned, divided by the size of one element).
* @param offset The offset of the block to read as number of elements (starting with 0).
* @return The data block read from the data set.
* @throws HDF5JavaException If the data set is not of rank 1.
*/
public byte[] readArrayBlockWithOffset(final String objectPath, final int blockSize,
final long offset) throws HDF5JavaException;
/**
* Reads a block from data set <var>objectPath</var> as byte array into <var>buffer</var>. The
* bytes read will be in the native byte-order of the machine, but will otherwise be unchanged.
* <em>Must not be called for data sets of rank other than 1 and must not be called on Strings!</em>
*
* @param objectPath The name (including path information) of the data set object in the file.
* @param buffer The buffer to read the values in.
* @param blockSize The block size in numbers of elements (this will be the length of the
* <code>byte[]</code> returned, divided by the size of one element).
* @param offset The offset of the block in the data set as number of elements (zero-based).
* @param memoryOffset The offset of the block in <var>buffer</var> as number of elements
* (zero-based).
* @return The effective block size.
* @throws HDF5JavaException If the data set is not of rank 1.
*/
public int readArrayToBlockWithOffset(final String objectPath, final byte[] buffer,
final int blockSize, final long offset, final int memoryOffset)
throws HDF5JavaException;
/**
* Provides all natural blocks of this one-dimensional data set to iterate over. The bytes read
* will be in the native byte-order of the machine, but will otherwise be unchanged.
* <em>Must not be called for data sets of rank other than 1 and must not be called on Strings!</em>
*
* @see HDF5DataBlock
* @throws HDF5JavaException If the data set is not of rank 1.
*/
public Iterable<HDF5DataBlock<byte[]>> getArrayNaturalBlocks(final String dataSetPath)
throws HDF5JavaException;
}
|