XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
meta.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 #include <xtd/xtd.hpp>
8 
9 #include <functional>
10 
12 #define RAII(...) xtd::_::_RAII UNIQUE_IDENTIFIER(raii_object)([&](){ __VA_ARGS__ ; });
13 
14 namespace xtd{
15  namespace _{
16 
20  class _RAII{
21  public:
22  template <typename _Ty>
23  _RAII(_Ty newval) : _fn(newval){}
24  ~_RAII(){ _fn(); }
25  std::function<void()> _fn;
26  };
27 
28  }
29 
30  template <typename _Ty> constexpr uint32_t hidword(_Ty value){
31  static_assert(sizeof(_Ty) > 4, "parameter is <= 32 bits wide");
32  return ((uint32_t)(((value) >> 32) & 0xffffffff));
33  }
34  template <typename _Ty> constexpr uint32_t lodword(_Ty value){
35  static_assert(sizeof(_Ty) > 4, "parameter is <= 32 bits wide");
36  return ((uint32_t)((value) & 0xffffffff));
37  }
38 
43  template <int _Size> struct intrinsic_of_size;
44 #if (!DOXY_INVOKED)
45  template <> struct intrinsic_of_size<1>{ using type = uint8_t; };
46  template <> struct intrinsic_of_size<2>{ using type = uint16_t; };
47  template <> struct intrinsic_of_size<4>{ using type = uint32_t; };
48  template <> struct intrinsic_of_size<8>{ using type = uint64_t; };
49 
50 
51 #endif
52 
57  template <typename _Ty> struct processor_intrinsic{
59  using type = typename intrinsic_of_size<sizeof(_Ty)>::type;
60  };
61 #if (!DOXY_INVOKED)
62  template <typename _Ty> struct processor_intrinsic<_Ty*>{
63  using type = typename intrinsic_of_size<sizeof(_Ty*)>::type;
64  };
65 #endif
66 
70  template <typename _Ty> constexpr typename processor_intrinsic<_Ty>::type intrinsic_cast(_Ty src){
71  return src;
72  }
73  template <typename _Ty> constexpr typename processor_intrinsic<_Ty*>::type intrinsic_cast(const _Ty * src){
74  return reinterpret_cast<typename processor_intrinsic<_Ty>::type>(src);
75  }
76 
78  namespace _{
79  template <size_t, typename ...> struct last_t;
80  template <size_t _index, typename _HeadT, typename ... _TailT> struct last_t<_index, _HeadT, _TailT...>{
81  using type = typename last_t<_index - 1, _TailT...>::type;
82  };
83  template <typename _HeadT> struct last_t<1, _HeadT>{
84  using type = _HeadT;
85  };
86  }
87  template <typename ... _Tys> struct last{
88  using type = typename _::last_t<sizeof...(_Tys), _Tys...>::type;
89  };
90 
91 
93 
94  template <typename ...> struct task;
95  template <> struct task<>{
96  template <typename _Ty> _Ty&& operator()(_Ty&& src){ return std::move(src); }
97  };
98 
99  template <typename _HeadT, typename ... _TailT> struct task<_HeadT, _TailT...>{
100  using final_task = typename last<_HeadT, _TailT...>::type;
101  using return_type = decltype( typename std::decay<final_task>::type() );
102 
103  template <typename _ParamT>
104  return_type operator()(_ParamT oParam) const{
105  _HeadT oHead;
106  task<_TailT...> oTail;
107  return oTail(oHead(oParam));
108  }
109 
110  };
111 
112 
113 
115  template <typename, typename...> struct is_a;
116  template <typename _Ty> struct is_a<_Ty> : std::false_type {};
117  template <typename _Ty, typename ... _TailT> struct is_a<_Ty, _Ty, _TailT...> : std::true_type{ using type = _Ty; };
118  template <typename _Ty, typename _HeadT, typename ... _TailT> struct is_a<_Ty, _HeadT, _TailT...> : is_a<_Ty, _TailT...>{ using type = _Ty; };
119 
120 
122  template <int _ParamNum, typename _Ty> struct get_parameter;
123  template <typename _ReturnT, typename _HeadT, typename ... _TailT> struct get_parameter<0, _ReturnT(_HeadT, _TailT...)>{
124  using type = _HeadT;
125  };
126  template <int _ParamNum, typename _ReturnT, typename _HeadT, typename ... _TailT> struct get_parameter<_ParamNum, _ReturnT(_HeadT, _TailT...)>{
127  using type = typename get_parameter<_ParamNum-1, _ReturnT(_TailT...)>::type;
128  };
129 
130 
136  template <typename _ChT, _ChT _val> struct lower_case { static const _ChT value = _val; };
137 #if (!DOXY_INVOKED)
138  template <> struct lower_case < char, 'A' > { static constexpr char value = 'a'; };
139  template <> struct lower_case < char, 'B' > { static constexpr char value = 'b'; };
140  template <> struct lower_case < char, 'C' > { static constexpr char value = 'c'; };
141  template <> struct lower_case < char, 'D' > { static constexpr char value = 'd'; };
142  template <> struct lower_case < char, 'E' > { static constexpr char value = 'e'; };
143  template <> struct lower_case < char, 'F' > { static constexpr char value = 'f'; };
144  template <> struct lower_case < char, 'G' > { static constexpr char value = 'g'; };
145  template <> struct lower_case < char, 'H' > { static constexpr char value = 'h'; };
146  template <> struct lower_case < char, 'I' > { static constexpr char value = 'i'; };
147  template <> struct lower_case < char, 'J' > { static constexpr char value = 'j'; };
148  template <> struct lower_case < char, 'K' > { static constexpr char value = 'k'; };
149  template <> struct lower_case < char, 'L' > { static constexpr char value = 'l'; };
150  template <> struct lower_case < char, 'M' > { static constexpr char value = 'm'; };
151  template <> struct lower_case < char, 'N' > { static constexpr char value = 'n'; };
152  template <> struct lower_case < char, 'O' > { static constexpr char value = 'o'; };
153  template <> struct lower_case < char, 'P' > { static constexpr char value = 'p'; };
154  template <> struct lower_case < char, 'Q' > { static constexpr char value = 'q'; };
155  template <> struct lower_case < char, 'R' > { static constexpr char value = 'r'; };
156  template <> struct lower_case < char, 'S' > { static constexpr char value = 's'; };
157  template <> struct lower_case < char, 'T' > { static constexpr char value = 't'; };
158  template <> struct lower_case < char, 'U' > { static constexpr char value = 'u'; };
159  template <> struct lower_case < char, 'V' > { static constexpr char value = 'v'; };
160  template <> struct lower_case < char, 'W' > { static constexpr char value = 'w'; };
161  template <> struct lower_case < char, 'X' > { static constexpr char value = 'x'; };
162  template <> struct lower_case < char, 'Y' > { static constexpr char value = 'y'; };
163  template <> struct lower_case < char, 'Z' > { static constexpr char value = 'z'; };
164 
165  template <> struct lower_case < wchar_t, L'A' > { static constexpr wchar_t value = L'a'; };
166  template <> struct lower_case < wchar_t, L'B' > { static constexpr wchar_t value = L'b'; };
167  template <> struct lower_case < wchar_t, L'C' > { static constexpr wchar_t value = L'c'; };
168  template <> struct lower_case < wchar_t, L'D' > { static constexpr wchar_t value = L'd'; };
169  template <> struct lower_case < wchar_t, L'E' > { static constexpr wchar_t value = L'e'; };
170  template <> struct lower_case < wchar_t, L'F' > { static constexpr wchar_t value = L'f'; };
171  template <> struct lower_case < wchar_t, L'G' > { static constexpr wchar_t value = L'g'; };
172  template <> struct lower_case < wchar_t, L'H' > { static constexpr wchar_t value = L'h'; };
173  template <> struct lower_case < wchar_t, L'I' > { static constexpr wchar_t value = L'i'; };
174  template <> struct lower_case < wchar_t, L'J' > { static constexpr wchar_t value = L'j'; };
175  template <> struct lower_case < wchar_t, L'K' > { static constexpr wchar_t value = L'k'; };
176  template <> struct lower_case < wchar_t, L'L' > { static constexpr wchar_t value = L'l'; };
177  template <> struct lower_case < wchar_t, L'M' > { static constexpr wchar_t value = L'm'; };
178  template <> struct lower_case < wchar_t, L'N' > { static constexpr wchar_t value = L'n'; };
179  template <> struct lower_case < wchar_t, L'O' > { static constexpr wchar_t value = L'o'; };
180  template <> struct lower_case < wchar_t, L'P' > { static constexpr wchar_t value = L'p'; };
181  template <> struct lower_case < wchar_t, L'Q' > { static constexpr wchar_t value = L'q'; };
182  template <> struct lower_case < wchar_t, L'R' > { static constexpr wchar_t value = L'r'; };
183  template <> struct lower_case < wchar_t, L'S' > { static constexpr wchar_t value = L's'; };
184  template <> struct lower_case < wchar_t, L'T' > { static constexpr wchar_t value = L't'; };
185  template <> struct lower_case < wchar_t, L'U' > { static constexpr wchar_t value = L'u'; };
186  template <> struct lower_case < wchar_t, L'V' > { static constexpr wchar_t value = L'v'; };
187  template <> struct lower_case < wchar_t, L'W' > { static constexpr wchar_t value = L'w'; };
188  template <> struct lower_case < wchar_t, L'X' > { static constexpr wchar_t value = L'x'; };
189  template <> struct lower_case < wchar_t, L'Y' > { static constexpr wchar_t value = L'y'; };
190  template <> struct lower_case < wchar_t, L'Z' > { static constexpr wchar_t value = L'z'; };
191 #endif
192 }
Determine if a type is specified in a list.
Definition: meta.hpp:115
helper class for general purpose RAII rarely created directly.
Definition: meta.hpp:20
meta-function to get the processor intrinsic storage for a type.
Definition: meta.hpp:57
Gets the type of a parameter in a method declaration.
Definition: meta.hpp:122
chains together multiple methods in a single task
Definition: meta.hpp:94
constexpr processor_intrinsic< _Ty >::type intrinsic_cast(_Ty src)
casts a pointer to the processor intrinsic storage type
Definition: meta.hpp:70
meta-function to get the intrinsic of a specified size
Definition: meta.hpp:43
meta-function to convert a static upper case ascii character to lower case
Definition: meta.hpp:136
host, target and build configurations and settings Various components are purpose built for specific ...