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
2018-08-13 00:44:17 -04:00
#endif // _MSC_VER
2015-11-23 18:07:41 -05:00
2020-08-12 15:13:19 -04:00
#if defined(__cplusplus) && (__cplusplus >= 201703L)
2020-08-10 19:45:47 -04:00
#define GSL_NODISCARD [[nodiscard]]
#else
#define GSL_NODISCARD
2020-08-12 15:13:19 -04:00
#endif // defined(__cplusplus) && (__cplusplus >= 201703L)
2020-08-10 19:45:47 -04:00
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:
2020-08-14 10:11:11 -04:00
static_assert(!std::is_reference<F>::value && !std::is_const<F>::value && !std::is_volatile<F>::value, "Final_action should store its callable by value");
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>
2020-08-14 10:11:11 -04:00
GSL_NODISCARD final_action<typename std::remove_cv<typename std::remove_reference<F>::type>::type> finally(F&& f) noexcept
2016-07-20 16:17:47 -04:00
{
2020-08-14 10:11:11 -04:00
return final_action<typename std::remove_cv<typename std::remove_reference<F>::type>::type>(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
//
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-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