Infer appropriate GNU_STACK alignment for a shared library.
[chromium-blink-merge.git] / base / json / json_string_value_serializer.h
blob7f99bc9add79e449ca3ea83bc6475aea47be1454
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef BASE_JSON_JSON_STRING_VALUE_SERIALIZER_H_
6 #define BASE_JSON_JSON_STRING_VALUE_SERIALIZER_H_
8 #include <string>
10 #include "base/base_export.h"
11 #include "base/basictypes.h"
12 #include "base/files/file_path.h"
13 #include "base/strings/string_piece.h"
14 #include "base/values.h"
16 class BASE_EXPORT JSONStringValueSerializer : public base::ValueSerializer {
17 public:
18 // |json_string| is the string that will be source of the deserialization
19 // or the destination of the serialization. The caller of the constructor
20 // retains ownership of the string. |json_string| must not be null.
21 explicit JSONStringValueSerializer(std::string* json_string);
23 // This version allows initialization with a StringPiece for deserialization
24 // only. Retains a reference to the contents of |json_string|, so the data
25 // must outlive the JSONStringValueSerializer.
26 explicit JSONStringValueSerializer(const base::StringPiece& json_string);
28 ~JSONStringValueSerializer() override;
30 // Attempt to serialize the data structure represented by Value into
31 // JSON. If the return value is true, the result will have been written
32 // into the string passed into the constructor.
33 bool Serialize(const base::Value& root) override;
35 // Equivalent to Serialize(root) except binary values are omitted from the
36 // output.
37 bool SerializeAndOmitBinaryValues(const base::Value& root);
39 // Attempt to deserialize the data structure encoded in the string passed
40 // in to the constructor into a structure of Value objects. If the return
41 // value is null, and if |error_code| is non-null, |error_code| will
42 // contain an integer error code (a JsonParseError in this case).
43 // If |error_message| is non-null, it will be filled in with a formatted
44 // error message including the location of the error if appropriate.
45 // The caller takes ownership of the returned value.
46 base::Value* Deserialize(int* error_code,
47 std::string* error_message) override;
49 void set_pretty_print(bool new_value) { pretty_print_ = new_value; }
50 bool pretty_print() { return pretty_print_; }
52 void set_allow_trailing_comma(bool new_value) {
53 allow_trailing_comma_ = new_value;
56 private:
57 bool SerializeInternal(const base::Value& root, bool omit_binary_values);
59 // String for writing. Owned by the caller of the constructor. Will be null if
60 // the serializer was initialized with a const string.
61 std::string* json_string_;
62 // String for reading. Data is owned by the caller of the constructor. If
63 // |json_string_| is non-null, this is a view onto |json_string_|.
64 base::StringPiece json_string_readonly_;
65 bool pretty_print_; // If true, serialization will span multiple lines.
66 // If true, deserialization will allow trailing commas.
67 bool allow_trailing_comma_;
69 DISALLOW_COPY_AND_ASSIGN(JSONStringValueSerializer);
72 #endif // BASE_JSON_JSON_STRING_VALUE_SERIALIZER_H_