type_traits.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:13k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Copyright (c) 1997
  4.  * Silicon Graphics Computer Systems, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Silicon Graphics makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  */
  14. #ifndef __TYPE_TRAITS_H
  15. #define __TYPE_TRAITS_H
  16. #ifndef __STL_CONFIG_H
  17. #include <stl_config.h>
  18. #endif
  19. /*
  20. This header file provides a framework for allowing compile time dispatch
  21. based on type attributes. This is useful when writing template code.
  22. For example, when making a copy of an array of an unknown type, it helps
  23. to know if the type has a trivial copy constructor or not, to help decide
  24. if a memcpy can be used.
  25. The class template __type_traits provides a series of typedefs each of
  26. which is either __true_type or __false_type. The argument to
  27. __type_traits can be any type. The typedefs within this template will
  28. attain their correct values by one of these means:
  29.     1. The general instantiation contain conservative values which work
  30.        for all types.
  31.     2. Specializations may be declared to make distinctions between types.
  32.     3. Some compilers (such as the Silicon Graphics N32 and N64 compilers)
  33.        will automatically provide the appropriate specializations for all
  34.        types.
  35. EXAMPLE:
  36. //Copy an array of elements which have non-trivial copy constructors
  37. template <class T> void copy(T* source,T* destination,int n,__false_type);
  38. //Copy an array of elements which have trivial copy constructors. Use memcpy.
  39. template <class T> void copy(T* source,T* destination,int n,__true_type);
  40. //Copy an array of any type by using the most efficient copy mechanism
  41. template <class T> inline void copy(T* source,T* destination,int n) {
  42.    copy(source,destination,n,__type_traits<T>::has_trivial_copy_constructor());
  43. }
  44. */
  45. struct __true_type {
  46. };
  47. struct __false_type {
  48. };
  49. template <class _T>
  50. struct __type_traits { 
  51.    typedef __true_type     this_dummy_member_must_be_first;
  52.                    /* Do not remove this member. It informs a compiler which
  53.                       automatically specializes __type_traits that this
  54.                       __type_traits template is special. It just makes sure that
  55.                       things work if an implementation is using a template
  56.                       called __type_traits for something unrelated. */
  57.    /* The following restrictions should be observed for the sake of
  58.       compilers which automatically produce type specific specializations 
  59.       of this class:
  60.           - You may reorder the members below if you wish
  61.           - You may remove any of the members below if you wish
  62.           - You must not rename members without making the corresponding
  63.             name change in the compiler
  64.           - Members you add will be treated like regular members unless
  65.             you add the appropriate support in the compiler. */
  66.  
  67.    typedef __false_type    has_trivial_default_constructor;
  68.    typedef __false_type    has_trivial_copy_constructor;
  69.    typedef __false_type    has_trivial_assignment_operator;
  70.    typedef __false_type    has_trivial_destructor;
  71.    typedef __false_type    is_POD_type;
  72. };
  73. // Provide some specializations.  This is harmless for compilers that
  74. //  have built-in __types_traits support, and essential for compilers
  75. //  that don't.
  76. #ifndef __STL_NO_BOOL
  77. __STL_TEMPLATE_NULL struct __type_traits<bool> {
  78.    typedef __true_type    has_trivial_default_constructor;
  79.    typedef __true_type    has_trivial_copy_constructor;
  80.    typedef __true_type    has_trivial_assignment_operator;
  81.    typedef __true_type    has_trivial_destructor;
  82.    typedef __true_type    is_POD_type;
  83. };
  84. #endif /* __STL_NO_BOOL */
  85. __STL_TEMPLATE_NULL struct __type_traits<char> {
  86.    typedef __true_type    has_trivial_default_constructor;
  87.    typedef __true_type    has_trivial_copy_constructor;
  88.    typedef __true_type    has_trivial_assignment_operator;
  89.    typedef __true_type    has_trivial_destructor;
  90.    typedef __true_type    is_POD_type;
  91. };
  92. __STL_TEMPLATE_NULL struct __type_traits<signed char> {
  93.    typedef __true_type    has_trivial_default_constructor;
  94.    typedef __true_type    has_trivial_copy_constructor;
  95.    typedef __true_type    has_trivial_assignment_operator;
  96.    typedef __true_type    has_trivial_destructor;
  97.    typedef __true_type    is_POD_type;
  98. };
  99. __STL_TEMPLATE_NULL struct __type_traits<unsigned char> {
  100.    typedef __true_type    has_trivial_default_constructor;
  101.    typedef __true_type    has_trivial_copy_constructor;
  102.    typedef __true_type    has_trivial_assignment_operator;
  103.    typedef __true_type    has_trivial_destructor;
  104.    typedef __true_type    is_POD_type;
  105. };
  106. #ifdef __STL_HAS_WCHAR_T
  107. __STL_TEMPLATE_NULL struct __type_traits<wchar_t> {
  108.    typedef __true_type    has_trivial_default_constructor;
  109.    typedef __true_type    has_trivial_copy_constructor;
  110.    typedef __true_type    has_trivial_assignment_operator;
  111.    typedef __true_type    has_trivial_destructor;
  112.    typedef __true_type    is_POD_type;
  113. };
  114. #endif /* __STL_HAS_WCHAR_T */
  115. __STL_TEMPLATE_NULL struct __type_traits<short> {
  116.    typedef __true_type    has_trivial_default_constructor;
  117.    typedef __true_type    has_trivial_copy_constructor;
  118.    typedef __true_type    has_trivial_assignment_operator;
  119.    typedef __true_type    has_trivial_destructor;
  120.    typedef __true_type    is_POD_type;
  121. };
  122. __STL_TEMPLATE_NULL struct __type_traits<unsigned short> {
  123.    typedef __true_type    has_trivial_default_constructor;
  124.    typedef __true_type    has_trivial_copy_constructor;
  125.    typedef __true_type    has_trivial_assignment_operator;
  126.    typedef __true_type    has_trivial_destructor;
  127.    typedef __true_type    is_POD_type;
  128. };
  129. __STL_TEMPLATE_NULL struct __type_traits<int> {
  130.    typedef __true_type    has_trivial_default_constructor;
  131.    typedef __true_type    has_trivial_copy_constructor;
  132.    typedef __true_type    has_trivial_assignment_operator;
  133.    typedef __true_type    has_trivial_destructor;
  134.    typedef __true_type    is_POD_type;
  135. };
  136. __STL_TEMPLATE_NULL struct __type_traits<unsigned int> {
  137.    typedef __true_type    has_trivial_default_constructor;
  138.    typedef __true_type    has_trivial_copy_constructor;
  139.    typedef __true_type    has_trivial_assignment_operator;
  140.    typedef __true_type    has_trivial_destructor;
  141.    typedef __true_type    is_POD_type;
  142. };
  143. __STL_TEMPLATE_NULL struct __type_traits<long> {
  144.    typedef __true_type    has_trivial_default_constructor;
  145.    typedef __true_type    has_trivial_copy_constructor;
  146.    typedef __true_type    has_trivial_assignment_operator;
  147.    typedef __true_type    has_trivial_destructor;
  148.    typedef __true_type    is_POD_type;
  149. };
  150. __STL_TEMPLATE_NULL struct __type_traits<unsigned long> {
  151.    typedef __true_type    has_trivial_default_constructor;
  152.    typedef __true_type    has_trivial_copy_constructor;
  153.    typedef __true_type    has_trivial_assignment_operator;
  154.    typedef __true_type    has_trivial_destructor;
  155.    typedef __true_type    is_POD_type;
  156. };
  157. #ifdef __STL_LONG_LONG
  158. __STL_TEMPLATE_NULL struct __type_traits<long long> {
  159.    typedef __true_type    has_trivial_default_constructor;
  160.    typedef __true_type    has_trivial_copy_constructor;
  161.    typedef __true_type    has_trivial_assignment_operator;
  162.    typedef __true_type    has_trivial_destructor;
  163.    typedef __true_type    is_POD_type;
  164. };
  165. __STL_TEMPLATE_NULL struct __type_traits<unsigned long long> {
  166.    typedef __true_type    has_trivial_default_constructor;
  167.    typedef __true_type    has_trivial_copy_constructor;
  168.    typedef __true_type    has_trivial_assignment_operator;
  169.    typedef __true_type    has_trivial_destructor;
  170.    typedef __true_type    is_POD_type;
  171. };
  172. #endif /* __STL_LONG_LONG */
  173. __STL_TEMPLATE_NULL struct __type_traits<float> {
  174.    typedef __true_type    has_trivial_default_constructor;
  175.    typedef __true_type    has_trivial_copy_constructor;
  176.    typedef __true_type    has_trivial_assignment_operator;
  177.    typedef __true_type    has_trivial_destructor;
  178.    typedef __true_type    is_POD_type;
  179. };
  180. __STL_TEMPLATE_NULL struct __type_traits<double> {
  181.    typedef __true_type    has_trivial_default_constructor;
  182.    typedef __true_type    has_trivial_copy_constructor;
  183.    typedef __true_type    has_trivial_assignment_operator;
  184.    typedef __true_type    has_trivial_destructor;
  185.    typedef __true_type    is_POD_type;
  186. };
  187. __STL_TEMPLATE_NULL struct __type_traits<long double> {
  188.    typedef __true_type    has_trivial_default_constructor;
  189.    typedef __true_type    has_trivial_copy_constructor;
  190.    typedef __true_type    has_trivial_assignment_operator;
  191.    typedef __true_type    has_trivial_destructor;
  192.    typedef __true_type    is_POD_type;
  193. };
  194. #ifdef __STL_CLASS_PARTIAL_SPECIALIZATION
  195. template <class _T>
  196. struct __type_traits<_T*> {
  197.    typedef __true_type    has_trivial_default_constructor;
  198.    typedef __true_type    has_trivial_copy_constructor;
  199.    typedef __true_type    has_trivial_assignment_operator;
  200.    typedef __true_type    has_trivial_destructor;
  201.    typedef __true_type    is_POD_type;
  202. };
  203. #else /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  204. __STL_TEMPLATE_NULL struct __type_traits<char*> {
  205.    typedef __true_type    has_trivial_default_constructor;
  206.    typedef __true_type    has_trivial_copy_constructor;
  207.    typedef __true_type    has_trivial_assignment_operator;
  208.    typedef __true_type    has_trivial_destructor;
  209.    typedef __true_type    is_POD_type;
  210. };
  211. __STL_TEMPLATE_NULL struct __type_traits<signed char*> {
  212.    typedef __true_type    has_trivial_default_constructor;
  213.    typedef __true_type    has_trivial_copy_constructor;
  214.    typedef __true_type    has_trivial_assignment_operator;
  215.    typedef __true_type    has_trivial_destructor;
  216.    typedef __true_type    is_POD_type;
  217. };
  218. __STL_TEMPLATE_NULL struct __type_traits<unsigned char*> {
  219.    typedef __true_type    has_trivial_default_constructor;
  220.    typedef __true_type    has_trivial_copy_constructor;
  221.    typedef __true_type    has_trivial_assignment_operator;
  222.    typedef __true_type    has_trivial_destructor;
  223.    typedef __true_type    is_POD_type;
  224. };
  225. __STL_TEMPLATE_NULL struct __type_traits<const char*> {
  226.    typedef __true_type    has_trivial_default_constructor;
  227.    typedef __true_type    has_trivial_copy_constructor;
  228.    typedef __true_type    has_trivial_assignment_operator;
  229.    typedef __true_type    has_trivial_destructor;
  230.    typedef __true_type    is_POD_type;
  231. };
  232. __STL_TEMPLATE_NULL struct __type_traits<const signed char*> {
  233.    typedef __true_type    has_trivial_default_constructor;
  234.    typedef __true_type    has_trivial_copy_constructor;
  235.    typedef __true_type    has_trivial_assignment_operator;
  236.    typedef __true_type    has_trivial_destructor;
  237.    typedef __true_type    is_POD_type;
  238. };
  239. __STL_TEMPLATE_NULL struct __type_traits<const unsigned char*> {
  240.    typedef __true_type    has_trivial_default_constructor;
  241.    typedef __true_type    has_trivial_copy_constructor;
  242.    typedef __true_type    has_trivial_assignment_operator;
  243.    typedef __true_type    has_trivial_destructor;
  244.    typedef __true_type    is_POD_type;
  245. };
  246. #endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
  247. // The following could be written in terms of numeric_limits.  
  248. // We're doing it separately to reduce the number of dependencies.
  249. template <class _T> struct _Is_integer {
  250.   typedef __false_type _Integral;
  251. };
  252. #ifndef __STL_NO_BOOL
  253. __STL_TEMPLATE_NULL struct _Is_integer<bool> {
  254.   typedef __true_type _Integral;
  255. };
  256. #endif /* __STL_NO_BOOL */
  257. __STL_TEMPLATE_NULL struct _Is_integer<char> {
  258.   typedef __true_type _Integral;
  259. };
  260. __STL_TEMPLATE_NULL struct _Is_integer<signed char> {
  261.   typedef __true_type _Integral;
  262. };
  263. __STL_TEMPLATE_NULL struct _Is_integer<unsigned char> {
  264.   typedef __true_type _Integral;
  265. };
  266. #ifdef __STL_HAS_WCHAR_T
  267. __STL_TEMPLATE_NULL struct _Is_integer<wchar_t> {
  268.   typedef __true_type _Integral;
  269. };
  270. #endif /* __STL_HAS_WCHAR_T */
  271. __STL_TEMPLATE_NULL struct _Is_integer<short> {
  272.   typedef __true_type _Integral;
  273. };
  274. __STL_TEMPLATE_NULL struct _Is_integer<unsigned short> {
  275.   typedef __true_type _Integral;
  276. };
  277. __STL_TEMPLATE_NULL struct _Is_integer<int> {
  278.   typedef __true_type _Integral;
  279. };
  280. __STL_TEMPLATE_NULL struct _Is_integer<unsigned int> {
  281.   typedef __true_type _Integral;
  282. };
  283. __STL_TEMPLATE_NULL struct _Is_integer<long> {
  284.   typedef __true_type _Integral;
  285. };
  286. __STL_TEMPLATE_NULL struct _Is_integer<unsigned long> {
  287.   typedef __true_type _Integral;
  288. };
  289. #ifdef __STL_LONG_LONG
  290. __STL_TEMPLATE_NULL struct _Is_integer<long long> {
  291.   typedef __true_type _Integral;
  292. };
  293. __STL_TEMPLATE_NULL struct _Is_integer<unsigned long long> {
  294.   typedef __true_type _Integral;
  295. };
  296. #endif /* __STL_LONG_LONG */
  297. #endif /* __TYPE_TRAITS_H */
  298. // Local Variables:
  299. // mode:C++
  300. // End: