From 5c71df927ddaaa01204bff1e647c9d2bf653d95f Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 11 Nov 2024 13:02:30 +0200 Subject: libcamera: yaml_parser: Use std::from_chars() std::from_chars(), introduced in C++17, is a fast, locale-independent string-to-arithmetic conversion function. The C++ standard library provides overloads for all integer types, making it a prime candidate to replace the manual handling of integer sizes in the YamlParser string to integer conversion. Compared to std::strtol(), std::from_chars() doesn't recognize the '0x' prefix or '+' prefix, and doesn't ignore leading white space. As the YamlParser doesn't require those features, std::from_chars() can be used safely, reducing the amount of code. C++17 also requires the standard C++ library to provide overloads for floating-point types, but libc++ does not implement those. The float and bool implementations of YamlParser::Getter::get() are therefore kept as-is. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi Reviewed-by: Kieran Bingham --- src/libcamera/yaml_parser.cpp | 168 +++++++----------------------------------- 1 file changed, 28 insertions(+), 140 deletions(-) (limited to 'src') diff --git a/src/libcamera/yaml_parser.cpp b/src/libcamera/yaml_parser.cpp index 7c0b341a..db256ec5 100644 --- a/src/libcamera/yaml_parser.cpp +++ b/src/libcamera/yaml_parser.cpp @@ -7,6 +7,7 @@ #include "libcamera/internal/yaml_parser.h" +#include #include #include #include @@ -146,151 +147,38 @@ YamlObject::Getter::get(const YamlObject &obj) const return std::nullopt; } -namespace { - -bool parseSignedInteger(const std::string &str, long min, long max, - long *result) -{ - if (str == "") - return false; - - char *end; - - errno = 0; - long value = std::strtol(str.c_str(), &end, 10); - - if ('\0' != *end || errno == ERANGE || value < min || value > max) - return false; - - *result = value; - return true; -} - -bool parseUnsignedInteger(const std::string &str, unsigned long max, - unsigned long *result) -{ - if (str == "") - return false; - - /* - * strtoul() accepts strings representing a negative number, in which - * case it negates the converted value. We don't want to silently accept - * negative values and return a large positive number, so check for a - * minus sign (after optional whitespace) and return an error. - */ - std::size_t found = str.find_first_not_of(" \t"); - if (found != std::string::npos && str[found] == '-') - return false; - - char *end; - - errno = 0; - unsigned long value = std::strtoul(str.c_str(), &end, 10); - - if ('\0' != *end || errno == ERANGE || value > max) - return false; - - *result = value; - return true; -} - -} /* namespace */ - -template<> -std::optional -YamlObject::Getter::get(const YamlObject &obj) const -{ - if (obj.type_ != Type::Value) - return std::nullopt; - - long value; - - if (!parseSignedInteger(obj.value_, std::numeric_limits::min(), - std::numeric_limits::max(), &value)) - return std::nullopt; - - return value; -} - -template<> -std::optional -YamlObject::Getter::get(const YamlObject &obj) const -{ - if (obj.type_ != Type::Value) - return std::nullopt; - - unsigned long value; - - if (!parseUnsignedInteger(obj.value_, std::numeric_limits::max(), - &value)) - return std::nullopt; - - return value; -} - -template<> -std::optional -YamlObject::Getter::get(const YamlObject &obj) const -{ - if (obj.type_ != Type::Value) - return std::nullopt; - - long value; - - if (!parseSignedInteger(obj.value_, std::numeric_limits::min(), - std::numeric_limits::max(), &value)) - return std::nullopt; - - return value; -} - -template<> -std::optional -YamlObject::Getter::get(const YamlObject &obj) const +template +struct YamlObject::Getter || + std::is_same_v || + std::is_same_v || + std::is_same_v || + std::is_same_v || + std::is_same_v>> { - if (obj.type_ != Type::Value) - return std::nullopt; - - unsigned long value; - - if (!parseUnsignedInteger(obj.value_, std::numeric_limits::max(), - &value)) - return std::nullopt; - - return value; -} - -template<> -std::optional -YamlObject::Getter::get(const YamlObject &obj) const -{ - if (obj.type_ != Type::Value) - return std::nullopt; - - long value; - - if (!parseSignedInteger(obj.value_, std::numeric_limits::min(), - std::numeric_limits::max(), &value)) - return std::nullopt; - - return value; -} + std::optional get(const YamlObject &obj) const + { + if (obj.type_ != Type::Value) + return std::nullopt; -template<> -std::optional -YamlObject::Getter::get(const YamlObject &obj) const -{ - if (obj.type_ != Type::Value) - return std::nullopt; + const std::string &str = obj.value_; + T value; - unsigned long value; + auto [ptr, ec] = std::from_chars(str.data(), str.data() + str.size(), + value); + if (ptr != str.data() + str.size() || ec != std::errc()) + return std::nullopt; - if (!parseUnsignedInteger(obj.value_, std::numeric_limits::max(), - &value)) - return std::nullopt; + return value; + } +}; - return value; -} +template struct YamlObject::Getter; +template struct YamlObject::Getter; +template struct YamlObject::Getter; +template struct YamlObject::Getter; +template struct YamlObject::Getter; +template struct YamlObject::Getter; template<> std::optional -- cgit v1.2.1