-
Notifications
You must be signed in to change notification settings - Fork 7
/
DataReader.java
67 lines (60 loc) · 2.05 KB
/
DataReader.java
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
package uk.ac.bristol.star.cdf.record;
import java.io.IOException;
import java.lang.reflect.Array;
import uk.ac.bristol.star.cdf.CdfFormatException;
import uk.ac.bristol.star.cdf.DataType;
/**
* Reads items with a given data type from a buffer into an array.
*
* @author Mark Taylor
* @since 20 Jun 2013
*/
public class DataReader {
private final DataType dataType_;
private final int nelPerItem_;
private final int nItem_;
/**
* Constructor.
*
* @param dataType data type
* @param nelPerItem number of dataType elements per read item;
* usually 1 except for character data
* @param nItem number of items of given data type in the array,
* for scalar records it will be 1
*/
public DataReader( DataType dataType, int nelPerItem, int nItem ) {
dataType_ = dataType;
nelPerItem_ = nelPerItem;
nItem_ = nItem;
}
/**
* Creates a workspace array which can contain a value read for one record.
* The return value will be an array of a primitive type or String.
*
* @return workspace array for this reader
*/
public Object createValueArray() {
return Array.newInstance( dataType_.getArrayElementClass(),
nItem_ * dataType_.getGroupSize() );
}
/**
* Reads a value from a data buffer into a workspace array.
*
* @param buf data buffer
* @param offset byte offset into buf of data start
* @param valueArray object created by <code>createValueArray</code>
* into which results will be read
*/
public void readValue( Buf buf, long offset, Object valueArray )
throws IOException {
dataType_.readValues( buf, offset, nelPerItem_, valueArray, nItem_ );
}
/**
* Returns the size in bytes of one record as stored in the data buffer.
*
* @return record size in bytes
*/
public int getRecordSize() {
return dataType_.getByteCount() * nelPerItem_ * nItem_;
}
}