| // Copyright 2020 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef LIBBRILLO_BRILLO_VALUE_CONVERSION_H_ |
| #define LIBBRILLO_BRILLO_VALUE_CONVERSION_H_ |
| |
| // This file provides a set of helper functions to convert between base::Value |
| // and native types. Apart from handling standard types such as 'int' and |
| // 'std::string' it also provides conversion to/from std::vector<T> (which |
| // converts to Base::listValue) and std::map<std::string, T> (convertible to |
| // base::DictionaryValue). |
| |
| #include <map> |
| #include <memory> |
| #include <string> |
| #include <utility> |
| #include <vector> |
| |
| #include <base/check.h> |
| #include <base/values.h> |
| #include <brillo/brillo_export.h> |
| |
| namespace brillo { |
| |
| inline bool FromValue(const base::Value& in_value, bool* out_value) { |
| return in_value.GetAsBoolean(out_value); |
| } |
| |
| inline bool FromValue(const base::Value& in_value, int* out_value) { |
| return in_value.GetAsInteger(out_value); |
| } |
| |
| inline bool FromValue(const base::Value& in_value, double* out_value) { |
| return in_value.GetAsDouble(out_value); |
| } |
| |
| inline bool FromValue(const base::Value& in_value, std::string* out_value) { |
| return in_value.GetAsString(out_value); |
| } |
| |
| inline bool FromValue(const base::Value& in_value, |
| const base::ListValue** out_value) { |
| return in_value.GetAsList(out_value); |
| } |
| |
| inline bool FromValue(const base::Value& in_value, |
| const base::DictionaryValue** out_value) { |
| return in_value.GetAsDictionary(out_value); |
| } |
| |
| BRILLO_EXPORT bool FromValue(const base::Value& in_value, |
| std::unique_ptr<base::ListValue>* out_value); |
| BRILLO_EXPORT bool FromValue(const base::Value& in_value, |
| std::unique_ptr<base::DictionaryValue>* out_value); |
| |
| template <typename T, typename Pred, typename Alloc> |
| bool FromValue(const base::Value& in_value, |
| std::map<std::string, T, Pred, Alloc>* out_value); |
| |
| template <typename T, typename Alloc> |
| bool FromValue(const base::Value& in_value, std::vector<T, Alloc>* out_value) { |
| if (!in_value.is_list()) |
| return false; |
| out_value->clear(); |
| out_value->reserve(in_value.GetList().size()); |
| for (const base::Value& item : in_value.GetList()) { |
| T value{}; |
| if (!FromValue(item, &value)) |
| return false; |
| out_value->push_back(std::move(value)); |
| } |
| return true; |
| } |
| |
| template <typename T, typename Pred, typename Alloc> |
| bool FromValue(const base::Value& in_value, |
| std::map<std::string, T, Pred, Alloc>* out_value) { |
| const base::DictionaryValue* dict = nullptr; |
| if (!in_value.GetAsDictionary(&dict)) |
| return false; |
| out_value->clear(); |
| for (base::DictionaryValue::Iterator it(*dict); !it.IsAtEnd(); it.Advance()) { |
| if (!FromValue(it.value(), &(*out_value)[it.key()])) |
| return false; |
| } |
| return true; |
| } |
| |
| template <typename T> |
| T FromValue(const base::Value& value) { |
| T out_value{}; |
| CHECK(FromValue(value, &out_value)); |
| return out_value; |
| } |
| |
| BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(int value); |
| BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(bool value); |
| BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(double value); |
| BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(const std::string& value); |
| // Implicit conversion of char* to 'bool' has precedence over the user-defined |
| // std::string conversion. Override this behavior explicitly. |
| BRILLO_EXPORT std::unique_ptr<base::Value> ToValue(const char* value); |
| |
| template <typename T, typename Pred, typename Alloc> |
| std::unique_ptr<base::Value> ToValue( |
| const std::map<std::string, T, Pred, Alloc>& dictionary); |
| |
| template <typename T, typename Alloc> |
| std::unique_ptr<base::Value> ToValue(const std::vector<T, Alloc>& list) { |
| std::unique_ptr<base::ListValue> result{new base::ListValue}; |
| for (const auto& value : list) |
| result->Append(ToValue(value)); |
| return std::move(result); |
| } |
| |
| template <typename T, typename Pred, typename Alloc> |
| std::unique_ptr<base::Value> ToValue( |
| const std::map<std::string, T, Pred, Alloc>& dictionary) { |
| std::unique_ptr<base::DictionaryValue> result{new base::DictionaryValue}; |
| for (const auto& pair : dictionary) |
| result->Set(pair.first, ToValue(pair.second)); |
| return std::move(result); |
| } |
| |
| } // namespace brillo |
| |
| #endif // LIBBRILLO_BRILLO_VALUE_CONVERSION_H_ |