Gallery: replace paper-input of rename field with HTMLInputElement.
[chromium-blink-merge.git] / base / strings / string_util.h
blob3ec74a5207f49e4bdac5d3283ad3764e0a62709d
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // This file defines utility functions for working with strings.
7 #ifndef BASE_STRINGS_STRING_UTIL_H_
8 #define BASE_STRINGS_STRING_UTIL_H_
10 #include <ctype.h>
11 #include <stdarg.h> // va_list
13 #include <string>
14 #include <vector>
16 #include "base/base_export.h"
17 #include "base/basictypes.h"
18 #include "base/compiler_specific.h"
19 #include "base/strings/string16.h"
20 #include "base/strings/string_piece.h" // For implicit conversions.
22 namespace base {
24 // C standard-library functions that aren't cross-platform are provided as
25 // "base::...", and their prototypes are listed below. These functions are
26 // then implemented as inline calls to the platform-specific equivalents in the
27 // platform-specific headers.
29 // Wrapper for vsnprintf that always null-terminates and always returns the
30 // number of characters that would be in an untruncated formatted
31 // string, even when truncation occurs.
32 int vsnprintf(char* buffer, size_t size, const char* format, va_list arguments)
33 PRINTF_FORMAT(3, 0);
35 // Some of these implementations need to be inlined.
37 // We separate the declaration from the implementation of this inline
38 // function just so the PRINTF_FORMAT works.
39 inline int snprintf(char* buffer, size_t size, const char* format, ...)
40 PRINTF_FORMAT(3, 4);
41 inline int snprintf(char* buffer, size_t size, const char* format, ...) {
42 va_list arguments;
43 va_start(arguments, format);
44 int result = vsnprintf(buffer, size, format, arguments);
45 va_end(arguments);
46 return result;
49 // TODO(mark) http://crbug.com/472900 crashpad shouldn't use base while
50 // being DEPSed in. This backwards-compat hack is provided until crashpad is
51 // updated.
52 #if defined(OS_WIN)
53 inline int strcasecmp(const char* s1, const char* s2) {
54 return _stricmp(s1, s2);
56 #else // Posix
57 inline int strcasecmp(const char* string1, const char* string2) {
58 return ::strcasecmp(string1, string2);
60 #endif
62 // BSD-style safe and consistent string copy functions.
63 // Copies |src| to |dst|, where |dst_size| is the total allocated size of |dst|.
64 // Copies at most |dst_size|-1 characters, and always NULL terminates |dst|, as
65 // long as |dst_size| is not 0. Returns the length of |src| in characters.
66 // If the return value is >= dst_size, then the output was truncated.
67 // NOTE: All sizes are in number of characters, NOT in bytes.
68 BASE_EXPORT size_t strlcpy(char* dst, const char* src, size_t dst_size);
69 BASE_EXPORT size_t wcslcpy(wchar_t* dst, const wchar_t* src, size_t dst_size);
71 // Scan a wprintf format string to determine whether it's portable across a
72 // variety of systems. This function only checks that the conversion
73 // specifiers used by the format string are supported and have the same meaning
74 // on a variety of systems. It doesn't check for other errors that might occur
75 // within a format string.
77 // Nonportable conversion specifiers for wprintf are:
78 // - 's' and 'c' without an 'l' length modifier. %s and %c operate on char
79 // data on all systems except Windows, which treat them as wchar_t data.
80 // Use %ls and %lc for wchar_t data instead.
81 // - 'S' and 'C', which operate on wchar_t data on all systems except Windows,
82 // which treat them as char data. Use %ls and %lc for wchar_t data
83 // instead.
84 // - 'F', which is not identified by Windows wprintf documentation.
85 // - 'D', 'O', and 'U', which are deprecated and not available on all systems.
86 // Use %ld, %lo, and %lu instead.
88 // Note that there is no portable conversion specifier for char data when
89 // working with wprintf.
91 // This function is intended to be called from base::vswprintf.
92 BASE_EXPORT bool IsWprintfFormatPortable(const wchar_t* format);
94 // ASCII-specific tolower. The standard library's tolower is locale sensitive,
95 // so we don't want to use it here.
96 inline char ToLowerASCII(char c) {
97 return (c >= 'A' && c <= 'Z') ? (c + ('a' - 'A')) : c;
99 inline char16 ToLowerASCII(char16 c) {
100 return (c >= 'A' && c <= 'Z') ? (c + ('a' - 'A')) : c;
103 // ASCII-specific toupper. The standard library's toupper is locale sensitive,
104 // so we don't want to use it here.
105 inline char ToUpperASCII(char c) {
106 return (c >= 'a' && c <= 'z') ? (c + ('A' - 'a')) : c;
108 inline char16 ToUpperASCII(char16 c) {
109 return (c >= 'a' && c <= 'z') ? (c + ('A' - 'a')) : c;
112 // Converts the given string to it's ASCII-lowercase equivalent.
113 BASE_EXPORT std::string ToLowerASCII(StringPiece str);
114 BASE_EXPORT string16 ToLowerASCII(StringPiece16 str);
116 // Converts the given string to it's ASCII-uppercase equivalent.
117 BASE_EXPORT std::string ToUpperASCII(StringPiece str);
118 BASE_EXPORT string16 ToUpperASCII(StringPiece16 str);
120 // Functor for case-insensitive ASCII comparisons for STL algorithms like
121 // std::search.
123 // Note that a full Unicode version of this functor is not possible to write
124 // because case mappings might change the number of characters, depend on
125 // context (combining accents), and require handling UTF-16. If you need
126 // proper Unicode support, use base::i18n::ToLower/FoldCase and then just
127 // use a normal operator== on the result.
128 template<typename Char> struct CaseInsensitiveCompareASCII {
129 public:
130 bool operator()(Char x, Char y) const {
131 return ToLowerASCII(x) == ToLowerASCII(y);
135 // Like strcasecmp for case-insensitive ASCII characters only. Returns:
136 // -1 (a < b)
137 // 0 (a == b)
138 // 1 (a > b)
139 // (unlike strcasecmp which can return values greater or less than 1/-1). For
140 // full Unicode support, use base::i18n::ToLower or base::i18h::FoldCase
141 // and then just call the normal string operators on the result.
142 BASE_EXPORT int CompareCaseInsensitiveASCII(StringPiece a, StringPiece b);
143 BASE_EXPORT int CompareCaseInsensitiveASCII(StringPiece16 a, StringPiece16 b);
145 // Equality for ASCII case-insensitive comparisons. For full Unicode support,
146 // use base::i18n::ToLower or base::i18h::FoldCase and then compare with either
147 // == or !=.
148 BASE_EXPORT bool EqualsCaseInsensitiveASCII(StringPiece a, StringPiece b);
149 BASE_EXPORT bool EqualsCaseInsensitiveASCII(StringPiece16 a, StringPiece16 b);
151 // These threadsafe functions return references to globally unique empty
152 // strings.
154 // It is likely faster to construct a new empty string object (just a few
155 // instructions to set the length to 0) than to get the empty string singleton
156 // returned by these functions (which requires threadsafe singleton access).
158 // Therefore, DO NOT USE THESE AS A GENERAL-PURPOSE SUBSTITUTE FOR DEFAULT
159 // CONSTRUCTORS. There is only one case where you should use these: functions
160 // which need to return a string by reference (e.g. as a class member
161 // accessor), and don't have an empty string to use (e.g. in an error case).
162 // These should not be used as initializers, function arguments, or return
163 // values for functions which return by value or outparam.
164 BASE_EXPORT const std::string& EmptyString();
165 BASE_EXPORT const string16& EmptyString16();
167 // Contains the set of characters representing whitespace in the corresponding
168 // encoding. Null-terminated. The ASCII versions are the whitespaces as defined
169 // by HTML5, and don't include control characters.
170 BASE_EXPORT extern const wchar_t kWhitespaceWide[]; // Includes Unicode.
171 BASE_EXPORT extern const char16 kWhitespaceUTF16[]; // Includes Unicode.
172 BASE_EXPORT extern const char kWhitespaceASCII[];
173 BASE_EXPORT extern const char16 kWhitespaceASCIIAs16[]; // No unicode.
175 // Null-terminated string representing the UTF-8 byte order mark.
176 BASE_EXPORT extern const char kUtf8ByteOrderMark[];
178 // Removes characters in |remove_chars| from anywhere in |input|. Returns true
179 // if any characters were removed. |remove_chars| must be null-terminated.
180 // NOTE: Safe to use the same variable for both |input| and |output|.
181 BASE_EXPORT bool RemoveChars(const string16& input,
182 const StringPiece16& remove_chars,
183 string16* output);
184 BASE_EXPORT bool RemoveChars(const std::string& input,
185 const StringPiece& remove_chars,
186 std::string* output);
188 // Replaces characters in |replace_chars| from anywhere in |input| with
189 // |replace_with|. Each character in |replace_chars| will be replaced with
190 // the |replace_with| string. Returns true if any characters were replaced.
191 // |replace_chars| must be null-terminated.
192 // NOTE: Safe to use the same variable for both |input| and |output|.
193 BASE_EXPORT bool ReplaceChars(const string16& input,
194 const StringPiece16& replace_chars,
195 const string16& replace_with,
196 string16* output);
197 BASE_EXPORT bool ReplaceChars(const std::string& input,
198 const StringPiece& replace_chars,
199 const std::string& replace_with,
200 std::string* output);
202 enum TrimPositions {
203 TRIM_NONE = 0,
204 TRIM_LEADING = 1 << 0,
205 TRIM_TRAILING = 1 << 1,
206 TRIM_ALL = TRIM_LEADING | TRIM_TRAILING,
209 // Removes characters in |trim_chars| from the beginning and end of |input|.
210 // The 8-bit version only works on 8-bit characters, not UTF-8.
212 // It is safe to use the same variable for both |input| and |output| (this is
213 // the normal usage to trim in-place).
214 BASE_EXPORT bool TrimString(const string16& input,
215 StringPiece16 trim_chars,
216 string16* output);
217 BASE_EXPORT bool TrimString(const std::string& input,
218 StringPiece trim_chars,
219 std::string* output);
221 // StringPiece versions of the above. The returned pieces refer to the original
222 // buffer.
223 BASE_EXPORT StringPiece16 TrimString(StringPiece16 input,
224 const StringPiece16& trim_chars,
225 TrimPositions positions);
226 BASE_EXPORT StringPiece TrimString(StringPiece input,
227 const StringPiece& trim_chars,
228 TrimPositions positions);
230 // Truncates a string to the nearest UTF-8 character that will leave
231 // the string less than or equal to the specified byte size.
232 BASE_EXPORT void TruncateUTF8ToByteSize(const std::string& input,
233 const size_t byte_size,
234 std::string* output);
236 // Trims any whitespace from either end of the input string.
238 // The StringPiece versions return a substring referencing the input buffer.
239 // The ASCII versions look only for ASCII whitespace.
241 // The std::string versions return where whitespace was found.
242 // NOTE: Safe to use the same variable for both input and output.
243 BASE_EXPORT TrimPositions TrimWhitespace(const string16& input,
244 TrimPositions positions,
245 string16* output);
246 BASE_EXPORT StringPiece16 TrimWhitespace(StringPiece16 input,
247 TrimPositions positions);
248 BASE_EXPORT TrimPositions TrimWhitespaceASCII(const std::string& input,
249 TrimPositions positions,
250 std::string* output);
251 BASE_EXPORT StringPiece TrimWhitespaceASCII(StringPiece input,
252 TrimPositions positions);
254 // Deprecated. This function is only for backward compatibility and calls
255 // TrimWhitespaceASCII().
256 BASE_EXPORT TrimPositions TrimWhitespace(const std::string& input,
257 TrimPositions positions,
258 std::string* output);
260 // Searches for CR or LF characters. Removes all contiguous whitespace
261 // strings that contain them. This is useful when trying to deal with text
262 // copied from terminals.
263 // Returns |text|, with the following three transformations:
264 // (1) Leading and trailing whitespace is trimmed.
265 // (2) If |trim_sequences_with_line_breaks| is true, any other whitespace
266 // sequences containing a CR or LF are trimmed.
267 // (3) All other whitespace sequences are converted to single spaces.
268 BASE_EXPORT string16 CollapseWhitespace(
269 const string16& text,
270 bool trim_sequences_with_line_breaks);
271 BASE_EXPORT std::string CollapseWhitespaceASCII(
272 const std::string& text,
273 bool trim_sequences_with_line_breaks);
275 // Returns true if |input| is empty or contains only characters found in
276 // |characters|.
277 BASE_EXPORT bool ContainsOnlyChars(const StringPiece& input,
278 const StringPiece& characters);
279 BASE_EXPORT bool ContainsOnlyChars(const StringPiece16& input,
280 const StringPiece16& characters);
282 // Returns true if the specified string matches the criteria. How can a wide
283 // string be 8-bit or UTF8? It contains only characters that are < 256 (in the
284 // first case) or characters that use only 8-bits and whose 8-bit
285 // representation looks like a UTF-8 string (the second case).
287 // Note that IsStringUTF8 checks not only if the input is structurally
288 // valid but also if it doesn't contain any non-character codepoint
289 // (e.g. U+FFFE). It's done on purpose because all the existing callers want
290 // to have the maximum 'discriminating' power from other encodings. If
291 // there's a use case for just checking the structural validity, we have to
292 // add a new function for that.
294 // IsStringASCII assumes the input is likely all ASCII, and does not leave early
295 // if it is not the case.
296 BASE_EXPORT bool IsStringUTF8(const StringPiece& str);
297 BASE_EXPORT bool IsStringASCII(const StringPiece& str);
298 BASE_EXPORT bool IsStringASCII(const StringPiece16& str);
299 // A convenience adaptor for WebStrings, as they don't convert into
300 // StringPieces directly.
301 BASE_EXPORT bool IsStringASCII(const string16& str);
302 #if defined(WCHAR_T_IS_UTF32)
303 BASE_EXPORT bool IsStringASCII(const std::wstring& str);
304 #endif
306 // Converts the elements of the given string. This version uses a pointer to
307 // clearly differentiate it from the non-pointer variant.
308 // TODO(brettw) remove this. Callers should use base::ToLowerASCII above.
309 template <class str> inline void StringToLowerASCII(str* s) {
310 for (typename str::iterator i = s->begin(); i != s->end(); ++i)
311 *i = ToLowerASCII(*i);
314 // TODO(brettw) remove this. Callers should use base::ToLowerASCII above.
315 template <class str> inline str StringToLowerASCII(const str& s) {
316 // for std::string and std::wstring
317 str output(s);
318 StringToLowerASCII(&output);
319 return output;
322 // Compare the lower-case form of the given string against the given
323 // previously-lower-cased ASCII string (typically a constant).
324 BASE_EXPORT bool LowerCaseEqualsASCII(StringPiece str,
325 StringPiece lowecase_ascii);
326 BASE_EXPORT bool LowerCaseEqualsASCII(StringPiece16 str,
327 StringPiece lowecase_ascii);
329 // Performs a case-sensitive string compare of the given 16-bit string against
330 // the given 8-bit ASCII string (typically a constant). The behavior is
331 // undefined if the |ascii| string is not ASCII.
332 BASE_EXPORT bool EqualsASCII(StringPiece16 str, StringPiece ascii);
334 // Indicates case sensitivity of comparisons. Only ASCII case insensitivity
335 // is supported. Full Unicode case-insensitive conversions would need to go in
336 // base/i18n so it can use ICU.
338 // If you need to do Unicode-aware case-insensitive StartsWith/EndsWith, it's
339 // best to call base::i18n::ToLower() or base::i18n::FoldCase() (see
340 // base/i18n/case_conversion.h for usage advice) on the arguments, and then use
341 // the results to a case-sensitive comparison.
342 enum class CompareCase {
343 SENSITIVE,
344 INSENSITIVE_ASCII,
347 BASE_EXPORT bool StartsWith(StringPiece str,
348 StringPiece search_for,
349 CompareCase case_sensitivity);
350 BASE_EXPORT bool StartsWith(StringPiece16 str,
351 StringPiece16 search_for,
352 CompareCase case_sensitivity);
353 BASE_EXPORT bool EndsWith(StringPiece str,
354 StringPiece search_for,
355 CompareCase case_sensitivity);
356 BASE_EXPORT bool EndsWith(StringPiece16 str,
357 StringPiece16 search_for,
358 CompareCase case_sensitivity);
360 // Determines the type of ASCII character, independent of locale (the C
361 // library versions will change based on locale).
362 template <typename Char>
363 inline bool IsAsciiWhitespace(Char c) {
364 return c == ' ' || c == '\r' || c == '\n' || c == '\t';
366 template <typename Char>
367 inline bool IsAsciiAlpha(Char c) {
368 return ((c >= 'A') && (c <= 'Z')) || ((c >= 'a') && (c <= 'z'));
370 template <typename Char>
371 inline bool IsAsciiDigit(Char c) {
372 return c >= '0' && c <= '9';
375 template <typename Char>
376 inline bool IsHexDigit(Char c) {
377 return (c >= '0' && c <= '9') ||
378 (c >= 'A' && c <= 'F') ||
379 (c >= 'a' && c <= 'f');
382 // Returns the integer corresponding to the given hex character. For example:
383 // '4' -> 4
384 // 'a' -> 10
385 // 'B' -> 11
386 // Assumes the input is a valid hex character. DCHECKs in debug builds if not.
387 BASE_EXPORT char HexDigitToInt(wchar_t c);
389 // Returns true if it's a Unicode whitespace character.
390 inline bool IsUnicodeWhitespace(wchar_t c) {
391 return wcschr(base::kWhitespaceWide, c) != NULL;
394 // Return a byte string in human-readable format with a unit suffix. Not
395 // appropriate for use in any UI; use of FormatBytes and friends in ui/base is
396 // highly recommended instead. TODO(avi): Figure out how to get callers to use
397 // FormatBytes instead; remove this.
398 BASE_EXPORT string16 FormatBytesUnlocalized(int64 bytes);
400 // Starting at |start_offset| (usually 0), replace the first instance of
401 // |find_this| with |replace_with|.
402 BASE_EXPORT void ReplaceFirstSubstringAfterOffset(
403 base::string16* str,
404 size_t start_offset,
405 StringPiece16 find_this,
406 StringPiece16 replace_with);
407 BASE_EXPORT void ReplaceFirstSubstringAfterOffset(
408 std::string* str,
409 size_t start_offset,
410 StringPiece find_this,
411 StringPiece replace_with);
413 // Starting at |start_offset| (usually 0), look through |str| and replace all
414 // instances of |find_this| with |replace_with|.
416 // This does entire substrings; use std::replace in <algorithm> for single
417 // characters, for example:
418 // std::replace(str.begin(), str.end(), 'a', 'b');
419 BASE_EXPORT void ReplaceSubstringsAfterOffset(
420 string16* str,
421 size_t start_offset,
422 StringPiece16 find_this,
423 StringPiece16 replace_with);
424 BASE_EXPORT void ReplaceSubstringsAfterOffset(
425 std::string* str,
426 size_t start_offset,
427 StringPiece find_this,
428 StringPiece replace_with);
430 // Reserves enough memory in |str| to accommodate |length_with_null| characters,
431 // sets the size of |str| to |length_with_null - 1| characters, and returns a
432 // pointer to the underlying contiguous array of characters. This is typically
433 // used when calling a function that writes results into a character array, but
434 // the caller wants the data to be managed by a string-like object. It is
435 // convenient in that is can be used inline in the call, and fast in that it
436 // avoids copying the results of the call from a char* into a string.
438 // |length_with_null| must be at least 2, since otherwise the underlying string
439 // would have size 0, and trying to access &((*str)[0]) in that case can result
440 // in a number of problems.
442 // Internally, this takes linear time because the resize() call 0-fills the
443 // underlying array for potentially all
444 // (|length_with_null - 1| * sizeof(string_type::value_type)) bytes. Ideally we
445 // could avoid this aspect of the resize() call, as we expect the caller to
446 // immediately write over this memory, but there is no other way to set the size
447 // of the string, and not doing that will mean people who access |str| rather
448 // than str.c_str() will get back a string of whatever size |str| had on entry
449 // to this function (probably 0).
450 BASE_EXPORT char* WriteInto(std::string* str, size_t length_with_null);
451 BASE_EXPORT char16* WriteInto(string16* str, size_t length_with_null);
452 #ifndef OS_WIN
453 BASE_EXPORT wchar_t* WriteInto(std::wstring* str, size_t length_with_null);
454 #endif
456 // Does the opposite of SplitString().
457 BASE_EXPORT std::string JoinString(const std::vector<std::string>& parts,
458 StringPiece separator);
459 BASE_EXPORT string16 JoinString(const std::vector<string16>& parts,
460 StringPiece16 separator);
462 // Replace $1-$2-$3..$9 in the format string with |a|-|b|-|c|..|i| respectively.
463 // Additionally, any number of consecutive '$' characters is replaced by that
464 // number less one. Eg $$->$, $$$->$$, etc. The offsets parameter here can be
465 // NULL. This only allows you to use up to nine replacements.
466 BASE_EXPORT string16 ReplaceStringPlaceholders(
467 const string16& format_string,
468 const std::vector<string16>& subst,
469 std::vector<size_t>* offsets);
471 BASE_EXPORT std::string ReplaceStringPlaceholders(
472 const StringPiece& format_string,
473 const std::vector<std::string>& subst,
474 std::vector<size_t>* offsets);
476 // Single-string shortcut for ReplaceStringHolders. |offset| may be NULL.
477 BASE_EXPORT string16 ReplaceStringPlaceholders(const string16& format_string,
478 const string16& a,
479 size_t* offset);
481 } // namespace base
483 #if defined(OS_WIN)
484 #include "base/strings/string_util_win.h"
485 #elif defined(OS_POSIX)
486 #include "base/strings/string_util_posix.h"
487 #else
488 #error Define string operations appropriately for your platform
489 #endif
491 #endif // BASE_STRINGS_STRING_UTIL_H_