From: Mark Oteiza Date: Fri, 15 Sep 2017 13:49:27 +0000 (-0400) Subject: More JSON optimization X-Git-Tag: emacs-26.0.90~173^2~5 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3b783a75ad6b609d4e0f60c2d31d4fe91dd08c62;p=emacs.git More JSON optimization Last I checked, inlining json-skip-whitespace didn't make much difference. However, changing defsubsts to define-inline results in roughly 15% reduction in read time on a 200K file. * lisp/json.el (json-advance, json-peek, json-pop): (json-skip-whitespace): Inline with define-inline. (json-read-keyword): Don't use whitespace syntax. (json-add-to-object): Simpler condition. --- diff --git a/lisp/json.el b/lisp/json.el index 7e924b67778..1e724b42e75 100644 --- a/lisp/json.el +++ b/lisp/json.el @@ -187,29 +187,30 @@ Unlike `reverse', this keeps the property-value pairs intact." ;; Reader utilities -(defsubst json-advance (&optional n) +(define-inline json-advance (&optional n) "Advance N characters forward." - (forward-char n)) + (inline-quote (forward-char ,n))) -(defsubst json-peek () +(define-inline json-peek () "Return the character at point." - (following-char)) + (inline-quote (following-char))) -(defsubst json-pop () +(define-inline json-pop () "Advance past the character at point, returning it." - (let ((char (json-peek))) - (if (zerop char) - (signal 'json-end-of-file nil) - (json-advance) - char))) - -(defun json-skip-whitespace () + (inline-letevals ((char (json-peek))) + (inline-quote + (if (zerop ,char) + (signal 'json-end-of-file nil) + (json-advance) + ,char)))) + +(define-inline json-skip-whitespace () "Skip past the whitespace at point." ;; See ;; https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf ;; or https://tools.ietf.org/html/rfc7159#section-2 for the ;; definition of whitespace in JSON. - (skip-chars-forward "\t\r\n ")) + (inline-quote (skip-chars-forward "\t\r\n "))) @@ -303,7 +304,8 @@ KEYWORD is the keyword expected." (thing-at-point 'word))))) (json-advance)) keyword) - (unless (looking-at "\\(\\s-\\|[],}]\\|$\\)") + (json-skip-whitespace) + (unless (memq (following-char) '(?\] ?, ?})) (signal 'json-unknown-keyword (list (save-excursion (backward-word-strictly 1) @@ -470,11 +472,10 @@ Returns the updated object, which you should save, e.g.: (setq obj (json-add-to-object obj \"foo\" \"bar\")) Please see the documentation of `json-object-type' and `json-key-type'." (let ((json-key-type - (if (eq json-key-type nil) + (or json-key-type (cdr (assq json-object-type '((hash-table . string) (alist . symbol) - (plist . keyword)))) - json-key-type))) + (plist . keyword))))))) (setq key (cond ((eq json-key-type 'string) key)