googletest/googletest/include/gtest/gtest-message.h
Go to the documentation of this file.
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 defines the Message class.
33 //
34 // IMPORTANT NOTE: Due to limitation of the C++ language, we have to
35 // leave some internal implementation details in this header file.
36 // They are clearly marked by comments like this:
37 //
38 // // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
39 //
40 // Such code is NOT meant to be used by a user directly, and is subject
41 // to CHANGE WITHOUT NOTICE. Therefore DO NOT DEPEND ON IT in a user
42 // program!
43 
44 // IWYU pragma: private, include "gtest/gtest.h"
45 // IWYU pragma: friend gtest/.*
46 // IWYU pragma: friend gmock/.*
47 
48 #ifndef GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
49 #define GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
50 
51 #include <limits>
52 #include <memory>
53 #include <sstream>
54 
55 #include "gtest/internal/gtest-port.h"
56 
58 /* class A needs to have dll-interface to be used by clients of class B */)
59 
60 // Ensures that there is at least one operator<< in the global namespace.
61 // See Message& operator<<(...) below for why.
62 void operator<<(const testing::internal::Secret&, int);
63 
65 
66 // The Message class works like an ostream repeater.
67 //
68 // Typical usage:
69 //
70 // 1. You stream a bunch of values to a Message object.
71 // It will remember the text in a stringstream.
72 // 2. Then you stream the Message object to an ostream.
73 // This causes the text in the Message to be streamed
74 // to the ostream.
75 //
76 // For example;
77 //
78 // testing::Message foo;
79 // foo << 1 << " != " << 2;
80 // std::cout << foo;
81 //
82 // will print "1 != 2".
83 //
84 // Message is not intended to be inherited from. In particular, its
85 // destructor is not virtual.
86 //
87 // Note that stringstream behaves differently in gcc and in MSVC. You
88 // can stream a NULL char pointer to it in the former, but not in the
89 // latter (it causes an access violation if you do). The Message
90 // class hides this difference by treating a NULL char pointer as
91 // "(null)".
92 class GTEST_API_ Message {
93  private:
94  // The type of basic IO manipulators (endl, ends, and flush) for
95  // narrow streams.
96  typedef std::ostream& (*BasicNarrowIoManip)(std::ostream&);
97 
98  public:
99  // Constructs an empty Message.
100  Message();
101 
102  // Copy constructor.
103  Message(const Message& msg) : ss_(new ::std::stringstream) { // NOLINT
104  *ss_ << msg.GetString();
105  }
106 
107  // Constructs a Message from a C-string.
108  explicit Message(const char* str) : ss_(new ::std::stringstream) {
109  *ss_ << str;
110  }
111 
112  // Streams a non-pointer value to this object.
113  template <typename T>
114  inline Message& operator <<(const T& val) {
115  // Some libraries overload << for STL containers. These
116  // overloads are defined in the global namespace instead of ::std.
117  //
118  // C++'s symbol lookup rule (i.e. Koenig lookup) says that these
119  // overloads are visible in either the std namespace or the global
120  // namespace, but not other namespaces, including the testing
121  // namespace which Google Test's Message class is in.
122  //
123  // To allow STL containers (and other types that has a << operator
124  // defined in the global namespace) to be used in Google Test
125  // assertions, testing::Message must access the custom << operator
126  // from the global namespace. With this using declaration,
127  // overloads of << defined in the global namespace and those
128  // visible via Koenig lookup are both exposed in this function.
129  using ::operator <<;
130  *ss_ << val;
131  return *this;
132  }
133 
134  // Streams a pointer value to this object.
135  //
136  // This function is an overload of the previous one. When you
137  // stream a pointer to a Message, this definition will be used as it
138  // is more specialized. (The C++ Standard, section
139  // [temp.func.order].) If you stream a non-pointer, then the
140  // previous definition will be used.
141  //
142  // The reason for this overload is that streaming a NULL pointer to
143  // ostream is undefined behavior. Depending on the compiler, you
144  // may get "0", "(nil)", "(null)", or an access violation. To
145  // ensure consistent result across compilers, we always treat NULL
146  // as "(null)".
147  template <typename T>
148  inline Message& operator <<(T* const& pointer) { // NOLINT
149  if (pointer == nullptr) {
150  *ss_ << "(null)";
151  } else {
152  *ss_ << pointer;
153  }
154  return *this;
155  }
156 
157  // Since the basic IO manipulators are overloaded for both narrow
158  // and wide streams, we have to provide this specialized definition
159  // of operator <<, even though its body is the same as the
160  // templatized version above. Without this definition, streaming
161  // endl or other basic IO manipulators to Message will confuse the
162  // compiler.
163  Message& operator <<(BasicNarrowIoManip val) {
164  *ss_ << val;
165  return *this;
166  }
167 
168  // Instead of 1/0, we want to see true/false for bool values.
170  return *this << (b ? "true" : "false");
171  }
172 
173  // These two overloads allow streaming a wide C string to a Message
174  // using the UTF-8 encoding.
175  Message& operator <<(const wchar_t* wide_c_str);
176  Message& operator <<(wchar_t* wide_c_str);
177 
178 #if GTEST_HAS_STD_WSTRING
179  // Converts the given wide string to a narrow string using the UTF-8
180  // encoding, and streams the result to this Message object.
182 #endif // GTEST_HAS_STD_WSTRING
183 
184  // Gets the text streamed to this object so far as an std::string.
185  // Each '\0' character in the buffer is replaced with "\\0".
186  //
187  // INTERNAL IMPLEMENTATION - DO NOT USE IN A USER PROGRAM.
188  std::string GetString() const;
189 
190  private:
191  // We'll hold the text streamed to this object here.
192  const std::unique_ptr< ::std::stringstream> ss_;
193 
194  // We declare (but don't implement) this to prevent the compiler
195  // from implementing the assignment operator.
196  void operator=(const Message&);
197 };
198 
199 // Streams a Message to an ostream.
200 inline std::ostream& operator <<(std::ostream& os, const Message& sb) {
201  return os << sb.GetString();
202 }
203 
204 namespace internal {
205 
206 // Converts a streamable value to an std::string. A NULL pointer is
207 // converted to "(null)". When the input value is a ::string,
208 // ::std::string, ::wstring, or ::std::wstring object, each NUL
209 // character in it is replaced with "\\0".
210 template <typename T>
211 std::string StreamableToString(const T& streamable) {
212  return (Message() << streamable).GetString();
213 }
214 
215 } // namespace internal
216 } // namespace testing
217 
219 
220 #endif // GOOGLETEST_INCLUDE_GTEST_GTEST_MESSAGE_H_
xds_interop_client.str
str
Definition: xds_interop_client.py:487
testing
Definition: aws_request_signer_test.cc:25
const
#define const
Definition: bloaty/third_party/zlib/zconf.h:230
GTEST_DISABLE_MSC_WARNINGS_PUSH_
#define GTEST_DISABLE_MSC_WARNINGS_PUSH_(warnings)
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:308
GTEST_API_
#define GTEST_API_
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:754
testing::internal::string
::std::string string
Definition: bloaty/third_party/protobuf/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:881
grpc::protobuf::Message
GRPC_CUSTOM_MESSAGE Message
Definition: include/grpcpp/impl/codegen/config_protobuf.h:78
testing::Message::Message
Message(const Message &msg)
Definition: googletest/googletest/include/gtest/gtest-message.h:103
env.new
def new
Definition: env.py:51
T
#define T(upbtypeconst, upbtype, ctype, default_value)
testing::Message
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-message.h:90
namespace
Definition: namespace.py:1
testing::internal::StreamableToString
std::string StreamableToString(const T &streamable)
Definition: bloaty/third_party/googletest/googletest/include/gtest/gtest-message.h:209
testing::internal::wstring
::std::wstring wstring
Definition: bloaty/third_party/protobuf/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:887
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
msg
std::string msg
Definition: client_interceptors_end2end_test.cc:372
GetString
static bool GetString(std::string *out, CBS *cbs)
Definition: ssl_ctx_api.cc:228
std
Definition: grpcpp/impl/codegen/async_unary_call.h:407
GTEST_DISABLE_MSC_WARNINGS_POP_
#define GTEST_DISABLE_MSC_WARNINGS_POP_()
Definition: bloaty/third_party/googletest/googletest/include/gtest/internal/gtest-port.h:309
internal
Definition: benchmark/test/output_test_helper.cc:20
testing::Message::Message
Message(const char *str)
Definition: googletest/googletest/include/gtest/gtest-message.h:108
grpc::operator<<
std::ostream & operator<<(std::ostream &out, const string_ref &string)
Definition: grpcpp/impl/codegen/string_ref.h:145
Message
Definition: protobuf/php/ext/google/protobuf/message.c:53


grpc
Author(s):
autogenerated on Fri May 16 2025 02:58:46