1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.hadoop.hbase.io;
20
21 import java.io.IOException;
22 import java.io.DataInput;
23 import java.io.DataOutput;
24 import java.util.Arrays;
25 import java.util.List;
26
27 import org.apache.hadoop.hbase.classification.InterfaceAudience;
28 import org.apache.hadoop.hbase.classification.InterfaceStability;
29 import org.apache.hadoop.io.BytesWritable;
30 import org.apache.hadoop.io.WritableComparable;
31 import org.apache.hadoop.io.WritableComparator;
32
33
34
35
36
37
38
39
40
41
42 @InterfaceAudience.Public
43 @InterfaceStability.Stable
44 @edu.umd.cs.findbugs.annotations.SuppressWarnings(
45 value="EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS",
46 justification="It has been like this forever")
47 public class ImmutableBytesWritable
48 implements WritableComparable<ImmutableBytesWritable> {
49 private byte[] bytes;
50 private int offset;
51 private int length;
52
53
54
55
56 public ImmutableBytesWritable() {
57 super();
58 }
59
60
61
62
63
64 public ImmutableBytesWritable(byte[] bytes) {
65 this(bytes, 0, bytes.length);
66 }
67
68
69
70
71
72
73 public ImmutableBytesWritable(final ImmutableBytesWritable ibw) {
74 this(ibw.get(), ibw.getOffset(), ibw.getLength());
75 }
76
77
78
79
80
81
82
83 public ImmutableBytesWritable(final byte[] bytes, final int offset,
84 final int length) {
85 this.bytes = bytes;
86 this.offset = offset;
87 this.length = length;
88 }
89
90
91
92
93
94 public byte [] get() {
95 if (this.bytes == null) {
96 throw new IllegalStateException("Uninitialiized. Null constructor " +
97 "called w/o accompaying readFields invocation");
98 }
99 return this.bytes;
100 }
101
102
103
104
105 public void set(final byte [] b) {
106 set(b, 0, b.length);
107 }
108
109
110
111
112
113
114 public void set(final byte [] b, final int offset, final int length) {
115 this.bytes = b;
116 this.offset = offset;
117 this.length = length;
118 }
119
120
121
122
123
124 @Deprecated
125 public int getSize() {
126 if (this.bytes == null) {
127 throw new IllegalStateException("Uninitialiized. Null constructor " +
128 "called w/o accompaying readFields invocation");
129 }
130 return this.length;
131 }
132
133
134
135
136 public int getLength() {
137 if (this.bytes == null) {
138 throw new IllegalStateException("Uninitialiized. Null constructor " +
139 "called w/o accompaying readFields invocation");
140 }
141 return this.length;
142 }
143
144
145
146
147 public int getOffset(){
148 return this.offset;
149 }
150
151 public void readFields(final DataInput in) throws IOException {
152 this.length = in.readInt();
153 this.bytes = new byte[this.length];
154 in.readFully(this.bytes, 0, this.length);
155 this.offset = 0;
156 }
157
158 public void write(final DataOutput out) throws IOException {
159 out.writeInt(this.length);
160 out.write(this.bytes, this.offset, this.length);
161 }
162
163
164 @Override
165 public int hashCode() {
166 int hash = 1;
167 for (int i = offset; i < offset + length; i++)
168 hash = (31 * hash) + (int)bytes[i];
169 return hash;
170 }
171
172
173
174
175
176
177
178 public int compareTo(ImmutableBytesWritable that) {
179 return WritableComparator.compareBytes(
180 this.bytes, this.offset, this.length,
181 that.bytes, that.offset, that.length);
182 }
183
184
185
186
187
188
189
190 public int compareTo(final byte [] that) {
191 return WritableComparator.compareBytes(
192 this.bytes, this.offset, this.length,
193 that, 0, that.length);
194 }
195
196
197
198
199 @Override
200 public boolean equals(Object right_obj) {
201 if (right_obj instanceof byte []) {
202 return compareTo((byte [])right_obj) == 0;
203 }
204 if (right_obj instanceof ImmutableBytesWritable) {
205 return compareTo((ImmutableBytesWritable)right_obj) == 0;
206 }
207 return false;
208 }
209
210
211
212
213 @Override
214 public String toString() {
215 StringBuilder sb = new StringBuilder(3*this.length);
216 final int endIdx = this.offset + this.length;
217 for (int idx = this.offset; idx < endIdx ; idx++) {
218 sb.append(' ');
219 String num = Integer.toHexString(0xff & this.bytes[idx]);
220
221 if (num.length() < 2) {
222 sb.append('0');
223 }
224 sb.append(num);
225 }
226 return sb.length() > 0 ? sb.substring(1) : "";
227 }
228
229
230
231 @InterfaceAudience.Public
232 @InterfaceStability.Stable
233 public static class Comparator extends WritableComparator {
234 private BytesWritable.Comparator comparator =
235 new BytesWritable.Comparator();
236
237
238 public Comparator() {
239 super(ImmutableBytesWritable.class);
240 }
241
242
243
244
245 @Override
246 public int compare(byte[] b1, int s1, int l1, byte[] b2, int s2, int l2) {
247 return comparator.compare(b1, s1, l1, b2, s2, l2);
248 }
249 }
250
251 static {
252 WritableComparator.define(ImmutableBytesWritable.class, new Comparator());
253 }
254
255
256
257
258
259 public static byte [][] toArray(final List<byte []> array) {
260
261 byte[][] results = new byte[array.size()][];
262 for (int i = 0; i < array.size(); i++) {
263 results[i] = array.get(i);
264 }
265 return results;
266 }
267
268
269
270
271 public byte[] copyBytes() {
272 return Arrays.copyOfRange(bytes, offset, offset+length);
273 }
274 }