utf32_le.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /**********************************************************************
  2. utf32_le.c - Oniguruma (regular expression library)
  3. **********************************************************************/
  4. /*-
  5. * Copyright (c) 2002-2007 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. */
  29. #include "regenc.h"
  30. static int
  31. utf32le_mbc_enc_len(const UChar* p ARG_UNUSED)
  32. {
  33. return 4;
  34. }
  35. static int
  36. utf32le_is_mbc_newline(const UChar* p, const UChar* end)
  37. {
  38. if (p + 3 < end) {
  39. if (*p == 0x0a && *(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0)
  40. return 1;
  41. #ifdef USE_UNICODE_ALL_LINE_TERMINATORS
  42. if ((
  43. #ifndef USE_CRNL_AS_LINE_TERMINATOR
  44. *p == 0x0d ||
  45. #endif
  46. *p == 0x85)
  47. && *(p+1) == 0x00 && (p+2) == 0x00 && *(p+3) == 0x00)
  48. return 1;
  49. if (*(p+1) == 0x20 && (*p == 0x29 || *p == 0x28)
  50. && *(p+2) == 0x00 && *(p+3) == 0x00)
  51. return 1;
  52. #endif
  53. }
  54. return 0;
  55. }
  56. static OnigCodePoint
  57. utf32le_mbc_to_code(const UChar* p, const UChar* end ARG_UNUSED)
  58. {
  59. if (end - p < 4) return 0;
  60. return (OnigCodePoint )(((p[3] * 256 + p[2]) * 256 + p[1]) * 256 + p[0]);
  61. }
  62. static int
  63. utf32le_code_to_mbclen(OnigCodePoint code ARG_UNUSED)
  64. {
  65. return 4;
  66. }
  67. static int
  68. utf32le_code_to_mbc(OnigCodePoint code, UChar *buf)
  69. {
  70. UChar* p = buf;
  71. *p++ = (UChar ) (code & 0xff);
  72. *p++ = (UChar )((code & 0xff00) >> 8);
  73. *p++ = (UChar )((code & 0xff0000) >>16);
  74. *p++ = (UChar )((code & 0xff000000) >>24);
  75. return 4;
  76. }
  77. static int
  78. utf32le_mbc_case_fold(OnigCaseFoldType flag,
  79. const UChar** pp, const UChar* end, UChar* fold)
  80. {
  81. const UChar* p = *pp;
  82. if (ONIGENC_IS_ASCII_CODE(*p) && *(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) {
  83. #ifdef USE_UNICODE_CASE_FOLD_TURKISH_AZERI
  84. if ((flag & ONIGENC_CASE_FOLD_TURKISH_AZERI) != 0) {
  85. if (*p == 0x49) {
  86. *fold++ = 0x31;
  87. *fold++ = 0x01;
  88. }
  89. }
  90. else {
  91. #endif
  92. *fold++ = ONIGENC_ASCII_CODE_TO_LOWER_CASE(*p);
  93. *fold++ = 0;
  94. #ifdef USE_UNICODE_CASE_FOLD_TURKISH_AZERI
  95. }
  96. #endif
  97. *fold++ = 0;
  98. *fold = 0;
  99. *pp += 4;
  100. return 4;
  101. }
  102. else
  103. return onigenc_unicode_mbc_case_fold(ONIG_ENCODING_UTF32_LE, flag, pp, end,
  104. fold);
  105. }
  106. #if 0
  107. static int
  108. utf32le_is_mbc_ambiguous(OnigCaseFoldType flag, const UChar** pp, const UChar* end)
  109. {
  110. const UChar* p = *pp;
  111. (*pp) += 4;
  112. if (*(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) {
  113. int c, v;
  114. if (*p == 0xdf && (flag & INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR) != 0) {
  115. return TRUE;
  116. }
  117. c = *p;
  118. v = ONIGENC_IS_UNICODE_ISO_8859_1_BIT_CTYPE(c,
  119. (BIT_CTYPE_UPPER | BIT_CTYPE_LOWER));
  120. if ((v | BIT_CTYPE_LOWER) != 0) {
  121. /* 0xaa, 0xb5, 0xba are lower case letter, but can't convert. */
  122. if (c >= 0xaa && c <= 0xba)
  123. return FALSE;
  124. else
  125. return TRUE;
  126. }
  127. return (v != 0 ? TRUE : FALSE);
  128. }
  129. return FALSE;
  130. }
  131. #endif
  132. static UChar*
  133. utf32le_left_adjust_char_head(const UChar* start, const UChar* s)
  134. {
  135. int rem;
  136. if (s <= start) return (UChar* )s;
  137. rem = (s - start) % 4;
  138. return (UChar* )(s - rem);
  139. }
  140. static int
  141. utf32le_get_case_fold_codes_by_str(OnigCaseFoldType flag,
  142. const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[])
  143. {
  144. return onigenc_unicode_get_case_fold_codes_by_str(ONIG_ENCODING_UTF32_LE,
  145. flag, p, end, items);
  146. }
  147. OnigEncodingType OnigEncodingUTF32_LE = {
  148. utf32le_mbc_enc_len,
  149. "UTF-32LE", /* name */
  150. 4, /* max byte length */
  151. 4, /* min byte length */
  152. utf32le_is_mbc_newline,
  153. utf32le_mbc_to_code,
  154. utf32le_code_to_mbclen,
  155. utf32le_code_to_mbc,
  156. utf32le_mbc_case_fold,
  157. onigenc_unicode_apply_all_case_fold,
  158. utf32le_get_case_fold_codes_by_str,
  159. onigenc_unicode_property_name_to_ctype,
  160. onigenc_unicode_is_code_ctype,
  161. onigenc_utf16_32_get_ctype_code_range,
  162. utf32le_left_adjust_char_head,
  163. onigenc_always_false_is_allowed_reverse_match
  164. };