gtest/include/gtest/internal/gtest-port.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 // Authors: wan@google.com (Zhanyong Wan)
31 //
32 // Low-level types and utilities for porting Google Test to various
33 // platforms. They are subject to change without notice. DO NOT USE
34 // THEM IN USER CODE.
35 //
36 // This file is fundamental to Google Test. All other Google Test source
37 // files are expected to #include this. Therefore, it cannot #include
38 // any other Google Test header.
39 
40 #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
41 #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
42 
43 // The user can define the following macros in the build script to
44 // control Google Test's behavior. If the user doesn't define a macro
45 // in this list, Google Test will define it.
46 //
47 // GTEST_HAS_CLONE - Define it to 1/0 to indicate that clone(2)
48 // is/isn't available.
49 // GTEST_HAS_EXCEPTIONS - Define it to 1/0 to indicate that exceptions
50 // are enabled.
51 // GTEST_HAS_GLOBAL_STRING - Define it to 1/0 to indicate that ::string
52 // is/isn't available (some systems define
53 // ::string, which is different to std::string).
54 // GTEST_HAS_GLOBAL_WSTRING - Define it to 1/0 to indicate that ::string
55 // is/isn't available (some systems define
56 // ::wstring, which is different to std::wstring).
57 // GTEST_HAS_POSIX_RE - Define it to 1/0 to indicate that POSIX regular
58 // expressions are/aren't available.
59 // GTEST_HAS_PTHREAD - Define it to 1/0 to indicate that <pthread.h>
60 // is/isn't available.
61 // GTEST_HAS_RTTI - Define it to 1/0 to indicate that RTTI is/isn't
62 // enabled.
63 // GTEST_HAS_STD_WSTRING - Define it to 1/0 to indicate that
64 // std::wstring does/doesn't work (Google Test can
65 // be used where std::wstring is unavailable).
66 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple
67 // is/isn't available.
68 // GTEST_HAS_SEH - Define it to 1/0 to indicate whether the
69 // compiler supports Microsoft's "Structured
70 // Exception Handling".
71 // GTEST_HAS_STREAM_REDIRECTION
72 // - Define it to 1/0 to indicate whether the
73 // platform supports I/O stream redirection using
74 // dup() and dup2().
75 // GTEST_USE_OWN_TR1_TUPLE - Define it to 1/0 to indicate whether Google
76 // Test's own tr1 tuple implementation should be
77 // used. Unused when the user sets
78 // GTEST_HAS_TR1_TUPLE to 0.
79 // GTEST_LANG_CXX11 - Define it to 1/0 to indicate that Google Test
80 // is building in C++11/C++98 mode.
81 // GTEST_LINKED_AS_SHARED_LIBRARY
82 // - Define to 1 when compiling tests that use
83 // Google Test as a shared library (known as
84 // DLL on Windows).
85 // GTEST_CREATE_SHARED_LIBRARY
86 // - Define to 1 when compiling Google Test itself
87 // as a shared library.
88 
89 // This header defines the following utilities:
90 //
91 // Macros indicating the current platform (defined to 1 if compiled on
92 // the given platform; otherwise undefined):
93 // GTEST_OS_AIX - IBM AIX
94 // GTEST_OS_CYGWIN - Cygwin
95 // GTEST_OS_HPUX - HP-UX
96 // GTEST_OS_LINUX - Linux
97 // GTEST_OS_LINUX_ANDROID - Google Android
98 // GTEST_OS_MAC - Mac OS X
99 // GTEST_OS_IOS - iOS
100 // GTEST_OS_IOS_SIMULATOR - iOS simulator
101 // GTEST_OS_NACL - Google Native Client (NaCl)
102 // GTEST_OS_OPENBSD - OpenBSD
103 // GTEST_OS_QNX - QNX
104 // GTEST_OS_SOLARIS - Sun Solaris
105 // GTEST_OS_SYMBIAN - Symbian
106 // GTEST_OS_WINDOWS - Windows (Desktop, MinGW, or Mobile)
107 // GTEST_OS_WINDOWS_DESKTOP - Windows Desktop
108 // GTEST_OS_WINDOWS_MINGW - MinGW
109 // GTEST_OS_WINDOWS_MOBILE - Windows Mobile
110 // GTEST_OS_ZOS - z/OS
111 //
112 // Among the platforms, Cygwin, Linux, Max OS X, and Windows have the
113 // most stable support. Since core members of the Google Test project
114 // don't have access to other platforms, support for them may be less
115 // stable. If you notice any problems on your platform, please notify
116 // googletestframework@googlegroups.com (patches for fixing them are
117 // even more welcome!).
118 //
119 // Note that it is possible that none of the GTEST_OS_* macros are defined.
120 //
121 // Macros indicating available Google Test features (defined to 1 if
122 // the corresponding feature is supported; otherwise undefined):
123 // GTEST_HAS_COMBINE - the Combine() function (for value-parameterized
124 // tests)
125 // GTEST_HAS_DEATH_TEST - death tests
126 // GTEST_HAS_PARAM_TEST - value-parameterized tests
127 // GTEST_HAS_TYPED_TEST - typed tests
128 // GTEST_HAS_TYPED_TEST_P - type-parameterized tests
129 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
130 // GTEST_HAS_POSIX_RE (see above) which users can
131 // define themselves.
132 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
133 // the above two are mutually exclusive.
134 // GTEST_CAN_COMPARE_NULL - accepts untyped NULL in EXPECT_EQ().
135 //
136 // Macros for basic C++ coding:
137 // GTEST_AMBIGUOUS_ELSE_BLOCKER_ - for disabling a gcc warning.
138 // GTEST_ATTRIBUTE_UNUSED_ - declares that a class' instances or a
139 // variable don't have to be used.
140 // GTEST_DISALLOW_ASSIGN_ - disables operator=.
141 // GTEST_DISALLOW_COPY_AND_ASSIGN_ - disables copy ctor and operator=.
142 // GTEST_MUST_USE_RESULT_ - declares that a function's result must be used.
143 //
144 // Synchronization:
145 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
146 // - synchronization primitives.
147 // GTEST_IS_THREADSAFE - defined to 1 to indicate that the above
148 // synchronization primitives have real implementations
149 // and Google Test is thread-safe; or 0 otherwise.
150 //
151 // Template meta programming:
152 // is_pointer - as in TR1; needed on Symbian and IBM XL C/C++ only.
153 // IteratorTraits - partial implementation of std::iterator_traits, which
154 // is not available in libCstd when compiled with Sun C++.
155 //
156 // Smart pointers:
157 // scoped_ptr - as in TR2.
158 //
159 // Regular expressions:
160 // RE - a simple regular expression class using the POSIX
161 // Extended Regular Expression syntax on UNIX-like
162 // platforms, or a reduced regular exception syntax on
163 // other platforms, including Windows.
164 //
165 // Logging:
166 // GTEST_LOG_() - logs messages at the specified severity level.
167 // LogToStderr() - directs all log messages to stderr.
168 // FlushInfoLog() - flushes informational log messages.
169 //
170 // Stdout and stderr capturing:
171 // CaptureStdout() - starts capturing stdout.
172 // GetCapturedStdout() - stops capturing stdout and returns the captured
173 // string.
174 // CaptureStderr() - starts capturing stderr.
175 // GetCapturedStderr() - stops capturing stderr and returns the captured
176 // string.
177 //
178 // Integer types:
179 // TypeWithSize - maps an integer to a int type.
180 // Int32, UInt32, Int64, UInt64, TimeInMillis
181 // - integers of known sizes.
182 // BiggestInt - the biggest signed integer type.
183 //
184 // Command-line utilities:
185 // GTEST_FLAG() - references a flag.
186 // GTEST_DECLARE_*() - declares a flag.
187 // GTEST_DEFINE_*() - defines a flag.
188 // GetInjectableArgvs() - returns the command line as a vector of strings.
189 //
190 // Environment variable utilities:
191 // GetEnv() - gets the value of an environment variable.
192 // BoolFromGTestEnv() - parses a bool environment variable.
193 // Int32FromGTestEnv() - parses an Int32 environment variable.
194 // StringFromGTestEnv() - parses a string environment variable.
195 
196 #include <ctype.h> // for isspace, etc
197 #include <stddef.h> // for ptrdiff_t
198 #include <stdlib.h>
199 #include <stdio.h>
200 #include <string.h>
201 #ifndef _WIN32_WCE
202 # include <sys/types.h>
203 # include <sys/stat.h>
204 #endif // !_WIN32_WCE
205 
206 #if defined __APPLE__
207 # include <AvailabilityMacros.h>
208 # include <TargetConditionals.h>
209 #endif
210 
211 #include <iostream> // NOLINT
212 #include <sstream> // NOLINT
213 #include <string> // NOLINT
214 
215 #define GTEST_DEV_EMAIL_ "googletestframework@@googlegroups.com"
216 #define GTEST_FLAG_PREFIX_ "gtest_"
217 #define GTEST_FLAG_PREFIX_DASH_ "gtest-"
218 #define GTEST_FLAG_PREFIX_UPPER_ "GTEST_"
219 #define GTEST_NAME_ "Google Test"
220 #define GTEST_PROJECT_URL_ "http://code.google.com/p/googletest/"
221 
222 // Determines the version of gcc that is used to compile this.
223 #ifdef __GNUC__
224 // 40302 means version 4.3.2.
225 # define GTEST_GCC_VER_ \
226  (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)
227 #endif // __GNUC__
228 
229 // Determines the platform on which Google Test is compiled.
230 #ifdef __CYGWIN__
231 # define GTEST_OS_CYGWIN 1
232 #elif defined __SYMBIAN32__
233 # define GTEST_OS_SYMBIAN 1
234 #elif defined _WIN32
235 # define GTEST_OS_WINDOWS 1
236 # ifdef _WIN32_WCE
237 # define GTEST_OS_WINDOWS_MOBILE 1
238 # elif defined(__MINGW__) || defined(__MINGW32__)
239 # define GTEST_OS_WINDOWS_MINGW 1
240 # else
241 # define GTEST_OS_WINDOWS_DESKTOP 1
242 # endif // _WIN32_WCE
243 #elif defined __APPLE__
244 # define GTEST_OS_MAC 1
245 # if TARGET_OS_IPHONE
246 # define GTEST_OS_IOS 1
247 # if TARGET_IPHONE_SIMULATOR
248 # define GTEST_OS_IOS_SIMULATOR 1
249 # endif
250 # endif
251 #elif defined __linux__
252 # define GTEST_OS_LINUX 1
253 # if defined __ANDROID__
254 # define GTEST_OS_LINUX_ANDROID 1
255 # endif
256 #elif defined __MVS__
257 # define GTEST_OS_ZOS 1
258 #elif defined(__sun) && defined(__SVR4)
259 # define GTEST_OS_SOLARIS 1
260 #elif defined(_AIX)
261 # define GTEST_OS_AIX 1
262 #elif defined(__hpux)
263 # define GTEST_OS_HPUX 1
264 #elif defined __native_client__
265 # define GTEST_OS_NACL 1
266 #elif defined __OpenBSD__
267 # define GTEST_OS_OPENBSD 1
268 #elif defined __QNX__
269 # define GTEST_OS_QNX 1
270 #endif // __CYGWIN__
271 
272 #ifndef GTEST_LANG_CXX11
273 // gcc and clang define __GXX_EXPERIMENTAL_CXX0X__ when
274 // -std={c,gnu}++{0x,11} is passed. The C++11 standard specifies a
275 // value for __cplusplus, and recent versions of clang, gcc, and
276 // probably other compilers set that too in C++11 mode.
277 # if __GXX_EXPERIMENTAL_CXX0X__ || __cplusplus >= 201103L
278 // Compiling in at least C++11 mode.
279 # define GTEST_LANG_CXX11 1
280 # else
281 # define GTEST_LANG_CXX11 0
282 # endif
283 #endif
284 
285 // Brings in definitions for functions used in the testing::internal::posix
286 // namespace (read, write, close, chdir, isatty, stat). We do not currently
287 // use them on Windows Mobile.
288 #if !GTEST_OS_WINDOWS
289 // This assumes that non-Windows OSes provide unistd.h. For OSes where this
290 // is not the case, we need to include headers that provide the functions
291 // mentioned above.
292 # include <unistd.h>
293 # include <strings.h>
294 #elif !GTEST_OS_WINDOWS_MOBILE
295 # include <direct.h>
296 # include <io.h>
297 #endif
298 
299 #if GTEST_OS_LINUX_ANDROID
300 // Used to define __ANDROID_API__ matching the target NDK API level.
301 # include <android/api-level.h> // NOLINT
302 #endif
303 
304 // Defines this to true iff Google Test can use POSIX regular expressions.
305 #ifndef GTEST_HAS_POSIX_RE
306 # if GTEST_OS_LINUX_ANDROID
307 // On Android, <regex.h> is only available starting with Gingerbread.
308 # define GTEST_HAS_POSIX_RE (__ANDROID_API__ >= 9)
309 # else
310 # define GTEST_HAS_POSIX_RE (!GTEST_OS_WINDOWS)
311 # endif
312 #endif
313 
314 #if GTEST_HAS_POSIX_RE
315 
316 // On some platforms, <regex.h> needs someone to define size_t, and
317 // won't compile otherwise. We can #include it here as we already
318 // included <stdlib.h>, which is guaranteed to define size_t through
319 // <stddef.h>.
320 # include <regex.h> // NOLINT
321 
322 # define GTEST_USES_POSIX_RE 1
323 
324 #elif GTEST_OS_WINDOWS
325 
326 // <regex.h> is not available on Windows. Use our own simple regex
327 // implementation instead.
328 # define GTEST_USES_SIMPLE_RE 1
329 
330 #else
331 
332 // <regex.h> may not be available on this platform. Use our own
333 // simple regex implementation instead.
334 # define GTEST_USES_SIMPLE_RE 1
335 
336 #endif // GTEST_HAS_POSIX_RE
337 
338 #ifndef GTEST_HAS_EXCEPTIONS
339 // The user didn't tell us whether exceptions are enabled, so we need
340 // to figure it out.
341 # if defined(_MSC_VER) || defined(__BORLANDC__)
342 // MSVC's and C++Builder's implementations of the STL use the _HAS_EXCEPTIONS
343 // macro to enable exceptions, so we'll do the same.
344 // Assumes that exceptions are enabled by default.
345 # ifndef _HAS_EXCEPTIONS
346 # define _HAS_EXCEPTIONS 1
347 # endif // _HAS_EXCEPTIONS
348 # define GTEST_HAS_EXCEPTIONS _HAS_EXCEPTIONS
349 # elif defined(__GNUC__) && __EXCEPTIONS
350 // gcc defines __EXCEPTIONS to 1 iff exceptions are enabled.
351 # define GTEST_HAS_EXCEPTIONS 1
352 # elif defined(__SUNPRO_CC)
353 // Sun Pro CC supports exceptions. However, there is no compile-time way of
354 // detecting whether they are enabled or not. Therefore, we assume that
355 // they are enabled unless the user tells us otherwise.
356 # define GTEST_HAS_EXCEPTIONS 1
357 # elif defined(__IBMCPP__) && __EXCEPTIONS
358 // xlC defines __EXCEPTIONS to 1 iff exceptions are enabled.
359 # define GTEST_HAS_EXCEPTIONS 1
360 # elif defined(__HP_aCC)
361 // Exception handling is in effect by default in HP aCC compiler. It has to
362 // be turned of by +noeh compiler option if desired.
363 # define GTEST_HAS_EXCEPTIONS 1
364 # else
365 // For other compilers, we assume exceptions are disabled to be
366 // conservative.
367 # define GTEST_HAS_EXCEPTIONS 0
368 # endif // defined(_MSC_VER) || defined(__BORLANDC__)
369 #endif // GTEST_HAS_EXCEPTIONS
370 
371 #if !defined(GTEST_HAS_STD_STRING)
372 // Even though we don't use this macro any longer, we keep it in case
373 // some clients still depend on it.
374 # define GTEST_HAS_STD_STRING 1
375 #elif !GTEST_HAS_STD_STRING
376 // The user told us that ::std::string isn't available.
377 # error "Google Test cannot be used where ::std::string isn't available."
378 #endif // !defined(GTEST_HAS_STD_STRING)
379 
380 #ifndef GTEST_HAS_GLOBAL_STRING
381 // The user didn't tell us whether ::string is available, so we need
382 // to figure it out.
383 
384 # define GTEST_HAS_GLOBAL_STRING 0
385 
386 #endif // GTEST_HAS_GLOBAL_STRING
387 
388 #ifndef GTEST_HAS_STD_WSTRING
389 // The user didn't tell us whether ::std::wstring is available, so we need
390 // to figure it out.
391 // TODO(wan@google.com): uses autoconf to detect whether ::std::wstring
392 // is available.
393 
394 // Cygwin 1.7 and below doesn't support ::std::wstring.
395 // Solaris' libc++ doesn't support it either. Android has
396 // no support for it at least as recent as Froyo (2.2).
397 # define GTEST_HAS_STD_WSTRING \
398  (!(GTEST_OS_LINUX_ANDROID || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS))
399 
400 #endif // GTEST_HAS_STD_WSTRING
401 
402 #ifndef GTEST_HAS_GLOBAL_WSTRING
403 // The user didn't tell us whether ::wstring is available, so we need
404 // to figure it out.
405 # define GTEST_HAS_GLOBAL_WSTRING \
406  (GTEST_HAS_STD_WSTRING && GTEST_HAS_GLOBAL_STRING)
407 #endif // GTEST_HAS_GLOBAL_WSTRING
408 
409 // Determines whether RTTI is available.
410 #ifndef GTEST_HAS_RTTI
411 // The user didn't tell us whether RTTI is enabled, so we need to
412 // figure it out.
413 
414 # ifdef _MSC_VER
415 
416 # ifdef _CPPRTTI // MSVC defines this macro iff RTTI is enabled.
417 # define GTEST_HAS_RTTI 1
418 # else
419 # define GTEST_HAS_RTTI 0
420 # endif
421 
422 // Starting with version 4.3.2, gcc defines __GXX_RTTI iff RTTI is enabled.
423 # elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40302)
424 
425 # ifdef __GXX_RTTI
426 // When building against STLport with the Android NDK and with
427 // -frtti -fno-exceptions, the build fails at link time with undefined
428 // references to __cxa_bad_typeid. Note sure if STL or toolchain bug,
429 // so disable RTTI when detected.
430 # if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR) && \
431  !defined(__EXCEPTIONS)
432 # define GTEST_HAS_RTTI 0
433 # else
434 # define GTEST_HAS_RTTI 1
435 # endif // GTEST_OS_LINUX_ANDROID && __STLPORT_MAJOR && !__EXCEPTIONS
436 # else
437 # define GTEST_HAS_RTTI 0
438 # endif // __GXX_RTTI
439 
440 // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends
441 // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the
442 // first version with C++ support.
443 # elif defined(__clang__)
444 
445 # define GTEST_HAS_RTTI __has_feature(cxx_rtti)
446 
447 // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
448 // both the typeid and dynamic_cast features are present.
449 # elif defined(__IBMCPP__) && (__IBMCPP__ >= 900)
450 
451 # ifdef __RTTI_ALL__
452 # define GTEST_HAS_RTTI 1
453 # else
454 # define GTEST_HAS_RTTI 0
455 # endif
456 
457 # else
458 
459 // For all other compilers, we assume RTTI is enabled.
460 # define GTEST_HAS_RTTI 1
461 
462 # endif // _MSC_VER
463 
464 #endif // GTEST_HAS_RTTI
465 
466 // It's this header's responsibility to #include <typeinfo> when RTTI
467 // is enabled.
468 #if GTEST_HAS_RTTI
469 # include <typeinfo>
470 #endif
471 
472 // Determines whether Google Test can use the pthreads library.
473 #ifndef GTEST_HAS_PTHREAD
474 // The user didn't tell us explicitly, so we assume pthreads support is
475 // available on Linux and Mac.
476 //
477 // To disable threading support in Google Test, add -DGTEST_HAS_PTHREAD=0
478 // to your compiler flags.
479 # define GTEST_HAS_PTHREAD (GTEST_OS_LINUX || GTEST_OS_MAC || GTEST_OS_HPUX \
480  || GTEST_OS_QNX)
481 #endif // GTEST_HAS_PTHREAD
482 
483 #if GTEST_HAS_PTHREAD
484 // gtest-port.h guarantees to #include <pthread.h> when GTEST_HAS_PTHREAD is
485 // true.
486 # include <pthread.h> // NOLINT
487 
488 // For timespec and nanosleep, used below.
489 # include <time.h> // NOLINT
490 #endif
491 
492 // Determines whether Google Test can use tr1/tuple. You can define
493 // this macro to 0 to prevent Google Test from using tuple (any
494 // feature depending on tuple with be disabled in this mode).
495 #ifndef GTEST_HAS_TR1_TUPLE
496 # if GTEST_OS_LINUX_ANDROID && defined(_STLPORT_MAJOR)
497 // STLport, provided with the Android NDK, has neither <tr1/tuple> or <tuple>.
498 # define GTEST_HAS_TR1_TUPLE 0
499 # else
500 // The user didn't tell us not to do it, so we assume it's OK.
501 # define GTEST_HAS_TR1_TUPLE 1
502 # endif
503 #endif // GTEST_HAS_TR1_TUPLE
504 
505 // Determines whether Google Test's own tr1 tuple implementation
506 // should be used.
507 #ifndef GTEST_USE_OWN_TR1_TUPLE
508 // The user didn't tell us, so we need to figure it out.
509 
510 // We use our own TR1 tuple if we aren't sure the user has an
511 // implementation of it already. At this time, libstdc++ 4.0.0+ and
512 // MSVC 2010 are the only mainstream standard libraries that come
513 // with a TR1 tuple implementation. NVIDIA's CUDA NVCC compiler
514 // pretends to be GCC by defining __GNUC__ and friends, but cannot
515 // compile GCC's tuple implementation. MSVC 2008 (9.0) provides TR1
516 // tuple in a 323 MB Feature Pack download, which we cannot assume the
517 // user has. QNX's QCC compiler is a modified GCC but it doesn't
518 // support TR1 tuple. libc++ only provides std::tuple, in C++11 mode,
519 // and it can be used with some compilers that define __GNUC__.
520 # if (defined(__GNUC__) && !defined(__CUDACC__) && (GTEST_GCC_VER_ >= 40000) \
521  && !GTEST_OS_QNX && !defined(_LIBCPP_VERSION)) || _MSC_VER >= 1600
522 # define GTEST_ENV_HAS_TR1_TUPLE_ 1
523 # endif
524 
525 // C++11 specifies that <tuple> provides std::tuple. Use that if gtest is used
526 // in C++11 mode and libstdc++ isn't very old (binaries targeting OS X 10.6
527 // can build with clang but need to use gcc4.2's libstdc++).
528 # if GTEST_LANG_CXX11 && (!defined(__GLIBCXX__) || __GLIBCXX__ > 20110325)
529 # define GTEST_ENV_HAS_STD_TUPLE_ 1
530 # endif
531 
532 # if GTEST_ENV_HAS_TR1_TUPLE_ || GTEST_ENV_HAS_STD_TUPLE_
533 # define GTEST_USE_OWN_TR1_TUPLE 0
534 # else
535 # define GTEST_USE_OWN_TR1_TUPLE 1
536 # endif
537 
538 #endif // GTEST_USE_OWN_TR1_TUPLE
539 
540 // To avoid conditional compilation everywhere, we make it
541 // gtest-port.h's responsibility to #include the header implementing
542 // tr1/tuple.
543 #if GTEST_HAS_TR1_TUPLE
544 
545 # if GTEST_USE_OWN_TR1_TUPLE
546 # include "gtest/internal/gtest-tuple.h"
547 # elif GTEST_ENV_HAS_STD_TUPLE_
548 # include <tuple>
549 // C++11 puts its tuple into the ::std namespace rather than
550 // ::std::tr1. gtest expects tuple to live in ::std::tr1, so put it there.
551 // This causes undefined behavior, but supported compilers react in
552 // the way we intend.
553 namespace std
554 {
555 namespace tr1
556 {
559 using ::std::tuple;
560 using ::std::tuple_element;
561 using ::std::tuple_size;
562 }
563 }
564 
565 # elif GTEST_OS_SYMBIAN
566 
567 // On Symbian, BOOST_HAS_TR1_TUPLE causes Boost's TR1 tuple library to
568 // use STLport's tuple implementation, which unfortunately doesn't
569 // work as the copy of STLport distributed with Symbian is incomplete.
570 // By making sure BOOST_HAS_TR1_TUPLE is undefined, we force Boost to
571 // use its own tuple implementation.
572 # ifdef BOOST_HAS_TR1_TUPLE
573 # undef BOOST_HAS_TR1_TUPLE
574 # endif // BOOST_HAS_TR1_TUPLE
575 
576 // This prevents <boost/tr1/detail/config.hpp>, which defines
577 // BOOST_HAS_TR1_TUPLE, from being #included by Boost's <tuple>.
578 # define BOOST_TR1_DETAIL_CONFIG_HPP_INCLUDED
579 # include <tuple>
580 
581 # elif defined(__GNUC__) && (GTEST_GCC_VER_ >= 40000)
582 // GCC 4.0+ implements tr1/tuple in the <tr1/tuple> header. This does
583 // not conform to the TR1 spec, which requires the header to be <tuple>.
584 
585 # if !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302
586 // Until version 4.3.2, gcc has a bug that causes <tr1/functional>,
587 // which is #included by <tr1/tuple>, to not compile when RTTI is
588 // disabled. _TR1_FUNCTIONAL is the header guard for
589 // <tr1/functional>. Hence the following #define is a hack to prevent
590 // <tr1/functional> from being included.
591 # define _TR1_FUNCTIONAL 1
592 # include <tr1/tuple>
593 # undef _TR1_FUNCTIONAL // Allows the user to #include
594 // <tr1/functional> if he chooses to.
595 # else
596 # include <tr1/tuple> // NOLINT
597 # endif // !GTEST_HAS_RTTI && GTEST_GCC_VER_ < 40302
598 
599 # else
600 // If the compiler is not GCC 4.0+, we assume the user is using a
601 // spec-conforming TR1 implementation.
602 # include <tuple> // NOLINT
603 # endif // GTEST_USE_OWN_TR1_TUPLE
604 
605 #endif // GTEST_HAS_TR1_TUPLE
606 
607 // Determines whether clone(2) is supported.
608 // Usually it will only be available on Linux, excluding
609 // Linux on the Itanium architecture.
610 // Also see http://linux.die.net/man/2/clone.
611 #ifndef GTEST_HAS_CLONE
612 // The user didn't tell us, so we need to figure it out.
613 
614 # if GTEST_OS_LINUX && !defined(__ia64__)
615 # if GTEST_OS_LINUX_ANDROID
616 // On Android, clone() is only available on ARM starting with Gingerbread.
617 # if defined(__arm__) && __ANDROID_API__ >= 9
618 # define GTEST_HAS_CLONE 1
619 # else
620 # define GTEST_HAS_CLONE 0
621 # endif
622 # else
623 # define GTEST_HAS_CLONE 1
624 # endif
625 # else
626 # define GTEST_HAS_CLONE 0
627 # endif // GTEST_OS_LINUX && !defined(__ia64__)
628 
629 #endif // GTEST_HAS_CLONE
630 
631 // Determines whether to support stream redirection. This is used to test
632 // output correctness and to implement death tests.
633 #ifndef GTEST_HAS_STREAM_REDIRECTION
634 // By default, we assume that stream redirection is supported on all
635 // platforms except known mobile ones.
636 # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN
637 # define GTEST_HAS_STREAM_REDIRECTION 0
638 # else
639 # define GTEST_HAS_STREAM_REDIRECTION 1
640 # endif // !GTEST_OS_WINDOWS_MOBILE && !GTEST_OS_SYMBIAN
641 #endif // GTEST_HAS_STREAM_REDIRECTION
642 
643 // Determines whether to support death tests.
644 // Google Test does not support death tests for VC 7.1 and earlier as
645 // abort() in a VC 7.1 application compiled as GUI in debug config
646 // pops up a dialog window that cannot be suppressed programmatically.
647 #if (GTEST_OS_LINUX || GTEST_OS_CYGWIN || GTEST_OS_SOLARIS || \
648  (GTEST_OS_MAC && !GTEST_OS_IOS) || GTEST_OS_IOS_SIMULATOR || \
649  (GTEST_OS_WINDOWS_DESKTOP && _MSC_VER >= 1400) || \
650  GTEST_OS_WINDOWS_MINGW || GTEST_OS_AIX || GTEST_OS_HPUX || \
651  GTEST_OS_OPENBSD || GTEST_OS_QNX)
652 # define GTEST_HAS_DEATH_TEST 1
653 # include <vector> // NOLINT
654 #endif
655 
656 // We don't support MSVC 7.1 with exceptions disabled now. Therefore
657 // all the compilers we care about are adequate for supporting
658 // value-parameterized tests.
659 #define GTEST_HAS_PARAM_TEST 1
660 
661 // Determines whether to support type-driven tests.
662 
663 // Typed tests need <typeinfo> and variadic macros, which GCC, VC++ 8.0,
664 // Sun Pro CC, IBM Visual Age, and HP aCC support.
665 #if defined(__GNUC__) || (_MSC_VER >= 1400) || defined(__SUNPRO_CC) || \
666  defined(__IBMCPP__) || defined(__HP_aCC)
667 # define GTEST_HAS_TYPED_TEST 1
668 # define GTEST_HAS_TYPED_TEST_P 1
669 #endif
670 
671 // Determines whether to support Combine(). This only makes sense when
672 // value-parameterized tests are enabled. The implementation doesn't
673 // work on Sun Studio since it doesn't understand templated conversion
674 // operators.
675 #if GTEST_HAS_PARAM_TEST && GTEST_HAS_TR1_TUPLE && !defined(__SUNPRO_CC)
676 # define GTEST_HAS_COMBINE 1
677 #endif
678 
679 // Determines whether the system compiler uses UTF-16 for encoding wide strings.
680 #define GTEST_WIDE_STRING_USES_UTF16_ \
681  (GTEST_OS_WINDOWS || GTEST_OS_CYGWIN || GTEST_OS_SYMBIAN || GTEST_OS_AIX)
682 
683 // Determines whether test results can be streamed to a socket.
684 #if GTEST_OS_LINUX
685 # define GTEST_CAN_STREAM_RESULTS_ 1
686 #endif
687 
688 // Defines some utility macros.
689 
690 // The GNU compiler emits a warning if nested "if" statements are followed by
691 // an "else" statement and braces are not used to explicitly disambiguate the
692 // "else" binding. This leads to problems with code like:
693 //
694 // if (gate)
695 // ASSERT_*(condition) << "Some message";
696 //
697 // The "switch (0) case 0:" idiom is used to suppress this.
698 #ifdef __INTEL_COMPILER
699 # define GTEST_AMBIGUOUS_ELSE_BLOCKER_
700 #else
701 # define GTEST_AMBIGUOUS_ELSE_BLOCKER_ switch (0) case 0: default: // NOLINT
702 #endif
703 
704 // Use this annotation at the end of a struct/class definition to
705 // prevent the compiler from optimizing away instances that are never
706 // used. This is useful when all interesting logic happens inside the
707 // c'tor and / or d'tor. Example:
708 //
709 // struct Foo {
710 // Foo() { ... }
711 // } GTEST_ATTRIBUTE_UNUSED_;
712 //
713 // Also use it after a variable or parameter declaration to tell the
714 // compiler the variable/parameter does not have to be used.
715 #if defined(__GNUC__) && !defined(COMPILER_ICC)
716 # define GTEST_ATTRIBUTE_UNUSED_ __attribute__ ((unused))
717 #else
718 # define GTEST_ATTRIBUTE_UNUSED_
719 #endif
720 
721 // A macro to disallow operator=
722 // This should be used in the private: declarations for a class.
723 #define GTEST_DISALLOW_ASSIGN_(type)\
724  void operator=(type const &)
725 
726 // A macro to disallow copy constructor and operator=
727 // This should be used in the private: declarations for a class.
728 #define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)\
729  type(type const &);\
730  GTEST_DISALLOW_ASSIGN_(type)
731 
732 // Tell the compiler to warn about unused return values for functions declared
733 // with this macro. The macro should be used on function declarations
734 // following the argument list:
735 //
736 // Sprocket* AllocateSprocket() GTEST_MUST_USE_RESULT_;
737 #if defined(__GNUC__) && (GTEST_GCC_VER_ >= 30400) && !defined(COMPILER_ICC)
738 # define GTEST_MUST_USE_RESULT_ __attribute__ ((warn_unused_result))
739 #else
740 # define GTEST_MUST_USE_RESULT_
741 #endif // __GNUC__ && (GTEST_GCC_VER_ >= 30400) && !COMPILER_ICC
742 
743 // Determine whether the compiler supports Microsoft's Structured Exception
744 // Handling. This is supported by several Windows compilers but generally
745 // does not exist on any other system.
746 #ifndef GTEST_HAS_SEH
747 // The user didn't tell us, so we need to figure it out.
748 
749 # if defined(_MSC_VER) || defined(__BORLANDC__)
750 // These two compilers are known to support SEH.
751 # define GTEST_HAS_SEH 1
752 # else
753 // Assume no SEH.
754 # define GTEST_HAS_SEH 0
755 # endif
756 
757 #endif // GTEST_HAS_SEH
758 
759 #ifdef _MSC_VER
760 
761 # if GTEST_LINKED_AS_SHARED_LIBRARY
762 # define GTEST_API_ __declspec(dllimport)
763 # elif GTEST_CREATE_SHARED_LIBRARY
764 # define GTEST_API_ __declspec(dllexport)
765 # endif
766 
767 #endif // _MSC_VER
768 
769 #ifndef GTEST_API_
770 # define GTEST_API_
771 #endif
772 
773 #ifdef __GNUC__
774 // Ask the compiler to never inline a given function.
775 # define GTEST_NO_INLINE_ __attribute__((noinline))
776 #else
777 # define GTEST_NO_INLINE_
778 #endif
779 
780 // _LIBCPP_VERSION is defined by the libc++ library from the LLVM project.
781 #if defined(__GLIBCXX__) || defined(_LIBCPP_VERSION)
782 # define GTEST_HAS_CXXABI_H_ 1
783 #else
784 # define GTEST_HAS_CXXABI_H_ 0
785 #endif
786 
787 namespace testing
788 {
789 
790 class Message;
791 
792 namespace internal
793 {
794 
795 // A secret type that Google Test users don't know about. It has no
796 // definition on purpose. Therefore it's impossible to create a
797 // Secret object, which is what we want.
798 class Secret;
799 
800 // The GTEST_COMPILE_ASSERT_ macro can be used to verify that a compile time
801 // expression is true. For example, you could use it to verify the
802 // size of a static array:
803 //
804 // GTEST_COMPILE_ASSERT_(ARRAYSIZE(content_type_names) == CONTENT_NUM_TYPES,
805 // content_type_names_incorrect_size);
806 //
807 // or to make sure a struct is smaller than a certain size:
808 //
809 // GTEST_COMPILE_ASSERT_(sizeof(foo) < 128, foo_too_large);
810 //
811 // The second argument to the macro is the name of the variable. If
812 // the expression is false, most compilers will issue a warning/error
813 // containing the name of the variable.
814 
815 template <bool>
816 struct CompileAssert
817 {
818 };
819 
820 #define GTEST_COMPILE_ASSERT_(expr, msg) \
821  typedef ::testing::internal::CompileAssert<(static_cast<bool>(expr))> \
822  msg[static_cast<bool>(expr) ? 1 : -1] GTEST_ATTRIBUTE_UNUSED_
823 
824 // Implementation details of GTEST_COMPILE_ASSERT_:
825 //
826 // - GTEST_COMPILE_ASSERT_ works by defining an array type that has -1
827 // elements (and thus is invalid) when the expression is false.
828 //
829 // - The simpler definition
830 //
831 // #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1]
832 //
833 // does not work, as gcc supports variable-length arrays whose sizes
834 // are determined at run-time (this is gcc's extension and not part
835 // of the C++ standard). As a result, gcc fails to reject the
836 // following code with the simple definition:
837 //
838 // int foo;
839 // GTEST_COMPILE_ASSERT_(foo, msg); // not supposed to compile as foo is
840 // // not a compile-time constant.
841 //
842 // - By using the type CompileAssert<(bool(expr))>, we ensures that
843 // expr is a compile-time constant. (Template arguments must be
844 // determined at compile-time.)
845 //
846 // - The outter parentheses in CompileAssert<(bool(expr))> are necessary
847 // to work around a bug in gcc 3.4.4 and 4.0.1. If we had written
848 //
849 // CompileAssert<bool(expr)>
850 //
851 // instead, these compilers will refuse to compile
852 //
853 // GTEST_COMPILE_ASSERT_(5 > 0, some_message);
854 //
855 // (They seem to think the ">" in "5 > 0" marks the end of the
856 // template argument list.)
857 //
858 // - The array size is (bool(expr) ? 1 : -1), instead of simply
859 //
860 // ((expr) ? 1 : -1).
861 //
862 // This is to avoid running into a bug in MS VC 7.1, which
863 // causes ((0.0) ? 1 : -1) to incorrectly evaluate to 1.
864 
865 // StaticAssertTypeEqHelper is used by StaticAssertTypeEq defined in gtest.h.
866 //
867 // This template is declared, but intentionally undefined.
868 template <typename T1, typename T2>
869 struct StaticAssertTypeEqHelper;
870 
871 template <typename T>
872 struct StaticAssertTypeEqHelper<T, T> {};
873 
874 #if GTEST_HAS_GLOBAL_STRING
876 #else
878 #endif // GTEST_HAS_GLOBAL_STRING
879 
880 #if GTEST_HAS_GLOBAL_WSTRING
882 #elif GTEST_HAS_STD_WSTRING
884 #endif // GTEST_HAS_GLOBAL_WSTRING
885 
886 // A helper for suppressing warnings on constant condition. It just
887 // returns 'condition'.
888 GTEST_API_ bool IsTrue(bool condition);
889 
890 // Defines scoped_ptr.
891 
892 // This implementation of scoped_ptr is PARTIAL - it only contains
893 // enough stuff to satisfy Google Test's need.
894 template <typename T>
895 class scoped_ptr
896 {
897 public:
898  typedef T element_type;
899 
900  explicit scoped_ptr(T * p = NULL) : ptr_(p) {}
901  ~scoped_ptr() { reset(); }
902 
903  T & operator*() const { return *ptr_; }
904  T * operator->() const { return ptr_; }
905  T * get() const { return ptr_; }
906 
907  T * release()
908  {
909  T * const ptr = ptr_;
910  ptr_ = NULL;
911  return ptr;
912  }
913 
914  void reset(T * p = NULL)
915  {
916  if (p != ptr_)
917  {
918  if (IsTrue(sizeof(T) > 0)) // Makes sure T is a complete type.
919  {
920  delete ptr_;
921  }
922 
923  ptr_ = p;
924  }
925  }
926 
927 private:
928  T * ptr_;
929 
931 };
932 
933 // Defines RE.
934 
935 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
936 // Regular Expression syntax.
937 class GTEST_API_ RE
938 {
939 public:
940  // A copy constructor is required by the Standard to initialize object
941  // references from r-values.
942  RE(const RE & other) { Init(other.pattern()); }
943 
944  // Constructs an RE from a string.
945  RE(const ::std::string & regex) { Init(regex.c_str()); } // NOLINT
946 
947 #if GTEST_HAS_GLOBAL_STRING
948 
949  RE(const ::string & regex) { Init(regex.c_str()); } // NOLINT
950 
951 #endif // GTEST_HAS_GLOBAL_STRING
952 
953  RE(const char * regex) { Init(regex); } // NOLINT
954  ~RE();
955 
956  // Returns the string representation of the regex.
957  const char * pattern() const { return pattern_; }
958 
959  // FullMatch(str, re) returns true iff regular expression re matches
960  // the entire str.
961  // PartialMatch(str, re) returns true iff regular expression re
962  // matches a substring of str (including str itself).
963  //
964  // TODO(wan@google.com): make FullMatch() and PartialMatch() work
965  // when str contains NUL characters.
966  static bool FullMatch(const ::std::string & str, const RE & re)
967  {
968  return FullMatch(str.c_str(), re);
969  }
970  static bool PartialMatch(const ::std::string & str, const RE & re)
971  {
972  return PartialMatch(str.c_str(), re);
973  }
974 
975 #if GTEST_HAS_GLOBAL_STRING
976 
977  static bool FullMatch(const ::string & str, const RE & re)
978  {
979  return FullMatch(str.c_str(), re);
980  }
981  static bool PartialMatch(const ::string & str, const RE & re)
982  {
983  return PartialMatch(str.c_str(), re);
984  }
985 
986 #endif // GTEST_HAS_GLOBAL_STRING
987 
988  static bool FullMatch(const char * str, const RE & re);
989  static bool PartialMatch(const char * str, const RE & re);
990 
991 private:
992  void Init(const char * regex);
993 
994  // We use a const char* instead of an std::string, as Google Test used to be
995  // used where std::string is not available. TODO(wan@google.com): change to
996  // std::string.
997  const char * pattern_;
998  bool is_valid_;
999 
1000 #if GTEST_USES_POSIX_RE
1001 
1002  regex_t full_regex_; // For FullMatch().
1003  regex_t partial_regex_; // For PartialMatch().
1004 
1005 #else // GTEST_USES_SIMPLE_RE
1006 
1007  const char * full_pattern_; // For FullMatch();
1008 
1009 #endif
1010 
1012 };
1013 
1014 // Formats a source file path and a line number as they would appear
1015 // in an error message from the compiler used to compile this code.
1016 GTEST_API_ ::std::string FormatFileLocation(const char * file, int line);
1017 
1018 // Formats a file location for compiler-independent XML output.
1019 // Although this function is not platform dependent, we put it next to
1020 // FormatFileLocation in order to contrast the two functions.
1022  int line);
1023 
1024 // Defines logging utilities:
1025 // GTEST_LOG_(severity) - logs messages at the specified severity level. The
1026 // message itself is streamed into the macro.
1027 // LogToStderr() - directs all log messages to stderr.
1028 // FlushInfoLog() - flushes informational log messages.
1029 
1031 {
1032  GTEST_INFO,
1033  GTEST_WARNING,
1034  GTEST_ERROR,
1035  GTEST_FATAL
1036 };
1037 
1038 // Formats log entry severity, provides a stream object for streaming the
1039 // log message, and terminates the message with a newline when going out of
1040 // scope.
1041 class GTEST_API_ GTestLog
1042 {
1043 public:
1044  GTestLog(GTestLogSeverity severity, const char * file, int line);
1045 
1046  // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
1047  ~GTestLog();
1048 
1049  ::std::ostream & GetStream() { return ::std::cerr; }
1050 
1051 private:
1052  const GTestLogSeverity severity_;
1053 
1055 };
1056 
1057 #define GTEST_LOG_(severity) \
1058  ::testing::internal::GTestLog(::testing::internal::GTEST_##severity, \
1059  __FILE__, __LINE__).GetStream()
1060 
1061 inline void LogToStderr() {}
1062 inline void FlushInfoLog() { fflush(NULL); }
1063 
1064 // INTERNAL IMPLEMENTATION - DO NOT USE.
1065 //
1066 // GTEST_CHECK_ is an all-mode assert. It aborts the program if the condition
1067 // is not satisfied.
1068 // Synopsys:
1069 // GTEST_CHECK_(boolean_condition);
1070 // or
1071 // GTEST_CHECK_(boolean_condition) << "Additional message";
1072 //
1073 // This checks the condition and if the condition is not satisfied
1074 // it prints message about the condition violation, including the
1075 // condition itself, plus additional message streamed into it, if any,
1076 // and then it aborts the program. It aborts the program irrespective of
1077 // whether it is built in the debug mode or not.
1078 #define GTEST_CHECK_(condition) \
1079  GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
1080  if (::testing::internal::IsTrue(condition)) \
1081  ; \
1082  else \
1083  GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
1084 
1085 // An all-mode assert to verify that the given POSIX-style function
1086 // call returns 0 (indicating success). Known limitation: this
1087 // doesn't expand to a balanced 'if' statement, so enclose the macro
1088 // in {} if you need to use it as the only statement in an 'if'
1089 // branch.
1090 #define GTEST_CHECK_POSIX_SUCCESS_(posix_call) \
1091  if (const int gtest_error = (posix_call)) \
1092  GTEST_LOG_(FATAL) << #posix_call << "failed with error " \
1093  << gtest_error
1094 
1095 // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
1096 //
1097 // Use ImplicitCast_ as a safe version of static_cast for upcasting in
1098 // the type hierarchy (e.g. casting a Foo* to a SuperclassOfFoo* or a
1099 // const Foo*). When you use ImplicitCast_, the compiler checks that
1100 // the cast is safe. Such explicit ImplicitCast_s are necessary in
1101 // surprisingly many situations where C++ demands an exact type match
1102 // instead of an argument type convertable to a target type.
1103 //
1104 // The syntax for using ImplicitCast_ is the same as for static_cast:
1105 //
1106 // ImplicitCast_<ToType>(expr)
1107 //
1108 // ImplicitCast_ would have been part of the C++ standard library,
1109 // but the proposal was submitted too late. It will probably make
1110 // its way into the language in the future.
1111 //
1112 // This relatively ugly name is intentional. It prevents clashes with
1113 // similar functions users may have (e.g., implicit_cast). The internal
1114 // namespace alone is not enough because the function can be found by ADL.
1115 template<typename To>
1116 inline To ImplicitCast_(To x) { return x; }
1117 
1118 // When you upcast (that is, cast a pointer from type Foo to type
1119 // SuperclassOfFoo), it's fine to use ImplicitCast_<>, since upcasts
1120 // always succeed. When you downcast (that is, cast a pointer from
1121 // type Foo to type SubclassOfFoo), static_cast<> isn't safe, because
1122 // how do you know the pointer is really of type SubclassOfFoo? It
1123 // could be a bare Foo, or of type DifferentSubclassOfFoo. Thus,
1124 // when you downcast, you should use this macro. In debug mode, we
1125 // use dynamic_cast<> to double-check the downcast is legal (we die
1126 // if it's not). In normal mode, we do the efficient static_cast<>
1127 // instead. Thus, it's important to test in debug mode to make sure
1128 // the cast is legal!
1129 // This is the only place in the code we should use dynamic_cast<>.
1130 // In particular, you SHOULDN'T be using dynamic_cast<> in order to
1131 // do RTTI (eg code like this:
1132 // if (dynamic_cast<Subclass1>(foo)) HandleASubclass1Object(foo);
1133 // if (dynamic_cast<Subclass2>(foo)) HandleASubclass2Object(foo);
1134 // You should design the code some other way not to need this.
1135 //
1136 // This relatively ugly name is intentional. It prevents clashes with
1137 // similar functions users may have (e.g., down_cast). The internal
1138 // namespace alone is not enough because the function can be found by ADL.
1139 template<typename To, typename From> // use like this: DownCast_<T*>(foo);
1140 inline To DownCast_(From * f) // so we only accept pointers
1141 {
1142  // Ensures that To is a sub-type of From *. This test is here only
1143  // for compile-time type checking, and has no overhead in an
1144  // optimized build at run-time, as it will be optimized away
1145  // completely.
1146  if (false)
1147  {
1148  const To to = NULL;
1149  ::testing::internal::ImplicitCast_<From *>(to);
1150  }
1151 
1152 #if GTEST_HAS_RTTI
1153  // RTTI: debug mode only!
1154  GTEST_CHECK_(f == NULL || dynamic_cast<To>(f) != NULL);
1155 #endif
1156  return static_cast<To>(f);
1157 }
1158 
1159 // Downcasts the pointer of type Base to Derived.
1160 // Derived must be a subclass of Base. The parameter MUST
1161 // point to a class of type Derived, not any subclass of it.
1162 // When RTTI is available, the function performs a runtime
1163 // check to enforce this.
1164 template <class Derived, class Base>
1165 Derived * CheckedDowncastToActualType(Base * base)
1166 {
1167 #if GTEST_HAS_RTTI
1168  GTEST_CHECK_(typeid(*base) == typeid(Derived));
1169  return dynamic_cast<Derived *>(base); // NOLINT
1170 #else
1171  return static_cast<Derived *>(base); // Poor man's downcast.
1172 #endif
1173 }
1174 
1175 #if GTEST_HAS_STREAM_REDIRECTION
1176 
1177 // Defines the stderr capturer:
1178 // CaptureStdout - starts capturing stdout.
1179 // GetCapturedStdout - stops capturing stdout and returns the captured string.
1180 // CaptureStderr - starts capturing stderr.
1181 // GetCapturedStderr - stops capturing stderr and returns the captured string.
1182 //
1183 GTEST_API_ void CaptureStdout();
1185 GTEST_API_ void CaptureStderr();
1187 
1188 #endif // GTEST_HAS_STREAM_REDIRECTION
1189 
1190 
1191 #if GTEST_HAS_DEATH_TEST
1192 
1193 const ::std::vector<testing::internal::string> & GetInjectableArgvs();
1194 void SetInjectableArgvs(const ::std::vector<testing::internal::string> *
1195  new_argvs);
1196 
1197 // A copy of all command line arguments. Set by InitGoogleTest().
1198 extern ::std::vector<testing::internal::string> g_argvs;
1199 
1200 #endif // GTEST_HAS_DEATH_TEST
1201 
1202 // Defines synchronization primitives.
1203 
1204 #if GTEST_HAS_PTHREAD
1205 
1206 // Sleeps for (roughly) n milli-seconds. This function is only for
1207 // testing Google Test's own constructs. Don't use it in user tests,
1208 // either directly or indirectly.
1209 inline void SleepMilliseconds(int n)
1210 {
1211  const timespec time =
1212  {
1213  0, // 0 seconds.
1214  n * 1000L * 1000L, // And n ms.
1215  };
1216  nanosleep(&time, NULL);
1217 }
1218 
1219 // Allows a controller thread to pause execution of newly created
1220 // threads until notified. Instances of this class must be created
1221 // and destroyed in the controller thread.
1222 //
1223 // This class is only for testing Google Test's own constructs. Do not
1224 // use it in user tests, either directly or indirectly.
1225 class Notification
1226 {
1227 public:
1228  Notification() : notified_(false)
1229  {
1230  GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL));
1231  }
1232  ~Notification()
1233  {
1234  pthread_mutex_destroy(&mutex_);
1235  }
1236 
1237  // Notifies all threads created with this notification to start. Must
1238  // be called from the controller thread.
1239  void Notify()
1240  {
1241  pthread_mutex_lock(&mutex_);
1242  notified_ = true;
1243  pthread_mutex_unlock(&mutex_);
1244  }
1245 
1246  // Blocks until the controller thread notifies. Must be called from a test
1247  // thread.
1248  void WaitForNotification()
1249  {
1250  for (;;)
1251  {
1252  pthread_mutex_lock(&mutex_);
1253  const bool notified = notified_;
1254  pthread_mutex_unlock(&mutex_);
1255 
1256  if (notified)
1257  { break; }
1258 
1259  SleepMilliseconds(10);
1260  }
1261  }
1262 
1263 private:
1264  pthread_mutex_t mutex_;
1265  bool notified_;
1266 
1267  GTEST_DISALLOW_COPY_AND_ASSIGN_(Notification);
1268 };
1269 
1270 // As a C-function, ThreadFuncWithCLinkage cannot be templated itself.
1271 // Consequently, it cannot select a correct instantiation of ThreadWithParam
1272 // in order to call its Run(). Introducing ThreadWithParamBase as a
1273 // non-templated base class for ThreadWithParam allows us to bypass this
1274 // problem.
1275 class ThreadWithParamBase
1276 {
1277 public:
1278  virtual ~ThreadWithParamBase() {}
1279  virtual void Run() = 0;
1280 };
1281 
1282 // pthread_create() accepts a pointer to a function type with the C linkage.
1283 // According to the Standard (7.5/1), function types with different linkages
1284 // are different even if they are otherwise identical. Some compilers (for
1285 // example, SunStudio) treat them as different types. Since class methods
1286 // cannot be defined with C-linkage we need to define a free C-function to
1287 // pass into pthread_create().
1288 extern "C" inline void * ThreadFuncWithCLinkage(void * thread)
1289 {
1290  static_cast<ThreadWithParamBase *>(thread)->Run();
1291  return NULL;
1292 }
1293 
1294 // Helper class for testing Google Test's multi-threading constructs.
1295 // To use it, write:
1296 //
1297 // void ThreadFunc(int param) { /* Do things with param */ }
1298 // Notification thread_can_start;
1299 // ...
1300 // // The thread_can_start parameter is optional; you can supply NULL.
1301 // ThreadWithParam<int> thread(&ThreadFunc, 5, &thread_can_start);
1302 // thread_can_start.Notify();
1303 //
1304 // These classes are only for testing Google Test's own constructs. Do
1305 // not use them in user tests, either directly or indirectly.
1306 template <typename T>
1307 class ThreadWithParam : public ThreadWithParamBase
1308 {
1309 public:
1310  typedef void (*UserThreadFunc)(T);
1311 
1312  ThreadWithParam(
1313  UserThreadFunc func, T param, Notification * thread_can_start)
1314  : func_(func),
1315  param_(param),
1316  thread_can_start_(thread_can_start),
1317  finished_(false)
1318  {
1319  ThreadWithParamBase * const base = this;
1320  // The thread can be created only after all fields except thread_
1321  // have been initialized.
1323  pthread_create(&thread_, 0, &ThreadFuncWithCLinkage, base));
1324  }
1325  ~ThreadWithParam() { Join(); }
1326 
1327  void Join()
1328  {
1329  if (!finished_)
1330  {
1331  GTEST_CHECK_POSIX_SUCCESS_(pthread_join(thread_, 0));
1332  finished_ = true;
1333  }
1334  }
1335 
1336  virtual void Run()
1337  {
1338  if (thread_can_start_ != NULL)
1339  { thread_can_start_->WaitForNotification(); }
1340 
1341  func_(param_);
1342  }
1343 
1344 private:
1345  const UserThreadFunc func_; // User-supplied thread function.
1346  const T param_; // User-supplied parameter to the thread function.
1347  // When non-NULL, used to block execution until the controller thread
1348  // notifies.
1349  Notification * const thread_can_start_;
1350  bool finished_; // true iff we know that the thread function has finished.
1351  pthread_t thread_; // The native thread object.
1352 
1353  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadWithParam);
1354 };
1355 
1356 // MutexBase and Mutex implement mutex on pthreads-based platforms. They
1357 // are used in conjunction with class MutexLock:
1358 //
1359 // Mutex mutex;
1360 // ...
1361 // MutexLock lock(&mutex); // Acquires the mutex and releases it at the end
1362 // // of the current scope.
1363 //
1364 // MutexBase implements behavior for both statically and dynamically
1365 // allocated mutexes. Do not use MutexBase directly. Instead, write
1366 // the following to define a static mutex:
1367 //
1368 // GTEST_DEFINE_STATIC_MUTEX_(g_some_mutex);
1369 //
1370 // You can forward declare a static mutex like this:
1371 //
1372 // GTEST_DECLARE_STATIC_MUTEX_(g_some_mutex);
1373 //
1374 // To create a dynamic mutex, just define an object of type Mutex.
1375 class MutexBase
1376 {
1377 public:
1378  // Acquires this mutex.
1379  void Lock()
1380  {
1381  GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_));
1382  owner_ = pthread_self();
1383  has_owner_ = true;
1384  }
1385 
1386  // Releases this mutex.
1387  void Unlock()
1388  {
1389  // Since the lock is being released the owner_ field should no longer be
1390  // considered valid. We don't protect writing to has_owner_ here, as it's
1391  // the caller's responsibility to ensure that the current thread holds the
1392  // mutex when this is called.
1393  has_owner_ = false;
1394  GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_));
1395  }
1396 
1397  // Does nothing if the current thread holds the mutex. Otherwise, crashes
1398  // with high probability.
1399  void AssertHeld() const
1400  {
1401  GTEST_CHECK_(has_owner_ && pthread_equal(owner_, pthread_self()))
1402  << "The current thread is not holding the mutex @" << this;
1403  }
1404 
1405  // A static mutex may be used before main() is entered. It may even
1406  // be used before the dynamic initialization stage. Therefore we
1407  // must be able to initialize a static mutex object at link time.
1408  // This means MutexBase has to be a POD and its member variables
1409  // have to be public.
1410 public:
1411  pthread_mutex_t mutex_; // The underlying pthread mutex.
1412  // has_owner_ indicates whether the owner_ field below contains a valid thread
1413  // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
1414  // accesses to the owner_ field should be protected by a check of this field.
1415  // An alternative might be to memset() owner_ to all zeros, but there's no
1416  // guarantee that a zero'd pthread_t is necessarily invalid or even different
1417  // from pthread_self().
1418  bool has_owner_;
1419  pthread_t owner_; // The thread holding the mutex.
1420 };
1421 
1422 // Forward-declares a static mutex.
1423 # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \
1424  extern ::testing::internal::MutexBase mutex
1425 
1426 // Defines and statically (i.e. at link time) initializes a static mutex.
1427 // The initialization list here does not explicitly initialize each field,
1428 // instead relying on default initialization for the unspecified fields. In
1429 // particular, the owner_ field (a pthread_t) is not explicitly initialized.
1430 // This allows initialization to work whether pthread_t is a scalar or struct.
1431 // The flag -Wmissing-field-initializers must not be specified for this to work.
1432 # define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
1433  ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false }
1434 
1435 // The Mutex class can only be used for mutexes created at runtime. It
1436 // shares its API with MutexBase otherwise.
1437 class Mutex : public MutexBase
1438 {
1439 public:
1440  Mutex()
1441  {
1442  GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL));
1443  has_owner_ = false;
1444  }
1445  ~Mutex()
1446  {
1447  GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_destroy(&mutex_));
1448  }
1449 
1450 private:
1452 };
1453 
1454 // We cannot name this class MutexLock as the ctor declaration would
1455 // conflict with a macro named MutexLock, which is defined on some
1456 // platforms. Hence the typedef trick below.
1457 class GTestMutexLock
1458 {
1459 public:
1460  explicit GTestMutexLock(MutexBase * mutex)
1461  : mutex_(mutex) { mutex_->Lock(); }
1462 
1463  ~GTestMutexLock() { mutex_->Unlock(); }
1464 
1465 private:
1466  MutexBase * const mutex_;
1467 
1468  GTEST_DISALLOW_COPY_AND_ASSIGN_(GTestMutexLock);
1469 };
1470 
1471 typedef GTestMutexLock MutexLock;
1472 
1473 // Helpers for ThreadLocal.
1474 
1475 // pthread_key_create() requires DeleteThreadLocalValue() to have
1476 // C-linkage. Therefore it cannot be templatized to access
1477 // ThreadLocal<T>. Hence the need for class
1478 // ThreadLocalValueHolderBase.
1479 class ThreadLocalValueHolderBase
1480 {
1481 public:
1482  virtual ~ThreadLocalValueHolderBase() {}
1483 };
1484 
1485 // Called by pthread to delete thread-local data stored by
1486 // pthread_setspecific().
1487 extern "C" inline void DeleteThreadLocalValue(void * value_holder)
1488 {
1489  delete static_cast<ThreadLocalValueHolderBase *>(value_holder);
1490 }
1491 
1492 // Implements thread-local storage on pthreads-based systems.
1493 //
1494 // // Thread 1
1495 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
1496 //
1497 // // Thread 2
1498 // tl.set(150); // Changes the value for thread 2 only.
1499 // EXPECT_EQ(150, tl.get());
1500 //
1501 // // Thread 1
1502 // EXPECT_EQ(100, tl.get()); // In thread 1, tl has the original value.
1503 // tl.set(200);
1504 // EXPECT_EQ(200, tl.get());
1505 //
1506 // The template type argument T must have a public copy constructor.
1507 // In addition, the default ThreadLocal constructor requires T to have
1508 // a public default constructor.
1509 //
1510 // An object managed for a thread by a ThreadLocal instance is deleted
1511 // when the thread exits. Or, if the ThreadLocal instance dies in
1512 // that thread, when the ThreadLocal dies. It's the user's
1513 // responsibility to ensure that all other threads using a ThreadLocal
1514 // have exited when it dies, or the per-thread objects for those
1515 // threads will not be deleted.
1516 //
1517 // Google Test only uses global ThreadLocal objects. That means they
1518 // will die after main() has returned. Therefore, no per-thread
1519 // object managed by Google Test will be leaked as long as all threads
1520 // using Google Test have exited when main() returns.
1521 template <typename T>
1522 class ThreadLocal
1523 {
1524 public:
1525  ThreadLocal() : key_(CreateKey()),
1526  default_() {}
1527  explicit ThreadLocal(const T & value) : key_(CreateKey()),
1528  default_(value) {}
1529 
1530  ~ThreadLocal()
1531  {
1532  // Destroys the managed object for the current thread, if any.
1533  DeleteThreadLocalValue(pthread_getspecific(key_));
1534 
1535  // Releases resources associated with the key. This will *not*
1536  // delete managed objects for other threads.
1537  GTEST_CHECK_POSIX_SUCCESS_(pthread_key_delete(key_));
1538  }
1539 
1540  T * pointer() { return GetOrCreateValue(); }
1541  const T * pointer() const { return GetOrCreateValue(); }
1542  const T & get() const { return *pointer(); }
1543  void set(const T & value) { *pointer() = value; }
1544 
1545 private:
1546  // Holds a value of type T.
1547  class ValueHolder : public ThreadLocalValueHolderBase
1548  {
1549  public:
1550  explicit ValueHolder(const T & value) : value_(value) {}
1551 
1552  T * pointer() { return &value_; }
1553 
1554  private:
1555  T value_;
1556  GTEST_DISALLOW_COPY_AND_ASSIGN_(ValueHolder);
1557  };
1558 
1559  static pthread_key_t CreateKey()
1560  {
1561  pthread_key_t key;
1562  // When a thread exits, DeleteThreadLocalValue() will be called on
1563  // the object managed for that thread.
1565  pthread_key_create(&key, &DeleteThreadLocalValue));
1566  return key;
1567  }
1568 
1569  T * GetOrCreateValue() const
1570  {
1571  ThreadLocalValueHolderBase * const holder =
1572  static_cast<ThreadLocalValueHolderBase *>(pthread_getspecific(key_));
1573 
1574  if (holder != NULL)
1575  {
1576  return CheckedDowncastToActualType<ValueHolder>(holder)->pointer();
1577  }
1578 
1579  ValueHolder * const new_holder = new ValueHolder(default_);
1580  ThreadLocalValueHolderBase * const holder_base = new_holder;
1581  GTEST_CHECK_POSIX_SUCCESS_(pthread_setspecific(key_, holder_base));
1582  return new_holder->pointer();
1583  }
1584 
1585  // A key pthreads uses for looking up per-thread values.
1586  const pthread_key_t key_;
1587  const T default_; // The default value for each thread.
1588 
1589  GTEST_DISALLOW_COPY_AND_ASSIGN_(ThreadLocal);
1590 };
1591 
1592 # define GTEST_IS_THREADSAFE 1
1593 
1594 #else // GTEST_HAS_PTHREAD
1595 
1596 // A dummy implementation of synchronization primitives (mutex, lock,
1597 // and thread-local variable). Necessary for compiling Google Test where
1598 // mutex is not supported - using Google Test in multiple threads is not
1599 // supported on such platforms.
1600 
1601 class Mutex
1602 {
1603 public:
1604  Mutex() {}
1605  void Lock() {}
1606  void Unlock() {}
1607  void AssertHeld() const {}
1608 };
1609 
1610 # define GTEST_DECLARE_STATIC_MUTEX_(mutex) \
1611  extern ::testing::internal::Mutex mutex
1612 
1613 # define GTEST_DEFINE_STATIC_MUTEX_(mutex) ::testing::internal::Mutex mutex
1614 
1615 class GTestMutexLock
1616 {
1617 public:
1618  explicit GTestMutexLock(Mutex *) {} // NOLINT
1619 };
1620 
1621 typedef GTestMutexLock MutexLock;
1622 
1623 template <typename T>
1624 class ThreadLocal
1625 {
1626 public:
1627  ThreadLocal() : value_() {}
1628  explicit ThreadLocal(const T & value) : value_(value) {}
1629  T * pointer() { return &value_; }
1630  const T * pointer() const { return &value_; }
1631  const T & get() const { return value_; }
1632  void set(const T & value) { value_ = value; }
1633 private:
1634  T value_;
1635 };
1636 
1637 // The above synchronization primitives have dummy implementations.
1638 // Therefore Google Test is not thread-safe.
1639 # define GTEST_IS_THREADSAFE 0
1640 
1641 #endif // GTEST_HAS_PTHREAD
1642 
1643 // Returns the number of threads running in the process, or 0 to indicate that
1644 // we cannot detect it.
1645 GTEST_API_ size_t GetThreadCount();
1646 
1647 // Passing non-POD classes through ellipsis (...) crashes the ARM
1648 // compiler and generates a warning in Sun Studio. The Nokia Symbian
1649 // and the IBM XL C/C++ compiler try to instantiate a copy constructor
1650 // for objects passed through ellipsis (...), failing for uncopyable
1651 // objects. We define this to ensure that only POD is passed through
1652 // ellipsis on these systems.
1653 #if defined(__SYMBIAN32__) || defined(__IBMCPP__) || defined(__SUNPRO_CC)
1654 // We lose support for NULL detection where the compiler doesn't like
1655 // passing non-POD classes through ellipsis (...).
1656 # define GTEST_ELLIPSIS_NEEDS_POD_ 1
1657 #else
1658 # define GTEST_CAN_COMPARE_NULL 1
1659 #endif
1660 
1661 // The Nokia Symbian and IBM XL C/C++ compilers cannot decide between
1662 // const T& and const T* in a function template. These compilers
1663 // _can_ decide between class template specializations for T and T*,
1664 // so a tr1::type_traits-like is_pointer works.
1665 #if defined(__SYMBIAN32__) || defined(__IBMCPP__)
1666 # define GTEST_NEEDS_IS_POINTER_ 1
1667 #endif
1668 
1669 template <bool bool_value>
1670 struct bool_constant
1671 {
1673  static const bool value = bool_value;
1674 };
1675 template <bool bool_value> const bool bool_constant<bool_value>::value;
1676 
1679 
1680 template <typename T>
1681 struct is_pointer : public false_type {};
1682 
1683 template <typename T>
1684 struct is_pointer<T *> : public true_type {};
1685 
1686 template <typename Iterator>
1687 struct IteratorTraits
1688 {
1689  typedef typename Iterator::value_type value_type;
1690 };
1691 
1692 template <typename T>
1693 struct IteratorTraits<T *>
1694 {
1695  typedef T value_type;
1696 };
1697 
1698 template <typename T>
1699 struct IteratorTraits<const T *>
1700 {
1701  typedef T value_type;
1702 };
1703 
1704 #if GTEST_OS_WINDOWS
1705 # define GTEST_PATH_SEP_ "\\"
1706 # define GTEST_HAS_ALT_PATH_SEP_ 1
1707 // The biggest signed integer type the compiler supports.
1708 typedef __int64 BiggestInt;
1709 #else
1710 # define GTEST_PATH_SEP_ "/"
1711 # define GTEST_HAS_ALT_PATH_SEP_ 0
1712 typedef long long BiggestInt; // NOLINT
1713 #endif // GTEST_OS_WINDOWS
1714 
1715 // Utilities for char.
1716 
1717 // isspace(int ch) and friends accept an unsigned char or EOF. char
1718 // may be signed, depending on the compiler (or compiler flags).
1719 // Therefore we need to cast a char to unsigned char before calling
1720 // isspace(), etc.
1721 
1722 inline bool IsAlpha(char ch)
1723 {
1724  return isalpha(static_cast<unsigned char>(ch)) != 0;
1725 }
1726 inline bool IsAlNum(char ch)
1727 {
1728  return isalnum(static_cast<unsigned char>(ch)) != 0;
1729 }
1730 inline bool IsDigit(char ch)
1731 {
1732  return isdigit(static_cast<unsigned char>(ch)) != 0;
1733 }
1734 inline bool IsLower(char ch)
1735 {
1736  return islower(static_cast<unsigned char>(ch)) != 0;
1737 }
1738 inline bool IsSpace(char ch)
1739 {
1740  return isspace(static_cast<unsigned char>(ch)) != 0;
1741 }
1742 inline bool IsUpper(char ch)
1743 {
1744  return isupper(static_cast<unsigned char>(ch)) != 0;
1745 }
1746 inline bool IsXDigit(char ch)
1747 {
1748  return isxdigit(static_cast<unsigned char>(ch)) != 0;
1749 }
1750 inline bool IsXDigit(wchar_t ch)
1751 {
1752  const unsigned char low_byte = static_cast<unsigned char>(ch);
1753  return ch == low_byte && isxdigit(low_byte) != 0;
1754 }
1755 
1756 inline char ToLower(char ch)
1757 {
1758  return static_cast<char>(tolower(static_cast<unsigned char>(ch)));
1759 }
1760 inline char ToUpper(char ch)
1761 {
1762  return static_cast<char>(toupper(static_cast<unsigned char>(ch)));
1763 }
1764 
1765 // The testing::internal::posix namespace holds wrappers for common
1766 // POSIX functions. These wrappers hide the differences between
1767 // Windows/MSVC and POSIX systems. Since some compilers define these
1768 // standard functions as macros, the wrapper cannot have the same name
1769 // as the wrapped function.
1770 
1771 namespace posix
1772 {
1773 
1774 // Functions with a different name on Windows.
1775 
1776 #if GTEST_OS_WINDOWS
1777 
1778 typedef struct _stat StatStruct;
1779 
1780 # ifdef __BORLANDC__
1781 inline int IsATTY(int fd) { return isatty(fd); }
1782 inline int StrCaseCmp(const char * s1, const char * s2)
1783 {
1784  return stricmp(s1, s2);
1785 }
1786 inline char * StrDup(const char * src) { return strdup(src); }
1787 # else // !__BORLANDC__
1788 # if GTEST_OS_WINDOWS_MOBILE
1789 inline int IsATTY(int /* fd */) { return 0; }
1790 # else
1791 inline int IsATTY(int fd) { return _isatty(fd); }
1792 # endif // GTEST_OS_WINDOWS_MOBILE
1793 inline int StrCaseCmp(const char * s1, const char * s2)
1794 {
1795  return _stricmp(s1, s2);
1796 }
1797 inline char * StrDup(const char * src) { return _strdup(src); }
1798 # endif // __BORLANDC__
1799 
1800 # if GTEST_OS_WINDOWS_MOBILE
1801 inline int FileNo(FILE * file) { return reinterpret_cast<int>(_fileno(file)); }
1802 // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
1803 // time and thus not defined there.
1804 # else
1805 inline int FileNo(FILE * file) { return _fileno(file); }
1806 inline int Stat(const char * path, StatStruct * buf) { return _stat(path, buf); }
1807 inline int RmDir(const char * dir) { return _rmdir(dir); }
1808 inline bool IsDir(const StatStruct & st)
1809 {
1810  return (_S_IFDIR & st.st_mode) != 0;
1811 }
1812 # endif // GTEST_OS_WINDOWS_MOBILE
1813 
1814 #else
1815 
1816 typedef struct stat StatStruct;
1817 
1818 inline int FileNo(FILE * file) { return fileno(file); }
1819 inline int IsATTY(int fd) { return isatty(fd); }
1820 inline int Stat(const char * path, StatStruct * buf) { return stat(path, buf); }
1821 inline int StrCaseCmp(const char * s1, const char * s2)
1822 {
1823  return strcasecmp(s1, s2);
1824 }
1825 inline char * StrDup(const char * src) { return strdup(src); }
1826 inline int RmDir(const char * dir) { return rmdir(dir); }
1827 inline bool IsDir(const StatStruct & st) { return S_ISDIR(st.st_mode); }
1828 
1829 #endif // GTEST_OS_WINDOWS
1830 
1831 // Functions deprecated by MSVC 8.0.
1832 
1833 #ifdef _MSC_VER
1834 // Temporarily disable warning 4996 (deprecated function).
1835 # pragma warning(push)
1836 # pragma warning(disable:4996)
1837 #endif
1838 
1839 inline const char * StrNCpy(char * dest, const char * src, size_t n)
1840 {
1841  return strncpy(dest, src, n);
1842 }
1843 
1844 // ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and
1845 // StrError() aren't needed on Windows CE at this time and thus not
1846 // defined there.
1847 
1848 #if !GTEST_OS_WINDOWS_MOBILE
1849 inline int ChDir(const char * dir) { return chdir(dir); }
1850 #endif
1851 inline FILE * FOpen(const char * path, const char * mode)
1852 {
1853  return fopen(path, mode);
1854 }
1855 #if !GTEST_OS_WINDOWS_MOBILE
1856 inline FILE * FReopen(const char * path, const char * mode, FILE * stream)
1857 {
1858  return freopen(path, mode, stream);
1859 }
1860 inline FILE * FDOpen(int fd, const char * mode) { return fdopen(fd, mode); }
1861 #endif
1862 inline int FClose(FILE * fp) { return fclose(fp); }
1863 #if !GTEST_OS_WINDOWS_MOBILE
1864 inline int Read(int fd, void * buf, unsigned int count)
1865 {
1866  return static_cast<int>(read(fd, buf, count));
1867 }
1868 inline int Write(int fd, const void * buf, unsigned int count)
1869 {
1870  return static_cast<int>(write(fd, buf, count));
1871 }
1872 inline int Close(int fd) { return close(fd); }
1873 inline const char * StrError(int errnum) { return strerror(errnum); }
1874 #endif
1875 inline const char * GetEnv(const char * name)
1876 {
1877 #if GTEST_OS_WINDOWS_MOBILE
1878  // We are on Windows CE, which has no environment variables.
1879  return NULL;
1880 #elif defined(__BORLANDC__) || defined(__SunOS_5_8) || defined(__SunOS_5_9)
1881  // Environment variables which we programmatically clear will be set to the
1882  // empty string rather than unset (NULL). Handle that case.
1883  const char * const env = getenv(name);
1884  return (env != NULL && env[0] != '\0') ? env : NULL;
1885 #else
1886  return getenv(name);
1887 #endif
1888 }
1889 
1890 #ifdef _MSC_VER
1891 # pragma warning(pop) // Restores the warning state.
1892 #endif
1893 
1894 #if GTEST_OS_WINDOWS_MOBILE
1895 // Windows CE has no C library. The abort() function is used in
1896 // several places in Google Test. This implementation provides a reasonable
1897 // imitation of standard behaviour.
1898 void Abort();
1899 #else
1900 inline void Abort() { abort(); }
1901 #endif // GTEST_OS_WINDOWS_MOBILE
1902 
1903 } // namespace posix
1904 
1905 // MSVC "deprecates" snprintf and issues warnings wherever it is used. In
1906 // order to avoid these warnings, we need to use _snprintf or _snprintf_s on
1907 // MSVC-based platforms. We map the GTEST_SNPRINTF_ macro to the appropriate
1908 // function in order to achieve that. We use macro definition here because
1909 // snprintf is a variadic function.
1910 #if _MSC_VER >= 1400 && !GTEST_OS_WINDOWS_MOBILE
1911 // MSVC 2005 and above support variadic macros.
1912 # define GTEST_SNPRINTF_(buffer, size, format, ...) \
1913  _snprintf_s(buffer, size, size, format, __VA_ARGS__)
1914 #elif defined(_MSC_VER)
1915 // Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't
1916 // complain about _snprintf.
1917 # define GTEST_SNPRINTF_ _snprintf
1918 #else
1919 # define GTEST_SNPRINTF_ snprintf
1920 #endif
1921 
1922 // The maximum number a BiggestInt can represent. This definition
1923 // works no matter BiggestInt is represented in one's complement or
1924 // two's complement.
1925 //
1926 // We cannot rely on numeric_limits in STL, as __int64 and long long
1927 // are not part of standard C++ and numeric_limits doesn't need to be
1928 // defined for them.
1929 const BiggestInt kMaxBiggestInt =
1930  ~(static_cast<BiggestInt>(1) << (8 * sizeof(BiggestInt) - 1));
1931 
1932 // This template class serves as a compile-time function from size to
1933 // type. It maps a size in bytes to a primitive type with that
1934 // size. e.g.
1935 //
1936 // TypeWithSize<4>::UInt
1937 //
1938 // is typedef-ed to be unsigned int (unsigned integer made up of 4
1939 // bytes).
1940 //
1941 // Such functionality should belong to STL, but I cannot find it
1942 // there.
1943 //
1944 // Google Test uses this class in the implementation of floating-point
1945 // comparison.
1946 //
1947 // For now it only handles UInt (unsigned int) as that's all Google Test
1948 // needs. Other types can be easily added in the future if need
1949 // arises.
1950 template <size_t size>
1951 class TypeWithSize
1952 {
1953 public:
1954  // This prevents the user from using TypeWithSize<N> with incorrect
1955  // values of N.
1956  typedef void UInt;
1957 };
1958 
1959 // The specialization for size 4.
1960 template <>
1961 class TypeWithSize<4>
1962 {
1963 public:
1964  // unsigned int has size 4 in both gcc and MSVC.
1965  //
1966  // As base/basictypes.h doesn't compile on Windows, we cannot use
1967  // uint32, uint64, and etc here.
1968  typedef int Int;
1969  typedef unsigned int UInt;
1970 };
1971 
1972 // The specialization for size 8.
1973 template <>
1974 class TypeWithSize<8>
1975 {
1976 public:
1977 #if GTEST_OS_WINDOWS
1978  typedef __int64 Int;
1979  typedef unsigned __int64 UInt;
1980 #else
1981  typedef long long Int; // NOLINT
1982  typedef unsigned long long UInt; // NOLINT
1983 #endif // GTEST_OS_WINDOWS
1984 };
1985 
1986 // Integer types of known sizes.
1987 typedef TypeWithSize<4>::Int Int32;
1989 typedef TypeWithSize<8>::Int Int64;
1991 typedef TypeWithSize<8>::Int TimeInMillis; // Represents time in milliseconds.
1992 
1993 // Utilities for command line flags and environment variables.
1994 
1995 // Macro for referencing flags.
1996 #define GTEST_FLAG(name) FLAGS_gtest_##name
1997 
1998 // Macros for declaring flags.
1999 #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
2000 #define GTEST_DECLARE_int32_(name) \
2001  GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
2002 #define GTEST_DECLARE_string_(name) \
2003  GTEST_API_ extern ::std::string GTEST_FLAG(name)
2004 
2005 // Macros for defining flags.
2006 #define GTEST_DEFINE_bool_(name, default_val, doc) \
2007  GTEST_API_ bool GTEST_FLAG(name) = (default_val)
2008 #define GTEST_DEFINE_int32_(name, default_val, doc) \
2009  GTEST_API_ ::testing::internal::Int32 GTEST_FLAG(name) = (default_val)
2010 #define GTEST_DEFINE_string_(name, default_val, doc) \
2011  GTEST_API_ ::std::string GTEST_FLAG(name) = (default_val)
2012 
2013 // Thread annotations
2014 #define GTEST_EXCLUSIVE_LOCK_REQUIRED_(locks)
2015 #define GTEST_LOCK_EXCLUDED_(locks)
2016 
2017 // Parses 'str' for a 32-bit signed integer. If successful, writes the result
2018 // to *value and returns true; otherwise leaves *value unchanged and returns
2019 // false.
2020 // TODO(chandlerc): Find a better way to refactor flag and environment parsing
2021 // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
2022 // function.
2023 bool ParseInt32(const Message & src_text, const char * str, Int32 * value);
2024 
2025 // Parses a bool/Int32/string from the environment variable
2026 // corresponding to the given Google Test flag.
2027 bool BoolFromGTestEnv(const char * flag, bool default_val);
2028 GTEST_API_ Int32 Int32FromGTestEnv(const char * flag, Int32 default_val);
2029 const char * StringFromGTestEnv(const char * flag, const char * default_val);
2030 
2031 } // namespace internal
2032 } // namespace testing
2033 
2034 #endif // GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PORT_H_
TypeWithSize< 8 >::Int Int64
bool IsTrue(bool condition)
std::string GetCapturedStdout()
std::string GetCapturedStderr()
time
Definition: server.py:52
bool param(const std::string &param_name, T &param_val, const T &default_val)
static bool FullMatch(const ::std::string &str, const RE &re)
int * count
f
TypeWithSize< 4 >::Int Int32
const char Message[]
Definition: strings.h:102
FILE * FOpen(const char *path, const char *mode)
Derived * CheckedDowncastToActualType(Base *base)
#define GTEST_CHECK_POSIX_SUCCESS_(posix_call)
bool BoolFromGTestEnv(const char *flag, bool default_value)
GTEST_API_::std::string FormatFileLocation(const char *file, int line)
TypeWithSize< 4 >::UInt UInt32
bool ParseInt32(const Message &src_text, const char *str, Int32 *value)
FILE * FReopen(const char *path, const char *mode, FILE *stream)
int Stat(const char *path, StatStruct *buf)
TypeWithSize< 8 >::UInt UInt64
name
Definition: setup.py:38
static bool PartialMatch(const ::std::string &str, const RE &re)
bool_constant< true > true_type
bool write(ros_opcua_srvs::Write::Request &req, ros_opcua_srvs::Write::Response &res)
const char * StringFromGTestEnv(const char *flag, const char *default_value)
int Write(int fd, const void *buf, unsigned int count)
int Read(int fd, void *buf, unsigned int count)
int StrCaseCmp(const char *s1, const char *s2)
bool read(ros_opcua_srvs::Read::Request &req, ros_opcua_srvs::Read::Response &res)
const char * StrNCpy(char *dest, const char *src, size_t n)
bool IsDir(const StatStruct &st)
#define GTEST_DISALLOW_ASSIGN_(type)
GTEST_API_::std::string FormatCompilerIndependentFileLocation(const char *file, int line)
FILE * FDOpen(int fd, const char *mode)
bool_constant< false > false_type
#define GTEST_DISALLOW_COPY_AND_ASSIGN_(type)
Int32 Int32FromGTestEnv(const char *flag, Int32 default_value)
#define GTEST_CHECK_(condition)
TypeWithSize< 8 >::Int TimeInMillis
const char * GetEnv(const char *name)


ros_opcua_impl_freeopcua
Author(s): Denis Štogl
autogenerated on Tue Jan 19 2021 03:06:20