// Copyright 2015 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef BRILLO_VALUE_CONVERSION_H_ #define 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 (which // converts to Base::listValue) and std::map (convertible to // base::DictionaryValue). #include #include #include #include #include #include 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* out_value); BRILLO_EXPORT bool FromValue(const base::Value& in_value, std::unique_ptr* out_value); template bool FromValue(const base::Value& in_value, std::map* out_value); template bool FromValue(const base::Value& in_value, std::vector* out_value) { const base::ListValue* list = nullptr; if (!in_value.GetAsList(&list)) return false; out_value->clear(); out_value->reserve(list->GetSize()); for (const auto& item : *list) { T value{}; if (!FromValue(*item, &value)) return false; out_value->push_back(std::move(value)); } return true; } template bool FromValue(const base::Value& in_value, std::map* 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 T FromValue(const base::Value& value) { T out_value{}; CHECK(FromValue(value, &out_value)); return out_value; } BRILLO_EXPORT std::unique_ptr ToValue(int value); BRILLO_EXPORT std::unique_ptr ToValue(bool value); BRILLO_EXPORT std::unique_ptr ToValue(double value); BRILLO_EXPORT std::unique_ptr 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 ToValue(const char* value); template std::unique_ptr ToValue( const std::map& dictionary); template std::unique_ptr ToValue(const std::vector& list) { std::unique_ptr result{new base::ListValue}; for (const auto& value : list) result->Append(ToValue(value)); return std::move(result); } template std::unique_ptr ToValue( const std::map& dictionary) { std::unique_ptr result{new base::DictionaryValue}; for (const auto& pair : dictionary) result->Set(pair.first, ToValue(pair.second)); return std::move(result); } } // namespace brillo #endif // BRILLO_VALUE_CONVERSION_H_