From f5f56e1a1c4d9e9496fcb9d81131066a964ccd23 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:15:43 +0200 Subject: Adding upstream version 2.4.1. Signed-off-by: Daniel Baumann --- src/lib/exceptions/isc_assert.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/lib/exceptions/isc_assert.h (limited to 'src/lib/exceptions/isc_assert.h') diff --git a/src/lib/exceptions/isc_assert.h b/src/lib/exceptions/isc_assert.h new file mode 100644 index 0000000..6b5bf95 --- /dev/null +++ b/src/lib/exceptions/isc_assert.h @@ -0,0 +1,28 @@ +// Copyright (C) 2019 Internet Systems Consortium, Inc. ("ISC") +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#ifndef ISC_ASSERT_H +#define ISC_ASSERT_H + +#include + +namespace isc { + +/// @brief Replacement for assert() that throws if the expression is false. +/// This macro exists because some of the original code uses assert() and we +/// decided it would be better to replace them with exception throws rather +/// than compiling out all asserts. +#define isc_throw_assert(expr) \ +{\ + if(!(static_cast(expr))) \ + {\ + isc_throw(isc::Unexpected, __FILE__ << ":" << __LINE__ << " (" << #expr << ") failed");\ + }\ +} + +} + +#endif // ISC_ASSERT_H -- cgit v1.2.3