home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stlpt453.zip / STLport-4.5.3 / src / ctype.cpp < prev    next >
C/C++ Source or Header  |  2001-01-26  |  20KB  |  491 lines

  1. /*
  2.  * Copyright (c) 1999
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Copyright (c) 1999 
  6.  * Boris Fomitchev
  7.  *
  8.  * This material is provided "as is", with absolutely no warranty expressed
  9.  * or implied. Any use is at your own risk.
  10.  *
  11.  * Permission to use or copy this software for any purpose is hereby granted 
  12.  * without fee, provided the above notices are retained on all copies.
  13.  * Permission to modify the code and to distribute modified code is granted,
  14.  * provided the above notices are retained, and a notice that the code was
  15.  * modified is included with the above copyright notice.
  16.  *
  17.  */ 
  18.  
  19. # include "stlport_prefix.h"
  20.  
  21. #include <algorithm>
  22. #include <stl/_ctype.h>
  23. #include <stl/_function.h>
  24. #include "c_locale.h"
  25.  
  26. _STLP_BEGIN_NAMESPACE
  27.  
  28. //----------------------------------------------------------------------
  29. // ctype<char>
  30.  
  31. // The classic table: static data members.
  32.  
  33. # if !defined(_STLP_STATIC_CONST_INIT_BUG) && !(defined(__MRC__) || defined(__SC__))
  34. //*TY 02/25/2000 - added workaround for MPW compilers; they confuse on in-class static const
  35. const size_t ctype<char>::table_size;
  36. # endif
  37.  
  38. // This macro is specifically for platforms where isprint() relies
  39. // on separate flag
  40.  
  41. # define PRINTFLAG ctype_base::mask( _Locale_PRINT & ~(_Locale_UPPER | _Locale_LOWER | _Locale_ALPHA | _Locale_DIGIT | _Locale_PUNCT | _Locale_SPACE | _Locale_XDIGIT )) 
  42.  
  43. // Ctype table for the ASCII character set.
  44. // There are 257 entries in this table.  The first is EOF (-1).  
  45. // That is, the "table" seen by ctype<char> member functions is
  46. // _S_classic_table + 1.
  47. const ctype_base::mask 
  48. ctype<char>::_S_classic_table[257] = 
  49. {
  50.   ctype_base::mask(0) /* EOF */,
  51.   cntrl /* null */,
  52.   cntrl /* ^A */,
  53.   cntrl /* ^B */,
  54.   cntrl /* ^C */,
  55.   cntrl /* ^D */,
  56.   cntrl /* ^E */,
  57.   cntrl /* ^F */,
  58.   cntrl /* ^G */,
  59.   cntrl /* ^H */,
  60.   ctype_base::mask(space | cntrl) /* tab */,
  61.   ctype_base::mask(space | cntrl) /* LF */,
  62.   ctype_base::mask(space | cntrl) /* ^K */,
  63.   ctype_base::mask(space | cntrl) /* FF */,
  64.   ctype_base::mask(space | cntrl) /* ^M */,
  65.   cntrl /* ^N */,
  66.   cntrl /* ^O */,
  67.   cntrl /* ^P */,
  68.   cntrl /* ^Q */,
  69.   cntrl /* ^R */,
  70.   cntrl /* ^S */,
  71.   cntrl /* ^T */,
  72.   cntrl /* ^U */,
  73.   cntrl /* ^V */,
  74.   cntrl /* ^W */,
  75.   cntrl /* ^X */,
  76.   cntrl /* ^Y */,
  77.   cntrl /* ^Z */,
  78.   cntrl /* esc */,
  79.   cntrl /* ^\ */,
  80.   cntrl /* ^] */,
  81.   cntrl /* ^^ */,
  82.   cntrl /* ^_ */,
  83.   ctype_base::mask (space | PRINTFLAG) /*  */,
  84.   ctype_base::mask (punct | PRINTFLAG ) /* ! */,
  85.   ctype_base::mask (punct | PRINTFLAG ) /* " */,
  86.   ctype_base::mask (punct | PRINTFLAG ) /* # */,
  87.   ctype_base::mask (punct | PRINTFLAG ) /* $ */,
  88.   ctype_base::mask (punct | PRINTFLAG ) /* % */,
  89.   ctype_base::mask (punct | PRINTFLAG ) /* & */,
  90.   ctype_base::mask (punct | PRINTFLAG ) /* ' */,
  91.   ctype_base::mask (punct | PRINTFLAG ) /* ( */,
  92.   ctype_base::mask (punct | PRINTFLAG ) /* ) */,
  93.   ctype_base::mask (punct | PRINTFLAG ) /* * */,
  94.   ctype_base::mask (punct | PRINTFLAG ) /* + */,
  95.   ctype_base::mask (punct | PRINTFLAG ) /* , */,
  96.   ctype_base::mask (punct | PRINTFLAG ) /* - */,
  97.   ctype_base::mask (punct | PRINTFLAG ) /* . */,
  98.   ctype_base::mask (punct | PRINTFLAG ) /* / */,
  99.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 0 */,
  100.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 1 */,
  101.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 2 */,
  102.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 3 */,
  103.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 4 */,
  104.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 5 */,
  105.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 6 */,
  106.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 7 */,
  107.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 8 */,
  108.   ctype_base::mask(digit | PRINTFLAG | xdigit) /* 9 */,
  109.   ctype_base::mask (punct | PRINTFLAG ) /* : */,
  110.   ctype_base::mask (punct | PRINTFLAG ) /* ; */,
  111.   ctype_base::mask (punct | PRINTFLAG ) /* < */,
  112.   ctype_base::mask (punct | PRINTFLAG ) /* = */,
  113.   ctype_base::mask (punct | PRINTFLAG ) /* > */,
  114.   ctype_base::mask (punct | PRINTFLAG ) /* ? */,
  115.   ctype_base::mask (punct | PRINTFLAG ) /* ! */,
  116.   ctype_base::mask(alpha | PRINTFLAG | upper | xdigit) /* A */,
  117.   ctype_base::mask(alpha | PRINTFLAG | upper | xdigit) /* B */,
  118.   ctype_base::mask(alpha | PRINTFLAG | upper | xdigit) /* C */,
  119.   ctype_base::mask(alpha | PRINTFLAG | upper | xdigit) /* D */,
  120.   ctype_base::mask(alpha | PRINTFLAG | upper | xdigit) /* E */,
  121.   ctype_base::mask(alpha | PRINTFLAG | upper | xdigit) /* F */,
  122.   ctype_base::mask(alpha | PRINTFLAG | upper) /* G */,
  123.   ctype_base::mask(alpha | PRINTFLAG | upper) /* H */,
  124.   ctype_base::mask(alpha | PRINTFLAG | upper) /* I */,
  125.   ctype_base::mask(alpha | PRINTFLAG | upper) /* J */,
  126.   ctype_base::mask(alpha | PRINTFLAG | upper) /* K */,
  127.   ctype_base::mask(alpha | PRINTFLAG | upper) /* L */,
  128.   ctype_base::mask(alpha | PRINTFLAG | upper) /* M */,
  129.   ctype_base::mask(alpha | PRINTFLAG | upper) /* N */,
  130.   ctype_base::mask(alpha | PRINTFLAG | upper) /* O */,
  131.   ctype_base::mask(alpha | PRINTFLAG | upper) /* P */,
  132.   ctype_base::mask(alpha | PRINTFLAG | upper) /* Q */,
  133.   ctype_base::mask(alpha | PRINTFLAG | upper) /* R */,
  134.   ctype_base::mask(alpha | PRINTFLAG | upper) /* S */,
  135.   ctype_base::mask(alpha | PRINTFLAG | upper) /* T */,
  136.   ctype_base::mask(alpha | PRINTFLAG | upper) /* U */,
  137.   ctype_base::mask(alpha | PRINTFLAG | upper) /* V */,
  138.   ctype_base::mask(alpha | PRINTFLAG | upper) /* W */,
  139.   ctype_base::mask(alpha | PRINTFLAG | upper) /* X */,
  140.   ctype_base::mask(alpha | PRINTFLAG | upper) /* Y */,
  141.   ctype_base::mask(alpha | PRINTFLAG | upper) /* Z */,
  142.   ctype_base::mask (punct | PRINTFLAG ) /* [ */,
  143.   ctype_base::mask (punct | PRINTFLAG ) /* \ */,
  144.   ctype_base::mask (punct | PRINTFLAG ) /* ] */,
  145.   ctype_base::mask (punct | PRINTFLAG ) /* ^ */,
  146.   ctype_base::mask (punct | PRINTFLAG ) /* _ */,
  147.   ctype_base::mask (punct | PRINTFLAG ) /* ` */,
  148.   ctype_base::mask(alpha | PRINTFLAG | lower | xdigit) /* a */,
  149.   ctype_base::mask(alpha | PRINTFLAG | lower | xdigit) /* b */,
  150.   ctype_base::mask(alpha | PRINTFLAG | lower | xdigit) /* c */,
  151.   ctype_base::mask(alpha | PRINTFLAG | lower | xdigit) /* d */,
  152.   ctype_base::mask(alpha | PRINTFLAG | lower | xdigit) /* e */,
  153.   ctype_base::mask(alpha | PRINTFLAG | lower | xdigit) /* f */,
  154.   ctype_base::mask(alpha | PRINTFLAG | lower) /* g */,
  155.   ctype_base::mask(alpha | PRINTFLAG | lower) /* h */,
  156.   ctype_base::mask(alpha | PRINTFLAG | lower) /* i */,
  157.   ctype_base::mask(alpha | PRINTFLAG | lower) /* j */,
  158.   ctype_base::mask(alpha | PRINTFLAG | lower) /* k */,
  159.   ctype_base::mask(alpha | PRINTFLAG | lower) /* l */,
  160.   ctype_base::mask(alpha | PRINTFLAG | lower) /* m */,
  161.   ctype_base::mask(alpha | PRINTFLAG | lower) /* n */,
  162.   ctype_base::mask(alpha | PRINTFLAG | lower) /* o */,
  163.   ctype_base::mask(alpha | PRINTFLAG | lower) /* p */,
  164.   ctype_base::mask(alpha | PRINTFLAG | lower) /* q */,
  165.   ctype_base::mask(alpha | PRINTFLAG | lower) /* r */,
  166.   ctype_base::mask(alpha | PRINTFLAG | lower) /* s */,
  167.   ctype_base::mask(alpha | PRINTFLAG | lower) /* t */,
  168.   ctype_base::mask(alpha | PRINTFLAG | lower) /* u */,
  169.   ctype_base::mask(alpha | PRINTFLAG | lower) /* v */,
  170.   ctype_base::mask(alpha | PRINTFLAG | lower) /* w */,
  171.   ctype_base::mask(alpha | PRINTFLAG | lower) /* x */,
  172.   ctype_base::mask(alpha | PRINTFLAG | lower) /* y */,
  173.   ctype_base::mask(alpha | PRINTFLAG | lower) /* x */,
  174.   ctype_base::mask (punct | PRINTFLAG ) /* { */,
  175.   ctype_base::mask (punct | PRINTFLAG ) /* | */,
  176.   ctype_base::mask (punct | PRINTFLAG ) /* } */,
  177.   ctype_base::mask (punct | PRINTFLAG ) /* ~ */,
  178.   cntrl /* del (0x7f)*/,
  179.     /* ASCII is a 7-bit code, so everything else is non-ASCII */
  180. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  181. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  182. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  183. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  184. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  185. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  186. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  187. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  188. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  189. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  190. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  191. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  192. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  193. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  194. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),
  195. ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0),  ctype_base::mask(0)
  196. };
  197.  
  198. // For every c in the range 0 <= c < 256, _S_upper[c] is the
  199. // uppercased version of c and _S_lower[c] is the lowercased
  200. // version.  As before, these two tables assume the ASCII character
  201. // set.
  202.  
  203. const unsigned char ctype<char>::_S_upper[256] =
  204. {
  205.   0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  206.   0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
  207.   0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
  208.   0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
  209.   0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
  210.   0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
  211.   0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
  212.   0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
  213.   0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
  214.   0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
  215.   0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,
  216.   0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
  217.   0x60, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
  218.   0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
  219.   0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57,
  220.   0x58, 0x59, 0x5a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
  221.   0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
  222.   0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
  223.   0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
  224.   0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
  225.   0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,
  226.   0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
  227.   0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,
  228.   0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
  229.   0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
  230.   0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
  231.   0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,
  232.   0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
  233.   0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
  234.   0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
  235.   0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
  236.   0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff
  237. };
  238.  
  239. const unsigned char ctype<char>::_S_lower[256] =
  240. {
  241.   0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
  242.   0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
  243.   0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
  244.   0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
  245.   0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27,
  246.   0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f,
  247.   0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37,
  248.   0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
  249.   0x40, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
  250.   0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
  251.   0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
  252.   0x78, 0x79, 0x7a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
  253.   0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
  254.   0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
  255.   0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
  256.   0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
  257.   0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
  258.   0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
  259.   0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
  260.   0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
  261.   0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7,
  262.   0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
  263.   0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,
  264.   0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
  265.   0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
  266.   0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
  267.   0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,
  268.   0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
  269.   0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
  270.   0xe8, 0xe9, 0xea, 0xeb, 0xec, 0xed, 0xee, 0xef,
  271.   0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
  272.   0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff
  273. };
  274.  
  275.  
  276. // Some helper functions used in ctype<>::scan_is and scan_is_not.
  277.  
  278. struct _Ctype_is_mask {
  279.   typedef char argument_type;
  280.   typedef bool result_type;
  281.   
  282.   ctype_base::mask _Mask;
  283.   const ctype_base::mask* _M_table;
  284.   
  285.   _Ctype_is_mask(ctype_base::mask __m, const ctype_base::mask* __t) : _Mask(__m), _M_table(__t) {}
  286.   bool operator()(char __c) const { return (_M_table[(unsigned char) __c] & _Mask) != 0; }
  287. };
  288.  
  289. struct _Ctype_not_mask {
  290.   typedef char argument_type;
  291.   typedef bool result_type;
  292.   
  293.   ctype_base::mask _Mask;
  294.   const ctype_base::mask* _M_table;
  295.   
  296.   _Ctype_not_mask(ctype_base::mask __m, const ctype_base::mask* __t) : _Mask(__m), _M_table(__t) {}
  297.   bool operator()(char __c) const { return (_M_table[(unsigned char) __c] & _Mask) == 0; }
  298. };
  299.  
  300. ctype<char>::ctype(const ctype_base::mask * __tab, bool __del, size_t __refs) : 
  301.   _BaseFacet(__refs) /* , _M_ctype_table(0) */ {
  302.   _M_ctype_table = __tab ? __tab : classic_table();
  303.   _M_delete = __tab && __del;
  304. }
  305.  
  306. ctype<char>::~ctype() {
  307.   if (_M_delete)
  308.     delete[] __CONST_CAST(ctype_base::mask *, _M_ctype_table);
  309. }
  310.  
  311. const char*
  312. ctype<char>::scan_is(ctype_base::mask  __m, const char* __low, const char* __high) const  {
  313.   return _STLP_STD::find_if(__low, __high, _Ctype_is_mask(__m, _M_ctype_table));
  314. }
  315.  
  316. const char* 
  317. ctype<char>::scan_not(ctype_base::mask  __m, const char* __low, const char* __high) const {
  318.   return _STLP_STD::find_if(__low, __high, _Ctype_not_mask(__m, _M_ctype_table));
  319. }
  320.  
  321. char        
  322. ctype<char>::do_toupper(char __c) const
  323. { return (char) _S_upper[(unsigned char) __c]; }
  324. char        
  325. ctype<char>::do_tolower(char __c) const
  326. { return (char) _S_lower[(unsigned char) __c]; }
  327. const char* 
  328. ctype<char>::do_toupper(char* __low, const char* __high) const {
  329.   for ( ; __low < __high; ++__low)
  330.     *__low = (char) _S_upper[(unsigned char) *__low];
  331.   return __high;
  332. }
  333.   
  334. const char* 
  335. ctype<char>::do_tolower(char* __low, const char* __high) const {
  336.   for ( ; __low < __high; ++__low)
  337.     *__low = (char) _S_lower[(unsigned char) *__low];
  338.   return __high;
  339. }
  340.  
  341. char        
  342. ctype<char>::do_widen(char __c) const { return __c; }
  343.  
  344. const char* 
  345. ctype<char>::do_widen(const char* __low, const char* __high,
  346.                       char* __to) const {
  347.   __copy_trivial(__low, __high, __to);
  348.   return __high;    
  349. }
  350. char
  351. ctype<char>::do_narrow(char __c, char /* dfault */ ) const { return __c; }
  352. const char* 
  353. ctype<char>::do_narrow(const char* __low, const char* __high,
  354.                        char /* dfault */, char* __to) const {
  355.   __copy_trivial(__low, __high, __to);
  356.   return __high; 
  357. }
  358.  
  359.  
  360. # ifndef _STLP_NO_WCHAR_T
  361.  
  362.   struct _Ctype_w_is_mask {
  363.     typedef wchar_t argument_type;
  364.     typedef bool    result_type;
  365.  
  366.     ctype_base::mask M;
  367.     const ctype_base::mask* table;
  368.     
  369.     _Ctype_w_is_mask(ctype_base::mask m, const ctype_base::mask* t)
  370.       : M(m), table(t) {}
  371.     bool operator()(wchar_t c) const
  372.       { return c >= 0 && size_t(c) < ctype<char>::table_size && (table[c] & M); }
  373.   };
  374.  
  375.  
  376. //----------------------------------------------------------------------
  377. // ctype<wchar_t>
  378.  
  379. ctype<wchar_t>::~ctype() {}
  380.  
  381.  
  382. bool ctype<wchar_t>::do_is(ctype_base::mask  m, wchar_t c) const
  383. {
  384.   const ctype_base::mask * table = ctype<char>::classic_table();
  385.   return c >= 0 && size_t(c) < ctype<char>::table_size && (m & table[c]);
  386. }
  387.  
  388. const wchar_t* ctype<wchar_t>::do_is(const wchar_t* low, const wchar_t* high,
  389.                                      ctype_base::mask * vec) const
  390. {
  391.   // boris : not clear if this is the right thing to do...
  392.   const ctype_base::mask * table = ctype<char>::classic_table();
  393.   for ( ; low < high; ++low, ++vec) {
  394.     wchar_t c = *low;
  395.     *vec = c >= 0 && size_t(c) < ctype<char>::table_size ? table[c] : ctype_base::mask (0);
  396.   }
  397.   return high;
  398. }
  399.  
  400. const wchar_t*
  401. ctype<wchar_t>::do_scan_is(ctype_base::mask  m,
  402.                            const wchar_t* low, const wchar_t* high) const
  403. {
  404.   return find_if(low, high, _Ctype_w_is_mask(m, ctype<char>::classic_table()));
  405. }
  406.  
  407.  
  408. const wchar_t*
  409. ctype<wchar_t>::do_scan_not(ctype_base::mask  m,
  410.                             const wchar_t* low, const wchar_t* high) const
  411. {
  412.     return find_if(low, high, not1(_Ctype_w_is_mask(m, ctype<char>::classic_table())));
  413. }
  414.  
  415. wchar_t ctype<wchar_t>::do_toupper(wchar_t c) const
  416. {
  417.   return c >= 0 && size_t(c) < ctype<char>::table_size
  418.     ? (wchar_t) ctype<char>::_S_upper[c]
  419.     : c;
  420. }
  421.  
  422. const wchar_t* 
  423. ctype<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const
  424. {
  425.   for ( ; low < high; ++low) {
  426.     wchar_t c = *low;
  427.     *low = c >= 0 && size_t(c) < ctype<char>::table_size
  428.       ? (wchar_t) ctype<char>::_S_upper[c]
  429.       : c;
  430.   }
  431.   return high;
  432. }
  433.  
  434. wchar_t ctype<wchar_t>::do_tolower(wchar_t c) const
  435. {
  436.   return c >= 0 && size_t(c) < ctype<char>::table_size
  437.     ? (wchar_t) ctype<char>::_S_lower[c]
  438.     : c;
  439. }
  440.  
  441. const wchar_t* 
  442. ctype<wchar_t>::do_tolower(wchar_t* low, const wchar_t* high) const
  443. {
  444.   for ( ; low < high; ++low) {
  445.     wchar_t c = *low;
  446.     *low = c >= 0 && size_t(c) < ctype<char>::table_size
  447.       ? (wchar_t) ctype<char>::_S_lower[c]
  448.       : c;
  449.   }
  450.   return high;
  451. }
  452.  
  453. wchar_t ctype<wchar_t>::do_widen(char c) const 
  454. {
  455.   return (wchar_t) c;
  456. }
  457.  
  458. const char* 
  459. ctype<wchar_t>::do_widen(const char* low, const char* high,
  460.                          wchar_t* dest) const
  461. {
  462.   while (low != high)
  463.     *dest++ = (wchar_t) *low++;
  464.   return high;
  465. }
  466.  
  467. char ctype<wchar_t>::do_narrow(wchar_t c, char dfault) const 
  468. {
  469.   return (char) c == c ? c : dfault;
  470. }
  471.  
  472. const wchar_t* ctype<wchar_t>::do_narrow(const wchar_t* low,
  473.                                          const wchar_t* high,
  474.                                          char dfault, char* dest) const
  475. {
  476.   while (low != high) {
  477.     wchar_t c = *low++;
  478.     *dest++ = (char) c == c ? c : dfault;
  479.   }
  480.  
  481.   return high;
  482. }
  483.  
  484. # endif
  485. _STLP_END_NAMESPACE
  486.  
  487. // Local Variables:
  488. // mode:C++
  489. // End:
  490.  
  491.