Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: base/json/string_escape.h

Issue 100823007: Stop doing unnecessary UTF-8 to UTF-16 conversions in JSONWriter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/json/string_escape.h
diff --git a/base/json/string_escape.h b/base/json/string_escape.h
index 0f16f59d4fd8bc3d427b751385272b08f175b212..de198ee550c2efbda069e7d721c2a0e83d1ecfc7 100644
--- a/base/json/string_escape.h
+++ b/base/json/string_escape.h
@@ -1,8 +1,8 @@
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-//
-// This file defines utility functions for escaping strings.
+
+// This file defines utility functions for escaping strings suitable for JSON.
#ifndef BASE_JSON_STRING_ESCAPE_H_
#define BASE_JSON_STRING_ESCAPE_H_
@@ -14,24 +14,46 @@
namespace base {
-// Escape |str| appropriately for a JSON string literal, _appending_ the
-// result to |dst|. This will create unicode escape sequences (\uXXXX).
-// If |put_in_quotes| is true, the result will be surrounded in double quotes.
-// The outputted literal, when interpreted by the browser, should result in a
-// javascript string that is identical and the same length as the input |str|.
-BASE_EXPORT void JsonDoubleQuote(const StringPiece& str,
- bool put_in_quotes,
- std::string* dst);
-
-// Same as above, but always returns the result double quoted.
-BASE_EXPORT std::string GetDoubleQuotedJson(const StringPiece& str);
-
-BASE_EXPORT void JsonDoubleQuote(const StringPiece16& str,
- bool put_in_quotes,
- std::string* dst);
-
-// Same as above, but always returns the result double quoted.
-BASE_EXPORT std::string GetDoubleQuotedJson(const StringPiece16& str);
+// Appends to |dest| an escaped version of |str|. Valid UTF-8 code units will
+// pass through from the input to the output. Invalid code units will be
+// replaced with the U+FFFD replacement character. On return, |dest| will
Mark Mentovai 2013/12/06 15:35:12 Silently replaced with U+FFFD? Sounds like a recip
Avi (use Gerrit) 2013/12/06 15:45:25 U+FFFD is REPLACEMENT CHARACTER, literally designe
jungshik at Google 2013/12/07 13:16:59 I agree with Avi. Putting in U+FFFD for an invalid
Mark Mentovai 2013/12/07 22:22:49 Jungshik Shin wrote:
Robert Sesek 2013/12/09 19:52:09 Done.
+// contain a valid UTF-8 JSON string.
+//
+// Non-printing control characters will be escaped as \uXXXX sequences for
+// readability.
+//
+// If |put_in_quotes| is true, then a leading and trailing double-quote mark
+// will be appended to |dest| as well.
+BASE_EXPORT void EscapeJSONString(const StringPiece& str,
+ bool put_in_quotes,
+ std::string* dest);
+
+// Performs a similar function to the UTF-8 StringPiece version above, but
+// instead operates on UTF-16 code units. Unlike UTF-8 code units, the
+// UTF-16 units will be escaped into \uXXXX sequences. Invalid code units
Mark Mentovai 2013/12/06 15:35:12 I don’t know why you’d maintain this distinction.
jungshik at Google 2013/12/07 13:16:59 I'm with Mark and curious as to why you'd make t
Robert Sesek 2013/12/09 19:52:09 Changed to a templatized impl that results in the
+// will be replaced with \uFFFD. On return, |dest| will contain a valid
+// UTF-8 JSON string.
+BASE_EXPORT void EscapeJSONString(const StringPiece16& str,
+ bool put_in_quotes,
+ std::string* dest);
+
+// Helper functions that wrap the above two functions but return the value
+// instead of appending. |put_in_quotes| is always true.
+BASE_EXPORT std::string GetQuotedJSONString(const StringPiece& str);
+BASE_EXPORT std::string GetQuotedJSONString(const StringPiece16& str);
+
+// Given an arbitrary byte string |str|, this will escape all non-ASCII bytes
+// as \uXXXX escape sequences. This function is *NOT* meant to be used with
+// Unicode strings and does not validate |str| as one.
+//
+// CAVEAT CALLER: The output of this function may not be valid JSON, since
+// JSON requires escape sequences to be valid UTF-16 code units. This output
+// will be rejcted via a parser error if passed to to the base::JSONReader.
jungshik at Google 2013/12/07 13:16:59 If you're converting 0x80-0xFF to \u0080 - \u00FF,
Mark Mentovai 2013/12/07 22:22:49 Jungshik Shin wrote:
Mark Mentovai 2013/12/07 22:22:49 rejcted → rejected
Robert Sesek 2013/12/09 19:52:09 Done.
+//
+// The output of this function takes the *appearance* of JSON but is not in
+// fact valid according to RFC 4627.
+BASE_EXPORT std::string EscapeBytesAsInvalidJSONString(const StringPiece& str,
Mark Mentovai 2013/12/06 15:35:12 Good name.
+ bool put_in_quotes);
} // namespace base

Powered by Google App Engine
This is Rietveld 408576698