X-Git-Url: http://plrg.eecs.uci.edu/git/?p=folly.git;a=blobdiff_plain;f=folly%2Fdynamic.cpp;h=08e97472832b4ac4f4cb069e766a9347fa1bca23;hp=8ef7d08ee6e4159efc7f484dc8262c86f5d0cf09;hb=dce47b8a0cc0e90f93844e66651d68340ed2f940;hpb=09887be9e29c63ab1e9dcbf5795e22bd3428b346 diff --git a/folly/dynamic.cpp b/folly/dynamic.cpp index 8ef7d08e..08e97472 100644 --- a/folly/dynamic.cpp +++ b/folly/dynamic.cpp @@ -17,6 +17,7 @@ #include #include +#include #include #include @@ -44,21 +45,36 @@ const char* dynamic::typeName() const { } TypeError::TypeError(const std::string& expected, dynamic::Type actual) - : std::runtime_error(to("TypeError: expected dynamic " - "type `", expected, '\'', ", but had type `", - dynamic::typeName(actual), '\'')) -{} - -TypeError::TypeError(const std::string& expected, - dynamic::Type actual1, dynamic::Type actual2) - : std::runtime_error(to("TypeError: expected dynamic " - "types `", expected, '\'', ", but had types `", - dynamic::typeName(actual1), "' and `", dynamic::typeName(actual2), - '\'')) -{} + : std::runtime_error(sformat( + "TypeError: expected dynamic type `{}', but had type `{}'", + expected, + dynamic::typeName(actual))) {} + +TypeError::TypeError( + const std::string& expected, + dynamic::Type actual1, + dynamic::Type actual2) + : std::runtime_error(sformat( + "TypeError: expected dynamic types `{}, but had types `{}' and `{}'", + expected, + dynamic::typeName(actual1), + dynamic::typeName(actual2))) {} TypeError::~TypeError() = default; +[[noreturn]] void throwTypeError_( + std::string const& expected, + dynamic::Type actual) { + throw TypeError(expected, actual); +} + +[[noreturn]] void throwTypeError_( + std::string const& expected, + dynamic::Type actual1, + dynamic::Type actual2) { + throw TypeError(expected, actual1, actual2); +} + // This is a higher-order preprocessor macro to aid going from runtime // types to the compile time type system. #define FB_DYNAMIC_APPLY(type, apply) \ @@ -93,7 +109,7 @@ TypeError::~TypeError() = default; bool dynamic::operator<(dynamic const& o) const { if (UNLIKELY(type_ == OBJECT || o.type_ == OBJECT)) { - throw TypeError("object", type_); + throwTypeError_("object", type_); } if (type_ != o.type_) { return type_ < o.type_; @@ -156,7 +172,7 @@ dynamic& dynamic::operator=(dynamic&& o) noexcept { dynamic& dynamic::operator[](dynamic const& k) & { if (!isObject() && !isArray()) { - throw TypeError("object/array", type()); + throwTypeError_("object/array", type()); } if (isArray()) { return at(k); @@ -203,7 +219,7 @@ dynamic dynamic::getDefault(const dynamic& k, dynamic&& v) && { const dynamic* dynamic::get_ptr(dynamic const& idx) const& { if (auto* parray = get_nothrow()) { if (!idx.isInt()) { - throw TypeError("int64", idx.type()); + throwTypeError_("int64", idx.type()); } if (idx < 0 || idx >= parray->size()) { return nullptr; @@ -216,14 +232,19 @@ const dynamic* dynamic::get_ptr(dynamic const& idx) const& { } return &it->second; } else { - throw TypeError("object/array", type()); + throwTypeError_("object/array", type()); } } +[[noreturn]] static void throwOutOfRangeAtMissingKey(dynamic const& idx) { + auto msg = sformat("couldn't find key {} in dynamic object", idx.asString()); + std::__throw_out_of_range(msg.c_str()); +} + dynamic const& dynamic::at(dynamic const& idx) const& { if (auto* parray = get_nothrow()) { if (!idx.isInt()) { - throw TypeError("int64", idx.type()); + throwTypeError_("int64", idx.type()); } if (idx < 0 || idx >= parray->size()) { std::__throw_out_of_range("out of range in dynamic array"); @@ -232,12 +253,11 @@ dynamic const& dynamic::at(dynamic const& idx) const& { } else if (auto* pobject = get_nothrow()) { auto it = pobject->find(idx); if (it == pobject->end()) { - throw std::out_of_range(to( - "couldn't find key ", idx.asString(), " in dynamic object")); + throwOutOfRangeAtMissingKey(idx); } return it->second; } else { - throw TypeError("object/array", type()); + throwTypeError_("object/array", type()); } } @@ -251,7 +271,7 @@ std::size_t dynamic::size() const { if (auto* str = get_nothrow()) { return str->size(); } - throw TypeError("array/object", type()); + throwTypeError_("array/object", type()); } dynamic::iterator dynamic::erase(const_iterator first, const_iterator last) { @@ -266,7 +286,7 @@ std::size_t dynamic::hash() const { case OBJECT: case ARRAY: case NULLT: - throw TypeError("not null/object/array", type()); + throwTypeError_("not null/object/array", type()); case INT64: return std::hash()(getInt()); case DOUBLE: