summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/libcamera/internal/yaml_parser.h2
-rw-r--r--src/libcamera/yaml_parser.cpp168
2 files changed, 29 insertions, 141 deletions
diff --git a/include/libcamera/internal/yaml_parser.h b/include/libcamera/internal/yaml_parser.h
index de452844..8c791656 100644
--- a/include/libcamera/internal/yaml_parser.h
+++ b/include/libcamera/internal/yaml_parser.h
@@ -224,7 +224,7 @@ private:
Empty,
};
- template<typename T>
+ template<typename T, typename Enable = void>
struct Getter {
std::optional<T> get(const YamlObject &obj) const;
};
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 <charconv>
#include <cstdlib>
#include <errno.h>
#include <functional>
@@ -146,151 +147,38 @@ YamlObject::Getter<bool>::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<int8_t>
-YamlObject::Getter<int8_t>::get(const YamlObject &obj) const
-{
- if (obj.type_ != Type::Value)
- return std::nullopt;
-
- long value;
-
- if (!parseSignedInteger(obj.value_, std::numeric_limits<int8_t>::min(),
- std::numeric_limits<int8_t>::max(), &value))
- return std::nullopt;
-
- return value;
-}
-
-template<>
-std::optional<uint8_t>
-YamlObject::Getter<uint8_t>::get(const YamlObject &obj) const
-{
- if (obj.type_ != Type::Value)
- return std::nullopt;
-
- unsigned long value;
-
- if (!parseUnsignedInteger(obj.value_, std::numeric_limits<uint8_t>::max(),
- &value))
- return std::nullopt;
-
- return value;
-}
-
-template<>
-std::optional<int16_t>
-YamlObject::Getter<int16_t>::get(const YamlObject &obj) const
-{
- if (obj.type_ != Type::Value)
- return std::nullopt;
-
- long value;
-
- if (!parseSignedInteger(obj.value_, std::numeric_limits<int16_t>::min(),
- std::numeric_limits<int16_t>::max(), &value))
- return std::nullopt;
-
- return value;
-}
-
-template<>
-std::optional<uint16_t>
-YamlObject::Getter<uint16_t>::get(const YamlObject &obj) const
+template<typename T>
+struct YamlObject::Getter<T, std::enable_if_t<
+ std::is_same_v<int8_t, T> ||
+ std::is_same_v<uint8_t, T> ||
+ std::is_same_v<int16_t, T> ||
+ std::is_same_v<uint16_t, T> ||
+ std::is_same_v<int32_t, T> ||
+ std::is_same_v<uint32_t, T>>>
{
- if (obj.type_ != Type::Value)
- return std::nullopt;
-
- unsigned long value;
-
- if (!parseUnsignedInteger(obj.value_, std::numeric_limits<uint16_t>::max(),
- &value))
- return std::nullopt;
-
- return value;
-}
-
-template<>
-std::optional<int32_t>
-YamlObject::Getter<int32_t>::get(const YamlObject &obj) const
-{
- if (obj.type_ != Type::Value)
- return std::nullopt;
-
- long value;
-
- if (!parseSignedInteger(obj.value_, std::numeric_limits<int32_t>::min(),
- std::numeric_limits<int32_t>::max(), &value))
- return std::nullopt;
-
- return value;
-}
+ std::optional<T> get(const YamlObject &obj) const
+ {
+ if (obj.type_ != Type::Value)
+ return std::nullopt;
-template<>
-std::optional<uint32_t>
-YamlObject::Getter<uint32_t>::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<uint32_t>::max(),
- &value))
- return std::nullopt;
+ return value;
+ }
+};
- return value;
-}
+template struct YamlObject::Getter<int8_t>;
+template struct YamlObject::Getter<uint8_t>;
+template struct YamlObject::Getter<int16_t>;
+template struct YamlObject::Getter<uint16_t>;
+template struct YamlObject::Getter<int32_t>;
+template struct YamlObject::Getter<uint32_t>;
template<>
std::optional<float>