char_tra.h
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:4k
源码类别:

STL

开发平台:

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. #if defined(__STL_USE_NEW_IOSTREAMS) && !defined(__SGI_STL_IOSFWD)
  18. #include <iosfwd>
  19. #endif /* use new iostreams */
  20. __STL_BEGIN_NAMESPACE
  21. // Class __char_traits_base.
  22. template <class _CharT, class _IntT> class __char_traits_base {
  23. public:
  24.   typedef _CharT char_type;
  25.   typedef _IntT int_type;
  26. #ifdef __STL_USE_NEW_IOSTREAMS
  27.   typedef streamoff off_type;
  28.   typedef streampos pos_type;
  29.   typedef mbstate_t state_type;
  30. #endif /* __STL_USE_NEW_IOSTREAMS */
  31.   static void assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; }
  32.   static bool eq(const _CharT& __c1, const _CharT& __c2) 
  33.     { return __c1 == __c2; }
  34.   static bool lt(const _CharT& __c1, const _CharT& __c2) 
  35.     { return __c1 < __c2; }
  36.   static int compare(const _CharT* __s1, const _CharT* __s2, size_t __n) {
  37.     for (size_t __i = 0; __i < __n; ++__i)
  38.       if (!eq(__s1[__i], __s2[__i]))
  39.         return __s1[__i] < __s2[__i] ? -1 : 1;
  40.     return 0;
  41.   }
  42.   static size_t length(const _CharT* __s) {
  43.     const _CharT __nullchar = _CharT();
  44.     size_t __i;
  45.     for (__i = 0; !eq(__s[__i], __nullchar); ++__i)
  46.       {}
  47.     return __i;
  48.   }
  49.   static const _CharT* find(const _CharT* __s, size_t __n, const _CharT& __c)
  50.   {
  51.     for ( ; __n > 0 ; ++__s, --__n)
  52.       if (eq(*__s, __c))
  53.         return __s;
  54.     return 0;
  55.   }
  56.   static _CharT* move(_CharT* __s1, const _CharT* __s2, size_t __n) {
  57.     memmove(__s1, __s2, __n * sizeof(_CharT));
  58.     return __s1;
  59.   }
  60.     
  61.   static _CharT* copy(_CharT* __s1, const _CharT* __s2, size_t __n) {
  62.     memcpy(__s1, __s2, __n * sizeof(_CharT));
  63.     return __s1;
  64.   } 
  65.   static _CharT* assign(_CharT* __s, size_t __n, _CharT __c) {
  66.     for (size_t __i = 0; __i < __n; ++__i)
  67.       __s[__i] = __c;
  68.     return __s;
  69.   }
  70.   static int_type not_eof(const int_type& __c) {
  71.     return !eq_int_type(__c, eof()) ? __c : 0;
  72.   }
  73.   static char_type to_char_type(const int_type& __c) {
  74.     return static_cast<char_type>(__c);
  75.   }
  76.   static int_type to_int_type(const char_type& __c) {
  77.     return static_cast<int_type>(__c);
  78.   }
  79.   static bool eq_int_type(const int_type& __c1, const int_type& __c2) {
  80.     return __c1 == __c2;
  81.   }
  82.   static int_type eof() {
  83.     return static_cast<int_type>(-1);
  84.   }
  85. };
  86. // Generic char_traits class.  Note that this class is provided only
  87. //  as a base for explicit specialization; it is unlikely to be useful
  88. //  as is for any particular user-defined type.  In particular, it 
  89. //  *will not work* for a non-POD type.
  90. template <class _CharT> class char_traits
  91.   : public __char_traits_base<_CharT, _CharT>
  92. {};
  93. // Specialization for char.
  94. __STL_TEMPLATE_NULL class char_traits<char> 
  95.   : public __char_traits_base<char, int>
  96. {
  97. public:
  98.   static char_type to_char_type(const int_type& __c) {
  99.     return static_cast<char_type>(static_cast<unsigned char>(__c));
  100.   }
  101.   static int_type to_int_type(const char_type& __c) {
  102.     return static_cast<unsigned char>(__c);
  103.   }
  104.   static int compare(const char* __s1, const char* __s2, size_t __n) 
  105.     { return memcmp(__s1, __s2, __n); }
  106.   
  107.   static size_t length(const char* __s) { return strlen(__s); }
  108.   static void assign(char& __c1, const char& __c2) { __c1 = __c2; }
  109.   static char* assign(char* __s, size_t __n, char __c)
  110.     { memset(__s, __c, __n); return __s; }
  111. };
  112. // Specialization for wchar_t.
  113. __STL_TEMPLATE_NULL class char_traits<wchar_t>
  114.   : public __char_traits_base<wchar_t, wint_t>
  115. {};
  116. __STL_END_NAMESPACE
  117. #endif /* __SGI_STL_CHAR_TRAITS_H */
  118. // Local Variables:
  119. // mode:C++
  120. // End: