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

3D图形编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1997
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  */ 
  13. #ifndef __SGI_STL_CHAR_TRAITS_H
  14. #define __SGI_STL_CHAR_TRAITS_H
  15. #include <string.h>
  16. #include <wchar.h>
  17. __STL_BEGIN_NAMESPACE
  18. // Class __char_traits_base.
  19. template <class _CharT, class _IntT> struct __char_traits_base {
  20.   typedef _CharT char_type;
  21.   typedef _IntT int_type;
  22.   // typedef streamoff off_type;
  23.   // typedef streampos pos_type;
  24.   // typedef mbstate_t state_type;
  25.   static void assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; }
  26.   static bool eq(const _CharT& __c1, const _CharT& __c2) 
  27.     { return __c1 == __c2; }
  28.   static bool lt(const _CharT& __c1, const _CharT& __c2) 
  29.     { return __c1 < __c2; }
  30.   static int compare(const _CharT* __s1, const _CharT* __s2, size_t __n) {
  31.     for (size_t __i = 0; __i < __n; ++__i)
  32.       if (!eq(__s1[__i], __s2[__i]))
  33.         return __s1[__i] < __s2[__i] ? -1 : 1;
  34.     return 0;
  35.   }
  36.   static size_t length(const _CharT* __s) {
  37.     const _CharT __null = _CharT();
  38.     size_t __i;
  39.     for (__i = 0; !eq(__s[__i], __null); ++__i)
  40.       {}
  41.     return __i;
  42.   }
  43.   static const _CharT* find(const _CharT* __s, size_t __n, const _CharT& __c)
  44.   {
  45.     for ( ; __n > 0 ; ++__s, --__n)
  46.       if (eq(*__s, __c))
  47.         return __s;
  48.     return 0;
  49.   }
  50.   static _CharT* move(_CharT* __s1, const _CharT* __s2, size_t __n) {
  51.     memmove(__s1, __s2, __n * sizeof(_CharT));
  52.     return __s1;
  53.   }
  54.     
  55.   static _CharT* copy(_CharT* __s1, const _CharT* __s2, size_t __n) {
  56.     memcpy(__s1, __s2, __n * sizeof(_CharT));
  57.     return __s1;
  58.   } 
  59.   static _CharT* assign(_CharT* __s, size_t __n, _CharT __c) {
  60.     for (size_t __i = 0; __i < __n; ++__i)
  61.       __s[__i] = __c;
  62.     return __s;
  63.   }
  64.   static int_type not_eof(const int_type& __c) {
  65.     return !eq(__c, eof()) ? __c : 0;
  66.   }
  67.   static char_type to_char_type(const int_type& __c) {
  68.     return static_cast<char_type>(__c);
  69.   }
  70.   static int_type to_int_type(const char_type& __c) {
  71.     return static_cast<int_type>(__c);
  72.   }
  73.   static bool eq_int_type(const int_type& __c1, const int_type& __c2) {
  74.     return __c1 == __c2;
  75.   }
  76.   static int_type eof() {
  77.     return static_cast<int_type>(-1);
  78.   }
  79. };
  80. // Generic char_traits class.  Note that this class is provided only
  81. //  as a base for explicit specialization; it is unlikely to be useful
  82. //  as is for any particular user-defined type.  In particular, it 
  83. //  *will not work* for a non-POD type.
  84. template <class _CharT> struct char_traits
  85.   : public __char_traits_base<_CharT, _CharT>
  86. {};
  87. // Specialization for char.
  88. template<> struct char_traits<char> 
  89.   : public __char_traits_base<char, int>
  90. {
  91.   static int compare(const char* __s1, const char* __s2, size_t __n) 
  92.     { return strncmp(__s1, __s2, __n); }
  93.   
  94.   static size_t length(const char* __s) { return strlen(__s); }
  95.   static void assign(char& __c1, const char& __c2) { __c1 = __c2; }
  96.   static char* assign(char* __s, size_t __n, char __c)
  97.     { memset(__s, __c, __n); return __s; }
  98. };
  99. // Specialization for wchar_t.
  100. template<> struct char_traits<wchar_t>
  101.   : public __char_traits_base<wchar_t, wint_t>
  102. {};
  103. __STL_END_NAMESPACE
  104. #endif /* __SGI_STL_CHAR_TRAITS_H */
  105. // Local Variables:
  106. // mode:C++
  107. // End: