promote.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: promote.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/16 15:28:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef UTIL_MATH___PROMOTE__HPP
  10. #define UTIL_MATH___PROMOTE__HPP
  11. /*  $Id: promote.hpp,v 1000.1 2004/04/16 15:28:43 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. // we don't explicitly include <corelib/ncbistd.hpp> because this file is not
  42. // indented to be used directly
  43. BEGIN_NCBI_SCOPE
  44. //
  45. //
  46. // Promotion classes
  47. //
  48. //
  49. // the basic promotion type
  50. // we then provide a *lot* of specialized classes to perform the
  51. // correct promotions
  52. template <typename T, typename U> struct SPromoteTraits
  53. {
  54. public:
  55.     typedef T TPromote;
  56. };
  57. // these defines makes adding new types much easier to understand
  58. //
  59. // first, a define to promote identical types to themselves
  60. #define NCBI_PROMOTE_TRAITS(type) 
  61. template<> struct SPromoteTraits< type, type > { 
  62. public: 
  63.     typedef type    TPromote; 
  64. }
  65. //
  66. // next, this type handles promotion of unlike types
  67. #define NCBI_PROMOTE2_TRAITS(type1,type2,type3) 
  68. template<> struct SPromoteTraits< type1, type2 > { 
  69. public: 
  70.     typedef type3   TPromote; 
  71. }; 
  72. template<> struct SPromoteTraits< type2, type1 > { 
  73. public: 
  74.     typedef type3   TPromote; 
  75. }
  76. //
  77. // this macro makes the syntax a little easier to understand when declaring a
  78. // promoted type
  79. //
  80. #if defined(NCBI_COMPILER_MSVC) && (_MSC_VER <= 1200)
  81. #  define NCBI_PROMOTE(a,b) SPromoteTraits< a, b >::TPromote
  82. #else
  83. #  define NCBI_PROMOTE(a,b) typename SPromoteTraits< a, b >::TPromote
  84. #endif
  85. //
  86. // comparisons for built-in types
  87. // this is needed because we can define the correct sorts of type promotion
  88. // for various template classes and global operators
  89. //
  90. //
  91. // promotion of identical types
  92. NCBI_PROMOTE_TRAITS(char);
  93. NCBI_PROMOTE_TRAITS(unsigned char);
  94. NCBI_PROMOTE_TRAITS(short);
  95. NCBI_PROMOTE_TRAITS(unsigned short);
  96. NCBI_PROMOTE_TRAITS(int);
  97. NCBI_PROMOTE_TRAITS(unsigned int);
  98. NCBI_PROMOTE_TRAITS(float);
  99. NCBI_PROMOTE_TRAITS(double);
  100. NCBI_PROMOTE2_TRAITS(char, unsigned char, unsigned char);
  101. NCBI_PROMOTE2_TRAITS(char, short, short);
  102. NCBI_PROMOTE2_TRAITS(char, unsigned short, unsigned short);
  103. NCBI_PROMOTE2_TRAITS(char, int, int);
  104. NCBI_PROMOTE2_TRAITS(char, unsigned int, unsigned int);
  105. NCBI_PROMOTE2_TRAITS(char, float, float);
  106. NCBI_PROMOTE2_TRAITS(char, double, double);
  107. NCBI_PROMOTE2_TRAITS(unsigned char, short, short);
  108. NCBI_PROMOTE2_TRAITS(unsigned char, unsigned short, unsigned short);
  109. NCBI_PROMOTE2_TRAITS(unsigned char, int, int);
  110. NCBI_PROMOTE2_TRAITS(unsigned char, unsigned int, unsigned int);
  111. NCBI_PROMOTE2_TRAITS(unsigned char, float, float);
  112. NCBI_PROMOTE2_TRAITS(unsigned char, double, double);
  113. NCBI_PROMOTE2_TRAITS(short, unsigned short, unsigned short);
  114. NCBI_PROMOTE2_TRAITS(short, int, int);
  115. NCBI_PROMOTE2_TRAITS(short, unsigned int, unsigned int);
  116. NCBI_PROMOTE2_TRAITS(short, float, float);
  117. NCBI_PROMOTE2_TRAITS(short, double, double);
  118. NCBI_PROMOTE2_TRAITS(unsigned short, int, int);
  119. NCBI_PROMOTE2_TRAITS(unsigned short, unsigned int, unsigned int);
  120. NCBI_PROMOTE2_TRAITS(unsigned short, float, float);
  121. NCBI_PROMOTE2_TRAITS(unsigned short, double, double);
  122. NCBI_PROMOTE2_TRAITS(int, unsigned int, unsigned int);
  123. NCBI_PROMOTE2_TRAITS(int, float, float);
  124. NCBI_PROMOTE2_TRAITS(int, double, double);
  125. NCBI_PROMOTE2_TRAITS(unsigned int, float, float);
  126. NCBI_PROMOTE2_TRAITS(unsigned int, double, double);
  127. NCBI_PROMOTE2_TRAITS(float, double, double);
  128. END_NCBI_SCOPE
  129. /*
  130.  * ===========================================================================
  131.  * $Log: promote.hpp,v $
  132.  * Revision 1000.1  2004/04/16 15:28:43  gouriano
  133.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.5
  134.  *
  135.  * Revision 1.5  2004/03/10 14:14:26  dicuccio
  136.  * Changed include guard to be consistent.  Moved commented portion to
  137.  * gui-specific directory.  Cleaned up error in template macros - add space around
  138.  * types to avoid '>>' on brain-dead compilers
  139.  *
  140.  * Revision 1.4  2004/02/26 18:35:17  gorelenk
  141.  * Added (_MSC_VER <= 1200) for definition of NCBI_PROMOTE - typename presents
  142.  * causes a compilation error on MSVC 6.0.
  143.  *
  144.  * Revision 1.3  2004/02/26 17:44:29  dicuccio
  145.  * Restore preprocessor guard for 'typename' in SPromote<>
  146.  *
  147.  * Revision 1.2  2004/02/26 16:52:34  gorelenk
  148.  * Changed definition of NCBI_PROMOTE(a,b). MSVC compilers also demands
  149.  * "typename" in this case.
  150.  *
  151.  * Revision 1.1  2004/02/09 17:34:12  dicuccio
  152.  * Moved from gui/math
  153.  *
  154.  * Revision 1.4  2004/01/23 13:54:53  dicuccio
  155.  * Lots of fixes.  Wrapped promote type designation in a macro.  Dropped use of
  156.  * partial template specialization due to lack of support in MSVC
  157.  *
  158.  * Revision 1.3  2003/12/22 19:14:21  dicuccio
  159.  * Fixed lots of bugs in referencing non-existent functions
  160.  *
  161.  * Revision 1.2  2003/06/09 19:45:19  dicuccio
  162.  * Fixed promotion rules - defined TPromote in traits base class
  163.  *
  164.  * Revision 1.1  2003/06/09 19:30:50  dicuccio
  165.  * Initial revision
  166.  *
  167.  * ===========================================================================
  168.  */
  169. #endif  // UTIL_MATH___PROMOTE___HPP