FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java/src/main/java/com/jsoniter/CodegenAccess.java at master · SoftwareKing/java · GitHub
SoftwareKing
/
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
/
CodegenAccess.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
218 lines (195 loc) · 7.73 KB
Breadcrumbs
java
/
src
/
main
/
java
/
com
/
jsoniter
/
CodegenAccess.java
Copy path
File metadata and controls
218 lines (195 loc) · 7.73 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
package
com
.
jsoniter
;
import
com
.
jsoniter
.
spi
.
Decoder
;
import
com
.
jsoniter
.
spi
.
ExtensionManager
;
import
com
.
jsoniter
.
spi
.
TypeLiteral
;
import
java
.
io
.
IOException
;
import
java
.
util
.
Collection
;
// only uesd by generated code to access decoder
public
class
CodegenAccess
{
public
static
<
T
extends
Collection
>
T
reuseCollection
(
T
col
) {
col
.
clear
();
return
col
;
}
public
static
Object
existingObject
(
JsonIterator
iter
) {
return
iter
.
existingObject
;
}
public
static
Object
resetExistingObject
(
JsonIterator
iter
) {
Object
obj
=
iter
.
existingObject
;
iter
.
existingObject
=
null
;
return
obj
;
}
public
static
void
setExistingObject
(
JsonIterator
iter
,
Object
obj
) {
iter
.
existingObject
=
obj
;
}
public
static
byte
nextToken
(
JsonIterator
iter
)
throws
IOException
{
return
iter
.
nextToken
();
}
public
static
final
<
T
>
T
read
(
JsonIterator
iter
,
TypeLiteral
<
T
>
typeLiteral
)
throws
IOException
{
TypeLiteral
.
NativeType
nativeType
=
typeLiteral
.
getNativeType
();
if
(
nativeType
!=
null
) {
switch
(
nativeType
) {
case
FLOAT
:
return
(
T
)
Float
.
valueOf
(
iter
.
readFloat
());
case
DOUBLE
:
return
(
T
)
Double
.
valueOf
(
iter
.
readDouble
());
case
BOOLEAN
:
return
(
T
)
Boolean
.
valueOf
(
iter
.
readBoolean
());
case
BYTE
:
return
(
T
)
Byte
.
valueOf
((
byte
)
iter
.
readShort
());
case
SHORT
:
return
(
T
)
Short
.
valueOf
(
iter
.
readShort
());
case
INT
:
return
(
T
)
Integer
.
valueOf
(
iter
.
readInt
());
case
CHAR
:
return
(
T
)
Character
.
valueOf
((
char
)
iter
.
readInt
());
case
LONG
:
return
(
T
)
Long
.
valueOf
(
iter
.
readLong
());
case
BIG_DECIMAL
:
return
(
T
)
iter
.
readBigDecimal
();
case
BIG_INTEGER
:
return
(
T
)
iter
.
readBigInteger
();
case
STRING
:
return
(
T
)
iter
.
readString
();
case
OBJECT
:
return
(
T
)
iter
.
readAnyObject
();
case
ANY
:
return
(
T
)
iter
.
readAny
();
default
:
throw
new
JsonException
(
"unsupported native type: "
+
nativeType
);
}
}
else
{
String
cacheKey
=
typeLiteral
.
getDecoderCacheKey
();
return
(
T
)
Codegen
.
getDecoder
(
cacheKey
,
typeLiteral
.
getType
()).
decode
(
iter
);
}
}
public
static
final
boolean
readBoolean
(
String
cacheKey
,
JsonIterator
iter
)
throws
IOException
{
return
((
Decoder
.
BooleanDecoder
)
ExtensionManager
.
getDecoder
(
cacheKey
)).
decodeBoolean
(
iter
);
}
public
static
final
short
readShort
(
String
cacheKey
,
JsonIterator
iter
)
throws
IOException
{
return
((
Decoder
.
ShortDecoder
)
ExtensionManager
.
getDecoder
(
cacheKey
)).
decodeShort
(
iter
);
}
public
static
final
int
readInt
(
String
cacheKey
,
JsonIterator
iter
)
throws
IOException
{
return
((
Decoder
.
IntDecoder
)
ExtensionManager
.
getDecoder
(
cacheKey
)).
decodeInt
(
iter
);
}
public
static
final
long
readLong
(
String
cacheKey
,
JsonIterator
iter
)
throws
IOException
{
return
((
Decoder
.
LongDecoder
)
ExtensionManager
.
getDecoder
(
cacheKey
)).
decodeLong
(
iter
);
}
public
static
final
float
readFloat
(
String
cacheKey
,
JsonIterator
iter
)
throws
IOException
{
return
((
Decoder
.
FloatDecoder
)
ExtensionManager
.
getDecoder
(
cacheKey
)).
decodeFloat
(
iter
);
}
public
static
final
double
readDouble
(
String
cacheKey
,
JsonIterator
iter
)
throws
IOException
{
return
((
Decoder
.
DoubleDecoder
)
ExtensionManager
.
getDecoder
(
cacheKey
)).
decodeDouble
(
iter
);
}
public
static
final
<
T
>
T
read
(
String
cacheKey
,
JsonIterator
iter
)
throws
IOException
{
return
(
T
)
Codegen
.
getDecoder
(
cacheKey
,
null
).
decode
(
iter
);
}
public
static
boolean
readArrayStart
(
JsonIterator
iter
)
throws
IOException
{
byte
c
=
iter
.
nextToken
();
if
(
c
!=
'['
) {
throw
iter
.
reportError
(
"readArrayStart"
,
"expect [ or n"
);
}
c
=
iter
.
nextToken
();
if
(
c
==
']'
) {
return
false
;
}
iter
.
unreadByte
();
return
true
;
}
public
static
boolean
readObjectStart
(
JsonIterator
iter
)
throws
IOException
{
byte
c
=
iter
.
nextToken
();
if
(
c
!=
'{'
) {
throw
iter
.
reportError
(
"readObjectStart"
,
"expect { or n, found: "
+ (
char
)
c
);
}
c
=
iter
.
nextToken
();
if
(
c
==
'}'
) {
return
false
;
}
iter
.
unreadByte
();
return
true
;
}
public
static
void
reportIncompleteObject
(
JsonIterator
iter
) {
throw
iter
.
reportError
(
"genObject"
,
"expect }"
);
}
public
static
void
reportIncompleteArray
(
JsonIterator
iter
) {
throw
iter
.
reportError
(
"genArray"
,
"expect ]"
);
}
public
static
final
int
readObjectFieldAsHash
(
JsonIterator
iter
)
throws
IOException
{
if
(
iter
.
nextToken
() !=
'"'
) {
throw
iter
.
reportError
(
"readObjectFieldAsHash"
,
"expect
\"
"
);
}
long
hash
=
0x811c9dc5
;
for
(; ; ) {
byte
c
=
0
;
int
i
=
iter
.
head
;
for
(;
i
<
iter
.
tail
;
i
++) {
c
=
iter
.
buf
[
i
];
if
(
c
==
'"'
) {
break
;
}
hash
^=
c
;
hash
*=
0x1000193
;
}
if
(
c
==
'"'
) {
iter
.
head
=
i
+
1
;
if
(
iter
.
nextToken
() !=
':'
) {
throw
iter
.
reportError
(
"readObjectFieldAsHash"
,
"expect :"
);
}
return
(
int
)
hash
;
}
if
(!
iter
.
loadMore
()) {
throw
iter
.
reportError
(
"readObjectFieldAsHash"
,
"unmatched quote"
);
}
}
}
public
static
final
Slice
readObjectFieldAsSlice
(
JsonIterator
iter
)
throws
IOException
{
if
(
iter
.
nextToken
() !=
'"'
) {
throw
iter
.
reportError
(
"readObjectFieldAsSlice"
,
"expect
\"
"
);
}
Slice
field
=
IterImplString
.
readSlice
(
iter
);
boolean
notCopied
=
field
!=
null
;
if
(
skipWhitespacesWithoutLoadMore
(
iter
)) {
if
(
notCopied
) {
byte
[]
newBuf
=
new
byte
[
field
.
len
];
System
.
arraycopy
(
field
.
data
,
field
.
head
,
newBuf
,
0
,
field
.
len
);
field
.
data
=
newBuf
;
field
.
head
=
0
;
field
.
len
=
newBuf
.
length
;
}
if
(!
iter
.
loadMore
()) {
throw
iter
.
reportError
(
"readObjectFieldAsSlice"
,
"expect : after object field"
);
}
}
if
(
iter
.
buf
[
iter
.
head
] !=
':'
) {
throw
iter
.
reportError
(
"readObjectFieldAsSlice"
,
"expect : after object field"
);
}
iter
.
head
++;
if
(
skipWhitespacesWithoutLoadMore
(
iter
)) {
if
(
notCopied
) {
byte
[]
newBuf
=
new
byte
[
field
.
len
];
System
.
arraycopy
(
field
.
data
,
field
.
head
,
newBuf
,
0
,
field
.
len
);
field
.
data
=
newBuf
;
field
.
head
=
0
;
field
.
len
=
newBuf
.
length
;
}
if
(!
iter
.
loadMore
()) {
throw
iter
.
reportError
(
"readObjectFieldAsSlice"
,
"expect : after object field"
);
}
}
return
field
;
}
private
final
static
boolean
skipWhitespacesWithoutLoadMore
(
JsonIterator
iter
)
throws
IOException
{
for
(
int
i
=
iter
.
head
;
i
<
iter
.
tail
;
i
++) {
byte
c
=
iter
.
buf
[
i
];
switch
(
c
) {
case
' '
:
case
'\n'
:
case
'\t'
:
case
'\r'
:
continue
;
}
iter
.
head
=
i
;
return
false
;
}
return
true
;
}
}
Back
|
FazBrowse Home
|
New Git URL