Bug 1690340 - Part 4: Insert the "Page Source" before the "Extensions for Developers...
[gecko.git] / xpcom / base / nsCRTGlue.h
blobf3334eefab67608ff974979f2bfb1e09819058fc
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsCRTGlue_h__
8 #define nsCRTGlue_h__
10 #include "nscore.h"
12 /**
13 * Scan a string for the first character that is *not* in a set of
14 * delimiters. If the string is only delimiter characters, the end of the
15 * string is returned.
17 * @param aDelims The set of delimiters (null-terminated)
18 * @param aStr The string to search (null-terminated)
20 const char* NS_strspnp(const char* aDelims, const char* aStr);
22 /**
23 * Tokenize a string. This function is similar to the strtok function in the
24 * C standard library, but it does not use static variables to maintain state
25 * and is therefore thread and reentrancy-safe.
27 * Any leading delimiters in str are skipped. Then the string is scanned
28 * until an additional delimiter or end-of-string is found. The final
29 * delimiter is set to '\0'.
31 * @param aDelims The set of delimiters.
32 * @param aStr The string to search. This is an in-out parameter; it is
33 * reset to the end of the found token + 1, or to the
34 * end-of-string if there are no more tokens.
35 * @return The token. If no token is found (the string is only
36 * delimiter characters), nullptr is returned.
38 char* NS_strtok(const char* aDelims, char** aStr);
40 /**
41 * "strlen" for char16_t strings
43 uint32_t NS_strlen(const char16_t* aString);
45 /**
46 * "strcmp" for char16_t strings
48 int NS_strcmp(const char16_t* aStrA, const char16_t* aStrB);
50 /**
51 * "strncmp" for char16_t strings
53 int NS_strncmp(const char16_t* aStrA, const char16_t* aStrB, size_t aLen);
55 /**
56 * "strdup" for char16_t strings, uses the infallible moz_xmalloc allocator.
58 char16_t* NS_xstrdup(const char16_t* aString);
60 /**
61 * "strdup", but using the infallible moz_xmalloc allocator.
63 char* NS_xstrdup(const char* aString);
65 /**
66 * strndup for char16_t or char strings (normal strndup is not available on
67 * windows). This function will ensure that the new string is
68 * null-terminated. Uses the infallible moz_xmalloc allocator.
70 * CharT may be either char16_t or char.
72 template <typename CharT>
73 CharT* NS_xstrndup(const CharT* aString, uint32_t aLen);
75 // The following case-conversion methods only deal in the ascii repertoire
76 // A-Z and a-z
78 // semi-private data declarations... don't use these directly.
79 class nsLowerUpperUtils {
80 public:
81 static const unsigned char kLower2Upper[256];
82 static const unsigned char kUpper2Lower[256];
85 inline char NS_ToUpper(char aChar) {
86 return (char)nsLowerUpperUtils::kLower2Upper[(unsigned char)aChar];
89 inline char NS_ToLower(char aChar) {
90 return (char)nsLowerUpperUtils::kUpper2Lower[(unsigned char)aChar];
93 bool NS_IsUpper(char aChar);
94 bool NS_IsLower(char aChar);
96 constexpr bool NS_IsAscii(const char* aString) {
97 while (*aString) {
98 if (0x80 & *aString) {
99 return false;
101 aString++;
103 return true;
106 constexpr bool NS_IsAscii(const char* aString, uint32_t aLength) {
107 const char* end = aString + aLength;
108 while (aString < end) {
109 if (0x80 & *aString) {
110 return false;
112 aString++;
114 return true;
117 constexpr bool NS_IsAsciiWhitespace(char16_t aChar) {
118 return aChar == ' ' || aChar == '\r' || aChar == '\n' || aChar == '\t';
121 #ifndef XPCOM_GLUE_AVOID_NSPR
122 void NS_MakeRandomString(char* aBuf, int32_t aBufLen);
123 #endif
125 #define FF '\f'
126 #define TAB '\t'
128 #define CRSTR "\015"
129 #define LFSTR "\012"
130 #define CRLF "\015\012" /* A CR LF equivalent string */
132 // We use the most restrictive filesystem as our default set of illegal filename
133 // characters. This is currently Windows.
134 #define OS_FILE_ILLEGAL_CHARACTERS "/:*?\"<>|"
135 // We also provide a list of all known file path separators for all filesystems.
136 // This can be used in replacement of FILE_PATH_SEPARATOR when you need to
137 // identify or replace all known path separators.
138 #define KNOWN_PATH_SEPARATORS "\\/"
140 #if defined(XP_MACOSX)
141 # define FILE_PATH_SEPARATOR "/"
142 #elif defined(XP_WIN)
143 # define FILE_PATH_SEPARATOR "\\"
144 #elif defined(XP_UNIX)
145 # define FILE_PATH_SEPARATOR "/"
146 #else
147 # error need_to_define_your_file_path_separator_and_maybe_illegal_characters
148 #endif
150 // Not all these control characters are illegal in all OSs, but we don't really
151 // want them appearing in filenames
152 #define CONTROL_CHARACTERS \
153 "\001\002\003\004\005\006\007" \
154 "\010\011\012\013\014\015\016\017" \
155 "\020\021\022\023\024\025\026\027" \
156 "\030\031\032\033\034\035\036\037"
158 #define FILE_ILLEGAL_CHARACTERS CONTROL_CHARACTERS OS_FILE_ILLEGAL_CHARACTERS
160 #endif // nsCRTGlue_h__