OLD | NEW |
(Empty) | |
| 1 // Copyright (C) 2013 Google Inc. |
| 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at |
| 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. |
| 14 |
| 15 #ifndef I18N_ADDRESSINPUT_UTIL_JSON_H_ |
| 16 #define I18N_ADDRESSINPUT_UTIL_JSON_H_ |
| 17 |
| 18 #include <string> |
| 19 |
| 20 namespace i18n { |
| 21 namespace addressinput { |
| 22 |
| 23 // Parses a JSON dictionary of strings. Sample usage: |
| 24 // scoped_ptr<Json> json(Json::Build()); |
| 25 // if (json->ParseObject("{'key1':'value1', 'key2':'value2'}") && |
| 26 // json->HasStringKey("key1")) { |
| 27 // Process(json->GetStringValueForKey("key1")); |
| 28 // } |
| 29 class Json { |
| 30 public: |
| 31 virtual ~Json(); |
| 32 |
| 33 // Returns a new instanec of |Json| object. The caller owns the result. |
| 34 static Json* Build(); |
| 35 |
| 36 // Parses the |json| string and returns true if |json| is valid and it is an |
| 37 // object. |
| 38 virtual bool ParseObject(const std::string& json) = 0; |
| 39 |
| 40 // Returns true if the parsed JSON contains a string value for |key|. The JSON |
| 41 // object must be parsed successfully in ParseObject() before invoking this |
| 42 // method. |
| 43 virtual bool HasStringValueForKey(const std::string& key) const = 0; |
| 44 |
| 45 // Returns the string value for the |key|. The |key| must be present and its |
| 46 // value must be of string type, i.e., HasStringValueForKey(key) must return |
| 47 // true before invoking this method. |
| 48 virtual std::string GetStringValueForKey(const std::string& key) const = 0; |
| 49 |
| 50 protected: |
| 51 Json(); |
| 52 }; |
| 53 |
| 54 } // namespace addressinput |
| 55 } // namespace i18n |
| 56 |
| 57 #endif // I18N_ADDRESSINPUT_UTIL_JSON_H_ |
OLD | NEW |