aboutsummaryrefslogtreecommitdiffstats
path: root/jrt/src/com/yahoo/jrt/Int32Array.java
blob: 47a42c3a9d11712a0345c05bc939d8f7277c9dc5 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.jrt;


import java.nio.ByteBuffer;
import java.util.Arrays;


/**
 * 32-bit integer array
 **/
public class Int32Array extends Value
{
    private int[] value;

    /**
     * Create from a Java-type value
     *
     * @param value the value
     **/
    public Int32Array(int[] value) { this.value = value; }

    /**
     * Create by decoding the value from the given buffer
     *
     * @param src buffer where the value is stored
     **/
    Int32Array(ByteBuffer src) {
        int size = src.getInt();
        value = new int[size];
        src.asIntBuffer().get(value);
        src.position(src.position() + size * 4);
    }

    /**
     * @return INT32_ARRAY
     **/
    public byte type() { return INT32_ARRAY; }
    public int count() { return value.length; }

    int bytes() { return 4 + value.length * 4; }
    void encode(ByteBuffer dst) {
        dst.putInt(value.length);
        dst.asIntBuffer().put(value);
        dst.position(dst.position() + value.length * 4);
    }

    public int[] asInt32Array() { return value; }

    @Override
    public String toString() {
        return Arrays.toString(value);
    }


}