From 5f61d440eb4a3a5647b1b04b5725abe7e020535a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 28 Oct 2020 15:59:38 +0100 Subject: [PATCH] lib/yajl/Handle: un-inline the throwing code Reduces header dependencies. --- src/lib/yajl/Handle.cxx | 47 ++++++++++++++++++++++++++++++++++++++++ src/lib/yajl/Handle.hxx | 19 +++++----------- src/lib/yajl/meson.build | 1 + 3 files changed, 54 insertions(+), 13 deletions(-) create mode 100644 src/lib/yajl/Handle.cxx diff --git a/src/lib/yajl/Handle.cxx b/src/lib/yajl/Handle.cxx new file mode 100644 index 000000000..fbfc8ac02 --- /dev/null +++ b/src/lib/yajl/Handle.cxx @@ -0,0 +1,47 @@ +/* + * Copyright 2018-2020 Max Kellermann + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the + * distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + * FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include "Handle.hxx" +#include "util/RuntimeError.hxx" +#include "util/ScopeExit.hxx" + +namespace Yajl { + +void +Handle::ThrowError() +{ + unsigned char *str = yajl_get_error(handle, false, + nullptr, 0); + AtScopeExit(this, str) { + yajl_free_error(handle, str); + }; + throw FormatRuntimeError("Failed to parse JSON: %s", str); +} + +} // namespace Yajl diff --git a/src/lib/yajl/Handle.hxx b/src/lib/yajl/Handle.hxx index c2a148639..02fad8ea1 100644 --- a/src/lib/yajl/Handle.hxx +++ b/src/lib/yajl/Handle.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2018 Max Kellermann + * Copyright 2018-2020 Max Kellermann * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -30,12 +30,8 @@ #ifndef YAJL_HANDLE_HXX #define YAJL_HANDLE_HXX -#include "util/RuntimeError.hxx" -#include "util/ScopeExit.hxx" - #include -#include #include namespace Yajl { @@ -77,15 +73,12 @@ public: private: void HandleStatus(yajl_status status) { - if (status == yajl_status_error) { - unsigned char *str = yajl_get_error(handle, false, - nullptr, 0); - AtScopeExit(this, str) { - yajl_free_error(handle, str); - }; - throw FormatRuntimeError("Failed to parse JSON: %s", str); - } + if (status == yajl_status_error) + ThrowError(); } + + [[noreturn]] + void ThrowError(); }; } // namespace Yajl diff --git a/src/lib/yajl/meson.build b/src/lib/yajl/meson.build index 91dc046fb..9e483669b 100644 --- a/src/lib/yajl/meson.build +++ b/src/lib/yajl/meson.build @@ -5,6 +5,7 @@ endif yajl = static_library( 'yajl', + 'Handle.cxx', 'ResponseParser.cxx', 'ParseInputStream.cxx', include_directories: inc,