ascii.cc 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. // Copyright 2017 The Abseil Authors.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // https://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include "absl/strings/ascii.h"
  15. namespace absl {
  16. ABSL_NAMESPACE_BEGIN
  17. namespace ascii_internal {
  18. // # Table generated by this Python code (bit 0x02 is currently unused):
  19. // TODO(mbar) Move Python code for generation of table to BUILD and link here.
  20. // NOTE: The kAsciiPropertyBits table used within this code was generated by
  21. // Python code of the following form. (Bit 0x02 is currently unused and
  22. // available.)
  23. //
  24. // def Hex2(n):
  25. // return '0x' + hex(n/16)[2:] + hex(n%16)[2:]
  26. // def IsPunct(ch):
  27. // return (ord(ch) >= 32 and ord(ch) < 127 and
  28. // not ch.isspace() and not ch.isalnum())
  29. // def IsBlank(ch):
  30. // return ch in ' \t'
  31. // def IsCntrl(ch):
  32. // return ord(ch) < 32 or ord(ch) == 127
  33. // def IsXDigit(ch):
  34. // return ch.isdigit() or ch.lower() in 'abcdef'
  35. // for i in range(128):
  36. // ch = chr(i)
  37. // mask = ((ch.isalpha() and 0x01 or 0) |
  38. // (ch.isalnum() and 0x04 or 0) |
  39. // (ch.isspace() and 0x08 or 0) |
  40. // (IsPunct(ch) and 0x10 or 0) |
  41. // (IsBlank(ch) and 0x20 or 0) |
  42. // (IsCntrl(ch) and 0x40 or 0) |
  43. // (IsXDigit(ch) and 0x80 or 0))
  44. // print Hex2(mask) + ',',
  45. // if i % 16 == 7:
  46. // print ' //', Hex2(i & 0x78)
  47. // elif i % 16 == 15:
  48. // print
  49. // clang-format off
  50. // Array of bitfields holding character information. Each bit value corresponds
  51. // to a particular character feature. For readability, and because the value
  52. // of these bits is tightly coupled to this implementation, the individual bits
  53. // are not named. Note that bitfields for all characters above ASCII 127 are
  54. // zero-initialized.
  55. ABSL_DLL const unsigned char kPropertyBits[256] = {
  56. 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, // 0x00
  57. 0x40, 0x68, 0x48, 0x48, 0x48, 0x48, 0x40, 0x40,
  58. 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, // 0x10
  59. 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
  60. 0x28, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, // 0x20
  61. 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
  62. 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, 0x84, // 0x30
  63. 0x84, 0x84, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10,
  64. 0x10, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x05, // 0x40
  65. 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
  66. 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, // 0x50
  67. 0x05, 0x05, 0x05, 0x10, 0x10, 0x10, 0x10, 0x10,
  68. 0x10, 0x85, 0x85, 0x85, 0x85, 0x85, 0x85, 0x05, // 0x60
  69. 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
  70. 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, // 0x70
  71. 0x05, 0x05, 0x05, 0x10, 0x10, 0x10, 0x10, 0x40,
  72. };
  73. // Array of characters for the ascii_tolower() function. For values 'A'
  74. // through 'Z', return the lower-case character; otherwise, return the
  75. // identity of the passed character.
  76. ABSL_DLL const char kToLower[256] = {
  77. '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
  78. '\x08', '\x09', '\x0a', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f',
  79. '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17',
  80. '\x18', '\x19', '\x1a', '\x1b', '\x1c', '\x1d', '\x1e', '\x1f',
  81. '\x20', '\x21', '\x22', '\x23', '\x24', '\x25', '\x26', '\x27',
  82. '\x28', '\x29', '\x2a', '\x2b', '\x2c', '\x2d', '\x2e', '\x2f',
  83. '\x30', '\x31', '\x32', '\x33', '\x34', '\x35', '\x36', '\x37',
  84. '\x38', '\x39', '\x3a', '\x3b', '\x3c', '\x3d', '\x3e', '\x3f',
  85. '\x40', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
  86. 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
  87. 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
  88. 'x', 'y', 'z', '\x5b', '\x5c', '\x5d', '\x5e', '\x5f',
  89. '\x60', '\x61', '\x62', '\x63', '\x64', '\x65', '\x66', '\x67',
  90. '\x68', '\x69', '\x6a', '\x6b', '\x6c', '\x6d', '\x6e', '\x6f',
  91. '\x70', '\x71', '\x72', '\x73', '\x74', '\x75', '\x76', '\x77',
  92. '\x78', '\x79', '\x7a', '\x7b', '\x7c', '\x7d', '\x7e', '\x7f',
  93. '\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
  94. '\x88', '\x89', '\x8a', '\x8b', '\x8c', '\x8d', '\x8e', '\x8f',
  95. '\x90', '\x91', '\x92', '\x93', '\x94', '\x95', '\x96', '\x97',
  96. '\x98', '\x99', '\x9a', '\x9b', '\x9c', '\x9d', '\x9e', '\x9f',
  97. '\xa0', '\xa1', '\xa2', '\xa3', '\xa4', '\xa5', '\xa6', '\xa7',
  98. '\xa8', '\xa9', '\xaa', '\xab', '\xac', '\xad', '\xae', '\xaf',
  99. '\xb0', '\xb1', '\xb2', '\xb3', '\xb4', '\xb5', '\xb6', '\xb7',
  100. '\xb8', '\xb9', '\xba', '\xbb', '\xbc', '\xbd', '\xbe', '\xbf',
  101. '\xc0', '\xc1', '\xc2', '\xc3', '\xc4', '\xc5', '\xc6', '\xc7',
  102. '\xc8', '\xc9', '\xca', '\xcb', '\xcc', '\xcd', '\xce', '\xcf',
  103. '\xd0', '\xd1', '\xd2', '\xd3', '\xd4', '\xd5', '\xd6', '\xd7',
  104. '\xd8', '\xd9', '\xda', '\xdb', '\xdc', '\xdd', '\xde', '\xdf',
  105. '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7',
  106. '\xe8', '\xe9', '\xea', '\xeb', '\xec', '\xed', '\xee', '\xef',
  107. '\xf0', '\xf1', '\xf2', '\xf3', '\xf4', '\xf5', '\xf6', '\xf7',
  108. '\xf8', '\xf9', '\xfa', '\xfb', '\xfc', '\xfd', '\xfe', '\xff',
  109. };
  110. // Array of characters for the ascii_toupper() function. For values 'a'
  111. // through 'z', return the upper-case character; otherwise, return the
  112. // identity of the passed character.
  113. ABSL_DLL const char kToUpper[256] = {
  114. '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07',
  115. '\x08', '\x09', '\x0a', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f',
  116. '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17',
  117. '\x18', '\x19', '\x1a', '\x1b', '\x1c', '\x1d', '\x1e', '\x1f',
  118. '\x20', '\x21', '\x22', '\x23', '\x24', '\x25', '\x26', '\x27',
  119. '\x28', '\x29', '\x2a', '\x2b', '\x2c', '\x2d', '\x2e', '\x2f',
  120. '\x30', '\x31', '\x32', '\x33', '\x34', '\x35', '\x36', '\x37',
  121. '\x38', '\x39', '\x3a', '\x3b', '\x3c', '\x3d', '\x3e', '\x3f',
  122. '\x40', '\x41', '\x42', '\x43', '\x44', '\x45', '\x46', '\x47',
  123. '\x48', '\x49', '\x4a', '\x4b', '\x4c', '\x4d', '\x4e', '\x4f',
  124. '\x50', '\x51', '\x52', '\x53', '\x54', '\x55', '\x56', '\x57',
  125. '\x58', '\x59', '\x5a', '\x5b', '\x5c', '\x5d', '\x5e', '\x5f',
  126. '\x60', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
  127. 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
  128. 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
  129. 'X', 'Y', 'Z', '\x7b', '\x7c', '\x7d', '\x7e', '\x7f',
  130. '\x80', '\x81', '\x82', '\x83', '\x84', '\x85', '\x86', '\x87',
  131. '\x88', '\x89', '\x8a', '\x8b', '\x8c', '\x8d', '\x8e', '\x8f',
  132. '\x90', '\x91', '\x92', '\x93', '\x94', '\x95', '\x96', '\x97',
  133. '\x98', '\x99', '\x9a', '\x9b', '\x9c', '\x9d', '\x9e', '\x9f',
  134. '\xa0', '\xa1', '\xa2', '\xa3', '\xa4', '\xa5', '\xa6', '\xa7',
  135. '\xa8', '\xa9', '\xaa', '\xab', '\xac', '\xad', '\xae', '\xaf',
  136. '\xb0', '\xb1', '\xb2', '\xb3', '\xb4', '\xb5', '\xb6', '\xb7',
  137. '\xb8', '\xb9', '\xba', '\xbb', '\xbc', '\xbd', '\xbe', '\xbf',
  138. '\xc0', '\xc1', '\xc2', '\xc3', '\xc4', '\xc5', '\xc6', '\xc7',
  139. '\xc8', '\xc9', '\xca', '\xcb', '\xcc', '\xcd', '\xce', '\xcf',
  140. '\xd0', '\xd1', '\xd2', '\xd3', '\xd4', '\xd5', '\xd6', '\xd7',
  141. '\xd8', '\xd9', '\xda', '\xdb', '\xdc', '\xdd', '\xde', '\xdf',
  142. '\xe0', '\xe1', '\xe2', '\xe3', '\xe4', '\xe5', '\xe6', '\xe7',
  143. '\xe8', '\xe9', '\xea', '\xeb', '\xec', '\xed', '\xee', '\xef',
  144. '\xf0', '\xf1', '\xf2', '\xf3', '\xf4', '\xf5', '\xf6', '\xf7',
  145. '\xf8', '\xf9', '\xfa', '\xfb', '\xfc', '\xfd', '\xfe', '\xff',
  146. };
  147. // clang-format on
  148. } // namespace ascii_internal
  149. void AsciiStrToLower(std::string* s) {
  150. for (auto& ch : *s) {
  151. ch = absl::ascii_tolower(static_cast<unsigned char>(ch));
  152. }
  153. }
  154. void AsciiStrToUpper(std::string* s) {
  155. for (auto& ch : *s) {
  156. ch = absl::ascii_toupper(static_cast<unsigned char>(ch));
  157. }
  158. }
  159. void RemoveExtraAsciiWhitespace(std::string* str) {
  160. auto stripped = StripAsciiWhitespace(*str);
  161. if (stripped.empty()) {
  162. str->clear();
  163. return;
  164. }
  165. auto input_it = stripped.begin();
  166. auto input_end = stripped.end();
  167. auto output_it = &(*str)[0];
  168. bool is_ws = false;
  169. for (; input_it < input_end; ++input_it) {
  170. if (is_ws) {
  171. // Consecutive whitespace? Keep only the last.
  172. is_ws = absl::ascii_isspace(static_cast<unsigned char>(*input_it));
  173. if (is_ws) --output_it;
  174. } else {
  175. is_ws = absl::ascii_isspace(static_cast<unsigned char>(*input_it));
  176. }
  177. *output_it = *input_it;
  178. ++output_it;
  179. }
  180. str->erase(static_cast<size_t>(output_it - &(*str)[0]));
  181. }
  182. ABSL_NAMESPACE_END
  183. } // namespace absl