gtest-string.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. // Copyright 2005, Google Inc.
  2. // All rights reserved.
  3. //
  4. // Redistribution and use in source and binary forms, with or without
  5. // modification, are permitted provided that the following conditions are
  6. // met:
  7. //
  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
  13. // distribution.
  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.
  17. //
  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.
  29. //
  30. // The Google C++ Testing and Mocking Framework (Google Test)
  31. //
  32. // This header file declares the String class and functions used internally by
  33. // Google Test. They are subject to change without notice. They should not used
  34. // by code external to Google Test.
  35. //
  36. // This header file is #included by gtest-internal.h.
  37. // It should not be #included by other files.
  38. // GOOGLETEST_CM0001 DO NOT DELETE
  39. #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
  40. #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_
  41. #ifdef __BORLANDC__
  42. // string.h is not guaranteed to provide strcpy on C++ Builder.
  43. # include <mem.h>
  44. #endif
  45. #include <string.h>
  46. #include <string>
  47. #include "gtest/internal/gtest-port.h"
  48. namespace testing {
  49. namespace internal {
  50. // String - an abstract class holding static string utilities.
  51. class GTEST_API_ String {
  52. public:
  53. // Static utility methods
  54. // Clones a 0-terminated C string, allocating memory using new. The
  55. // caller is responsible for deleting the return value using
  56. // delete[]. Returns the cloned string, or NULL if the input is
  57. // NULL.
  58. //
  59. // This is different from strdup() in string.h, which allocates
  60. // memory using malloc().
  61. static const char* CloneCString(const char* c_str);
  62. #if GTEST_OS_WINDOWS_MOBILE
  63. // Windows CE does not have the 'ANSI' versions of Win32 APIs. To be
  64. // able to pass strings to Win32 APIs on CE we need to convert them
  65. // to 'Unicode', UTF-16.
  66. // Creates a UTF-16 wide string from the given ANSI string, allocating
  67. // memory using new. The caller is responsible for deleting the return
  68. // value using delete[]. Returns the wide string, or NULL if the
  69. // input is NULL.
  70. //
  71. // The wide string is created using the ANSI codepage (CP_ACP) to
  72. // match the behaviour of the ANSI versions of Win32 calls and the
  73. // C runtime.
  74. static LPCWSTR AnsiToUtf16(const char* c_str);
  75. // Creates an ANSI string from the given wide string, allocating
  76. // memory using new. The caller is responsible for deleting the return
  77. // value using delete[]. Returns the ANSI string, or NULL if the
  78. // input is NULL.
  79. //
  80. // The returned string is created using the ANSI codepage (CP_ACP) to
  81. // match the behaviour of the ANSI versions of Win32 calls and the
  82. // C runtime.
  83. static const char* Utf16ToAnsi(LPCWSTR utf16_str);
  84. #endif
  85. // Compares two C strings. Returns true iff they have the same content.
  86. //
  87. // Unlike strcmp(), this function can handle NULL argument(s). A
  88. // NULL C string is considered different to any non-NULL C string,
  89. // including the empty string.
  90. static bool CStringEquals(const char* lhs, const char* rhs);
  91. // Converts a wide C string to a String using the UTF-8 encoding.
  92. // NULL will be converted to "(null)". If an error occurred during
  93. // the conversion, "(failed to convert from wide string)" is
  94. // returned.
  95. static std::string ShowWideCString(const wchar_t* wide_c_str);
  96. // Compares two wide C strings. Returns true iff they have the same
  97. // content.
  98. //
  99. // Unlike wcscmp(), 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 WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
  103. // Compares two C strings, ignoring case. Returns true iff they
  104. // have the same content.
  105. //
  106. // Unlike strcasecmp(), this function can handle NULL argument(s).
  107. // A NULL C string is considered different to any non-NULL C string,
  108. // including the empty string.
  109. static bool CaseInsensitiveCStringEquals(const char* lhs,
  110. const char* rhs);
  111. // Compares two wide C strings, ignoring case. Returns true iff they
  112. // have the same content.
  113. //
  114. // Unlike wcscasecmp(), this function can handle NULL argument(s).
  115. // A NULL C string is considered different to any non-NULL wide C string,
  116. // including the empty string.
  117. // NB: The implementations on different platforms slightly differ.
  118. // On windows, this method uses _wcsicmp which compares according to LC_CTYPE
  119. // environment variable. On GNU platform this method uses wcscasecmp
  120. // which compares according to LC_CTYPE category of the current locale.
  121. // On MacOS X, it uses towlower, which also uses LC_CTYPE category of the
  122. // current locale.
  123. static bool CaseInsensitiveWideCStringEquals(const wchar_t* lhs,
  124. const wchar_t* rhs);
  125. // Returns true iff the given string ends with the given suffix, ignoring
  126. // case. Any string is considered to end with an empty suffix.
  127. static bool EndsWithCaseInsensitive(
  128. const std::string& str, const std::string& suffix);
  129. // Formats an int value as "%02d".
  130. static std::string FormatIntWidth2(int value); // "%02d" for width == 2
  131. // Formats an int value as "%X".
  132. static std::string FormatHexInt(int value);
  133. // Formats a byte as "%02X".
  134. static std::string FormatByte(unsigned char value);
  135. private:
  136. String(); // Not meant to be instantiated.
  137. }; // class String
  138. // Gets the content of the stringstream's buffer as an std::string. Each '\0'
  139. // character in the buffer is replaced with "\\0".
  140. GTEST_API_ std::string StringStreamToString(::std::stringstream* stream);
  141. } // namespace internal
  142. } // namespace testing
  143. #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_STRING_H_