Added thirdparty: boost library

This commit is contained in:
Viacheslav Demydiuk
2024-01-06 19:55:56 +02:00
parent bf49f439e1
commit bccd1e7051
15683 changed files with 3239840 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_ANY_OF_C_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_ANY_OF_C_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/impl/or_c.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <char... Cs>
struct any_of_c
{
typedef any_of_c type;
template <class Chr>
struct apply : or_c<(Chr::type::value == Cs)...> {};
};
}
}
}
}
#endif
+35
View File
@@ -0,0 +1,35 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_AT_C_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_AT_C_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/fwd/string.hpp>
#include <boost/mpl/char.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class S, int N>
struct at_c;
template <char C, char... Cs, int N>
struct at_c<string<C, Cs...>, N> : at_c<string<Cs...>, N - 1> {};
template <char C, char... Cs>
struct at_c<string<C, Cs...>, 0> : boost::mpl::char_<C> {};
}
}
}
}
#endif
+30
View File
@@ -0,0 +1,30 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_CONCAT_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_CONCAT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/fwd/string.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class A, class B>
struct concat;
template <char... As, char... Bs>
struct concat<string<As...>, string<Bs...>> : string<As..., Bs...> {};
}
}
}
}
#endif
+33
View File
@@ -0,0 +1,33 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_EMPTY_STRING_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_EMPTY_STRING_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class Ignore = int>
struct empty_string
{
typedef empty_string type;
static constexpr char value[1] = {0};
};
template <class Ignore>
constexpr char empty_string<Ignore>::value[1];
}
}
}
}
#endif
+39
View File
@@ -0,0 +1,39 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_EVAL_LATER_RESULT_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_EVAL_LATER_RESULT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/get_position.hpp>
#include <boost/mpl/eval_if.hpp>
#include <boost/mpl/less.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class R1, class R2>
struct eval_later_result :
boost::mpl::eval_if<
typename boost::mpl::less<
typename get_position<R2>::type,
typename get_position<R1>::type
>::type,
R1,
R2
>
{};
}
}
}
}
#endif
+33
View File
@@ -0,0 +1,33 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_IS_NONE_C_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_IS_NONE_C_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/impl/is_none_c_impl.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <char... Cs>
struct is_none_c
{
typedef is_none_c type;
template <class C>
struct apply : is_none_c_impl<C::type::value, Cs...> {};
};
}
}
}
}
#endif
+36
View File
@@ -0,0 +1,36 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_IS_NONE_C_IMPL_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_IS_NONE_C_IMPL_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/mpl/bool.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <char D, char... Cs>
struct is_none_c_impl;
template <char D>
struct is_none_c_impl<D> : boost::mpl::bool_<true> {};
template <char D, char... Cs>
struct is_none_c_impl<D, D, Cs...> : boost::mpl::bool_<false> {};
template <char D, char C, char... Cs>
struct is_none_c_impl<D, C, Cs...> : is_none_c_impl<D, Cs...> {};
}
}
}
}
#endif
+82
View File
@@ -0,0 +1,82 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_NTH_OF_C_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_NTH_OF_C_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/impl/nth_of_c_skip_remaining.hpp>
#include <boost/metaparse/v1/is_error.hpp>
#include <boost/metaparse/v1/get_remaining.hpp>
#include <boost/metaparse/v1/get_position.hpp>
#include <boost/metaparse/v1/get_result.hpp>
#include <type_traits>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <int N, class S, class Pos, class... Ps>
struct nth_of_c;
template <int N, class S, class Pos, class P, class... Ps>
struct nth_of_c<N, S, Pos, P, Ps...>
{
private:
template <class NextResult>
struct apply_unchecked :
nth_of_c<
N - 1,
typename get_remaining<NextResult>::type,
typename get_position<NextResult>::type,
Ps...
>
{};
public:
typedef
typename std::conditional<
is_error<typename P::template apply<S, Pos>>::type::value,
typename P::template apply<S, Pos>,
apply_unchecked<typename P::template apply<S, Pos>>
>::type::type
type;
};
template <class P, class S, class Pos, class... Ps>
struct nth_of_c<0, S, Pos, P, Ps...>
{
private:
template <class NextResult>
struct apply_unchecked :
nth_of_c_skip_remaining<
typename get_result<NextResult>::type,
typename get_remaining<NextResult>::type,
typename get_position<NextResult>::type,
Ps...
>
{};
public:
typedef
typename std::conditional<
is_error<typename P::template apply<S, Pos>>::type::value,
typename P::template apply<S, Pos>,
apply_unchecked<typename P::template apply<S, Pos>>
>::type::type
type;
};
}
}
}
}
#endif
@@ -0,0 +1,60 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_NTH_OF_C_SKIP_REMANING_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_NTH_OF_C_SKIP_REMANING_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/is_error.hpp>
#include <boost/metaparse/v1/get_remaining.hpp>
#include <boost/metaparse/v1/get_position.hpp>
#include <boost/metaparse/v1/return_.hpp>
#include <type_traits>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class FinalResult, class S, class Pos, class... Ps>
struct nth_of_c_skip_remaining;
template <class FinalResult, class S, class Pos>
struct nth_of_c_skip_remaining<FinalResult, S, Pos> :
return_<FinalResult>::template apply<S, Pos>
{};
template <class FinalResult, class S, class Pos, class P, class... Ps>
struct nth_of_c_skip_remaining<FinalResult, S, Pos, P, Ps...>
{
private:
template <class NextResult>
struct apply_unchecked :
nth_of_c_skip_remaining<
FinalResult,
typename get_remaining<NextResult>::type,
typename get_position<NextResult>::type,
Ps...
>
{};
public:
typedef
typename std::conditional<
is_error<typename P::template apply<S, Pos>>::type::value,
typename P::template apply<S, Pos>,
apply_unchecked<typename P::template apply<S, Pos>>
>::type::type
type;
};
}
}
}
}
#endif
+36
View File
@@ -0,0 +1,36 @@
#ifndef BOOST_METAPARSE_V1_CPP11_OR_C_HPP
#define BOOST_METAPARSE_V1_CPP11_OR_C_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2017.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/mpl/bool.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <bool... Bs>
struct or_c;
template <>
struct or_c<> : boost::mpl::false_ {};
template <bool... Bs>
struct or_c<true, Bs...> : boost::mpl::true_ {};
template <bool... Bs>
struct or_c<false, Bs...> : or_c<Bs...> {};
}
}
}
}
#endif
+39
View File
@@ -0,0 +1,39 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_POP_BACK_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_POP_BACK_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/fwd/string.hpp>
#include <boost/metaparse/v1/cpp11/impl/push_front_c.hpp>
#include <boost/metaparse/v1/cpp11/impl/size.hpp>
#include <boost/mpl/clear.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class S>
struct pop_back;
template <char C>
struct pop_back<string<C>> : boost::mpl::clear<string<C>> {};
template <char C, char... Cs>
struct pop_back<string<C, Cs...>> :
push_front_c<typename pop_back<string<Cs...>>::type, C>
{};
}
}
}
}
#endif
+30
View File
@@ -0,0 +1,30 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_POP_FRONT_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_POP_FRONT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/fwd/string.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class S>
struct pop_front;
template <char C, char... Cs>
struct pop_front<string<C, Cs...>> : string<Cs...> {};
}
}
}
}
#endif
+30
View File
@@ -0,0 +1,30 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_PUSH_BACK_C_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_PUSH_BACK_C_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/fwd/string.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class S, char C>
struct push_back_c;
template <char... Cs, char C>
struct push_back_c<string<Cs...>, C> : string<Cs..., C> {};
}
}
}
}
#endif
+30
View File
@@ -0,0 +1,30 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_PUSH_FRONT_C_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_PUSH_FRONT_C_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/fwd/string.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class S, char C>
struct push_front_c;
template <char... Cs, char C>
struct push_front_c<string<Cs...>, C> : string<C, Cs...> {};
}
}
}
}
#endif
+36
View File
@@ -0,0 +1,36 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_PUSH_FRONT_RESULT_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_PUSH_FRONT_RESULT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2018.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/get_result.hpp>
#include <boost/mpl/push_front.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class Value>
struct push_front_result
{
typedef push_front_result type;
template <class Seq>
struct apply :
boost::mpl::push_front<Seq, typename get_result<Value>::type>
{};
};
}
}
}
}
#endif
+34
View File
@@ -0,0 +1,34 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_SIZE_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_SIZE_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/v1/cpp11/fwd/string.hpp>
#include <boost/mpl/int.hpp>
#include <type_traits>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <class S>
struct size;
template <char... Cs>
struct size<string<Cs...>> : boost::mpl::int_<sizeof...(Cs)> {};
}
}
}
}
#endif
File diff suppressed because one or more lines are too long
+39
View File
@@ -0,0 +1,39 @@
#ifndef BOOST_METAPARSE_V1_CPP11_IMPL_STRING_AT_HPP
#define BOOST_METAPARSE_V1_CPP11_IMPL_STRING_AT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2016.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/metaparse/limit_string_size.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
namespace impl
{
template <int MaxLen, int Len, class T>
constexpr T string_at(const T (&s)[Len], int n)
{
// "MaxLen + 1" adds the \0 character of the string literal to the
// limit
static_assert(Len <= MaxLen + 1, "String literal is too long.");
return n >= Len - 1 ? T() : s[n];
}
}
}
}
}
#ifdef BOOST_METAPARSE_V1_STRING_AT
# error BOOST_METAPARSE_V1_STRING_AT already defined
#endif
#define BOOST_METAPARSE_V1_STRING_AT \
::boost::metaparse::v1::impl::string_at<BOOST_METAPARSE_LIMIT_STRING_SIZE>
#endif