blob: 1cadb91a2bb878ad29d144d0a96f4961decdfd55 (
plain)
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
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002, 2015 Oracle and/or its affiliates. All rights reserved.
*
*/
package com.sleepycat.persist.impl;
import com.sleepycat.persist.raw.RawObject;
import java.util.IdentityHashMap;
/**
* Extends RawAbstractInput to convert array (ObjectArrayFormat and
* PrimitiveArrayteKeyFormat) RawObject instances.
*
* @author Mark Hayes
*/
class RawArrayInput extends RawAbstractInput {
private Object[] array;
private int index;
private Format componentFormat;
RawArrayInput(Catalog catalog,
boolean rawAccess,
IdentityHashMap converted,
RawObject raw,
Format componentFormat) {
super(catalog, rawAccess, converted);
array = raw.getElements();
this.componentFormat = componentFormat;
}
@Override
public int readArrayLength() {
return array.length;
}
@Override
Object readNext()
throws RefreshException {
Object o = array[index++];
return checkAndConvert(o, componentFormat);
}
}
|