1 // Copyright 2005, Google Inc.
2 // All rights reserved.
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 // Authors: wan@google.com (Zhanyong Wan), eefacm@gmail.com (Sean Mcafee)
32 // The Google C++ Testing Framework (Google Test)
34 // This header file declares the String class and functions used internally by
35 // Google Test. They are subject to change without notice. They should not used
36 // by code external to Google Test.
38 // This header file is #included by <gtest/internal/gtest-internal.h>.
39 // It should not be #included by other files.
41 #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
42 #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
45 // string.h is not guaranteed to provide strcpy on C++ Builder.
52 #include "gtest/internal/gtest-port.h"
57 // String - an abstract class holding static string utilities.
58 class GTEST_API_ String
{
60 // Static utility methods
62 // Clones a 0-terminated C string, allocating memory using new. The
63 // caller is responsible for deleting the return value using
64 // delete[]. Returns the cloned string, or NULL if the input is
67 // This is different from strdup() in string.h, which allocates
68 // memory using malloc().
69 static const char* CloneCString(const char* c_str
);
71 #if GTEST_OS_WINDOWS_MOBILE
72 // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be
73 // able to pass strings to Win32 APIs on CE we need to convert them
74 // to 'Unicode', UTF-16.
76 // Creates a UTF-16 wide string from the given ANSI string, allocating
77 // memory using new. The caller is responsible for deleting the return
78 // value using delete[]. Returns the wide string, or NULL if the
81 // The wide string is created using the ANSI codepage (CP_ACP) to
82 // match the behaviour of the ANSI versions of Win32 calls and the
84 static LPCWSTR
AnsiToUtf16(const char* c_str
);
86 // Creates an ANSI string from the given wide string, allocating
87 // memory using new. The caller is responsible for deleting the return
88 // value using delete[]. Returns the ANSI string, or NULL if the
91 // The returned string is created using the ANSI codepage (CP_ACP) to
92 // match the behaviour of the ANSI versions of Win32 calls and the
94 static const char* Utf16ToAnsi(LPCWSTR utf16_str
);
97 // Compares two C strings. Returns true iff they have the same content.
99 // Unlike strcmp(), this function can handle NULL argument(s). A
100 // NULL C string is considered different to any non-NULL C string,
101 // including the empty string.
102 static bool CStringEquals(const char* lhs
, const char* rhs
);
104 // Converts a wide C string to a String using the UTF-8 encoding.
105 // NULL will be converted to "(null)". If an error occurred during
106 // the conversion, "(failed to convert from wide string)" is
108 static std::string
ShowWideCString(const wchar_t* wide_c_str
);
110 // Compares two wide C strings. Returns true iff they have the same
113 // Unlike wcscmp(), this function can handle NULL argument(s). A
114 // NULL C string is considered different to any non-NULL C string,
115 // including the empty string.
116 static bool WideCStringEquals(const wchar_t* lhs
, const wchar_t* rhs
);
118 // Compares two C strings, ignoring case. Returns true iff they
119 // have the same content.
121 // Unlike strcasecmp(), this function can handle NULL argument(s).
122 // A NULL C string is considered different to any non-NULL C string,
123 // including the empty string.
124 static bool CaseInsensitiveCStringEquals(const char* lhs
,
127 // Compares two wide C strings, ignoring case. Returns true iff they
128 // have the same content.
130 // Unlike wcscasecmp(), this function can handle NULL argument(s).
131 // A NULL C string is considered different to any non-NULL wide C string,
132 // including the empty string.
133 // NB: The implementations on different platforms slightly differ.
134 // On windows, this method uses _wcsicmp which compares according to LC_CTYPE
135 // environment variable. On GNU platform this method uses wcscasecmp
136 // which compares according to LC_CTYPE category of the current locale.
137 // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the
139 static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs
,
142 // Returns true iff the given string ends with the given suffix, ignoring
143 // case. Any string is considered to end with an empty suffix.
144 static bool EndsWithCaseInsensitive(
145 const std::string
& str
, const std::string
& suffix
);
147 // Formats an int value as "%02d".
148 static std::string
FormatIntWidth2(int value
); // "%02d" for width == 2
150 // Formats an int value as "%X".
151 static std::string
FormatHexInt(int value
);
153 // Formats a byte as "%02X".
154 static std::string
FormatByte(unsigned char value
);
157 String(); // Not meant to be instantiated.
160 // Gets the content of the stringstream's buffer as an std::string. Each '\0'
161 // character in the buffer is replaced with "\\0".
162 GTEST_API_
std::string
StringStreamToString(::std::stringstream
* stream
);
164 } // namespace internal
165 } // namespace testing
167 #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_