GNU bug report logs -
#20154
25.0.50; json-encode-string is too slow for large strings
Previous Next
Reported by: Dmitry Gutov <dgutov <at> yandex.ru>
Date: Fri, 20 Mar 2015 14:27:01 UTC
Severity: normal
Found in version 25.0.50
Done: Dmitry Gutov <dgutov <at> yandex.ru>
Bug is archived. No further changes may be made.
Full log
Message #74 received at 20154 <at> debbugs.gnu.org (full text, mbox):
>>>>> Dmitry Gutov <dgutov <at> yandex.ru> writes:
[…]
> Here's the updated definition (by the way, `json-special-chars' is
> still needed, to convert ?\n to ?n, and so on, and the performance
> hit is negligible).
Perhaps a plain vector may fit there?
> (defun json-encode-string-1 (string)
> "Return a JSON representation of STRING."
> (with-temp-buffer
> (insert string)
> (goto-char (point-min))
> ;; Skip over ASCIIish printable characters.
> (while (re-search-forward "\\([\"\\/\b\f\n\r\t]\\)\\|[^ -~]" nil t)
> (let ((c (char-before)))
> (delete-region (1- (point)) (point))
> (if (match-beginning 1)
> ;; Special JSON character (\n, \r, etc.).
> (insert "\\" (car (rassoc c json-special-chars)))
> ;; Fallback: UCS code point in \uNNNN form.
> (insert (format "\\u%04x" c)))))
> (concat "\"" (buffer-string) "\"")))
FWIW, using replace-match in the loop seem to speed up the
routine by another few percents.
(while (re-search-forward "\\([\"\\/\b\f\n\r\t]\\)\\|[^ -~]" nil t)
(let ((c (char-before)))
(replace-match
(if (match-beginning 1)
;; Special JSON character (\n, \r, etc.).
(string ?\\ (car (rassq c json-special-chars)))
;; Fallback: UCS code point in \uNNNN form.
(format "\\u%04x" c))
t t)))
[…]
--
FSF associate member #7257 http://boycottsystemd.org/ … 3013 B6A0 230E 334A
This bug report was last modified 10 years and 38 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.