/* Copyright (c) 2023, 2024, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is designed to work with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have either included with the program or referenced in the documentation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /// @file math.h #ifndef MYSQL_BINLOG_EVENT_MATH_MATH_H #define MYSQL_BINLOG_EVENT_MATH_MATH_H #include // std::enable_if /// @addtogroup GroupLibsMysqlBinlogEvent /// @{ namespace mysql::binlog::event::math { /// Return x+y, limited to the given maximum. /// /// @note This works even when x+y would exceed the maximum for the /// datatype. /// /// @tparam T Data type. Must be an unsigned integral datatype. /// /// @param x The first term. /// /// @param y The second term. /// /// @param maximum The maximum allowed value. /// /// @return The smallest of (x + y) and (maximum), computed as if /// using infinite precision arithmetic. template ::value && std::is_unsigned::value, bool> = true> constexpr T add_bounded(const T x, const T y, const T maximum) { if (y >= maximum || maximum - y < x) return maximum; return x + y; } /// Return x*y, limited to the given maximum. /// /// @note This works even when x * y would exceed the maximum for any of the /// data type. /// /// @tparam T Data type for the first factor, the maximum, and the /// result. This must be an unsigned integral. /// /// @tparam T2 datatype for the second factor. This can be any /// arithmetic type, including floating point types. /// /// @param x The first factor. /// /// @param y The second factor. /// /// @param maximum The maximum allowed value. /// /// @return The smallest of (x + y) and (maximum), computed as if /// using infinite precision arithmetic; or 0 if y is negative. template < typename T, typename T2, std::enable_if_t::value && std::is_unsigned::value && std::is_arithmetic::value, bool> = true> constexpr T multiply_bounded(const T x, const T2 y, const T maximum) { if (y <= 0) return 0; if (y > 1 && static_cast(maximum / y) < x) return maximum; return static_cast(x * y); } /// Return ceil(x / y), where x and y are unsigned integer types template ::value && std::is_unsigned::value, bool> = true> constexpr T ceil_div(const T x, const T y) { return (x + y - 1) / y; } } // namespace mysql::binlog::event::math /// @} #endif // MYSQL_BINLOG_EVENT_MATH_MATH_H