FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java/src/main/java/com/jsoniter/IterImpl.java at master · lyBigdata/java · GitHub
lyBigdata
/
java
Public
forked from
json-iterator/java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
java
/
src
/
main
/
java
/
com
/
jsoniter
/
IterImpl.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
304 lines (282 loc) · 10.7 KB
Breadcrumbs
java
/
src
/
main
/
java
/
com
/
jsoniter
/
IterImpl.java
Copy path
File metadata and controls
304 lines (282 loc) · 10.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package
com
.
jsoniter
;
import
com
.
jsoniter
.
any
.
Any
;
import
java
.
io
.
IOException
;
class
IterImpl
{
public
static
final
int
readObjectFieldAsHash
(
JsonIterator
iter
)
throws
IOException
{
if
(
nextToken
(
iter
) !=
'"'
) {
throw
iter
.
reportError
(
"readObjectFieldAsHash"
,
"expect
\"
"
);
}
long
hash
=
0x811c9dc5
;
for
(
int
i
=
iter
.
head
;
i
<
iter
.
tail
;
i
++) {
byte
c
=
iter
.
buf
[
i
];
if
(
c
==
'"'
) {
iter
.
head
=
i
+
1
;
if
(
nextToken
(
iter
) !=
':'
) {
throw
iter
.
reportError
(
"readObjectFieldAsHash"
,
"expect :"
);
}
return
(
int
)
hash
;
}
hash
^=
c
;
hash
*=
0x1000193
;
}
throw
iter
.
reportError
(
"readObjectFieldAsHash"
,
"unmatched quote"
);
}
public
static
final
Slice
readObjectFieldAsSlice
(
JsonIterator
iter
)
throws
IOException
{
Slice
field
=
readSlice
(
iter
);
if
(
nextToken
(
iter
) !=
':'
) {
throw
iter
.
reportError
(
"readObjectFieldAsSlice"
,
"expect : after object field"
);
}
return
field
;
}
final
static
void
skipArray
(
JsonIterator
iter
)
throws
IOException
{
int
level
=
1
;
for
(
int
i
=
iter
.
head
;
i
<
iter
.
tail
;
i
++) {
switch
(
iter
.
buf
[
i
]) {
case
'"'
:
// If inside string, skip it
iter
.
head
=
i
+
1
;
skipString
(
iter
);
i
=
iter
.
head
-
1
;
// it will be i++ soon
break
;
case
'['
:
// If open symbol, increase level
level
++;
break
;
case
']'
:
// If close symbol, increase level
level
--;
// If we have returned to the original level, we're done
if
(
level
==
0
) {
iter
.
head
=
i
+
1
;
return
;
}
break
;
}
}
throw
iter
.
reportError
(
"skipArray"
,
"incomplete array"
);
}
final
static
void
skipObject
(
JsonIterator
iter
)
throws
IOException
{
int
level
=
1
;
for
(
int
i
=
iter
.
head
;
i
<
iter
.
tail
;
i
++) {
switch
(
iter
.
buf
[
i
]) {
case
'"'
:
// If inside string, skip it
iter
.
head
=
i
+
1
;
skipString
(
iter
);
i
=
iter
.
head
-
1
;
// it will be i++ soon
break
;
case
'{'
:
// If open symbol, increase level
level
++;
break
;
case
'}'
:
// If close symbol, increase level
level
--;
// If we have returned to the original level, we're done
if
(
level
==
0
) {
iter
.
head
=
i
+
1
;
return
;
}
break
;
}
}
throw
iter
.
reportError
(
"skipObject"
,
"incomplete object"
);
}
final
static
void
skipString
(
JsonIterator
iter
)
throws
IOException
{
int
end
=
IterImplSkip
.
findStringEnd
(
iter
);
if
(
end
== -
1
) {
throw
iter
.
reportError
(
"skipString"
,
"incomplete string"
);
}
else
{
iter
.
head
=
end
;
}
}
final
static
void
skipUntilBreak
(
JsonIterator
iter
)
throws
IOException
{
// true, false, null, number
for
(
int
i
=
iter
.
head
;
i
<
iter
.
tail
;
i
++) {
byte
c
=
iter
.
buf
[
i
];
if
(
IterImplSkip
.
breaks
[
c
]) {
iter
.
head
=
i
;
return
;
}
}
iter
.
head
=
iter
.
tail
;
}
final
static
boolean
skipNumber
(
JsonIterator
iter
)
throws
IOException
{
// true, false, null, number
boolean
dotFound
=
false
;
for
(
int
i
=
iter
.
head
;
i
<
iter
.
tail
;
i
++) {
byte
c
=
iter
.
buf
[
i
];
if
(
c
==
'.'
) {
dotFound
=
true
;
continue
;
}
if
(
IterImplSkip
.
breaks
[
c
]) {
iter
.
head
=
i
;
return
dotFound
;
}
}
iter
.
head
=
iter
.
tail
;
return
dotFound
;
}
// read the bytes between " "
public
final
static
Slice
readSlice
(
JsonIterator
iter
)
throws
IOException
{
if
(
IterImpl
.
nextToken
(
iter
) !=
'"'
) {
throw
iter
.
reportError
(
"readSlice"
,
"expect
\"
for string"
);
}
int
end
=
IterImplString
.
findSliceEnd
(
iter
);
if
(
end
== -
1
) {
throw
iter
.
reportError
(
"readSlice"
,
"incomplete string"
);
}
else
{
// reuse current buffer
iter
.
reusableSlice
.
reset
(
iter
.
buf
,
iter
.
head
,
end
-
1
);
iter
.
head
=
end
;
return
iter
.
reusableSlice
;
}
}
final
static
byte
nextToken
(
JsonIterator
iter
)
throws
IOException
{
int
i
=
iter
.
head
;
try
{
for
(; ; ) {
byte
c
=
iter
.
buf
[
i
++];
switch
(
c
) {
case
' '
:
case
'\n'
:
case
'\r'
:
case
'\t'
:
continue
;
default
:
if
(
i
>
iter
.
tail
) {
iter
.
head
=
iter
.
tail
;
return
0
;
}
iter
.
head
=
i
;
return
c
;
}
}
}
catch
(
IndexOutOfBoundsException
e
) {
iter
.
head
=
iter
.
tail
;
return
0
;
}
}
final
static
byte
readByte
(
JsonIterator
iter
)
throws
IOException
{
if
(
iter
.
head
==
iter
.
tail
) {
return
0
;
}
return
iter
.
buf
[
iter
.
head
++];
}
public
static
Any
readAny
(
JsonIterator
iter
)
throws
IOException
{
int
start
=
iter
.
head
;
byte
c
=
nextToken
(
iter
);
switch
(
c
) {
case
'"'
:
skipString
(
iter
);
return
Any
.
lazyString
(
iter
.
buf
,
start
,
iter
.
head
);
case
'-'
:
case
'0'
:
case
'1'
:
case
'2'
:
case
'3'
:
case
'4'
:
case
'5'
:
case
'6'
:
case
'7'
:
case
'8'
:
case
'9'
:
if
(
skipNumber
(
iter
)) {
return
Any
.
lazyDouble
(
iter
.
buf
,
start
,
iter
.
head
);
}
else
{
return
Any
.
lazyLong
(
iter
.
buf
,
start
,
iter
.
head
);
}
case
't'
:
skipFixedBytes
(
iter
,
3
);
return
Any
.
wrap
(
true
);
case
'f'
:
skipFixedBytes
(
iter
,
4
);
return
Any
.
wrap
(
false
);
case
'n'
:
skipFixedBytes
(
iter
,
3
);
return
Any
.
wrap
((
Object
)
null
);
case
'['
:
skipArray
(
iter
);
return
Any
.
lazyArray
(
iter
.
buf
,
start
,
iter
.
head
);
case
'{'
:
skipObject
(
iter
);
return
Any
.
lazyObject
(
iter
.
buf
,
start
,
iter
.
head
);
default
:
throw
iter
.
reportError
(
"IterImplSkip"
,
"do not know how to skip: "
+
c
);
}
}
public
static
void
skipFixedBytes
(
JsonIterator
iter
,
int
n
)
throws
IOException
{
iter
.
head
+=
n
;
}
public
final
static
boolean
loadMore
(
JsonIterator
iter
)
throws
IOException
{
return
false
;
}
public
final
static
String
readStringSlowPath
(
JsonIterator
iter
,
int
j
)
throws
IOException
{
try
{
for
(
int
i
=
iter
.
head
;
i
<
iter
.
tail
; ) {
int
bc
=
iter
.
buf
[
i
++];
if
(
bc
==
'"'
) {
return
new
String
(
iter
.
reusableChars
,
0
,
j
);
}
if
(
bc
==
'\\'
) {
bc
=
iter
.
buf
[
i
++];
switch
(
bc
) {
case
'b'
:
bc
=
'\b'
;
break
;
case
't'
:
bc
=
'\t'
;
break
;
case
'n'
:
bc
=
'\n'
;
break
;
case
'f'
:
bc
=
'\f'
;
break
;
case
'r'
:
bc
=
'\r'
;
break
;
case
'"'
:
case
'/'
:
case
'\\'
:
break
;
case
'u'
:
bc
= (
IterImplString
.
translateHex
(
iter
.
buf
[
i
++]) <<
12
) +
(
IterImplString
.
translateHex
(
iter
.
buf
[
i
++]) <<
8
) +
(
IterImplString
.
translateHex
(
iter
.
buf
[
i
++]) <<
4
) +
IterImplString
.
translateHex
(
iter
.
buf
[
i
++]);
break
;
default
:
throw
iter
.
reportError
(
"readStringSlowPath"
,
"invalid escape character: "
+
bc
);
}
}
else
if
((
bc
&
0x80
) !=
0
) {
final
int
u2
=
iter
.
buf
[
i
++];
if
((
bc
&
0xE0
) ==
0xC0
) {
bc
= ((
bc
&
0x1F
) <<
6
) + (
u2
&
0x3F
);
}
else
{
final
int
u3
=
iter
.
buf
[
i
++];
if
((
bc
&
0xF0
) ==
0xE0
) {
bc
= ((
bc
&
0x0F
) <<
12
) + ((
u2
&
0x3F
) <<
6
) + (
u3
&
0x3F
);
}
else
{
final
int
u4
=
iter
.
buf
[
i
++];
if
((
bc
&
0xF8
) ==
0xF0
) {
bc
= ((
bc
&
0x07
) <<
18
) + ((
u2
&
0x3F
) <<
12
) + ((
u3
&
0x3F
) <<
6
) + (
u4
&
0x3F
);
}
else
{
throw
iter
.
reportError
(
"readStringSlowPath"
,
"invalid unicode character"
);
}
if
(
bc
>=
0x10000
) {
// check if valid unicode
if
(
bc
>=
0x110000
)
throw
iter
.
reportError
(
"readStringSlowPath"
,
"invalid unicode character"
);
// split surrogates
final
int
sup
=
bc
-
0x10000
;
iter
.
reusableChars
[
j
++] = (
char
) ((
sup
>>>
10
) +
0xd800
);
iter
.
reusableChars
[
j
++] = (
char
) ((
sup
&
0x3ff
) +
0xdc00
);
continue
;
}
}
}
}
iter
.
reusableChars
[
j
++] = (
char
)
bc
;
}
throw
iter
.
reportError
(
"readStringSlowPath"
,
"incomplete string"
);
}
catch
(
IndexOutOfBoundsException
e
) {
throw
iter
.
reportError
(
"readString"
,
"incomplete string"
);
}
}
}
Back
|
FazBrowse Home
|
New Git URL