Coverage Report

Created: 2024-07-27 06:32

/src/abseil-cpp/absl/strings/ascii.h
Line
Count
Source (jump to first uncovered line)
1
//
2
// Copyright 2017 The Abseil Authors.
3
//
4
// Licensed under the Apache License, Version 2.0 (the "License");
5
// you may not use this file except in compliance with the License.
6
// You may obtain a copy of the License at
7
//
8
//      https://www.apache.org/licenses/LICENSE-2.0
9
//
10
// Unless required by applicable law or agreed to in writing, software
11
// distributed under the License is distributed on an "AS IS" BASIS,
12
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
// See the License for the specific language governing permissions and
14
// limitations under the License.
15
//
16
// -----------------------------------------------------------------------------
17
// File: ascii.h
18
// -----------------------------------------------------------------------------
19
//
20
// This package contains functions operating on characters and strings
21
// restricted to standard ASCII. These include character classification
22
// functions analogous to those found in the ANSI C Standard Library <ctype.h>
23
// header file.
24
//
25
// C++ implementations provide <ctype.h> functionality based on their
26
// C environment locale. In general, reliance on such a locale is not ideal, as
27
// the locale standard is problematic (and may not return invariant information
28
// for the same character set, for example). These `ascii_*()` functions are
29
// hard-wired for standard ASCII, much faster, and guaranteed to behave
30
// consistently.  They will never be overloaded, nor will their function
31
// signature change.
32
//
33
// `ascii_isalnum()`, `ascii_isalpha()`, `ascii_isascii()`, `ascii_isblank()`,
34
// `ascii_iscntrl()`, `ascii_isdigit()`, `ascii_isgraph()`, `ascii_islower()`,
35
// `ascii_isprint()`, `ascii_ispunct()`, `ascii_isspace()`, `ascii_isupper()`,
36
// `ascii_isxdigit()`
37
//   Analogous to the <ctype.h> functions with similar names, these
38
//   functions take an unsigned char and return a bool, based on whether the
39
//   character matches the condition specified.
40
//
41
//   If the input character has a numerical value greater than 127, these
42
//   functions return `false`.
43
//
44
// `ascii_tolower()`, `ascii_toupper()`
45
//   Analogous to the <ctype.h> functions with similar names, these functions
46
//   take an unsigned char and return a char.
47
//
48
//   If the input character is not an ASCII {lower,upper}-case letter (including
49
//   numerical values greater than 127) then the functions return the same value
50
//   as the input character.
51
52
#ifndef ABSL_STRINGS_ASCII_H_
53
#define ABSL_STRINGS_ASCII_H_
54
55
#include <algorithm>
56
#include <cstddef>
57
#include <string>
58
59
#include "absl/base/attributes.h"
60
#include "absl/base/config.h"
61
#include "absl/base/nullability.h"
62
#include "absl/strings/internal/resize_uninitialized.h"
63
#include "absl/strings/string_view.h"
64
65
namespace absl {
66
ABSL_NAMESPACE_BEGIN
67
namespace ascii_internal {
68
69
// Declaration for an array of bitfields holding character information.
70
ABSL_DLL extern const unsigned char kPropertyBits[256];
71
72
// Declaration for the array of characters to upper-case characters.
73
ABSL_DLL extern const char kToUpper[256];
74
75
// Declaration for the array of characters to lower-case characters.
76
ABSL_DLL extern const char kToLower[256];
77
78
void AsciiStrToLower(absl::Nonnull<char*> dst, absl::Nonnull<const char*> src,
79
                     size_t n);
80
81
void AsciiStrToUpper(absl::Nonnull<char*> dst, absl::Nonnull<const char*> src,
82
                     size_t n);
83
84
}  // namespace ascii_internal
85
86
// ascii_isalpha()
87
//
88
// Determines whether the given character is an alphabetic character.
89
0
inline bool ascii_isalpha(unsigned char c) {
90
0
  return (ascii_internal::kPropertyBits[c] & 0x01) != 0;
91
0
}
92
93
// ascii_isalnum()
94
//
95
// Determines whether the given character is an alphanumeric character.
96
0
inline bool ascii_isalnum(unsigned char c) {
97
0
  return (ascii_internal::kPropertyBits[c] & 0x04) != 0;
98
0
}
99
100
// ascii_isspace()
101
//
102
// Determines whether the given character is a whitespace character (space,
103
// tab, vertical tab, formfeed, linefeed, or carriage return).
104
54.1M
inline bool ascii_isspace(unsigned char c) {
105
54.1M
  return (ascii_internal::kPropertyBits[c] & 0x08) != 0;
106
54.1M
}
107
108
// ascii_ispunct()
109
//
110
// Determines whether the given character is a punctuation character.
111
0
inline bool ascii_ispunct(unsigned char c) {
112
0
  return (ascii_internal::kPropertyBits[c] & 0x10) != 0;
113
0
}
114
115
// ascii_isblank()
116
//
117
// Determines whether the given character is a blank character (tab or space).
118
0
inline bool ascii_isblank(unsigned char c) {
119
0
  return (ascii_internal::kPropertyBits[c] & 0x20) != 0;
120
0
}
121
122
// ascii_iscntrl()
123
//
124
// Determines whether the given character is a control character.
125
0
inline bool ascii_iscntrl(unsigned char c) {
126
0
  return (ascii_internal::kPropertyBits[c] & 0x40) != 0;
127
0
}
128
129
// ascii_isxdigit()
130
//
131
// Determines whether the given character can be represented as a hexadecimal
132
// digit character (i.e. {0-9} or {A-F}).
133
0
inline bool ascii_isxdigit(unsigned char c) {
134
0
  return (ascii_internal::kPropertyBits[c] & 0x80) != 0;
135
0
}
136
137
// ascii_isdigit()
138
//
139
// Determines whether the given character can be represented as a decimal
140
// digit character (i.e. {0-9}).
141
0
inline bool ascii_isdigit(unsigned char c) { return c >= '0' && c <= '9'; }
142
143
// ascii_isprint()
144
//
145
// Determines whether the given character is printable, including spaces.
146
0
inline bool ascii_isprint(unsigned char c) { return c >= 32 && c < 127; }
147
148
// ascii_isgraph()
149
//
150
// Determines whether the given character has a graphical representation.
151
0
inline bool ascii_isgraph(unsigned char c) { return c > 32 && c < 127; }
152
153
// ascii_isupper()
154
//
155
// Determines whether the given character is uppercase.
156
0
inline bool ascii_isupper(unsigned char c) { return c >= 'A' && c <= 'Z'; }
157
158
// ascii_islower()
159
//
160
// Determines whether the given character is lowercase.
161
0
inline bool ascii_islower(unsigned char c) { return c >= 'a' && c <= 'z'; }
162
163
// ascii_isascii()
164
//
165
// Determines whether the given character is ASCII.
166
0
inline bool ascii_isascii(unsigned char c) { return c < 128; }
167
168
// ascii_tolower()
169
//
170
// Returns an ASCII character, converting to lowercase if uppercase is
171
// passed. Note that character values > 127 are simply returned.
172
0
inline char ascii_tolower(unsigned char c) {
173
0
  return ascii_internal::kToLower[c];
174
0
}
175
176
// Converts the characters in `s` to lowercase, changing the contents of `s`.
177
void AsciiStrToLower(absl::Nonnull<std::string*> s);
178
179
// Creates a lowercase string from a given absl::string_view.
180
0
ABSL_MUST_USE_RESULT inline std::string AsciiStrToLower(absl::string_view s) {
181
0
  std::string result;
182
0
  strings_internal::STLStringResizeUninitialized(&result, s.size());
183
0
  ascii_internal::AsciiStrToLower(&result[0], s.data(), s.size());
184
0
  return result;
185
0
}
186
187
// ascii_toupper()
188
//
189
// Returns the ASCII character, converting to upper-case if lower-case is
190
// passed. Note that characters values > 127 are simply returned.
191
0
inline char ascii_toupper(unsigned char c) {
192
0
  return ascii_internal::kToUpper[c];
193
0
}
194
195
// Converts the characters in `s` to uppercase, changing the contents of `s`.
196
void AsciiStrToUpper(absl::Nonnull<std::string*> s);
197
198
// Creates an uppercase string from a given absl::string_view.
199
0
ABSL_MUST_USE_RESULT inline std::string AsciiStrToUpper(absl::string_view s) {
200
0
  std::string result;
201
0
  strings_internal::STLStringResizeUninitialized(&result, s.size());
202
0
  ascii_internal::AsciiStrToUpper(&result[0], s.data(), s.size());
203
0
  return result;
204
0
}
205
206
// Returns absl::string_view with whitespace stripped from the beginning of the
207
// given string_view.
208
ABSL_MUST_USE_RESULT inline absl::string_view StripLeadingAsciiWhitespace(
209
27.2M
    absl::string_view str) {
210
27.2M
  auto it = std::find_if_not(str.begin(), str.end(), absl::ascii_isspace);
211
27.2M
  return str.substr(static_cast<size_t>(it - str.begin()));
212
27.2M
}
213
214
// Strips in place whitespace from the beginning of the given string.
215
0
inline void StripLeadingAsciiWhitespace(absl::Nonnull<std::string*> str) {
216
0
  auto it = std::find_if_not(str->begin(), str->end(), absl::ascii_isspace);
217
0
  str->erase(str->begin(), it);
218
0
}
219
220
// Returns absl::string_view with whitespace stripped from the end of the given
221
// string_view.
222
ABSL_MUST_USE_RESULT inline absl::string_view StripTrailingAsciiWhitespace(
223
27.2M
    absl::string_view str) {
224
27.2M
  auto it = std::find_if_not(str.rbegin(), str.rend(), absl::ascii_isspace);
225
27.2M
  return str.substr(0, static_cast<size_t>(str.rend() - it));
226
27.2M
}
227
228
// Strips in place whitespace from the end of the given string
229
0
inline void StripTrailingAsciiWhitespace(absl::Nonnull<std::string*> str) {
230
0
  auto it = std::find_if_not(str->rbegin(), str->rend(), absl::ascii_isspace);
231
0
  str->erase(static_cast<size_t>(str->rend() - it));
232
0
}
233
234
// Returns absl::string_view with whitespace stripped from both ends of the
235
// given string_view.
236
ABSL_MUST_USE_RESULT inline absl::string_view StripAsciiWhitespace(
237
27.2M
    absl::string_view str) {
238
27.2M
  return StripTrailingAsciiWhitespace(StripLeadingAsciiWhitespace(str));
239
27.2M
}
240
241
// Strips in place whitespace from both ends of the given string
242
0
inline void StripAsciiWhitespace(absl::Nonnull<std::string*> str) {
243
0
  StripTrailingAsciiWhitespace(str);
244
0
  StripLeadingAsciiWhitespace(str);
245
0
}
246
247
// Removes leading, trailing, and consecutive internal whitespace.
248
void RemoveExtraAsciiWhitespace(absl::Nonnull<std::string*> str);
249
250
ABSL_NAMESPACE_END
251
}  // namespace absl
252
253
#endif  // ABSL_STRINGS_ASCII_H_