2016-02-08 06:34:21 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// This code is licensed under the MIT License (MIT).
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
// THE SOFTWARE.
|
|
|
|
//
|
2015-11-23 18:07:41 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef GSL_UTIL_H
|
|
|
|
#define GSL_UTIL_H
|
|
|
|
|
2017-11-28 10:13:49 -05:00
|
|
|
#include <gsl/gsl_assert> // for Expects
|
2017-04-20 10:51:37 -04:00
|
|
|
|
2015-11-23 18:07:41 -05:00
|
|
|
#include <array>
|
2017-11-28 10:13:49 -05:00
|
|
|
#include <cstddef> // for ptrdiff_t, size_t
|
|
|
|
#include <initializer_list> // for initializer_list
|
|
|
|
#include <type_traits> // for is_signed, integral_constant
|
2019-10-07 15:49:50 -04:00
|
|
|
#include <utility> // for exchange, forward
|
2015-11-23 18:07:41 -05:00
|
|
|
|
2019-01-15 13:27:34 -05:00
|
|
|
#if defined(_MSC_VER) && !defined(__clang__)
|
2017-07-14 07:40:27 -04:00
|
|
|
|
2017-04-20 10:51:37 -04:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable : 4127) // conditional expression is constant
|
|
|
|
|
|
|
|
#if _MSC_VER < 1910
|
|
|
|
#pragma push_macro("constexpr")
|
|
|
|
#define constexpr /*constexpr*/
|
2018-08-13 00:44:17 -04:00
|
|
|
#endif // _MSC_VER < 1910
|
|
|
|
#endif // _MSC_VER
|
2015-11-23 18:07:41 -05:00
|
|
|
|
2019-08-14 15:56:53 -04:00
|
|
|
#if (defined(_MSC_VER) && _MSC_VER < 1910) || (!defined(__clang__) && defined(__GNUC__) && __GNUC__ < 6)
|
2019-01-14 21:37:37 -05:00
|
|
|
#define GSL_CONSTEXPR_NARROW 0
|
|
|
|
#else
|
|
|
|
#define GSL_CONSTEXPR_NARROW 1
|
|
|
|
#endif
|
|
|
|
|
2015-11-23 18:07:41 -05:00
|
|
|
namespace gsl
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// GSL.util: utilities
|
|
|
|
//
|
|
|
|
|
2018-02-21 16:33:07 -05:00
|
|
|
// index type for all container indexes/subscripts/sizes
|
|
|
|
using index = std::ptrdiff_t;
|
|
|
|
|
2017-11-28 10:20:32 -05:00
|
|
|
// final_action allows you to ensure something gets run at the end of a scope
|
2015-11-23 18:07:41 -05:00
|
|
|
template <class F>
|
2017-11-28 10:20:32 -05:00
|
|
|
class final_action
|
2015-11-23 18:07:41 -05:00
|
|
|
{
|
|
|
|
public:
|
2018-02-13 20:28:21 -05:00
|
|
|
explicit final_action(F f) noexcept : f_(std::move(f)) {}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
2019-10-07 15:49:50 -04:00
|
|
|
final_action(final_action&& other) noexcept : f_(std::move(other.f_)), invoke_(std::exchange(other.invoke_, false)) {}
|
2016-02-08 06:34:21 -05:00
|
|
|
|
2017-11-28 10:20:32 -05:00
|
|
|
final_action(const final_action&) = delete;
|
|
|
|
final_action& operator=(const final_action&) = delete;
|
2018-04-24 21:35:53 -04:00
|
|
|
final_action& operator=(final_action&&) = delete;
|
2015-11-23 18:07:41 -05:00
|
|
|
|
2018-08-13 00:44:17 -04:00
|
|
|
GSL_SUPPRESS(f.6) // NO-FORMAT: attribute // terminate if throws
|
2017-11-28 10:20:32 -05:00
|
|
|
~final_action() noexcept
|
2016-07-20 16:17:47 -04:00
|
|
|
{
|
|
|
|
if (invoke_) f_();
|
|
|
|
}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
F f_;
|
2018-08-13 00:44:17 -04:00
|
|
|
bool invoke_{true};
|
2015-11-23 18:07:41 -05:00
|
|
|
};
|
|
|
|
|
2017-11-28 10:20:32 -05:00
|
|
|
// finally() - convenience function to generate a final_action
|
2015-11-23 18:07:41 -05:00
|
|
|
template <class F>
|
2018-02-20 17:46:37 -05:00
|
|
|
final_action<F> finally(const F& f) noexcept
|
2016-07-20 16:17:47 -04:00
|
|
|
{
|
2017-11-28 10:20:32 -05:00
|
|
|
return final_action<F>(f);
|
2016-07-20 16:17:47 -04:00
|
|
|
}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
|
|
|
template <class F>
|
2018-02-20 17:46:37 -05:00
|
|
|
final_action<F> finally(F&& f) noexcept
|
2016-07-20 16:17:47 -04:00
|
|
|
{
|
2017-11-28 10:20:32 -05:00
|
|
|
return final_action<F>(std::forward<F>(f));
|
2016-07-20 16:17:47 -04:00
|
|
|
}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
|
|
|
// narrow_cast(): a searchable way to do narrowing casts of values
|
2016-10-18 14:52:45 -04:00
|
|
|
template <class T, class U>
|
2018-08-13 00:44:17 -04:00
|
|
|
GSL_SUPPRESS(type.1) // NO-FORMAT: attribute
|
2018-02-20 17:46:37 -05:00
|
|
|
constexpr T narrow_cast(U&& u) noexcept
|
2016-10-18 14:52:45 -04:00
|
|
|
{
|
|
|
|
return static_cast<T>(std::forward<U>(u));
|
|
|
|
}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
2016-02-19 13:03:51 -05:00
|
|
|
namespace details
|
2016-02-16 08:29:55 -05:00
|
|
|
{
|
2016-07-20 16:17:47 -04:00
|
|
|
template <class T, class U>
|
|
|
|
struct is_same_signedness
|
|
|
|
: public std::integral_constant<bool, std::is_signed<T>::value == std::is_signed<U>::value>
|
|
|
|
{
|
|
|
|
};
|
2018-08-13 00:44:17 -04:00
|
|
|
} // namespace details
|
2016-02-16 08:29:55 -05:00
|
|
|
|
2015-11-23 18:07:41 -05:00
|
|
|
// narrow() : a checked version of narrow_cast() that throws if the cast changed the value
|
2016-07-20 16:17:47 -04:00
|
|
|
template <class T, class U>
|
2018-08-13 00:44:17 -04:00
|
|
|
GSL_SUPPRESS(type.1) // NO-FORMAT: attribute
|
|
|
|
GSL_SUPPRESS(f.6) // NO-FORMAT: attribute // TODO: MSVC /analyze does not recognise noexcept(false)
|
2019-01-14 21:37:37 -05:00
|
|
|
#if GSL_CONSTEXPR_NARROW
|
|
|
|
constexpr
|
|
|
|
#endif
|
2018-08-13 00:44:17 -04:00
|
|
|
T narrow(U u) noexcept(false)
|
2016-02-16 08:29:55 -05:00
|
|
|
{
|
|
|
|
T t = narrow_cast<T>(u);
|
2019-12-13 16:40:25 -05:00
|
|
|
if (static_cast<U>(t) != u) gsl::details::terminate();
|
2016-02-19 13:03:51 -05:00
|
|
|
if (!details::is_same_signedness<T, U>::value && ((t < T{}) != (u < U{})))
|
2019-12-13 16:40:25 -05:00
|
|
|
gsl::details::terminate();
|
2016-02-16 08:29:55 -05:00
|
|
|
return t;
|
|
|
|
}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
|
|
|
//
|
2017-04-04 01:43:43 -04:00
|
|
|
// at() - Bounds-checked way of accessing builtin arrays, std::array, std::vector
|
2015-11-23 18:07:41 -05:00
|
|
|
//
|
2017-02-13 15:11:45 -05:00
|
|
|
template <class T, std::size_t N>
|
2018-08-13 00:44:17 -04:00
|
|
|
GSL_SUPPRESS(bounds.4) // NO-FORMAT: attribute
|
|
|
|
GSL_SUPPRESS(bounds.2) // NO-FORMAT: attribute
|
2018-02-21 16:33:07 -05:00
|
|
|
constexpr T& at(T (&arr)[N], const index i)
|
2016-07-20 16:17:47 -04:00
|
|
|
{
|
2018-02-21 16:33:07 -05:00
|
|
|
Expects(i >= 0 && i < narrow_cast<index>(N));
|
2018-08-13 00:44:17 -04:00
|
|
|
return arr[narrow_cast<std::size_t>(i)];
|
2016-07-20 16:17:47 -04:00
|
|
|
}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
|
|
|
template <class Cont>
|
2018-08-13 00:44:17 -04:00
|
|
|
GSL_SUPPRESS(bounds.4) // NO-FORMAT: attribute
|
|
|
|
GSL_SUPPRESS(bounds.2) // NO-FORMAT: attribute
|
2018-02-21 16:33:07 -05:00
|
|
|
constexpr auto at(Cont& cont, const index i) -> decltype(cont[cont.size()])
|
2016-07-20 16:17:47 -04:00
|
|
|
{
|
2018-02-21 16:33:07 -05:00
|
|
|
Expects(i >= 0 && i < narrow_cast<index>(cont.size()));
|
2017-04-04 01:43:43 -04:00
|
|
|
using size_type = decltype(cont.size());
|
2018-08-13 00:44:17 -04:00
|
|
|
return cont[narrow_cast<size_type>(i)];
|
2016-07-20 16:17:47 -04:00
|
|
|
}
|
2015-11-23 18:07:41 -05:00
|
|
|
|
2016-05-09 07:02:27 -04:00
|
|
|
template <class T>
|
2018-08-13 00:44:17 -04:00
|
|
|
GSL_SUPPRESS(bounds.1) // NO-FORMAT: attribute
|
2018-02-21 16:33:07 -05:00
|
|
|
constexpr T at(const std::initializer_list<T> cont, const index i)
|
2016-07-20 16:17:47 -04:00
|
|
|
{
|
2018-02-21 16:33:07 -05:00
|
|
|
Expects(i >= 0 && i < narrow_cast<index>(cont.size()));
|
|
|
|
return *(cont.begin() + i);
|
2016-07-20 16:17:47 -04:00
|
|
|
}
|
2016-05-09 07:02:27 -04:00
|
|
|
|
2015-11-23 18:07:41 -05:00
|
|
|
} // namespace gsl
|
|
|
|
|
2019-01-15 13:27:34 -05:00
|
|
|
#if defined(_MSC_VER) && !defined(__clang__)
|
2017-04-20 10:51:37 -04:00
|
|
|
#if _MSC_VER < 1910
|
|
|
|
#undef constexpr
|
|
|
|
#pragma pop_macro("constexpr")
|
|
|
|
|
|
|
|
#endif // _MSC_VER < 1910
|
2017-07-14 07:40:27 -04:00
|
|
|
|
2017-04-20 10:51:37 -04:00
|
|
|
#pragma warning(pop)
|
2017-07-14 07:40:27 -04:00
|
|
|
|
2015-11-23 18:07:41 -05:00
|
|
|
#endif // _MSC_VER
|
|
|
|
|
|
|
|
#endif // GSL_UTIL_H
|