File size: 31,135 Bytes
43203b4 | 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 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 | ;;;; -*- Mode: LISP; Syntax: ANSI-COMMON-LISP; Base: 10; Package: JSON -*-
;;;; Copyright (c) 2006-2008 Henrik Hjelte
;;;; All rights reserved.
;;;; See the file LICENSE for terms of use and distribution.
(in-package :json)
;;; Token reader
(define-condition json-syntax-error (simple-error stream-error)
((stream-file-position :reader stream-error-stream-file-position
:initarg :stream-file-position))
(:report
(lambda (condition stream)
(format stream "~? [in ~S~@[ at position ~D~]]"
(simple-condition-format-control condition)
(simple-condition-format-arguments condition)
(stream-error-stream condition)
(stream-error-stream-file-position condition))))
(:documentation
"Signalled when non-well-formed JSON data are encountered."))
(defun json-syntax-error (stream format-control &rest format-arguments)
"Signal a JSON-SYNTAX-ERROR condition."
(error 'json-syntax-error
:stream stream
:stream-file-position (file-position stream)
:format-control format-control
:format-arguments format-arguments))
(defun read-json-token (stream)
"Read a JSON token (literal name, number or punctuation char) from
the given STREAM, and return 2 values: the token category (a symbol)
and the token itself, as a string or character."
(let ((c (peek-char t stream)))
(case c
((#\{ #\[ #\] #\} #\" #\: #\,)
(values :punct (read-char stream)))
((#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\-)
(read-json-number-token stream))
(t (if (alpha-char-p c)
(read-json-name-token stream)
(json-syntax-error stream "Invalid char on JSON input: `~C'"
c))))))
(defun peek-json-token (stream)
"Return 2 values: the category and the first character of the next
token available in the given STREAM. Unlike READ-JSON-TOKEN, this
function can not discriminate between integers and reals (hence, it
returns a single :NUMBER category), and cannot check whether the next
available symbol is a valid boolean or not (hence, the category for
such tokens is :SYMBOL)."
(let ((c (peek-char t stream)))
(values
(case c
((#\{ #\[ #\] #\} #\" #\: #\,) :punct)
((#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9 #\-) :number)
(t (if (alpha-char-p c)
:symbol
(json-syntax-error stream "Invalid char on JSON input: `~C'"
c))))
c)))
(defun read-json-number-token (stream)
"Read a JSON number token from the given STREAM, and return 2
values: the token category (:INTEGER or :REAL) and the token itself,
as a string."
(let* ((chars (cons nil nil))
(chars-tail chars)
(category :integer)
(c (read-char stream nil)))
(flet ((next-char ()
(setf chars-tail (setf (cdr chars-tail) (cons c nil))
c (read-char stream nil))))
(macrolet ((read-part (name divider &rest sign)
`(loop for part-length upfrom 0
initially
,@(if divider
`((if (and c (char-equal c ,divider))
(next-char)
(return))))
,@(if sign
(let ((sign
`(or ,@(loop for s in sign
collect `(char= c ,s)))))
`((if (and c ,sign) (next-char)))))
,@(if (eq name 'int)
`((when (and c (char= c #\0))
(next-char)
(return))))
while (and c (char<= #\0 c #\9))
do (next-char)
finally
,(let ((error-fmt
(format nil
"Invalid JSON number: no ~:(~A~) digits"
name)))
`(if (zerop part-length)
(json-syntax-error stream ,error-fmt)))
,@(unless (eq name 'int)
`((setq category :real))))))
(read-part Int nil #\-)
(read-part Frac #\.)
(read-part Exp #\e #\- #\+)
(if c (unread-char c stream))
(values category (coerce (cdr chars) 'string))))))
(defun read-json-name-token (stream)
"Read a JSON literal name token from the given STREAM, and return 2
values: the token category (:BOOLEAN) and the token itself, as a
string."
(let ((name
(loop for c = (read-char stream nil)
while (and c (alpha-char-p c))
collect c into chars
finally (if c (unread-char c stream))
(return (coerce chars 'string)))))
(if (assoc name +json-lisp-symbol-tokens+ :test #'equal)
(values :boolean name)
(json-syntax-error stream "Invalid JSON literal name: ~A"
name))))
(define-condition no-char-for-code (error)
((offending-code :initarg :code :reader offending-code))
(:report (lambda (condition stream)
(format stream "No character corresponds to code #x~4,'0X."
(offending-code condition))))
(:documentation
"Signalled when, in a JSON String, an escaped code point (\uXXXX)
is encountered which is greater than the application's CHAR-CODE-LIMIT
or for which CODE-CHAR returns NIL."))
(defmacro escaped-char-dispatch (char &key code-handler default-handler)
"Compiles the escaped character alist to a (CASE ...) match expression."
`(case ,char
,@(loop for (c . unescaped) in +json-lisp-escaped-chars+
if (characterp unescaped)
collect (list c unescaped)
else if (consp unescaped)
collect
(destructuring-bind ((len rdx) &body body) code-handler
(destructuring-bind (len-v . rdx-v) unescaped
`(,c (let ((,len ,len-v) (,rdx ,rdx-v)) ,@body)))))
(t ,default-handler)))
(defun read-json-string-char (stream)
"Read a JSON String char (or escape sequence) from the STREAM and
return it. If an end of string (unescaped quote) is encountered,
return NIL."
(let ((esc-error-fmt "Invalid JSON character escape sequence: ~A~A")
(c (read-char stream)))
(case c
(#\" nil) ; End of string
(#\\ (let ((c (read-char stream)))
(escaped-char-dispatch c
:code-handler
((len rdx)
(let ((code
(let ((repr (make-string len)))
(dotimes (i len)
(setf (aref repr i) (read-char stream)))
(handler-case (parse-integer repr :radix rdx)
(parse-error ()
(json-syntax-error stream esc-error-fmt
(format nil "\\~C" c)
repr))))))
(restart-case
(or (and (< code char-code-limit) (code-char code))
(error 'no-char-for-code :code code))
(substitute-char (char)
:report "Substitute another char."
:interactive
(lambda ()
(format *query-io* "Char: ")
(list (read-char *query-io*)))
char)
(pass-code ()
:report "Pass the code to char handler."
code))))
:default-handler
(if *use-strict-json-rules*
(json-syntax-error stream esc-error-fmt "\\" c)
c))))
(t c))))
;;; The decoder base
(defvar *json-input* (make-synonym-stream '*standard-input*)
"The default input stream for decoding operations.")
(define-custom-var (:integer *integer-handler*) (constantly 0)
"Designator for a function of 1 string argument (integer token).")
(define-custom-var (:real *real-handler*) (constantly 0)
"Designator for a function of 1 string argument (real token).")
(define-custom-var (:boolean *boolean-handler*) (constantly t)
"Designator for a function of 1 string argument (boolean token).")
(define-custom-var (:beginning-of-string *beginning-of-string-handler*)
(constantly t)
"Designator for a function of no arguments (called at encountering
an opening quote for a String).")
(define-custom-var (:string-char *string-char-handler*) (constantly t)
"Designator for a function of 1 character argument (String char).")
(define-custom-var (:end-of-string *end-of-string-handler*) (constantly "")
"Designator for a function of no arguments (called at encountering
a closing quote for a String).")
(define-custom-var (:beginning-of-array *beginning-of-array-handler*)
(constantly t)
"Designator for a function of no arguments (called at encountering
an opening bracket for an Array).")
(define-custom-var (:array-member *array-member-handler*) (constantly t)
"Designator for a function of 1 arbitrary argument (decoded member
of Array).")
(define-custom-var (:end-of-array *end-of-array-handler*) (constantly nil)
"Designator for a function of no arguments (called at encountering
a closing bracket for an Array).")
(define-custom-var (:array-type *json-array-type*) 'vector
"The Lisp sequence type to which JSON Arrays are to be coerced.")
(define-custom-var (:beginning-of-object *beginning-of-object-handler*)
(constantly t)
"Designator for a function of no arguments (called at encountering
an opening brace for an Object).")
(define-custom-var (:object-key *object-key-handler*) (constantly t)
"Designator for a function of 1 string argument (decoded member key
of Object).")
(define-custom-var (:object-value *object-value-handler*) (constantly t)
"Designator for a function of 1 arbitrary argument (decoded member
value of Object).")
(define-custom-var (:end-of-object *end-of-object-handler*)
(constantly nil)
"Designator for a function of no arguments (called at encountering
a closing brace for an Object).")
(define-custom-var (:internal-decoder *internal-decoder*) 'decode-json
"Designator for a function of 1 stream argument called (instead of
DECODE-JSON) to decode a member of an Array or of an Object.")
(define-custom-var (:object-scope *object-scope-variables*)
'(*internal-decoder*)
"A list of symbols naming dynamic variables which should be re-bound
in the scope of every JSON Object.")
(define-custom-var (:array-scope *array-scope-variables*)
'(*internal-decoder*)
"A list of symbols naming dynamic variables which should be re-bound
in the scope of every JSON Array.")
(define-custom-var (:string-scope *string-scope-variables*)
nil
"A list of symbols naming dynamic variables which should be re-bound
in the scope of every JSON String.")
(define-custom-var (:aggregate-scope *aggregate-scope-variables*)
nil
"A list of symbols naming dynamic variables which should be re-bound
in the scope of every JSON aggregate value (Object, Array or String).")
(defun decode-json (&optional (stream *json-input*))
"Read a JSON Value from STREAM and return the corresponding Lisp value."
(multiple-value-bind (dispatch-token-type dispatch-token)
(read-json-token stream)
(ecase dispatch-token-type
(:punct
(case dispatch-token
(#\" (decode-json-string stream))
(#\[ (decode-json-array stream))
(#\{ (decode-json-object stream))
(t (json-syntax-error stream
"Token out of place on JSON input: `~C'"
dispatch-token))))
(:integer (funcall *integer-handler* dispatch-token))
(:real (funcall *real-handler* dispatch-token))
(:boolean (funcall *boolean-handler* dispatch-token)))))
(defmacro custom-decoder (&rest customizations)
"Return a function which is like DECODE-JSON called in a dynamic
environment with the given CUSTOMIZATIONS."
`(lambda (&optional (stream *json-input*))
(bind-custom-vars ,customizations
(decode-json stream))))
(defun decode-json-from-string (json-string)
"Read a JSON Value from JSON-STRING and return the corresponding
Lisp value."
(with-input-from-string (stream json-string)
(decode-json stream)))
(defun decode-json-from-source (source &optional (decoder 'decode-json))
"Decode a JSON Value from SOURCE using the value of DECODER (default
'DECODE-JSON) as decoder function. If the SOURCE is a string, the
input is from this string; if it is a pathname, the input is from the
file that it names; otherwise, a stream is expected as SOURCE."
(etypecase source
(pathname
(with-open-file (s source) (funcall decoder s)))
(string
(with-input-from-string (s source) (funcall decoder s)))
(stream (funcall decoder source))))
(defun decode-json-strict (&optional (stream *json-input*))
"Same as DECODE-JSON, but allow only Objects or Arrays on the top
level, no junk afterwards."
(assert (member (peek-char t stream) '(#\{ #\[)))
(let ((object (decode-json stream)))
(assert (eq :no-junk (peek-char t stream nil :no-junk)))
object))
(defmacro aggregate-scope-progv (variables &body body)
"Establish a dynamic environment where all VARIABLES are freshly
bound (to their current values), and execute BODY in it, returning the
result."
`(progv ,variables (mapcar #'symbol-value ,variables)
,@body))
(defun decode-json-array (stream)
"Read comma-separated sequence of JSON Values until a closing bracket,
calling array handlers as it goes."
(aggregate-scope-progv *array-scope-variables*
(aggregate-scope-progv *aggregate-scope-variables*
(funcall *beginning-of-array-handler*)
(multiple-value-bind (type token) (peek-json-token stream)
(if (and (eql type :punct) (char= token #\]))
(progn
(read-json-token stream)
(return-from decode-json-array
(funcall *end-of-array-handler*)))
(funcall *array-member-handler*
(funcall *internal-decoder* stream))))
(loop
(multiple-value-bind (type token) (read-json-token stream)
(if (eql type :punct)
(case token
(#\] (return-from decode-json-array
(funcall *end-of-array-handler*)))
(#\, (setq token nil))))
(if token
(json-syntax-error
stream
"Token out of place in Array on JSON input: `~A'"
token)))
(funcall *array-member-handler*
(funcall *internal-decoder* stream))))))
(defun decode-json-object (stream)
"Read comma-separated sequence of JSON String:Value pairs until a
closing brace, calling object handlers as it goes."
(aggregate-scope-progv *object-scope-variables*
(aggregate-scope-progv *aggregate-scope-variables*
(loop with key = nil and expect-key = t
for first-time-p = t then nil
initially (funcall *beginning-of-object-handler*)
do (multiple-value-bind (type token) (read-json-token stream)
(if (eql type :punct)
(case token
(#\}
(if first-time-p
(return-from decode-json-object
(funcall *end-of-object-handler*))))
(#\"
(setq key (decode-json-string stream)
expect-key nil))))
(if expect-key
(json-syntax-error
stream
"Expected a key String in Object on JSON input ~
but found `~A'"
token)
(funcall *object-key-handler* key)))
(multiple-value-bind (type token) (read-json-token stream)
(unless (and (eql type :punct) (char= token #\:))
(json-syntax-error
stream
"Expected a `:' separator in Object on JSON input ~
but found `~A'"
token)))
(funcall *object-value-handler*
(funcall *internal-decoder* stream))
(multiple-value-bind (type token) (read-json-token stream)
(if (eql type :punct)
(case token
(#\} (return-from decode-json-object
(funcall *end-of-object-handler*)))
(#\, (setq key nil expect-key t))))
(if (not expect-key)
(json-syntax-error
stream
"Expected a `,' separator or `}' in Object on JSON ~
input but found `~A'"
token)))))))
(defun decode-json-string (stream)
"Read JSON String characters / escape sequences until a closing
double quote, calling string handlers as it goes."
(aggregate-scope-progv *string-scope-variables*
(aggregate-scope-progv *aggregate-scope-variables*
(loop initially (funcall *beginning-of-string-handler*)
for c = (read-json-string-char stream)
while c
do (funcall *string-char-handler* c)
finally (return (funcall *end-of-string-handler*))))))
;;; handling numerical read errors in ACL
#+allegro
(defun allegro-read-numerical-overflow-p (condition)
(and (typep condition 'simple-error)
(search "is too large to be converted"
(slot-value condition 'excl::format-control))))
#+allegro
(deftype allegro-reader-numerical-overflow ()
`(and error (satisfies allegro-read-numerical-overflow-p)))
;;; The default semantics
(defun parse-number (token)
"Take a number token and convert it to a numeric value."
;; We can be reasonably sure that nothing but well-formed (both in
;; JSON and Lisp sense) number literals get to this point.
(flet ((floatify (x)
(float x
(ecase *read-default-float-format*
(short-float 1.0s0)
(single-float 1.0)
(double-float 1.0d0)
(long-float 1.0l0)))))
(let* ((negated (char-equal #\- (aref token 0)))
(token (string-left-trim '(#\-) token)))
(let ((f-marker (position #\. token :test #'char-equal))
(e-marker (position #\e token :test #'char-equal)))
(if (or e-marker f-marker)
(let* ((int-part
(subseq token 0 (or f-marker e-marker)))
(frac-part
(if f-marker
(subseq token (1+ f-marker) e-marker)
"0"))
(significand
(+ (parse-integer int-part)
(* (parse-integer frac-part)
(expt 10 (- (length frac-part))))))
(exponent
(if e-marker
(parse-integer (subseq token (1+ e-marker)))
0)))
(restart-case
;; FIXME: the below have to be double-float when that's the value of
;; *read-default-float-format*: short-float, single-float, double-float, long-float
(let ((value
(* (floatify significand) (expt 10 (floatify exponent)))))
(if negated
(- value)
value))
(bignumber-string (&optional (prefix "BIGNUMBER:"))
:report "Return the number token prefixed as big number."
(concatenate 'string (if negated "-" "") prefix token))
(rational-approximation ()
:report "Use rational instead of float."
(let ((rat
(* significand (expt 10 exponent))))
(if negated (- rat) rat)))
(placeholder (value)
:report "Return a user-supplied placeholder value."
value)))
(let ((int (parse-integer token)))
(if negated (- int) int)))))))
(defun json-boolean-to-lisp (token)
"Take a literal name token and convert it to a boolean value."
;; We can be reasonably sure that nothing but well-formed boolean
;; literals get to this point.
(cdr (assoc token +json-lisp-symbol-tokens+ :test #'string=)))
(defvar *accumulator* nil
"List or vector where elements are stored.")
(defvar *accumulator-last* nil
"If *ACCUMULATOR* is a list, this refers to its last cons.")
(defun init-accumulator ()
"Initialize a list accumulator."
(let ((head (cons nil nil)))
(setq *accumulator* head)
(setq *accumulator-last* head)))
(defun accumulator-add (element)
"Add ELEMENT to the end of the list accumulator."
(setq *accumulator-last*
(setf (cdr *accumulator-last*) (cons element nil))))
(defun accumulator-add-key (key)
"Add a cons whose CAR is KEY to the end of the list accumulator."
(let ((key (funcall *identifier-name-to-key* (funcall *json-identifier-name-to-lisp* key))))
(setq *accumulator-last*
(setf (cdr *accumulator-last*) (cons (cons key nil) nil)))))
(defun accumulator-add-value (value)
"Set the CDR of the most recently accumulated cons to VALUE."
(setf (cdar *accumulator-last*) value)
*accumulator-last*)
(defun accumulator-get-sequence ()
"Return all values accumulated so far in the list accumulator as
*JSON-ARRAY-TYPE*."
(coerce (cdr *accumulator*) *json-array-type*))
(defun accumulator-get-string ()
"Return all values accumulated so far in the list accumulator as
*JSON-ARRAY-TYPE*."
(coerce (cdr *accumulator*) 'string))
(defun accumulator-get ()
"Return all values accumulated so far in the list accumulator as a
list."
(cdr *accumulator*))
(defun init-string-stream-accumulator ()
"Initialize a string-stream accumulator."
(setq *accumulator* (make-string-output-stream)))
(defun string-stream-accumulator-add (char)
"Add CHAR to the end of the string-stream accumulator."
(write-char char *accumulator*)
*accumulator*)
(defun string-stream-accumulator-get ()
"Return all characters accumulated so far in a string-stream
accumulator and close the stream."
(prog1 (get-output-stream-string *accumulator*)
(close *accumulator*)))
(defun set-decoder-simple-list-semantics ()
"Set the decoder semantics to the following:
* Strings and Numbers are decoded naturally, reals becoming floats.
* The literal name true is decoded to T, false and null to NIL.
* Arrays are decoded to sequences of the type *JSON-ARRAY-TYPE*.
* Objects are decoded to alists. Object keys are converted by the
function *JSON-IDENTIFIER-NAME-TO-LISP* and then interned in the
package *JSON-SYMBOLS-PACKAGE*."
(set-custom-vars
:integer #'parse-number
:real #'parse-number
:boolean #'json-boolean-to-lisp
:beginning-of-array #'init-accumulator
:array-member #'accumulator-add
:end-of-array #'accumulator-get-sequence
:array-type 'list
:beginning-of-object #'init-accumulator
:object-key #'accumulator-add-key
:object-value #'accumulator-add-value
:end-of-object #'accumulator-get
:beginning-of-string #'init-string-stream-accumulator
:string-char #'string-stream-accumulator-add
:end-of-string #'string-stream-accumulator-get
:aggregate-scope (union *aggregate-scope-variables*
'(*accumulator* *accumulator-last*))
:internal-decoder #'decode-json))
(defmacro with-decoder-simple-list-semantics (&body body)
"Execute BODY in a dynamic environement where the decoder semantics
is such as set by SET-DECODER-SIMPLE-LIST-SEMANTICS."
`(with-shadowed-custom-vars
(set-decoder-simple-list-semantics)
,@body))
;;; The CLOS semantics
#+cl-json-clos (progn
(defvar *prototype-prototype*
(make-instance 'prototype
:lisp-class 'prototype
:lisp-package :json)
"The prototype for a prototype object.")
(defvar *prototype* nil
"When NIL, the Object being decoded does not (yet?) have a prototype.
When T, the decoder should get ready to decode a prototype field.
Otherwise, the value should be a prototype for the object being decoded.")
(defun init-accumulator-and-prototype ()
"Initialize a list accumulator and a prototype."
(init-accumulator)
(if (eql *prototype* t)
(setq *prototype* *prototype-prototype*
*json-array-type* 'list)
(setq *prototype* nil)))
(defun accumulator-add-key-or-set-prototype (key)
"If KEY (in a JSON Object being decoded) matches *PROTOTYPE-NAME*,
prepare to decode the corresponding Value as a PROTOTYPE object.
Otherwise, do the same as ACCUMULATOR-ADD-KEY."
(let ((key (funcall *json-identifier-name-to-lisp* key)))
(if (and (not *prototype*)
*prototype-name*
(string= key (symbol-name *prototype-name*)))
(setq *prototype* t)
(setq *accumulator-last*
(setf (cdr *accumulator-last*) (cons (cons key nil) nil))))
*accumulator*))
(defun accumulator-add-value-or-set-prototype (value)
"If VALUE (in a JSON Object being decoded) corresponds to a key
which matches *PROTOTYPE-NAME*, set VALUE to be the prototype of the
Object. Otherwise, do the same as ACCUMULATOR-ADD-VALUE."
(if (eql *prototype* t)
(progn
(check-type value (or prototype string)
(format nil "Invalid prototype: ~S." value))
(setq *prototype* value)
*accumulator*)
(accumulator-add-value value)))
(defun accumulator-get-object ()
"Return a CLOS object, using keys and values accumulated so far in
the list accumulator as slot names and values, respectively. If the
JSON Object had a prototype field infer the class of the object and
the package wherein to intern slot names from the prototype.
Otherwise, create a FLUID-OBJECT with slots interned in
*JSON-SYMBOLS-PACKAGE*."
(flet ((as-symbol (value)
(etypecase value
(string (funcall *identifier-name-to-key*
(funcall *json-identifier-name-to-lisp* value)))
(symbol value)))
(intern-keys (bindings)
(loop for (key . value) in bindings
collect (cons (funcall *identifier-name-to-key* key) value))))
(if (typep *prototype* 'prototype)
(with-slots (lisp-class lisp-superclasses lisp-package)
*prototype*
(let* ((package-name (as-symbol lisp-package))
(*json-symbols-package*
(if package-name
(or (find-package package-name)
(error 'package-error :package package-name))
*json-symbols-package*))
(class (as-symbol lisp-class))
(superclasses (mapcar #'as-symbol lisp-superclasses)))
(maybe-add-prototype
(make-object (intern-keys (cdr *accumulator*))
class superclasses)
*prototype*)))
(let ((bindings (intern-keys (cdr *accumulator*)))
(class (if (stringp *prototype*) (as-symbol *prototype*))))
(if (and *prototype* (not class))
(push (cons *prototype-name* *prototype*) bindings))
(make-object bindings class)))))
(defun set-decoder-simple-clos-semantics ()
"Set the decoder semantics to the following:
* Strings and Numbers are decoded naturally, reals becoming floats.
* The literal name true is decoded to T, false and null to NIL.
* Arrays are decoded to sequences of the type *JSON-ARRAY-TYPE*.
* Objects are decoded to CLOS objects. Object keys are converted by
the function *JSON-IDENTIFIER-NAME-TO-LISP*. If a JSON Object has a
field whose key matches *PROTOTYPE-NAME*, the class of the CLOS object
and the package wherein to intern slot names are inferred from the
corresponding value which must be a valid prototype. Otherwise, a
FLUID-OBJECT is constructed whose slot names are interned in
*JSON-SYMBOLS-PACKAGE*."
(set-custom-vars
:integer #'parse-number
:real #'parse-number
:boolean #'json-boolean-to-lisp
:beginning-of-array #'init-accumulator
:array-member #'accumulator-add
:end-of-array #'accumulator-get-sequence
:array-type 'vector
:beginning-of-object #'init-accumulator-and-prototype
:object-key #'accumulator-add-key-or-set-prototype
:object-value #'accumulator-add-value-or-set-prototype
:end-of-object #'accumulator-get-object
:beginning-of-string #'init-string-stream-accumulator
:string-char #'string-stream-accumulator-add
:end-of-string #'string-stream-accumulator-get
:aggregate-scope (union *aggregate-scope-variables*
'(*accumulator* *accumulator-last*))
:object-scope (union *object-scope-variables*
'(*prototype* *json-array-type*))
:internal-decoder #'decode-json))
(defmacro with-decoder-simple-clos-semantics (&body body)
"Execute BODY in a dynamic environement where the decoder semantics
is such as set by SET-DECODER-SIMPLE-CLOS-SEMANTICS."
`(with-shadowed-custom-vars
(set-decoder-simple-clos-semantics)
,@body))
) ; #+cl-json-clos
;;; List semantics is the default.
(set-decoder-simple-list-semantics)
;;; Shallow overriding of semantics.
(defmacro current-decoder (&rest keys)
"Capture current values of custom variables and return a custom
decoder which restores these values in its dynamic environment."
(let (exterior-bindings customizations)
(flet ((collect (key var)
(let ((exterior (gensym)))
(push (list exterior var) exterior-bindings)
(push exterior customizations)
(push key customizations))))
(if keys
(loop for key in keys
do (collect key (custom-key-to-variable key)))
(loop-on-custom (key var)
do (collect key var)))
`(let ,exterior-bindings
(custom-decoder ,@customizations)))))
(defmacro with-custom-decoder-level ((&rest customizations) &body body)
"Execute BODY in a dynamic environment such that, when nested
structures are decoded, the outermost level is decoded with the given
custom handlers (CUSTOMIZATIONS) whereas inner levels are decoded in
the usual way."
`(let ((current-decoder
(current-decoder
,@(loop for (key value) on customizations by #'cddr
if (eq key :internal-decoder)
do (error "~S ~S customization is meaningless in ~
the context of WITH-CUSTOM-DECODER-LEVEL."
key value)
else collect key))))
(bind-custom-vars (:internal-decoder current-decoder ,@customizations)
,@body)))
|