Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

133 lines
4.8 KiB

  1. /* utf8.h
  2. *
  3. * Copyright (c) 1998-2001, Larry Wall
  4. *
  5. * You may distribute under the terms of either the GNU General Public
  6. * License or the Artistic License, as specified in the README file.
  7. *
  8. */
  9. START_EXTERN_C
  10. #ifdef DOINIT
  11. EXTCONST unsigned char PL_utf8skip[] = {
  12. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
  13. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
  14. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
  15. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* ascii */
  16. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* bogus */
  17. 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* bogus */
  18. 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, /* scripts */
  19. 3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,6,6, /* cjk etc. */
  20. 7,13, /* Perl extended (not UTF-8). Up to 72bit allowed (64-bit + reserved). */
  21. };
  22. #else
  23. EXTCONST unsigned char PL_utf8skip[];
  24. #endif
  25. END_EXTERN_C
  26. #define UTF8_MAXLEN 13 /* how wide can a single UTF8 encoded character become */
  27. /* #define IN_UTF8 (PL_curcop->op_private & HINT_UTF8) */
  28. #define IN_BYTE (PL_curcop->op_private & HINT_BYTE)
  29. #define DO_UTF8(sv) (SvUTF8(sv) && !IN_BYTE)
  30. #define UTF8_ALLOW_EMPTY 0x0001
  31. #define UTF8_ALLOW_CONTINUATION 0x0002
  32. #define UTF8_ALLOW_NON_CONTINUATION 0x0004
  33. #define UTF8_ALLOW_FE_FF 0x0008
  34. #define UTF8_ALLOW_SHORT 0x0010
  35. #define UTF8_ALLOW_SURROGATE 0x0020
  36. #define UTF8_ALLOW_BOM 0x0040
  37. #define UTF8_ALLOW_FFFF 0x0080
  38. #define UTF8_ALLOW_LONG 0x0100
  39. #define UTF8_ALLOW_ANYUV (UTF8_ALLOW_EMPTY|UTF8_ALLOW_FE_FF|\
  40. UTF8_ALLOW_SURROGATE|UTF8_ALLOW_BOM|\
  41. UTF8_ALLOW_FFFF|UTF8_ALLOW_LONG)
  42. #define UTF8_ALLOW_ANY 0x00ff
  43. #define UTF8_CHECK_ONLY 0x0100
  44. #define UNICODE_SURROGATE_FIRST 0xd800
  45. #define UNICODE_SURROGATE_LAST 0xdfff
  46. #define UNICODE_REPLACEMENT 0xfffd
  47. #define UNICODE_BYTER_ORDER_MARK 0xfffe
  48. #define UNICODE_ILLEGAL 0xffff
  49. #define UNICODE_IS_SURROGATE(c) ((c) >= UNICODE_SURROGATE_FIRST && \
  50. (c) <= UNICODE_SURROGATE_LAST)
  51. #define UNICODE_IS_REPLACEMENT(c) ((c) == UNICODE_REPLACMENT)
  52. #define UNICODE_IS_BYTE_ORDER_MARK(c) ((c) == UNICODE_BYTER_ORDER_MARK)
  53. #define UNICODE_IS_ILLEGAL(c) ((c) == UNICODE_ILLEGAL)
  54. #define UTF8SKIP(s) PL_utf8skip[*(U8*)s]
  55. #define UTF8_QUAD_MAX UINT64_C(0x1000000000)
  56. /*
  57. The following table is from Unicode 3.1.
  58. Code Points 1st Byte 2nd Byte 3rd Byte 4th Byte
  59. U+0000..U+007F 00..7F
  60. U+0080..U+07FF C2..DF 80..BF
  61. U+0800..U+0FFF E0 A0..BF 80..BF
  62. U+1000..U+FFFF E1..EF 80..BF 80..BF
  63. U+10000..U+3FFFF F0 90..BF 80..BF 80..BF
  64. U+40000..U+FFFFF F1..F3 80..BF 80..BF 80..BF
  65. U+100000..U+10FFFF F4 80..8F 80..BF 80..BF
  66. */
  67. #define UTF8_IS_ASCII(c) (((U8)c) < 0x80)
  68. #define UTF8_IS_START(c) (((U8)c) >= 0xc0 && (((U8)c) <= 0xfd))
  69. #define UTF8_IS_CONTINUATION(c) (((U8)c) >= 0x80 && (((U8)c) <= 0xbf))
  70. #define UTF8_IS_CONTINUED(c) (((U8)c) & 0x80)
  71. #define UTF8_IS_DOWNGRADEABLE_START(c) (((U8)c & 0xfc) != 0xc0)
  72. #define UTF8_CONTINUATION_MASK ((U8)0x3f)
  73. #define UTF8_ACCUMULATION_SHIFT 6
  74. #define UTF8_ACCUMULATE(old, new) (((old) << UTF8_ACCUMULATION_SHIFT) | (((U8)new) & UTF8_CONTINUATION_MASK))
  75. #define UTF8_EIGHT_BIT_HI(c) ( (((U8)(c))>>6) |0xc0)
  76. #define UTF8_EIGHT_BIT_LO(c) (((((U8)(c)) )&0x3f)|0x80)
  77. #ifdef HAS_QUAD
  78. #define UNISKIP(uv) ( (uv) < 0x80 ? 1 : \
  79. (uv) < 0x800 ? 2 : \
  80. (uv) < 0x10000 ? 3 : \
  81. (uv) < 0x200000 ? 4 : \
  82. (uv) < 0x4000000 ? 5 : \
  83. (uv) < 0x80000000 ? 6 : \
  84. (uv) < UTF8_QUAD_MAX ? 7 : 13 )
  85. #else
  86. /* No, I'm not even going to *TRY* putting #ifdef inside a #define */
  87. #define UNISKIP(uv) ( (uv) < 0x80 ? 1 : \
  88. (uv) < 0x800 ? 2 : \
  89. (uv) < 0x10000 ? 3 : \
  90. (uv) < 0x200000 ? 4 : \
  91. (uv) < 0x4000000 ? 5 : \
  92. (uv) < 0x80000000 ? 6 : 7 )
  93. #endif
  94. /*
  95. * Note: we try to be careful never to call the isXXX_utf8() functions
  96. * unless we're pretty sure we've seen the beginning of a UTF-8 character
  97. * (that is, the two high bits are set). Otherwise we risk loading in the
  98. * heavy-duty SWASHINIT and SWASHGET routines unnecessarily.
  99. */
  100. #ifdef EBCDIC
  101. #define isIDFIRST_lazy_if(p,c) isIDFIRST(*(p))
  102. #define isALNUM_lazy_if(p,c) isALNUM(*(p))
  103. #else
  104. #define isIDFIRST_lazy_if(p,c) ((IN_BYTE || (!c || (*((U8*)p) < 0xc0))) \
  105. ? isIDFIRST(*(p)) \
  106. : isIDFIRST_utf8((U8*)p))
  107. #define isALNUM_lazy_if(p,c) ((IN_BYTE || (!c || (*((U8*)p) < 0xc0))) \
  108. ? isALNUM(*(p)) \
  109. : isALNUM_utf8((U8*)p))
  110. #endif
  111. #define isIDFIRST_lazy(p) isIDFIRST_lazy_if(p,1)
  112. #define isALNUM_lazy(p) isALNUM_lazy_if(p,1)