/usr/share/common-lisp/source/yason/encode.lisp is in cl-yason 0.7.5-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 | ;; This file is part of yason, a Common Lisp JSON parser/encoder
;;
;; Copyright (c) 2008-2014 Hans Huebner and contributors
;; All rights reserved.
;;
;; Please see the file LICENSE in the distribution.
(in-package :yason)
(defvar *json-output*)
(defparameter *default-indent* nil
"Set to T or an numeric indentation width in order to have YASON
indent its output by default.")
(defparameter *default-indent-width* 2
"Default indentation width for output if indentation is selected
with no indentation width specified.")
(defgeneric encode (object &optional stream)
(:documentation "Encode OBJECT to STREAM in JSON format. May be
specialized by applications to perform specific rendering. STREAM
defaults to *STANDARD-OUTPUT*."))
(defparameter *char-replacements*
(alexandria:plist-hash-table
'(#\\ "\\\\"
#\" "\\\""
#\Backspace "\\b"
#\Page "\\f"
#\Newline "\\n"
#\Return "\\r"
#\Tab "\\t")))
(defmethod encode ((string string) &optional (stream *standard-output*))
(write-char #\" stream)
(dotimes (i (length string))
(let* ((char (aref string i))
(replacement (gethash char *char-replacements*)))
(if replacement
(write-string replacement stream)
(write-char char stream))))
(write-char #\" stream)
string)
(defmethod encode ((object ratio) &optional (stream *standard-output*))
(encode (coerce object 'double-float) stream)
object)
(defmethod encode ((object float) &optional (stream *standard-output*))
(let ((*read-default-float-format* 'double-float))
(format stream "~F" (coerce object 'double-float)))
object)
(defmethod encode ((object integer) &optional (stream *standard-output*))
(princ object stream))
(defmacro with-aggregate/object ((stream opening-char closing-char) &body body)
"Set up serialization context for aggregate serialization with the
object encoder."
(alexandria:with-gensyms (printed)
`(progn
(write-delimiter ,opening-char ,stream)
(change-indentation ,stream #'+)
(prog1
(let (,printed)
(macrolet ((with-element-output (() &body body)
`(progn
(cond
(,',printed
(write-delimiter #\, ,',stream))
(t
(setf ,',printed t)))
(write-indentation ,',stream)
,@body)))
,@body))
(change-indentation ,stream #'-)
(write-indentation ,stream)
(write-delimiter ,closing-char ,stream)))))
(defun encode-key/value (key value stream)
(encode key stream)
(write-char #\: stream)
(encode value stream))
(defmethod encode ((object hash-table) &optional (stream *standard-output*))
(with-aggregate/object (stream #\{ #\})
(maphash (lambda (key value)
(with-element-output ()
(encode-key/value key value stream)))
object)
object))
(defmethod encode ((object vector) &optional (stream *standard-output*))
(with-aggregate/object (stream #\[ #\])
(loop for value across object
do (with-element-output ()
(encode value stream)))
object))
(defun encode-list% (object &optional (stream *standard-output*))
(with-aggregate/object (stream #\[ #\])
(dolist (value object)
(with-element-output ()
(encode value stream)))
object))
(defun encode-assoc-key/value (key value stream)
(let ((string (string key)))
(encode-key/value string value stream)))
(defun encode-alist% (object &optional (stream *standard-output*))
(with-aggregate/object (stream #\{ #\})
(loop for (key . value) in object
do
(with-element-output ()
(if (consp value)
(progn
(format stream "\"~a\":" key)
(encode value stream))
(progn
(encode-assoc-key/value key value stream)))))
object))
(defun encode-plist% (object &optional (stream *standard-output*))
(with-aggregate/object (stream #\{ #\})
(loop for (key value) on object by #'cddr
do
(with-element-output ()
(if (consp value)
(progn
(format stream "\"~a\":" key)
(encode value stream))
(encode-assoc-key/value key value stream))))
object))
(defvar *list->object-convention* :keyword-string)
(defun can-map-to-json-object (my-list)
(case *list->object-convention*
(:plist (keywordp (car my-list)))
(:alist (if (consp (car my-list))
(keywordp (caar my-list))))))
(defmethod encode ((object list) &optional (stream *standard-output*))
(if (can-map-to-json-object object)
(case *list->object-convention*
(:plist
(encode-plist% object stream))
(:alist
(encode-alist% object stream)))
(encode-list% object stream)))
(defun encode-alist (object &optional (stream *standard-output*))
(let ((*list->object-convention* :alist))
(encode object stream)))
(defun encode-plist (object &optional (stream *standard-output*))
(let ((*list->object-convention* :plist))
(encode object stream)))
(defmethod encode ((object (eql 'true)) &optional (stream *standard-output*))
(write-string "true" stream)
object)
(defmethod encode ((object (eql 'false)) &optional (stream *standard-output*))
(write-string "false" stream)
object)
(defmethod encode ((object (eql 'null)) &optional (stream *standard-output*))
(write-string "null" stream)
object)
(defmethod encode ((object (eql t)) &optional (stream *standard-output*))
(write-string "true" stream)
object)
(defmethod encode ((object (eql nil)) &optional (stream *standard-output*))
(write-string "null" stream)
object)
(defclass json-output-stream (trivial-gray-streams:fundamental-character-output-stream)
((output-stream :reader output-stream
:initarg :output-stream)
(stack :accessor stack
:initform nil)
(indent :initarg :indent
:reader indent
:accessor indent%)
(indent-string :initform ""
:accessor indent-string))
(:default-initargs :indent *default-indent*)
(:documentation "Objects of this class capture the state of a JSON stream encoder."))
(defmethod initialize-instance :after ((stream json-output-stream) &key indent)
(when (eq indent t)
(setf (indent% stream) *default-indent-width*)))
(defgeneric make-json-output-stream (stream &key indent))
(defmethod make-json-output-stream (stream &key (indent t))
"Create a JSON output stream with indentation enabled."
(if indent
(make-instance 'json-output-stream :output-stream stream :indent indent)
stream))
(defmethod trivial-gray-streams:stream-write-char ((stream json-output-stream) char)
(write-char char (output-stream stream)))
(defgeneric write-indentation (stream)
(:method ((stream t))
nil)
(:method ((stream json-output-stream))
(when (indent stream)
(fresh-line (output-stream stream))
(write-string (indent-string stream) (output-stream stream)))))
(defgeneric write-delimiter (char stream)
(:method (char stream)
(write-char char stream))
(:method (char (stream json-output-stream))
(write-char char (output-stream stream))))
(defgeneric change-indentation (stream operator)
(:method ((stream t) (operator t))
nil)
(:method ((stream json-output-stream) operator)
(when (indent stream)
(setf (indent-string stream) (make-string (funcall operator (length (indent-string stream))
(indent stream))
:initial-element #\Space)))))
(defun next-aggregate-element ()
(if (car (stack *json-output*))
(write-char (car (stack *json-output*)) (output-stream *json-output*))
(setf (car (stack *json-output*)) #\,)))
(defmacro with-output ((stream &rest args &key indent) &body body)
(declare (ignore indent))
"Set up a JSON streaming encoder context on STREAM, then evaluate BODY."
`(let ((*json-output* (make-instance 'json-output-stream :output-stream ,stream ,@args)))
,@body))
(defmacro with-output-to-string* ((&rest args &key indent) &body body)
"Set up a JSON streaming encoder context, then evaluate BODY.
Return a string with the generated JSON output."
(declare (ignore indent))
`(with-output-to-string (s)
(with-output (s ,@args)
,@body)))
(define-condition no-json-output-context (error)
()
(:report "No JSON output context is active")
(:documentation "This condition is signalled when one of the stream
encoding function is used outside the dynamic context of a
WITH-OUTPUT or WITH-OUTPUT-TO-STRING* body."))
(defmacro with-aggregate/stream ((begin-char end-char) &body body)
"Set up context for aggregate serialization for the stream encoder."
`(progn
(unless (boundp '*json-output*)
(error 'no-json-output-context))
(when (stack *json-output*)
(next-aggregate-element))
(write-indentation *json-output*)
(write-delimiter ,begin-char *json-output*)
(change-indentation *json-output* #'+)
(push nil (stack *json-output*))
(prog1
(progn ,@body)
(pop (stack *json-output*))
(change-indentation *json-output* #'-)
(write-indentation *json-output*)
(write-delimiter ,end-char *json-output*))))
(defmacro with-array (() &body body)
"Open a JSON array, then run BODY. Inside the body,
ENCODE-ARRAY-ELEMENT must be called to encode elements to the opened
array. Must be called within an existing JSON encoder context, see
WITH-OUTPUT and WITH-OUTPUT-TO-STRING*."
`(with-aggregate/stream (#\[ #\]) ,@body))
(defmacro with-object (() &body body)
"Open a JSON object, then run BODY. Inside the body,
ENCODE-OBJECT-ELEMENT or WITH-OBJECT-ELEMENT must be called to encode
elements to the object. Must be called within an existing JSON
encoder context, see WITH-OUTPUT and WITH-OUTPUT-TO-STRING*."
`(with-aggregate/stream (#\{ #\}) ,@body))
(defun encode-array-element (object)
"Encode OBJECT as next array element to the last JSON array opened
with WITH-ARRAY in the dynamic context. OBJECT is encoded using the
ENCODE generic function, so it must be of a type for which an ENCODE
method is defined."
(next-aggregate-element)
(write-indentation *json-output*)
(encode object (output-stream *json-output*)))
(defun encode-array-elements (&rest objects)
"Encode OBJECTS, a list of JSON encodable objects, as array elements."
(dolist (object objects)
(encode-array-element object)))
(defun encode-object-element (key value)
"Encode KEY and VALUE as object element to the last JSON object
opened with WITH-OBJECT in the dynamic context. KEY and VALUE are
encoded using the ENCODE generic function, so they both must be of a
type for which an ENCODE method is defined."
(next-aggregate-element)
(write-indentation *json-output*)
(encode-key/value key value (output-stream *json-output*))
value)
(defun encode-object-elements (&rest elements)
"Encode plist ELEMENTS as object elements."
(loop for (key value) on elements by #'cddr
do (encode-object-element key value)))
(defun encode-object-slots (object slots)
"For each slot in SLOTS, encode that slot on OBJECT as an object element.
Equivalent to calling ENCODE-OBJECT-ELEMENT for each slot where the
key is the slot name, and the value is the (SLOT-VALUE OBJECT slot)"
(loop for slot in slots
do (encode-object-element (string slot)
(slot-value object slot))))
(define-compiler-macro encode-object-slots (&whole form &environment env object raw-slots)
"Compiler macro to allow open-coding with encode-object-slots when slots are literal list."
(let ((slots (macroexpand raw-slots env)))
(cond
((null slots) nil)
((eq (car slots) 'quote)
(setf slots (cadr slots)) ; Get the quoted list
`(with-slots ,slots ,object
,@(loop for slot in slots
collect `(encode-object-element ,(string slot) ,slot))))
(t form))))
(defmacro with-object-element ((key) &body body)
"Open a new encoding context to encode a JSON object element. KEY
is the key of the element. The value will be whatever BODY
serializes to the current JSON output context using one of the
stream encoding functions. This can be used to stream out nested
object structures."
`(progn
(next-aggregate-element)
(write-indentation *json-output*)
(encode ,key (output-stream *json-output*))
(setf (car (stack *json-output*)) #\:)
(unwind-protect
(progn ,@body)
(setf (car (stack *json-output*)) #\,))))
(defgeneric encode-slots (object)
(:documentation
"Generic function to encode object slots. It should be called in an
object encoding context. It uses PROGN combinatation with
MOST-SPECIFIC-LAST order, so that base class slots are encoded
before derived class slots.")
(:method-combination progn :most-specific-last))
(defgeneric encode-object (object)
(:documentation
"Generic function to encode an object. The default implementation
opens a new object encoding context and calls ENCODE-SLOTS on
the argument.")
(:method (object)
(with-object ()
(yason:encode-slots object))))
|