/usr/share/gnu-smalltalk/examples/JSON.st is in gnu-smalltalk-common 3.2.4-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | "======================================================================
|
| JSON reader/writer example
|
|
======================================================================"
"======================================================================
|
| Copyright 2007 Free Software Foundation, Inc.
| Written by Robin Redeker.
|
| This file is part of the GNU Smalltalk class library.
|
| The GNU Smalltalk class library is free software; you can redistribute it
| and/or modify it under the terms of the GNU Lesser General Public License
| as published by the Free Software Foundation; either version 2.1, or (at
| your option) any later version.
|
| The GNU Smalltalk class library is distributed in the hope that it will be
| useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
| General Public License for more details.
|
| You should have received a copy of the GNU Lesser General Public License
| along with the GNU Smalltalk class library; see the file COPYING.LIB.
| If not, write to the Free Software Foundation, 59 Temple Place - Suite
| 330, Boston, MA 02110-1301, USA.
|
======================================================================"
Stream subclass: #JSONReader
instanceVariableNames: 'stream outputEncoding'
classVariableNames: ''
poolDictionaries: ''
category: nil !
JSONReader comment:
'I read data structures (currently build of OrderedCollection and Dictionary)
from and to JSON (Java Script Object Notation). Writing is done with the
#toJSON method (note: it will behave badly with circular data structures).' !
!JSONReader class methodsFor: 'json'!
toJSON: anObject
"I'm returning a JSON string which represents the object."
^anObject toJSON
!
fromJSON: string
"I'm responsible for decoding the JSON string to objects."
^(self on: string readStream) nextJSONObject
!
fromJSON: string inputEncoding: inputEncString outputEncoding: outputEncString
"I'm responsible for decoding the JSON string to objects."
| str |
str := string readStream.
str := I18N.EncodedStream unicodeOn: str encoding: inputEncString.
^(self on: str outputEncoding: outputEncString) nextJSONObject
!
fromJSON: string inputEncoding: encString
"I'm responsible for decoding the JSON string to objects."
| str |
str := string readStream.
str := I18N.EncodedStream unicodeOn: str encoding: encString.
^(self on: str) nextJSONObject
!
fromJSON: string outputEncoding: encString
"I'm responsible for decoding the JSON string to objects."
^(self on: string readStream outputEncoding: encString) nextJSONObject
!
on: aStream
| str |
str := aStream.
aStream isUnicode ifFalse: [ str := I18N.EncodedStream unicodeOn: str ].
^self new stream: str; yourself
!
on: aStream outputEncoding: encString
^(self on: aStream) outputEncoding: encString; yourself
! !
!JSONReader methodsFor: 'json'!
outputEncoding
^outputEncoding
!
outputEncoding: aString
outputEncoding := aString
!
stream: aStream
stream := aStream isUnicode
ifTrue: [ aStream ]
ifFalse: [ I18N.EncodedStream unicodeOn: aStream ]
!
peek
"I'm peeking for the next non-whitespace character and will drop all whitespace in front of it"
| c |
[
c := stream peek.
c = (Character space)
or: [ c = (Character tab)
or: [ c = (Character lf)
or: [ c = (Character cr)]]]
] whileTrue: [
stream next
].
^c
!
next
"I'm returning the next non-whitespace character"
| c |
c := self peek.
c isNil ifTrue: [ ^self error: 'expected character but found end of stream' ].
stream next.
^c
! !
!JSONReader methodsFor: 'private'!
nextJSONObject
"I decode a json self to a value, which will be one of: nil,
true, false, OrderedCollection, Dictionary, String or Number
(i will return Integer or Float depending on the input)."
| c |
c := self peek.
(c = $n) ifTrue: [ self next: 4. ^nil ].
(c = $t) ifTrue: [ self next: 4. ^true ].
(c = $f) ifTrue: [ self next: 5. ^false ].
(c = ${) ifTrue: [ ^self nextJSONDict ].
(c = $[) ifTrue: [ ^self nextJSONArray ].
(c = $") ifTrue: [ ^self nextJSONString ].
^self nextJSONNumber
!
nextJSONArray
"I decode JSON arrays from self and will return a OrderedCollection for them."
| c obj value |
obj := OrderedCollection new.
self next.
[ c := self peek.
(c = $]) ] whileFalse: [
(c = $,) ifTrue: [ self next. ].
value := self nextJSONObject.
obj add: value.
].
self next.
^obj
!
nextJSONDict
"I decode JSON objects from self and will return a Dictionary containing all the key/value pairs."
| c obj key value |
obj := Dictionary new.
self next.
[ c := self peek.
c = $} ] whileFalse: [
(c = $,) ifTrue: [ self next ].
key := self nextJSONString.
c := self next.
c = $: ifFalse: [
self error: ('unexpected character found where name-seperator '':'' expected, found: %1' bindWith: c)
].
value := self nextJSONObject.
obj at: key put: value.
].
self next.
^obj
!
nextJSONString
"I'm extracting a JSON string from self and return them as String."
| c obj str |
str := WriteStream on: (UnicodeString new: 8).
self next.
[
c := stream next.
c = $"
] whileFalse: [
c = $\
ifTrue: [
c := stream next.
c isNil ifTrue:
[ ^self error: 'expected character, found end of self' ].
c = $b ifTrue: [ c := 8 asCharacter ].
c = $f ifTrue: [ c := 12 asCharacter ].
c = $n ifTrue: [ c := Character nl ].
c = $r ifTrue: [ c := Character cr ].
c = $t ifTrue: [ c := Character tab ].
c = $u
ifTrue: [
c := (Integer readFrom: (stream next: 4) readStream radix: 16) asCharacter ].
].
str nextPut: c.
].
"Same as 'str contents asString: self outputEncoding', a little more efficient."
"str reset. ^(I18N.EncodedStream encoding: str as: self outputEncoding) contents"
^self outputEncoding isNil
ifTrue: [str contents]
ifFalse: [str contents asString: self outputEncoding]
!
nextJSONNumber
"I'm extracting a number in JSON format from self and return Integer or Float depending on the input."
| c sgn int intexp frac exp isfloat |
isfloat := false.
sgn := 1.
int := 0.
intexp := 1.
c := stream peek.
(c isNil) ifTrue: [ ^self error: 'expected number or -sign, but found end of self' ].
c = $- ifTrue: [ sgn := -1. stream next. ].
c := stream peek.
(c isNil) ifTrue: [ ^self error: 'expected number, but found end of self' ].
(c isDigit or: [ c = $. ]) ifFalse: [ ^self error: 'invalid JSON input' ].
[ c notNil and: [ c isDigit ] ] whileTrue: [
stream next.
int := sgn * (c digitValue) + (int * 10).
c := stream peek
].
(c isNil) ifTrue: [ ^int ].
c = $. ifTrue: [
stream next.
isfloat := true.
[ c := stream peek. c notNil and: [ c isDigit ] ] whileTrue: [
sgn := sgn / 10.
int := sgn * (c digitValue) + int.
stream next
]
].
exp := 0.
((c = $e) or: [ c = $E ]) ifFalse: [
^isfloat ifTrue: [ int asFloat ] ifFalse: [ int ] ].
stream next.
c := stream peek.
(c isNil) ifTrue: [ ^int ].
sgn := 1.
c = $+ ifTrue: [ sgn := 1. self next ].
c = $- ifTrue: [ sgn := -1. self next ].
[ c := stream peek. c notNil and: [ c isDigit ] ] whileTrue: [
exp := (c digitValue) + (exp * 10).
stream next
].
int := int * (10 raisedToInteger: exp * sgn).
^int asFloat
! !
!Number methodsFor: 'json'!
jsonPrintOn: aStream
"I return the Number in a JSON compatible format as String."
self asFloat printOn: aStream
! !
!Float methodsFor: 'json'!
jsonPrintOn: aStream
"I return the Number in a JSON compatible format as String."
aStream nextPutAll:
(self printString copyReplacing: self exponentLetter withObject: $e)
! !
!Integer methodsFor: 'json'!
jsonPrintOn: aStream
"I return the Integer in a JSON compatible format as String."
self printOn: aStream
! !
!Dictionary methodsFor: 'json'!
jsonPrintOn: ws
"I encode my contents (key/value pairs) to a JSON object and return it as String."
| f |
ws nextPut: ${.
f := true.
self keysAndValuesDo: [ :key :val |
f ifFalse: [ ws nextPut: $, ].
key jsonPrintOn: ws.
ws nextPut: $:.
val jsonPrintOn: ws.
f := false
].
ws nextPut: $}.
! !
!CharacterArray methodsFor: 'json'!
jsonPrintOn: ws
"I will encode me as JSON String and return a String containing my encoded version."
ws nextPut: $".
self do: [ :c || i |
i := c asInteger.
(((i = 16r20
or: [ i = 16r21 ])
or: [ i >= 16r23 and: [ i <= 16r5B ] ])
or: [ i >= 16r5D ])
ifTrue: [ ws nextPut: c ];
ifFalse: [ | f |
f := false.
ws nextPut: $\.
i = 16r22 ifTrue: [ f := true. ws nextPut: c ].
i = 16r5C ifTrue: [ f := true. ws nextPut: c ].
i = 16r2F ifTrue: [ f := true. ws nextPut: c ].
i = 16r08 ifTrue: [ f := true. ws nextPut: $b ].
i = 16r0C ifTrue: [ f := true. ws nextPut: $f ].
i = 16r0A ifTrue: [ f := true. ws nextPut: $n ].
i = 16r0D ifTrue: [ f := true. ws nextPut: $r ].
i = 16r09 ifTrue: [ f := true. ws nextPut: $t ].
f ifFalse: [
ws nextPut: $u.
ws nextPutAll: ('0000', i printString: 16) last: 4 ].
]
].
ws nextPut: $".
!
!String methodsFor: 'json'!
jsonPrintOn: aStream
"I will encode me as JSON String and return a String containing my encoded version."
(self anySatisfy: [ :ch | ch value between: 128 and: 255 ])
ifTrue: [ self asUnicodeString jsonPrintOn: aStream ]
ifFalse: [ super jsonPrintOn: aStream ]! !
!SequenceableCollection methodsFor: 'json'!
jsonPrintOn: ws
"I'm returning a JSON encoding of my contents as String."
| f |
ws nextPut: $[.
f := true.
self do: [ :val |
f ifFalse: [ ws nextPut: $, ].
val jsonPrintOn: ws.
f := false
].
ws nextPut: $].
! !
!UndefinedObject methodsFor: 'json'!
jsonPrintOn: aStream
"I'm returning my corresponding value as JSON String."
aStream nextPutAll: 'null'
! !
!Boolean methodsFor: 'json'!
jsonPrintOn: aStream
"I'm returning the JSON String for truth or lie."
self printOn: aStream
! !
!Object methodsFor: 'json'!
jsonPrintOn: aStream
self subclassResponsibility
!
toJSON: encoding
^(UnicodeString streamContents: [ :aStream | self jsonPrintOn: aStream ])
asString: encoding
!
toJSON
^(UnicodeString streamContents: [ :aStream | self jsonPrintOn: aStream ])
asString
! !
|