1 ;;; json.el --- JavaScript Object Notation parser / generator
3 ;; Copyright (C) 2006-2013 Free Software Foundation, Inc.
5 ;; Author: Edward O'Connor <ted@oconnor.cx>
7 ;; Keywords: convenience
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; This is a library for parsing and generating JSON (JavaScript Object
29 ;; Learn all about JSON here: <URL:http://json.org/>.
31 ;; The user-serviceable entry points for the parser are the functions
32 ;; `json-read' and `json-read-from-string'. The encoder has a single
33 ;; entry point, `json-encode'.
35 ;; Since there are several natural representations of key-value pair
36 ;; mappings in elisp (alist, plist, hash-table), `json-read' allows you
37 ;; to specify which you'd prefer (see `json-object-type' and
38 ;; `json-array-type').
40 ;; Similarly, since `false' and `null' are distinct in JSON, you can
41 ;; distinguish them by binding `json-false' and `json-null' as desired.
45 ;; 2006-03-11 - Initial version.
46 ;; 2006-03-13 - Added JSON generation in addition to parsing. Various
47 ;; other cleanups, bugfixes, and improvements.
48 ;; 2006-12-29 - XEmacs support, from Aidan Kehoe <kehoea@parhasard.net>.
49 ;; 2008-02-21 - Installed in GNU Emacs.
50 ;; 2011-10-17 - Patch `json-alist-p' and `json-plist-p' to avoid recursion -tzz
51 ;; 2012-10-25 - Added pretty-printed reformatting -Ryan Crum (ryan@ryancrum.org)
58 (defalias 'json-encode-char0
'encode-char
)
59 (defalias 'json-decode-char0
'decode-char
)
64 (defvar json-object-type
'alist
65 "Type to convert JSON objects to.
66 Must be one of `alist', `plist', or `hash-table'. Consider let-binding
67 this around your call to `json-read' instead of `setq'ing it.")
69 (defvar json-array-type
'vector
70 "Type to convert JSON arrays to.
71 Must be one of `vector' or `list'. Consider let-binding this around
72 your call to `json-read' instead of `setq'ing it.")
74 (defvar json-key-type nil
75 "Type to convert JSON keys to.
76 Must be one of `string', `symbol', `keyword', or nil.
78 If nil, `json-read' will guess the type based on the value of
81 If `json-object-type' is: nil will be interpreted as:
86 Note that values other than `string' might behave strangely for
87 Sufficiently Weird keys. Consider let-binding this around your call to
88 `json-read' instead of `setq'ing it.")
90 (defvar json-false
:json-false
91 "Value to use when reading JSON `false'.
92 If this has the same value as `json-null', you might not be able to tell
93 the difference between `false' and `null'. Consider let-binding this
94 around your call to `json-read' instead of `setq'ing it.")
97 "Value to use when reading JSON `null'.
98 If this has the same value as `json-false', you might not be able to
99 tell the difference between `false' and `null'. Consider let-binding
100 this around your call to `json-read' instead of `setq'ing it.")
102 (defvar json-encoding-separator
","
103 "Value to use as an element separator when encoding.")
105 (defvar json-encoding-default-indentation
" "
106 "The default indentation level for encoding.
107 Used only when `json-encoding-pretty-print' is non-nil.")
109 (defvar json--encoding-current-indentation
"\n"
110 "Internally used to keep track of the current indentation level of encoding.
111 Used only when `json-encoding-pretty-print' is non-nil.")
113 (defvar json-encoding-pretty-print nil
114 "If non-nil, then the output of `json-encode' will be pretty-printed.")
116 (defvar json-encoding-lisp-style-closings nil
117 "If non-nil, ] and } closings will be formatted lisp-style,
118 without indentation.")
124 (defun json-join (strings separator
)
125 "Join STRINGS with SEPARATOR."
126 (mapconcat 'identity strings separator
))
128 (defun json-alist-p (list)
129 "Non-null if and only if LIST is an alist."
131 (setq list
(if (consp (car list
))
136 (defun json-plist-p (list)
137 "Non-null if and only if LIST is a plist."
139 (setq list
(if (and (keywordp (car list
))
145 (defmacro json--with-indentation
(body)
146 `(let ((json--encoding-current-indentation
147 (if json-encoding-pretty-print
148 (concat json--encoding-current-indentation
149 json-encoding-default-indentation
)
155 (defsubst json-advance
(&optional n
)
156 "Skip past the following N characters."
159 (defsubst json-peek
()
160 "Return the character at point."
161 (let ((char (char-after (point))))
162 (or char
:json-eof
)))
164 (defsubst json-pop
()
165 "Advance past the character at point, returning it."
166 (let ((char (json-peek)))
167 (if (eq char
:json-eof
)
168 (signal 'end-of-file nil
)
172 (defun json-skip-whitespace ()
173 "Skip past the whitespace at point."
174 (skip-chars-forward "\t\r\n\f\b "))
180 (define-error 'json-error
"Unknown JSON error")
181 (define-error 'json-readtable-error
"JSON readtable error" 'json-error
)
182 (define-error 'json-unknown-keyword
"Unrecognized keyword" 'json-error
)
183 (define-error 'json-number-format
"Invalid number format" 'json-error
)
184 (define-error 'json-string-escape
"Bad Unicode escape" 'json-error
)
185 (define-error 'json-string-format
"Bad string format" 'json-error
)
186 (define-error 'json-key-format
"Bad JSON object key" 'json-error
)
187 (define-error 'json-object-format
"Bad JSON object" 'json-error
)
193 (defvar json-keywords
'("true" "false" "null")
194 "List of JSON keywords.")
198 (defun json-read-keyword (keyword)
199 "Read a JSON keyword at point.
200 KEYWORD is the keyword expected."
201 (unless (member keyword json-keywords
)
202 (signal 'json-unknown-keyword
(list keyword
)))
204 (unless (char-equal char
(json-peek))
205 (signal 'json-unknown-keyword
206 (list (save-excursion
208 (thing-at-point 'word
)))))
211 (unless (looking-at "\\(\\s-\\|[],}]\\|$\\)")
212 (signal 'json-unknown-keyword
213 (list (save-excursion
215 (thing-at-point 'word
)))))
216 (cond ((string-equal keyword
"true") t
)
217 ((string-equal keyword
"false") json-false
)
218 ((string-equal keyword
"null") json-null
)))
222 (defun json-encode-keyword (keyword)
223 "Encode KEYWORD as a JSON value."
224 (cond ((eq keyword t
) "true")
225 ((eq keyword json-false
) "false")
226 ((eq keyword json-null
) "null")))
232 (defun json-read-number (&optional sign
)
233 "Read the JSON number following point.
234 The optional SIGN argument is for internal use.
236 N.B.: Only numbers which can fit in Emacs Lisp's native number
237 representation will be parsed correctly."
238 ;; If SIGN is non-nil, the number is explicitly signed.
240 "\\([0-9]+\\)?\\(\\.[0-9]+\\)?\\([Ee][+-]?[0-9]+\\)?"))
241 (cond ((and (null sign
) (char-equal (json-peek) ?-
))
243 (- (json-read-number t
)))
244 ((and (null sign
) (char-equal (json-peek) ?
+))
246 (json-read-number t
))
247 ((and (looking-at number-regexp
)
248 (or (match-beginning 1)
249 (match-beginning 2)))
250 (goto-char (match-end 0))
251 (string-to-number (match-string 0)))
252 (t (signal 'json-number-format
(list (point)))))))
256 (defun json-encode-number (number)
257 "Return a JSON representation of NUMBER."
258 (format "%s" number
))
262 (defvar json-special-chars
271 "Characters which are escaped in JSON, with their elisp counterparts.")
275 (defun json-read-escaped-char ()
276 "Read the JSON string escaped character at point."
279 (let* ((char (json-pop))
280 (special (assq char json-special-chars
)))
282 (special (cdr special
))
283 ((not (eq char ?u
)) char
)
284 ((looking-at "[0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f][0-9A-Fa-f]")
285 (let ((hex (match-string 0)))
287 (json-decode-char0 'ucs
(string-to-number hex
16))))
289 (signal 'json-string-escape
(list (point)))))))
291 (defun json-read-string ()
292 "Read the JSON string at point."
293 (unless (char-equal (json-peek) ?
\")
294 (signal 'json-string-format
(list "doesn't start with '\"'!")))
297 (let ((characters '())
299 (while (not (char-equal char ?
\"))
300 (push (if (char-equal char ?
\\)
301 (json-read-escaped-char)
304 (setq char
(json-peek)))
308 (apply 'string
(nreverse characters
))
313 (defun json-encode-char (char)
314 "Encode CHAR as a JSON string."
315 (setq char
(json-encode-char0 char
'ucs
))
316 (let ((control-char (car (rassoc char json-special-chars
))))
318 ;; Special JSON character (\n, \r, etc.).
320 (format "\\%c" control-char
))
321 ;; ASCIIish printable character.
322 ((and (> char
31) (< char
127))
324 ;; Fallback: UCS code point in \uNNNN form.
326 (format "\\u%04x" char
)))))
328 (defun json-encode-string (string)
329 "Return a JSON representation of STRING."
330 (format "\"%s\"" (mapconcat 'json-encode-char string
"")))
332 (defun json-encode-key (object)
333 "Return a JSON representation of OBJECT.
334 If the resulting JSON object isn't a valid JSON object key,
335 this signals `json-key-format'."
336 (let ((encoded (json-encode object
)))
337 (unless (stringp (json-read-from-string encoded
))
338 (signal 'json-key-format
(list object
)))
343 (defun json-new-object ()
344 "Create a new Elisp object corresponding to a JSON object.
345 Please see the documentation of `json-object-type'."
346 (cond ((eq json-object-type
'hash-table
)
347 (make-hash-table :test
'equal
))
351 (defun json-add-to-object (object key value
)
352 "Add a new KEY -> VALUE association to OBJECT.
353 Returns the updated object, which you should save, e.g.:
354 (setq obj (json-add-to-object obj \"foo\" \"bar\"))
355 Please see the documentation of `json-object-type' and `json-key-type'."
357 (if (eq json-key-type nil
)
358 (cdr (assq json-object-type
'((hash-table . string
)
363 (cond ((eq json-key-type
'string
)
365 ((eq json-key-type
'symbol
)
367 ((eq json-key-type
'keyword
)
368 (intern (concat ":" key
)))))
369 (cond ((eq json-object-type
'hash-table
)
370 (puthash key value object
)
372 ((eq json-object-type
'alist
)
373 (cons (cons key value
) object
))
374 ((eq json-object-type
'plist
)
375 (cons key
(cons value object
))))))
377 ;; JSON object parsing
379 (defun json-read-object ()
380 "Read the JSON object at point."
383 (json-skip-whitespace)
384 ;; read key/value pairs until "}"
385 (let ((elements (json-new-object))
387 (while (not (char-equal (json-peek) ?
}))
388 (json-skip-whitespace)
389 (setq key
(json-read-string))
390 (json-skip-whitespace)
391 (if (char-equal (json-peek) ?
:)
393 (signal 'json-object-format
(list ":" (json-peek))))
394 (setq value
(json-read))
395 (setq elements
(json-add-to-object elements key value
))
396 (json-skip-whitespace)
397 (unless (char-equal (json-peek) ?
})
398 (if (char-equal (json-peek) ?
,)
400 (signal 'json-object-format
(list "," (json-peek))))))
405 ;; Hash table encoding
407 (defun json-encode-hash-table (hash-table)
408 "Return a JSON representation of HASH-TABLE."
412 (json--with-indentation
416 (if json-encoding-pretty-print
419 json--encoding-current-indentation
425 json-encoding-separator
)
426 (if (or (not json-encoding-pretty-print
)
427 json-encoding-lisp-style-closings
)
429 json--encoding-current-indentation
)))
431 ;; List encoding (including alists and plists)
433 (defun json-encode-alist (alist)
434 "Return a JSON representation of ALIST."
437 (json--with-indentation
438 (mapcar (lambda (cons)
439 (format (if json-encoding-pretty-print
442 json--encoding-current-indentation
443 (json-encode-key (car cons
))
444 (json-encode (cdr cons
))))
446 json-encoding-separator
)
447 (if (or (not json-encoding-pretty-print
)
448 json-encoding-lisp-style-closings
)
450 json--encoding-current-indentation
)))
452 (defun json-encode-plist (plist)
453 "Return a JSON representation of PLIST."
455 (json--with-indentation
458 json--encoding-current-indentation
459 (json-encode-key (car plist
))
460 (if json-encoding-pretty-print
463 (json-encode (cadr plist
)))
465 (setq plist
(cddr plist
))))
467 (json-join (nreverse result
) json-encoding-separator
)
468 (if (and json-encoding-pretty-print
469 (not json-encoding-lisp-style-closings
))
470 json--encoding-current-indentation
474 (defun json-encode-list (list)
475 "Return a JSON representation of LIST.
476 Tries to DWIM: simple lists become JSON arrays, while alists and plists
477 become JSON objects."
478 (cond ((null list
) "null")
479 ((json-alist-p list
) (json-encode-alist list
))
480 ((json-plist-p list
) (json-encode-plist list
))
481 ((listp list
) (json-encode-array list
))
483 (signal 'json-error
(list list
)))))
489 (defun json-read-array ()
490 "Read the JSON array at point."
493 (json-skip-whitespace)
494 ;; read values until "]"
496 (while (not (char-equal (json-peek) ?\
]))
497 (push (json-read) elements
)
498 (json-skip-whitespace)
499 (unless (char-equal (json-peek) ?\
])
500 (if (char-equal (json-peek) ?
,)
502 (signal 'json-error
(list 'bleah
)))))
505 (apply json-array-type
(nreverse elements
))))
509 (defun json-encode-array (array)
510 "Return a JSON representation of ARRAY."
511 (if (and json-encoding-pretty-print
512 (> (length array
) 0))
514 (json--with-indentation
515 (concat (format "[%s" json--encoding-current-indentation
)
516 (json-join (mapcar 'json-encode array
)
518 json-encoding-separator
519 json--encoding-current-indentation
))))
521 (if json-encoding-lisp-style-closings
523 json--encoding-current-indentation
)))
525 (mapconcat 'json-encode array json-encoding-separator
)
532 (defvar json-readtable
534 '((?t json-read-keyword
"true")
535 (?f json-read-keyword
"false")
536 (?n json-read-keyword
"null")
537 (?
{ json-read-object
)
538 (?\
[ json-read-array
)
539 (?
\" json-read-string
))))
541 (push (list char
'json-read-number
) table
))
542 '(?- ?
+ ?. ?
0 ?
1 ?
2 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9))
544 "Readtable for JSON reader.")
547 "Parse and return the JSON object following point.
548 Advances point just past JSON object."
549 (json-skip-whitespace)
550 (let ((char (json-peek)))
551 (if (not (eq char
:json-eof
))
552 (let ((record (cdr (assq char json-readtable
))))
553 (if (functionp (car record
))
554 (apply (car record
) (cdr record
))
555 (signal 'json-readtable-error record
)))
556 (signal 'end-of-file nil
))))
558 ;; Syntactic sugar for the reader
560 (defun json-read-from-string (string)
561 "Read the JSON object contained in STRING and return it."
564 (goto-char (point-min))
567 (defun json-read-file (file)
568 "Read the first JSON object contained in FILE and return it."
570 (insert-file-contents file
)
571 (goto-char (point-min))
578 (defun json-encode (object)
579 "Return a JSON representation of OBJECT as a string."
580 (cond ((memq object
(list t json-null json-false
))
581 (json-encode-keyword object
))
582 ((stringp object
) (json-encode-string object
))
583 ((keywordp object
) (json-encode-string
584 (substring (symbol-name object
) 1)))
585 ((symbolp object
) (json-encode-string
586 (symbol-name object
)))
587 ((numberp object
) (json-encode-number object
))
588 ((arrayp object
) (json-encode-array object
))
589 ((hash-table-p object
) (json-encode-hash-table object
))
590 ((listp object
) (json-encode-list object
))
591 (t (signal 'json-error
(list object
)))))
595 (defun json-pretty-print-buffer ()
596 "Pretty-print current buffer."
598 (json-pretty-print (point-min) (point-max)))
600 (defun json-pretty-print (begin end
)
601 "Pretty-print selected region."
604 (let ((json-encoding-pretty-print t
)
605 (txt (delete-and-extract-region begin end
)))
606 (insert (json-encode (json-read-from-string txt
))))))
610 ;;; json.el ends here