-
Notifications
You must be signed in to change notification settings - Fork 325
Expand file tree
/
Copy pathConverter.java
More file actions
438 lines (388 loc) · 11.9 KB
/
Converter.java
File metadata and controls
438 lines (388 loc) · 11.9 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
//
// MessagePack for Java
//
// Copyright (C) 2009 - 2013 FURUHASHI Sadayuki
//
// 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 org.msgpack.unpacker;
import java.io.IOException;
import java.io.EOFException;
import java.math.BigInteger;
import org.msgpack.MessagePack;
import org.msgpack.MessageTypeException;
import org.msgpack.packer.Unconverter;
import org.msgpack.type.Value;
import org.msgpack.type.ValueType;
import org.msgpack.type.ArrayValue;
import org.msgpack.type.MapValue;
public class Converter extends AbstractUnpacker {
private final UnpackerStack stack;
private Object[] values;
protected Value value;
public Converter(Value value) {
this(new MessagePack(), value);
}
public Converter(MessagePack msgpack, Value value) {
super(msgpack);
this.stack = new UnpackerStack();
this.values = new Object[UnpackerStack.MAX_STACK_SIZE];
this.value = value;
}
protected Value nextValue() throws IOException {
throw new EOFException();
}
private void ensureValue() throws IOException {
if (value == null) {
value = nextValue();
}
}
@Override
public boolean tryReadNil() throws IOException {
stack.checkCount();
if (getTop().isNilValue()) {
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return true;
}
return false;
}
@Override
public boolean trySkipNil() throws IOException {
ensureValue();
if (stack.getDepth() > 0 && stack.getTopCount() <= 0) {
// end of array or map
return true;
}
if (getTop().isNilValue()) {
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return true;
}
return false;
}
@Override
public void readNil() throws IOException {
if (!getTop().isNilValue()) {
throw new MessageTypeException("Expected nil but got not nil value");
}
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
}
@Override
public boolean readBoolean() throws IOException {
boolean v = getTop().asBooleanValue().getBoolean();
stack.reduceCount();
return v;
}
@Override
public byte readByte() throws IOException {
byte v = getTop().asIntegerValue().getByte();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return v;
}
@Override
public short readShort() throws IOException {
short v = getTop().asIntegerValue().getShort();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return v;
}
@Override
public int readInt() throws IOException {
int v = getTop().asIntegerValue().getInt();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return v;
}
@Override
public long readLong() throws IOException {
long v = getTop().asIntegerValue().getLong();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return v;
}
@Override
public BigInteger readBigInteger() throws IOException {
BigInteger v = getTop().asIntegerValue().getBigInteger();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return v;
}
@Override
public float readFloat() throws IOException {
float v = getTop().asFloatValue().getFloat();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return v;
}
@Override
public double readDouble() throws IOException {
double v = getTop().asFloatValue().getDouble();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return v;
}
@Override
public byte[] readByteArray() throws IOException {
byte[] raw = getTop().asRawValue().getByteArray();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return raw;
}
@Override
public String readString() throws IOException {
String str = getTop().asRawValue().getString();
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return str;
}
@Override
public int readArrayBegin() throws IOException {
Value v = getTop();
if (!v.isArrayValue()) {
throw new MessageTypeException(
"Expected array but got not array value");
}
ArrayValue a = v.asArrayValue();
stack.reduceCount();
stack.pushArray(a.size());
values[stack.getDepth()] = a.getElementArray();
return a.size();
}
@Override
public void readArrayEnd(boolean check) throws IOException {
if (!stack.topIsArray()) {
throw new MessageTypeException(
"readArrayEnd() is called but readArrayBegin() is not called");
}
int remain = stack.getTopCount();
if (remain > 0) {
if (check) {
throw new MessageTypeException(
"readArrayEnd(check=true) is called but the array is not end");
}
for (int i = 0; i < remain; i++) {
skip();
}
}
stack.pop();
if (stack.getDepth() == 0) {
value = null;
}
}
@Override
public int readMapBegin() throws IOException {
Value v = getTop();
if (!v.isMapValue()) {
throw new MessageTypeException("Expected map but got not map value");
}
MapValue m = v.asMapValue();
stack.reduceCount();
stack.pushMap(m.size());
values[stack.getDepth()] = m.getKeyValueArray();
return m.size();
}
@Override
public void readMapEnd(boolean check) throws IOException {
if (!stack.topIsMap()) {
throw new MessageTypeException(
"readMapEnd() is called but readMapBegin() is not called");
}
int remain = stack.getTopCount();
if (remain > 0) {
if (check) {
throw new MessageTypeException(
"readMapEnd(check=true) is called but the map is not end");
}
for (int i = 0; i < remain; i++) {
skip();
}
}
stack.pop();
if (stack.getDepth() == 0) {
value = null;
}
}
private Value getTop() throws IOException {
ensureValue();
stack.checkCount();
if (stack.getDepth() == 0) {
// if(stack.getTopCount() < 0) {
// //throw new EOFException(); // TODO
// throw new RuntimeException(new EOFException());
// }
return value;
}
Value[] array = (Value[]) values[stack.getDepth()];
return array[array.length - stack.getTopCount()];
}
@Override
public Value readValue() throws IOException {
if (stack.getDepth() == 0) {
if (value == null) {
return nextValue();
} else {
Value v = value;
value = null;
return v;
}
}
return super.readValue();
}
@Override
protected void readValue(Unconverter uc) throws IOException {
if (uc.getResult() != null) {
uc.resetResult();
}
stack.checkCount();
Value v = getTop();
if (!v.isArrayValue() && !v.isMapValue()) {
uc.write(v);
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
if (uc.getResult() != null) {
return;
}
}
while (true) {
while (stack.getDepth() != 0 && stack.getTopCount() == 0) {
if (stack.topIsArray()) {
uc.writeArrayEnd(true);
stack.pop();
} else if (stack.topIsMap()) {
uc.writeMapEnd(true);
stack.pop();
} else {
throw new RuntimeException("invalid stack"); // FIXME error?
}
if (stack.getDepth() == 0) {
value = null;
}
if (uc.getResult() != null) {
return;
}
}
stack.checkCount();
v = getTop();
if (v.isArrayValue()) {
ArrayValue a = v.asArrayValue();
uc.writeArrayBegin(a.size());
stack.reduceCount();
stack.pushArray(a.size());
values[stack.getDepth()] = a.getElementArray();
} else if (v.isMapValue()) {
MapValue m = v.asMapValue();
uc.writeMapBegin(m.size());
stack.reduceCount();
stack.pushMap(m.size());
values[stack.getDepth()] = m.getKeyValueArray();
} else {
uc.write(v);
stack.reduceCount();
}
}
}
@Override
public void skip() throws IOException {
stack.checkCount();
Value v = getTop();
if (!v.isArrayValue() && !v.isMapValue()) {
stack.reduceCount();
if (stack.getDepth() == 0) {
value = null;
}
return;
}
int targetDepth = stack.getDepth();
while (true) {
while (stack.getTopCount() == 0) {
stack.pop();
if (stack.getDepth() == 0) {
value = null;
}
if (stack.getDepth() <= targetDepth) {
return;
}
}
stack.checkCount();
v = getTop();
if (v.isArrayValue()) {
ArrayValue a = v.asArrayValue();
stack.reduceCount();
stack.pushArray(a.size());
values[stack.getDepth()] = a.getElementArray();
} else if (v.isMapValue()) {
MapValue m = v.asMapValue();
stack.reduceCount();
stack.pushMap(m.size());
values[stack.getDepth()] = m.getKeyValueArray();
} else {
stack.reduceCount();
}
}
}
public ValueType getNextType() throws IOException {
return getTop().getType();
}
public void reset() {
stack.clear();
value = null;
}
@Override
public void close() throws IOException {
}
@Override
public int getReadByteCount() {
throw new UnsupportedOperationException("Not implemented yet");
}
@Override
public void setRawSizeLimit(int size) {
throw new UnsupportedOperationException("Not implemented yet");
}
@Override
public void setArraySizeLimit(int size) {
throw new UnsupportedOperationException("Not implemented yet");
}
@Override
public void setMapSizeLimit(int size) {
throw new UnsupportedOperationException("Not implemented yet");
}
}