gmock-matchers.h revision b82431625d1842d1498f3c0e6f1923ce81837c6e
1e35fdd936d133bf8a48de140a3c666897588a05shiqian// Copyright 2007, Google Inc.
2e35fdd936d133bf8a48de140a3c666897588a05shiqian// All rights reserved.
3e35fdd936d133bf8a48de140a3c666897588a05shiqian//
4e35fdd936d133bf8a48de140a3c666897588a05shiqian// Redistribution and use in source and binary forms, with or without
5e35fdd936d133bf8a48de140a3c666897588a05shiqian// modification, are permitted provided that the following conditions are
6e35fdd936d133bf8a48de140a3c666897588a05shiqian// met:
7e35fdd936d133bf8a48de140a3c666897588a05shiqian//
8e35fdd936d133bf8a48de140a3c666897588a05shiqian//     * Redistributions of source code must retain the above copyright
9e35fdd936d133bf8a48de140a3c666897588a05shiqian// notice, this list of conditions and the following disclaimer.
10e35fdd936d133bf8a48de140a3c666897588a05shiqian//     * Redistributions in binary form must reproduce the above
11e35fdd936d133bf8a48de140a3c666897588a05shiqian// copyright notice, this list of conditions and the following disclaimer
12e35fdd936d133bf8a48de140a3c666897588a05shiqian// in the documentation and/or other materials provided with the
13e35fdd936d133bf8a48de140a3c666897588a05shiqian// distribution.
14e35fdd936d133bf8a48de140a3c666897588a05shiqian//     * Neither the name of Google Inc. nor the names of its
15e35fdd936d133bf8a48de140a3c666897588a05shiqian// contributors may be used to endorse or promote products derived from
16e35fdd936d133bf8a48de140a3c666897588a05shiqian// this software without specific prior written permission.
17e35fdd936d133bf8a48de140a3c666897588a05shiqian//
18e35fdd936d133bf8a48de140a3c666897588a05shiqian// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19e35fdd936d133bf8a48de140a3c666897588a05shiqian// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20e35fdd936d133bf8a48de140a3c666897588a05shiqian// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21e35fdd936d133bf8a48de140a3c666897588a05shiqian// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22e35fdd936d133bf8a48de140a3c666897588a05shiqian// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23e35fdd936d133bf8a48de140a3c666897588a05shiqian// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24e35fdd936d133bf8a48de140a3c666897588a05shiqian// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25e35fdd936d133bf8a48de140a3c666897588a05shiqian// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26e35fdd936d133bf8a48de140a3c666897588a05shiqian// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27e35fdd936d133bf8a48de140a3c666897588a05shiqian// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28e35fdd936d133bf8a48de140a3c666897588a05shiqian// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29e35fdd936d133bf8a48de140a3c666897588a05shiqian//
30e35fdd936d133bf8a48de140a3c666897588a05shiqian// Author: wan@google.com (Zhanyong Wan)
31e35fdd936d133bf8a48de140a3c666897588a05shiqian
32e35fdd936d133bf8a48de140a3c666897588a05shiqian// Google Mock - a framework for writing C++ mock classes.
33e35fdd936d133bf8a48de140a3c666897588a05shiqian//
34e35fdd936d133bf8a48de140a3c666897588a05shiqian// This file implements some commonly used argument matchers.  More
35e35fdd936d133bf8a48de140a3c666897588a05shiqian// matchers can be defined by the user implementing the
36e35fdd936d133bf8a48de140a3c666897588a05shiqian// MatcherInterface<T> interface if necessary.
37e35fdd936d133bf8a48de140a3c666897588a05shiqian
38e35fdd936d133bf8a48de140a3c666897588a05shiqian#ifndef GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
39e35fdd936d133bf8a48de140a3c666897588a05shiqian#define GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
40e35fdd936d133bf8a48de140a3c666897588a05shiqian
416a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan#include <algorithm>
4216cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan#include <limits>
43e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <ostream>  // NOLINT
44e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <sstream>
45e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <string>
46e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <vector>
47e35fdd936d133bf8a48de140a3c666897588a05shiqian
48e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <gmock/gmock-printers.h>
49e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <gmock/internal/gmock-internal-utils.h>
50e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <gmock/internal/gmock-port.h>
51e35fdd936d133bf8a48de140a3c666897588a05shiqian#include <gtest/gtest.h>
52e35fdd936d133bf8a48de140a3c666897588a05shiqian
53e35fdd936d133bf8a48de140a3c666897588a05shiqiannamespace testing {
54e35fdd936d133bf8a48de140a3c666897588a05shiqian
55e35fdd936d133bf8a48de140a3c666897588a05shiqian// To implement a matcher Foo for type T, define:
56e35fdd936d133bf8a48de140a3c666897588a05shiqian//   1. a class FooMatcherImpl that implements the
57e35fdd936d133bf8a48de140a3c666897588a05shiqian//      MatcherInterface<T> interface, and
58e35fdd936d133bf8a48de140a3c666897588a05shiqian//   2. a factory function that creates a Matcher<T> object from a
59e35fdd936d133bf8a48de140a3c666897588a05shiqian//      FooMatcherImpl*.
60e35fdd936d133bf8a48de140a3c666897588a05shiqian//
61e35fdd936d133bf8a48de140a3c666897588a05shiqian// The two-level delegation design makes it possible to allow a user
62e35fdd936d133bf8a48de140a3c666897588a05shiqian// to write "v" instead of "Eq(v)" where a Matcher is expected, which
63e35fdd936d133bf8a48de140a3c666897588a05shiqian// is impossible if we pass matchers by pointers.  It also eases
64e35fdd936d133bf8a48de140a3c666897588a05shiqian// ownership management as Matcher objects can now be copied like
65e35fdd936d133bf8a48de140a3c666897588a05shiqian// plain values.
66e35fdd936d133bf8a48de140a3c666897588a05shiqian
67e35fdd936d133bf8a48de140a3c666897588a05shiqian// The implementation of a matcher.
68e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
69e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherInterface {
70e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
71e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual ~MatcherInterface() {}
72e35fdd936d133bf8a48de140a3c666897588a05shiqian
73e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Returns true iff the matcher matches x.
74e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual bool Matches(T x) const = 0;
75e35fdd936d133bf8a48de140a3c666897588a05shiqian
76e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes this matcher to an ostream.
77e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeTo(::std::ostream* os) const = 0;
78e35fdd936d133bf8a48de140a3c666897588a05shiqian
79e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes the negation of this matcher to an ostream.  For
80e35fdd936d133bf8a48de140a3c666897588a05shiqian  // example, if the description of this matcher is "is greater than
81e35fdd936d133bf8a48de140a3c666897588a05shiqian  // 7", the negated description could be "is not greater than 7".
82e35fdd936d133bf8a48de140a3c666897588a05shiqian  // You are not required to override this when implementing
83e35fdd936d133bf8a48de140a3c666897588a05shiqian  // MatcherInterface, but it is highly advised so that your matcher
84e35fdd936d133bf8a48de140a3c666897588a05shiqian  // can produce good error messages.
85e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeNegationTo(::std::ostream* os) const {
86e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "not (";
87e35fdd936d133bf8a48de140a3c666897588a05shiqian    DescribeTo(os);
88e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << ")";
89e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
90e35fdd936d133bf8a48de140a3c666897588a05shiqian
91e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Explains why x matches, or doesn't match, the matcher.  Override
92e35fdd936d133bf8a48de140a3c666897588a05shiqian  // this to provide any additional information that helps a user
93e35fdd936d133bf8a48de140a3c666897588a05shiqian  // understand the match result.
943fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan  virtual void ExplainMatchResultTo(T /* x */, ::std::ostream* /* os */) const {
95e35fdd936d133bf8a48de140a3c666897588a05shiqian    // By default, nothing more needs to be explained, as Google Mock
96e35fdd936d133bf8a48de140a3c666897588a05shiqian    // has already printed the value of x when this function is
97e35fdd936d133bf8a48de140a3c666897588a05shiqian    // called.
98e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
99e35fdd936d133bf8a48de140a3c666897588a05shiqian};
100e35fdd936d133bf8a48de140a3c666897588a05shiqian
101e35fdd936d133bf8a48de140a3c666897588a05shiqiannamespace internal {
102e35fdd936d133bf8a48de140a3c666897588a05shiqian
103e35fdd936d133bf8a48de140a3c666897588a05shiqian// An internal class for implementing Matcher<T>, which will derive
104e35fdd936d133bf8a48de140a3c666897588a05shiqian// from it.  We put functionalities common to all Matcher<T>
105e35fdd936d133bf8a48de140a3c666897588a05shiqian// specializations here to avoid code duplication.
106e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
107e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherBase {
108e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
109e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Returns true iff this matcher matches x.
110e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(T x) const { return impl_->Matches(x); }
111e35fdd936d133bf8a48de140a3c666897588a05shiqian
112e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes this matcher to an ostream.
113e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
114e35fdd936d133bf8a48de140a3c666897588a05shiqian
115e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes the negation of this matcher to an ostream.
116e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
117e35fdd936d133bf8a48de140a3c666897588a05shiqian    impl_->DescribeNegationTo(os);
118e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
119e35fdd936d133bf8a48de140a3c666897588a05shiqian
120e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Explains why x matches, or doesn't match, the matcher.
121e35fdd936d133bf8a48de140a3c666897588a05shiqian  void ExplainMatchResultTo(T x, ::std::ostream* os) const {
122e35fdd936d133bf8a48de140a3c666897588a05shiqian    impl_->ExplainMatchResultTo(x, os);
123e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
124e35fdd936d133bf8a48de140a3c666897588a05shiqian protected:
125e35fdd936d133bf8a48de140a3c666897588a05shiqian  MatcherBase() {}
126e35fdd936d133bf8a48de140a3c666897588a05shiqian
127e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructs a matcher from its implementation.
128e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit MatcherBase(const MatcherInterface<T>* impl)
129e35fdd936d133bf8a48de140a3c666897588a05shiqian      : impl_(impl) {}
130e35fdd936d133bf8a48de140a3c666897588a05shiqian
131e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual ~MatcherBase() {}
132e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
133e35fdd936d133bf8a48de140a3c666897588a05shiqian  // shared_ptr (util/gtl/shared_ptr.h) and linked_ptr have similar
134e35fdd936d133bf8a48de140a3c666897588a05shiqian  // interfaces.  The former dynamically allocates a chunk of memory
135e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to hold the reference count, while the latter tracks all
136e35fdd936d133bf8a48de140a3c666897588a05shiqian  // references using a circular linked list without allocating
137e35fdd936d133bf8a48de140a3c666897588a05shiqian  // memory.  It has been observed that linked_ptr performs better in
138e35fdd936d133bf8a48de140a3c666897588a05shiqian  // typical scenarios.  However, shared_ptr can out-perform
139e35fdd936d133bf8a48de140a3c666897588a05shiqian  // linked_ptr when there are many more uses of the copy constructor
140e35fdd936d133bf8a48de140a3c666897588a05shiqian  // than the default constructor.
141e35fdd936d133bf8a48de140a3c666897588a05shiqian  //
142e35fdd936d133bf8a48de140a3c666897588a05shiqian  // If performance becomes a problem, we should see if using
143e35fdd936d133bf8a48de140a3c666897588a05shiqian  // shared_ptr helps.
144e35fdd936d133bf8a48de140a3c666897588a05shiqian  ::testing::internal::linked_ptr<const MatcherInterface<T> > impl_;
145e35fdd936d133bf8a48de140a3c666897588a05shiqian};
146e35fdd936d133bf8a48de140a3c666897588a05shiqian
147e35fdd936d133bf8a48de140a3c666897588a05shiqian// The default implementation of ExplainMatchResultTo() for
148e35fdd936d133bf8a48de140a3c666897588a05shiqian// polymorphic matchers.
149e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename PolymorphicMatcherImpl, typename T>
1503fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.waninline void ExplainMatchResultTo(const PolymorphicMatcherImpl& /* impl */,
1513fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                                 const T& /* x */,
1523fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                                 ::std::ostream* /* os */) {
153e35fdd936d133bf8a48de140a3c666897588a05shiqian  // By default, nothing more needs to be said, as Google Mock already
154e35fdd936d133bf8a48de140a3c666897588a05shiqian  // prints the value of x elsewhere.
155e35fdd936d133bf8a48de140a3c666897588a05shiqian}
156e35fdd936d133bf8a48de140a3c666897588a05shiqian
157e35fdd936d133bf8a48de140a3c666897588a05shiqian}  // namespace internal
158e35fdd936d133bf8a48de140a3c666897588a05shiqian
159e35fdd936d133bf8a48de140a3c666897588a05shiqian// A Matcher<T> is a copyable and IMMUTABLE (except by assignment)
160e35fdd936d133bf8a48de140a3c666897588a05shiqian// object that can check whether a value of type T matches.  The
161e35fdd936d133bf8a48de140a3c666897588a05shiqian// implementation of Matcher<T> is just a linked_ptr to const
162e35fdd936d133bf8a48de140a3c666897588a05shiqian// MatcherInterface<T>, so copying is fairly cheap.  Don't inherit
163e35fdd936d133bf8a48de140a3c666897588a05shiqian// from Matcher!
164e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
165e35fdd936d133bf8a48de140a3c666897588a05shiqianclass Matcher : public internal::MatcherBase<T> {
166e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
167e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructs a null matcher.  Needed for storing Matcher objects in
168e35fdd936d133bf8a48de140a3c666897588a05shiqian  // STL containers.
169e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher() {}
170e35fdd936d133bf8a48de140a3c666897588a05shiqian
171e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructs a matcher from its implementation.
172e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit Matcher(const MatcherInterface<T>* impl)
173e35fdd936d133bf8a48de140a3c666897588a05shiqian      : internal::MatcherBase<T>(impl) {}
174e35fdd936d133bf8a48de140a3c666897588a05shiqian
17518490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Implicit constructor here allows people to write
176e35fdd936d133bf8a48de140a3c666897588a05shiqian  // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes
177e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(T value);  // NOLINT
178e35fdd936d133bf8a48de140a3c666897588a05shiqian};
179e35fdd936d133bf8a48de140a3c666897588a05shiqian
180e35fdd936d133bf8a48de140a3c666897588a05shiqian// The following two specializations allow the user to write str
181e35fdd936d133bf8a48de140a3c666897588a05shiqian// instead of Eq(str) and "foo" instead of Eq("foo") when a string
182e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher is expected.
183e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <>
184e35fdd936d133bf8a48de140a3c666897588a05shiqianclass Matcher<const internal::string&>
185e35fdd936d133bf8a48de140a3c666897588a05shiqian    : public internal::MatcherBase<const internal::string&> {
186e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
187e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher() {}
188e35fdd936d133bf8a48de140a3c666897588a05shiqian
189e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit Matcher(const MatcherInterface<const internal::string&>* impl)
190e35fdd936d133bf8a48de140a3c666897588a05shiqian      : internal::MatcherBase<const internal::string&>(impl) {}
191e35fdd936d133bf8a48de140a3c666897588a05shiqian
192e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write str instead of Eq(str) sometimes, where
193e35fdd936d133bf8a48de140a3c666897588a05shiqian  // str is a string object.
194e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const internal::string& s);  // NOLINT
195e35fdd936d133bf8a48de140a3c666897588a05shiqian
196e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write "foo" instead of Eq("foo") sometimes.
197e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const char* s);  // NOLINT
198e35fdd936d133bf8a48de140a3c666897588a05shiqian};
199e35fdd936d133bf8a48de140a3c666897588a05shiqian
200e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <>
201e35fdd936d133bf8a48de140a3c666897588a05shiqianclass Matcher<internal::string>
202e35fdd936d133bf8a48de140a3c666897588a05shiqian    : public internal::MatcherBase<internal::string> {
203e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
204e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher() {}
205e35fdd936d133bf8a48de140a3c666897588a05shiqian
206e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit Matcher(const MatcherInterface<internal::string>* impl)
207e35fdd936d133bf8a48de140a3c666897588a05shiqian      : internal::MatcherBase<internal::string>(impl) {}
208e35fdd936d133bf8a48de140a3c666897588a05shiqian
209e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write str instead of Eq(str) sometimes, where
210e35fdd936d133bf8a48de140a3c666897588a05shiqian  // str is a string object.
211e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const internal::string& s);  // NOLINT
212e35fdd936d133bf8a48de140a3c666897588a05shiqian
213e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write "foo" instead of Eq("foo") sometimes.
214e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const char* s);  // NOLINT
215e35fdd936d133bf8a48de140a3c666897588a05shiqian};
216e35fdd936d133bf8a48de140a3c666897588a05shiqian
217e35fdd936d133bf8a48de140a3c666897588a05shiqian// The PolymorphicMatcher class template makes it easy to implement a
218e35fdd936d133bf8a48de140a3c666897588a05shiqian// polymorphic matcher (i.e. a matcher that can match values of more
219e35fdd936d133bf8a48de140a3c666897588a05shiqian// than one type, e.g. Eq(n) and NotNull()).
220e35fdd936d133bf8a48de140a3c666897588a05shiqian//
221e35fdd936d133bf8a48de140a3c666897588a05shiqian// To define a polymorphic matcher, a user first provides a Impl class
222e35fdd936d133bf8a48de140a3c666897588a05shiqian// that has a Matches() method, a DescribeTo() method, and a
223e35fdd936d133bf8a48de140a3c666897588a05shiqian// DescribeNegationTo() method.  The Matches() method is usually a
224e35fdd936d133bf8a48de140a3c666897588a05shiqian// method template (such that it works with multiple types).  Then the
225e35fdd936d133bf8a48de140a3c666897588a05shiqian// user creates the polymorphic matcher using
226e35fdd936d133bf8a48de140a3c666897588a05shiqian// MakePolymorphicMatcher().  To provide additional explanation to the
227e35fdd936d133bf8a48de140a3c666897588a05shiqian// match result, define a FREE function (or function template)
228e35fdd936d133bf8a48de140a3c666897588a05shiqian//
229e35fdd936d133bf8a48de140a3c666897588a05shiqian//   void ExplainMatchResultTo(const Impl& matcher, const Value& value,
230e35fdd936d133bf8a48de140a3c666897588a05shiqian//                             ::std::ostream* os);
231e35fdd936d133bf8a48de140a3c666897588a05shiqian//
232e35fdd936d133bf8a48de140a3c666897588a05shiqian// in the SAME NAME SPACE where Impl is defined.  See the definition
233e35fdd936d133bf8a48de140a3c666897588a05shiqian// of NotNull() for a complete example.
234e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <class Impl>
235e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PolymorphicMatcher {
236e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
237e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit PolymorphicMatcher(const Impl& impl) : impl_(impl) {}
238e35fdd936d133bf8a48de140a3c666897588a05shiqian
239e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
240e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
241e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(new MonomorphicImpl<T>(impl_));
242e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
243e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
244e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
245e35fdd936d133bf8a48de140a3c666897588a05shiqian  class MonomorphicImpl : public MatcherInterface<T> {
246e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
247e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
248e35fdd936d133bf8a48de140a3c666897588a05shiqian
249e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual bool Matches(T x) const { return impl_.Matches(x); }
250e35fdd936d133bf8a48de140a3c666897588a05shiqian
251e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
252e35fdd936d133bf8a48de140a3c666897588a05shiqian      impl_.DescribeTo(os);
253e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
254e35fdd936d133bf8a48de140a3c666897588a05shiqian
255e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
256e35fdd936d133bf8a48de140a3c666897588a05shiqian      impl_.DescribeNegationTo(os);
257e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
258e35fdd936d133bf8a48de140a3c666897588a05shiqian
259e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void ExplainMatchResultTo(T x, ::std::ostream* os) const {
260e35fdd936d133bf8a48de140a3c666897588a05shiqian      using ::testing::internal::ExplainMatchResultTo;
261e35fdd936d133bf8a48de140a3c666897588a05shiqian
262e35fdd936d133bf8a48de140a3c666897588a05shiqian      // C++ uses Argument-Dependent Look-up (aka Koenig Look-up) to
263e35fdd936d133bf8a48de140a3c666897588a05shiqian      // resolve the call to ExplainMatchResultTo() here.  This
264e35fdd936d133bf8a48de140a3c666897588a05shiqian      // means that if there's a ExplainMatchResultTo() function
265e35fdd936d133bf8a48de140a3c666897588a05shiqian      // defined in the name space where class Impl is defined, it
266e35fdd936d133bf8a48de140a3c666897588a05shiqian      // will be picked by the compiler as the better match.
267e35fdd936d133bf8a48de140a3c666897588a05shiqian      // Otherwise the default implementation of it in
268e35fdd936d133bf8a48de140a3c666897588a05shiqian      // ::testing::internal will be picked.
269e35fdd936d133bf8a48de140a3c666897588a05shiqian      //
270e35fdd936d133bf8a48de140a3c666897588a05shiqian      // This look-up rule lets a writer of a polymorphic matcher
271e35fdd936d133bf8a48de140a3c666897588a05shiqian      // customize the behavior of ExplainMatchResultTo() when he
272e35fdd936d133bf8a48de140a3c666897588a05shiqian      // cares to.  Nothing needs to be done by the writer if he
273e35fdd936d133bf8a48de140a3c666897588a05shiqian      // doesn't need to customize it.
274e35fdd936d133bf8a48de140a3c666897588a05shiqian      ExplainMatchResultTo(impl_, x, os);
275e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
276e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
277e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Impl impl_;
278e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
279e35fdd936d133bf8a48de140a3c666897588a05shiqian
280e35fdd936d133bf8a48de140a3c666897588a05shiqian  const Impl impl_;
281e35fdd936d133bf8a48de140a3c666897588a05shiqian};
282e35fdd936d133bf8a48de140a3c666897588a05shiqian
283e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher from its implementation.  This is easier to use
284e35fdd936d133bf8a48de140a3c666897588a05shiqian// than the Matcher<T> constructor as it doesn't require you to
285e35fdd936d133bf8a48de140a3c666897588a05shiqian// explicitly write the template argument, e.g.
286e35fdd936d133bf8a48de140a3c666897588a05shiqian//
287e35fdd936d133bf8a48de140a3c666897588a05shiqian//   MakeMatcher(foo);
288e35fdd936d133bf8a48de140a3c666897588a05shiqian// vs
289e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Matcher<const string&>(foo);
290e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
291e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {
292e35fdd936d133bf8a48de140a3c666897588a05shiqian  return Matcher<T>(impl);
293e35fdd936d133bf8a48de140a3c666897588a05shiqian};
294e35fdd936d133bf8a48de140a3c666897588a05shiqian
295e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher from its implementation.  This is
296e35fdd936d133bf8a48de140a3c666897588a05shiqian// easier to use than the PolymorphicMatcher<Impl> constructor as it
297e35fdd936d133bf8a48de140a3c666897588a05shiqian// doesn't require you to explicitly write the template argument, e.g.
298e35fdd936d133bf8a48de140a3c666897588a05shiqian//
299e35fdd936d133bf8a48de140a3c666897588a05shiqian//   MakePolymorphicMatcher(foo);
300e35fdd936d133bf8a48de140a3c666897588a05shiqian// vs
301e35fdd936d133bf8a48de140a3c666897588a05shiqian//   PolymorphicMatcher<TypeOfFoo>(foo);
302e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <class Impl>
303e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) {
304e35fdd936d133bf8a48de140a3c666897588a05shiqian  return PolymorphicMatcher<Impl>(impl);
305e35fdd936d133bf8a48de140a3c666897588a05shiqian}
306e35fdd936d133bf8a48de140a3c666897588a05shiqian
307e35fdd936d133bf8a48de140a3c666897588a05shiqian// In order to be safe and clear, casting between different matcher
308e35fdd936d133bf8a48de140a3c666897588a05shiqian// types is done explicitly via MatcherCast<T>(m), which takes a
309e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher m and returns a Matcher<T>.  It compiles only when T can be
310e35fdd936d133bf8a48de140a3c666897588a05shiqian// statically converted to the argument type of m.
311e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename M>
312e35fdd936d133bf8a48de140a3c666897588a05shiqianMatcher<T> MatcherCast(M m);
313e35fdd936d133bf8a48de140a3c666897588a05shiqian
31418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// TODO(vladl@google.com): Modify the implementation to reject casting
31518490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// Matcher<int> to Matcher<double>.
31618490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// Implements SafeMatcherCast().
31718490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan//
31818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// This overload handles polymorphic matchers only since monomorphic
31918490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// matchers are handled by the next one.
32018490653e80d484b4650d8799184fd1e021efc7bzhanyong.wantemplate <typename T, typename M>
32118490653e80d484b4650d8799184fd1e021efc7bzhanyong.waninline Matcher<T> SafeMatcherCast(M polymorphic_matcher) {
32218490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  return Matcher<T>(polymorphic_matcher);
32318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan}
32418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan
32518490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// This overload handles monomorphic matchers.
32618490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan//
32718490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// In general, if type T can be implicitly converted to type U, we can
32818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// safely convert a Matcher<U> to a Matcher<T> (i.e. Matcher is
32918490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// contravariant): just keep a copy of the original Matcher<U>, convert the
33018490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// argument from type T to U, and then pass it to the underlying Matcher<U>.
33118490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// The only exception is when U is a reference and T is not, as the
33218490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// underlying Matcher<U> may be interested in the argument's address, which
33318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// is not preserved in the conversion from T to U.
33418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wantemplate <typename T, typename U>
33518490653e80d484b4650d8799184fd1e021efc7bzhanyong.wanMatcher<T> SafeMatcherCast(const Matcher<U>& matcher) {
33618490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Enforce that T can be implicitly converted to U.
33718490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  GMOCK_COMPILE_ASSERT_((internal::ImplicitlyConvertible<T, U>::value),
33818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan                        T_must_be_implicitly_convertible_to_U);
33918490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Enforce that we are not converting a non-reference type T to a reference
34018490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // type U.
34118490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  GMOCK_COMPILE_ASSERT_(
34218490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      internal::is_reference<T>::value || !internal::is_reference<U>::value,
34318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      cannot_convert_non_referentce_arg_to_reference);
34416cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  // In case both T and U are arithmetic types, enforce that the
34516cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  // conversion is not lossy.
34616cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(T)) RawT;
34716cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(U)) RawU;
34816cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  const bool kTIsOther = GMOCK_KIND_OF_(RawT) == internal::kOther;
34916cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  const bool kUIsOther = GMOCK_KIND_OF_(RawU) == internal::kOther;
35016cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  GMOCK_COMPILE_ASSERT_(
35116cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan      kTIsOther || kUIsOther ||
35216cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan      (internal::LosslessArithmeticConvertible<RawT, RawU>::value),
35316cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan      conversion_of_arithmetic_types_must_be_lossless);
35418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  return MatcherCast<T>(matcher);
35518490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan}
35618490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan
357e35fdd936d133bf8a48de140a3c666897588a05shiqian// A<T>() returns a matcher that matches any value of type T.
358e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
359e35fdd936d133bf8a48de140a3c666897588a05shiqianMatcher<T> A();
360e35fdd936d133bf8a48de140a3c666897588a05shiqian
361e35fdd936d133bf8a48de140a3c666897588a05shiqian// Anything inside the 'internal' namespace IS INTERNAL IMPLEMENTATION
362e35fdd936d133bf8a48de140a3c666897588a05shiqian// and MUST NOT BE USED IN USER CODE!!!
363e35fdd936d133bf8a48de140a3c666897588a05shiqiannamespace internal {
364e35fdd936d133bf8a48de140a3c666897588a05shiqian
365e35fdd936d133bf8a48de140a3c666897588a05shiqian// Appends the explanation on the result of matcher.Matches(value) to
366e35fdd936d133bf8a48de140a3c666897588a05shiqian// os iff the explanation is not empty.
367e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
368e35fdd936d133bf8a48de140a3c666897588a05shiqianvoid ExplainMatchResultAsNeededTo(const Matcher<T>& matcher, T value,
369e35fdd936d133bf8a48de140a3c666897588a05shiqian                                  ::std::ostream* os) {
370e35fdd936d133bf8a48de140a3c666897588a05shiqian  ::std::stringstream reason;
371e35fdd936d133bf8a48de140a3c666897588a05shiqian  matcher.ExplainMatchResultTo(value, &reason);
372e35fdd936d133bf8a48de140a3c666897588a05shiqian  const internal::string s = reason.str();
373e35fdd936d133bf8a48de140a3c666897588a05shiqian  if (s != "") {
374e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << " (" << s << ")";
375e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
376e35fdd936d133bf8a48de140a3c666897588a05shiqian}
377e35fdd936d133bf8a48de140a3c666897588a05shiqian
378e35fdd936d133bf8a48de140a3c666897588a05shiqian// An internal helper class for doing compile-time loop on a tuple's
379e35fdd936d133bf8a48de140a3c666897588a05shiqian// fields.
380e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <size_t N>
381e35fdd936d133bf8a48de140a3c666897588a05shiqianclass TuplePrefix {
382e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
383e35fdd936d133bf8a48de140a3c666897588a05shiqian  // TuplePrefix<N>::Matches(matcher_tuple, value_tuple) returns true
384e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff the first N fields of matcher_tuple matches the first N
385e35fdd936d133bf8a48de140a3c666897588a05shiqian  // fields of value_tuple, respectively.
386e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
387e35fdd936d133bf8a48de140a3c666897588a05shiqian  static bool Matches(const MatcherTuple& matcher_tuple,
388e35fdd936d133bf8a48de140a3c666897588a05shiqian                      const ValueTuple& value_tuple) {
389e35fdd936d133bf8a48de140a3c666897588a05shiqian    using ::std::tr1::get;
390e35fdd936d133bf8a48de140a3c666897588a05shiqian    return TuplePrefix<N - 1>::Matches(matcher_tuple, value_tuple)
391e35fdd936d133bf8a48de140a3c666897588a05shiqian        && get<N - 1>(matcher_tuple).Matches(get<N - 1>(value_tuple));
392e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
393e35fdd936d133bf8a48de140a3c666897588a05shiqian
394e35fdd936d133bf8a48de140a3c666897588a05shiqian  // TuplePrefix<N>::DescribeMatchFailuresTo(matchers, values, os)
395e35fdd936d133bf8a48de140a3c666897588a05shiqian  // describes failures in matching the first N fields of matchers
396e35fdd936d133bf8a48de140a3c666897588a05shiqian  // against the first N fields of values.  If there is no failure,
397e35fdd936d133bf8a48de140a3c666897588a05shiqian  // nothing will be streamed to os.
398e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
399e35fdd936d133bf8a48de140a3c666897588a05shiqian  static void DescribeMatchFailuresTo(const MatcherTuple& matchers,
400e35fdd936d133bf8a48de140a3c666897588a05shiqian                                      const ValueTuple& values,
401e35fdd936d133bf8a48de140a3c666897588a05shiqian                                      ::std::ostream* os) {
402e35fdd936d133bf8a48de140a3c666897588a05shiqian    using ::std::tr1::tuple_element;
403e35fdd936d133bf8a48de140a3c666897588a05shiqian    using ::std::tr1::get;
404e35fdd936d133bf8a48de140a3c666897588a05shiqian
405e35fdd936d133bf8a48de140a3c666897588a05shiqian    // First, describes failures in the first N - 1 fields.
406e35fdd936d133bf8a48de140a3c666897588a05shiqian    TuplePrefix<N - 1>::DescribeMatchFailuresTo(matchers, values, os);
407e35fdd936d133bf8a48de140a3c666897588a05shiqian
408e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Then describes the failure (if any) in the (N - 1)-th (0-based)
409e35fdd936d133bf8a48de140a3c666897588a05shiqian    // field.
410e35fdd936d133bf8a48de140a3c666897588a05shiqian    typename tuple_element<N - 1, MatcherTuple>::type matcher =
411e35fdd936d133bf8a48de140a3c666897588a05shiqian        get<N - 1>(matchers);
412e35fdd936d133bf8a48de140a3c666897588a05shiqian    typedef typename tuple_element<N - 1, ValueTuple>::type Value;
413e35fdd936d133bf8a48de140a3c666897588a05shiqian    Value value = get<N - 1>(values);
414e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (!matcher.Matches(value)) {
415e35fdd936d133bf8a48de140a3c666897588a05shiqian      // TODO(wan): include in the message the name of the parameter
416e35fdd936d133bf8a48de140a3c666897588a05shiqian      // as used in MOCK_METHOD*() when possible.
417e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "  Expected arg #" << N - 1 << ": ";
418e35fdd936d133bf8a48de140a3c666897588a05shiqian      get<N - 1>(matchers).DescribeTo(os);
419e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "\n           Actual: ";
420e35fdd936d133bf8a48de140a3c666897588a05shiqian      // We remove the reference in type Value to prevent the
421e35fdd936d133bf8a48de140a3c666897588a05shiqian      // universal printer from printing the address of value, which
422e35fdd936d133bf8a48de140a3c666897588a05shiqian      // isn't interesting to the user most of the time.  The
423e35fdd936d133bf8a48de140a3c666897588a05shiqian      // matcher's ExplainMatchResultTo() method handles the case when
424e35fdd936d133bf8a48de140a3c666897588a05shiqian      // the address is interesting.
425e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan      internal::UniversalPrinter<GMOCK_REMOVE_REFERENCE_(Value)>::
426e35fdd936d133bf8a48de140a3c666897588a05shiqian          Print(value, os);
427e35fdd936d133bf8a48de140a3c666897588a05shiqian      ExplainMatchResultAsNeededTo<Value>(matcher, value, os);
428e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "\n";
429e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
430e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
431e35fdd936d133bf8a48de140a3c666897588a05shiqian};
432e35fdd936d133bf8a48de140a3c666897588a05shiqian
433e35fdd936d133bf8a48de140a3c666897588a05shiqian// The base case.
434e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <>
435e35fdd936d133bf8a48de140a3c666897588a05shiqianclass TuplePrefix<0> {
436e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
437e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
4383fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan  static bool Matches(const MatcherTuple& /* matcher_tuple */,
4393fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                      const ValueTuple& /* value_tuple */) {
440e35fdd936d133bf8a48de140a3c666897588a05shiqian    return true;
441e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
442e35fdd936d133bf8a48de140a3c666897588a05shiqian
443e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
4443fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan  static void DescribeMatchFailuresTo(const MatcherTuple& /* matchers */,
4453fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                                      const ValueTuple& /* values */,
4463fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                                      ::std::ostream* /* os */) {}
447e35fdd936d133bf8a48de140a3c666897588a05shiqian};
448e35fdd936d133bf8a48de140a3c666897588a05shiqian
449e35fdd936d133bf8a48de140a3c666897588a05shiqian// TupleMatches(matcher_tuple, value_tuple) returns true iff all
450e35fdd936d133bf8a48de140a3c666897588a05shiqian// matchers in matcher_tuple match the corresponding fields in
451e35fdd936d133bf8a48de140a3c666897588a05shiqian// value_tuple.  It is a compiler error if matcher_tuple and
452e35fdd936d133bf8a48de140a3c666897588a05shiqian// value_tuple have different number of fields or incompatible field
453e35fdd936d133bf8a48de140a3c666897588a05shiqian// types.
454e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename MatcherTuple, typename ValueTuple>
455e35fdd936d133bf8a48de140a3c666897588a05shiqianbool TupleMatches(const MatcherTuple& matcher_tuple,
456e35fdd936d133bf8a48de140a3c666897588a05shiqian                  const ValueTuple& value_tuple) {
457e35fdd936d133bf8a48de140a3c666897588a05shiqian  using ::std::tr1::tuple_size;
458e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Makes sure that matcher_tuple and value_tuple have the same
459e35fdd936d133bf8a48de140a3c666897588a05shiqian  // number of fields.
460e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan  GMOCK_COMPILE_ASSERT_(tuple_size<MatcherTuple>::value ==
461e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan                        tuple_size<ValueTuple>::value,
462e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan                        matcher_and_value_have_different_numbers_of_fields);
463e35fdd936d133bf8a48de140a3c666897588a05shiqian  return TuplePrefix<tuple_size<ValueTuple>::value>::
464e35fdd936d133bf8a48de140a3c666897588a05shiqian      Matches(matcher_tuple, value_tuple);
465e35fdd936d133bf8a48de140a3c666897588a05shiqian}
466e35fdd936d133bf8a48de140a3c666897588a05shiqian
467e35fdd936d133bf8a48de140a3c666897588a05shiqian// Describes failures in matching matchers against values.  If there
468e35fdd936d133bf8a48de140a3c666897588a05shiqian// is no failure, nothing will be streamed to os.
469e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename MatcherTuple, typename ValueTuple>
470e35fdd936d133bf8a48de140a3c666897588a05shiqianvoid DescribeMatchFailureTupleTo(const MatcherTuple& matchers,
471e35fdd936d133bf8a48de140a3c666897588a05shiqian                                 const ValueTuple& values,
472e35fdd936d133bf8a48de140a3c666897588a05shiqian                                 ::std::ostream* os) {
473e35fdd936d133bf8a48de140a3c666897588a05shiqian  using ::std::tr1::tuple_size;
474e35fdd936d133bf8a48de140a3c666897588a05shiqian  TuplePrefix<tuple_size<MatcherTuple>::value>::DescribeMatchFailuresTo(
475e35fdd936d133bf8a48de140a3c666897588a05shiqian      matchers, values, os);
476e35fdd936d133bf8a48de140a3c666897588a05shiqian}
477e35fdd936d133bf8a48de140a3c666897588a05shiqian
478e35fdd936d133bf8a48de140a3c666897588a05shiqian// The MatcherCastImpl class template is a helper for implementing
479e35fdd936d133bf8a48de140a3c666897588a05shiqian// MatcherCast().  We need this helper in order to partially
480e35fdd936d133bf8a48de140a3c666897588a05shiqian// specialize the implementation of MatcherCast() (C++ allows
481e35fdd936d133bf8a48de140a3c666897588a05shiqian// class/struct templates to be partially specialized, but not
482e35fdd936d133bf8a48de140a3c666897588a05shiqian// function templates.).
483e35fdd936d133bf8a48de140a3c666897588a05shiqian
484e35fdd936d133bf8a48de140a3c666897588a05shiqian// This general version is used when MatcherCast()'s argument is a
485e35fdd936d133bf8a48de140a3c666897588a05shiqian// polymorphic matcher (i.e. something that can be converted to a
486e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matcher but is not one yet; for example, Eq(value)).
487e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename M>
488e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherCastImpl {
489e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
490e35fdd936d133bf8a48de140a3c666897588a05shiqian  static Matcher<T> Cast(M polymorphic_matcher) {
491e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(polymorphic_matcher);
492e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
493e35fdd936d133bf8a48de140a3c666897588a05shiqian};
494e35fdd936d133bf8a48de140a3c666897588a05shiqian
495e35fdd936d133bf8a48de140a3c666897588a05shiqian// This more specialized version is used when MatcherCast()'s argument
496e35fdd936d133bf8a48de140a3c666897588a05shiqian// is already a Matcher.  This only compiles when type T can be
497e35fdd936d133bf8a48de140a3c666897588a05shiqian// statically converted to type U.
498e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename U>
499e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherCastImpl<T, Matcher<U> > {
500e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
501e35fdd936d133bf8a48de140a3c666897588a05shiqian  static Matcher<T> Cast(const Matcher<U>& source_matcher) {
502e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(new Impl(source_matcher));
503e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
504e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
505e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<T> {
506e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
507e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit Impl(const Matcher<U>& source_matcher)
508e35fdd936d133bf8a48de140a3c666897588a05shiqian        : source_matcher_(source_matcher) {}
509e35fdd936d133bf8a48de140a3c666897588a05shiqian
510e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We delegate the matching logic to the source matcher.
511e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual bool Matches(T x) const {
512e35fdd936d133bf8a48de140a3c666897588a05shiqian      return source_matcher_.Matches(static_cast<U>(x));
513e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
514e35fdd936d133bf8a48de140a3c666897588a05shiqian
515e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
516e35fdd936d133bf8a48de140a3c666897588a05shiqian      source_matcher_.DescribeTo(os);
517e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
518e35fdd936d133bf8a48de140a3c666897588a05shiqian
519e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
520e35fdd936d133bf8a48de140a3c666897588a05shiqian      source_matcher_.DescribeNegationTo(os);
521e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
522e35fdd936d133bf8a48de140a3c666897588a05shiqian
523e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void ExplainMatchResultTo(T x, ::std::ostream* os) const {
524e35fdd936d133bf8a48de140a3c666897588a05shiqian      source_matcher_.ExplainMatchResultTo(static_cast<U>(x), os);
525e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
526e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
527e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<U> source_matcher_;
528e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
529e35fdd936d133bf8a48de140a3c666897588a05shiqian};
530e35fdd936d133bf8a48de140a3c666897588a05shiqian
531e35fdd936d133bf8a48de140a3c666897588a05shiqian// This even more specialized version is used for efficiently casting
532e35fdd936d133bf8a48de140a3c666897588a05shiqian// a matcher to its own type.
533e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
534e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherCastImpl<T, Matcher<T> > {
535e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
536e35fdd936d133bf8a48de140a3c666897588a05shiqian  static Matcher<T> Cast(const Matcher<T>& matcher) { return matcher; }
537e35fdd936d133bf8a48de140a3c666897588a05shiqian};
538e35fdd936d133bf8a48de140a3c666897588a05shiqian
539e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements A<T>().
540e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
541e35fdd936d133bf8a48de140a3c666897588a05shiqianclass AnyMatcherImpl : public MatcherInterface<T> {
542e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
5433fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan  virtual bool Matches(T /* x */) const { return true; }
544e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeTo(::std::ostream* os) const { *os << "is anything"; }
545e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeNegationTo(::std::ostream* os) const {
546e35fdd936d133bf8a48de140a3c666897588a05shiqian    // This is mostly for completeness' safe, as it's not very useful
547e35fdd936d133bf8a48de140a3c666897588a05shiqian    // to write Not(A<bool>()).  However we cannot completely rule out
548e35fdd936d133bf8a48de140a3c666897588a05shiqian    // such a possibility, and it doesn't hurt to be prepared.
549e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "never matches";
550e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
551e35fdd936d133bf8a48de140a3c666897588a05shiqian};
552e35fdd936d133bf8a48de140a3c666897588a05shiqian
553e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements _, a matcher that matches any value of any
554e35fdd936d133bf8a48de140a3c666897588a05shiqian// type.  This is a polymorphic matcher, so we need a template type
555e35fdd936d133bf8a48de140a3c666897588a05shiqian// conversion operator to make it appearing as a Matcher<T> for any
556e35fdd936d133bf8a48de140a3c666897588a05shiqian// type T.
557e35fdd936d133bf8a48de140a3c666897588a05shiqianclass AnythingMatcher {
558e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
559e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
560e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const { return A<T>(); }
561e35fdd936d133bf8a48de140a3c666897588a05shiqian};
562e35fdd936d133bf8a48de140a3c666897588a05shiqian
563e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements a matcher that compares a given value with a
564e35fdd936d133bf8a48de140a3c666897588a05shiqian// pre-supplied value using one of the ==, <=, <, etc, operators.  The
565e35fdd936d133bf8a48de140a3c666897588a05shiqian// two values being compared don't have to have the same type.
566e35fdd936d133bf8a48de140a3c666897588a05shiqian//
567e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher defined here is polymorphic (for example, Eq(5) can be
568e35fdd936d133bf8a48de140a3c666897588a05shiqian// used to match an int, a short, a double, etc).  Therefore we use
569e35fdd936d133bf8a48de140a3c666897588a05shiqian// a template type conversion operator in the implementation.
570e35fdd936d133bf8a48de140a3c666897588a05shiqian//
571e35fdd936d133bf8a48de140a3c666897588a05shiqian// We define this as a macro in order to eliminate duplicated source
572e35fdd936d133bf8a48de140a3c666897588a05shiqian// code.
573e35fdd936d133bf8a48de140a3c666897588a05shiqian//
574e35fdd936d133bf8a48de140a3c666897588a05shiqian// The following template definition assumes that the Rhs parameter is
575e35fdd936d133bf8a48de140a3c666897588a05shiqian// a "bare" type (i.e. neither 'const T' nor 'T&').
576e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan#define GMOCK_IMPLEMENT_COMPARISON_MATCHER_(name, op, relation) \
577e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Rhs> class name##Matcher { \
578e35fdd936d133bf8a48de140a3c666897588a05shiqian   public: \
579e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \
580e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename Lhs> \
581e35fdd936d133bf8a48de140a3c666897588a05shiqian    operator Matcher<Lhs>() const { \
582e35fdd936d133bf8a48de140a3c666897588a05shiqian      return MakeMatcher(new Impl<Lhs>(rhs_)); \
583e35fdd936d133bf8a48de140a3c666897588a05shiqian    } \
584e35fdd936d133bf8a48de140a3c666897588a05shiqian   private: \
585e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename Lhs> \
586e35fdd936d133bf8a48de140a3c666897588a05shiqian    class Impl : public MatcherInterface<Lhs> { \
587e35fdd936d133bf8a48de140a3c666897588a05shiqian     public: \
588e35fdd936d133bf8a48de140a3c666897588a05shiqian      explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \
589e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual bool Matches(Lhs lhs) const { return lhs op rhs_; } \
590e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeTo(::std::ostream* os) const { \
591e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is " relation  " "; \
592e35fdd936d133bf8a48de140a3c666897588a05shiqian        UniversalPrinter<Rhs>::Print(rhs_, os); \
593e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
594e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeNegationTo(::std::ostream* os) const { \
595e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is not " relation  " "; \
596e35fdd936d133bf8a48de140a3c666897588a05shiqian        UniversalPrinter<Rhs>::Print(rhs_, os); \
597e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
598e35fdd936d133bf8a48de140a3c666897588a05shiqian     private: \
599e35fdd936d133bf8a48de140a3c666897588a05shiqian      Rhs rhs_; \
600e35fdd936d133bf8a48de140a3c666897588a05shiqian    }; \
601e35fdd936d133bf8a48de140a3c666897588a05shiqian    Rhs rhs_; \
602e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
603e35fdd936d133bf8a48de140a3c666897588a05shiqian
604e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements Eq(v), Ge(v), Gt(v), Le(v), Lt(v), and Ne(v)
605e35fdd936d133bf8a48de140a3c666897588a05shiqian// respectively.
606e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Eq, ==, "equal to");
607e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ge, >=, "greater than or equal to");
608e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Gt, >, "greater than");
609e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Le, <=, "less than or equal to");
610e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Lt, <, "less than");
611e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ne, !=, "not equal to");
612e35fdd936d133bf8a48de140a3c666897588a05shiqian
613e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan#undef GMOCK_IMPLEMENT_COMPARISON_MATCHER_
614e35fdd936d133bf8a48de140a3c666897588a05shiqian
615e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic NotNull() matcher, which matches any
616e35fdd936d133bf8a48de140a3c666897588a05shiqian// pointer that is not NULL.
617e35fdd936d133bf8a48de140a3c666897588a05shiqianclass NotNullMatcher {
618e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
619e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
620e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(T* p) const { return p != NULL; }
621e35fdd936d133bf8a48de140a3c666897588a05shiqian
622e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const { *os << "is not NULL"; }
623e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
624e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "is NULL";
625e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
626e35fdd936d133bf8a48de140a3c666897588a05shiqian};
627e35fdd936d133bf8a48de140a3c666897588a05shiqian
628e35fdd936d133bf8a48de140a3c666897588a05shiqian// Ref(variable) matches any argument that is a reference to
629e35fdd936d133bf8a48de140a3c666897588a05shiqian// 'variable'.  This matcher is polymorphic as it can match any
630e35fdd936d133bf8a48de140a3c666897588a05shiqian// super type of the type of 'variable'.
631e35fdd936d133bf8a48de140a3c666897588a05shiqian//
632e35fdd936d133bf8a48de140a3c666897588a05shiqian// The RefMatcher template class implements Ref(variable).  It can
633e35fdd936d133bf8a48de140a3c666897588a05shiqian// only be instantiated with a reference type.  This prevents a user
634e35fdd936d133bf8a48de140a3c666897588a05shiqian// from mistakenly using Ref(x) to match a non-reference function
635e35fdd936d133bf8a48de140a3c666897588a05shiqian// argument.  For example, the following will righteously cause a
636e35fdd936d133bf8a48de140a3c666897588a05shiqian// compiler error:
637e35fdd936d133bf8a48de140a3c666897588a05shiqian//
638e35fdd936d133bf8a48de140a3c666897588a05shiqian//   int n;
639e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Matcher<int> m1 = Ref(n);   // This won't compile.
640e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Matcher<int&> m2 = Ref(n);  // This will compile.
641e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
642e35fdd936d133bf8a48de140a3c666897588a05shiqianclass RefMatcher;
643e35fdd936d133bf8a48de140a3c666897588a05shiqian
644e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
645e35fdd936d133bf8a48de140a3c666897588a05shiqianclass RefMatcher<T&> {
646e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Google Mock is a generic framework and thus needs to support
647e35fdd936d133bf8a48de140a3c666897588a05shiqian  // mocking any function types, including those that take non-const
648e35fdd936d133bf8a48de140a3c666897588a05shiqian  // reference arguments.  Therefore the template parameter T (and
649e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Super below) can be instantiated to either a const type or a
650e35fdd936d133bf8a48de140a3c666897588a05shiqian  // non-const type.
651e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
652e35fdd936d133bf8a48de140a3c666897588a05shiqian  // RefMatcher() takes a T& instead of const T&, as we want the
653e35fdd936d133bf8a48de140a3c666897588a05shiqian  // compiler to catch using Ref(const_value) as a matcher for a
654e35fdd936d133bf8a48de140a3c666897588a05shiqian  // non-const reference.
655e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit RefMatcher(T& x) : object_(x) {}  // NOLINT
656e35fdd936d133bf8a48de140a3c666897588a05shiqian
657e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Super>
658e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<Super&>() const {
659e35fdd936d133bf8a48de140a3c666897588a05shiqian    // By passing object_ (type T&) to Impl(), which expects a Super&,
660e35fdd936d133bf8a48de140a3c666897588a05shiqian    // we make sure that Super is a super type of T.  In particular,
661e35fdd936d133bf8a48de140a3c666897588a05shiqian    // this catches using Ref(const_value) as a matcher for a
662e35fdd936d133bf8a48de140a3c666897588a05shiqian    // non-const reference, as you cannot implicitly convert a const
663e35fdd936d133bf8a48de140a3c666897588a05shiqian    // reference to a non-const reference.
664e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<Super>(object_));
665e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
666e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
667e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Super>
668e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<Super&> {
669e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
670e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit Impl(Super& x) : object_(x) {}  // NOLINT
671e35fdd936d133bf8a48de140a3c666897588a05shiqian
672e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Matches() takes a Super& (as opposed to const Super&) in
673e35fdd936d133bf8a48de140a3c666897588a05shiqian    // order to match the interface MatcherInterface<Super&>.
674e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual bool Matches(Super& x) const { return &x == &object_; }  // NOLINT
675e35fdd936d133bf8a48de140a3c666897588a05shiqian
676e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
677e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "references the variable ";
678e35fdd936d133bf8a48de140a3c666897588a05shiqian      UniversalPrinter<Super&>::Print(object_, os);
679e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
680e35fdd936d133bf8a48de140a3c666897588a05shiqian
681e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
682e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "does not reference the variable ";
683e35fdd936d133bf8a48de140a3c666897588a05shiqian      UniversalPrinter<Super&>::Print(object_, os);
684e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
685e35fdd936d133bf8a48de140a3c666897588a05shiqian
686e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void ExplainMatchResultTo(Super& x,  // NOLINT
687e35fdd936d133bf8a48de140a3c666897588a05shiqian                                      ::std::ostream* os) const {
688e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "is located @" << static_cast<const void*>(&x);
689e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
690e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
691e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Super& object_;
692e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
693e35fdd936d133bf8a48de140a3c666897588a05shiqian
694e35fdd936d133bf8a48de140a3c666897588a05shiqian  T& object_;
695e35fdd936d133bf8a48de140a3c666897588a05shiqian};
696e35fdd936d133bf8a48de140a3c666897588a05shiqian
697e35fdd936d133bf8a48de140a3c666897588a05shiqian// Polymorphic helper functions for narrow and wide string matchers.
698e35fdd936d133bf8a48de140a3c666897588a05shiqianinline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) {
699e35fdd936d133bf8a48de140a3c666897588a05shiqian  return String::CaseInsensitiveCStringEquals(lhs, rhs);
700e35fdd936d133bf8a48de140a3c666897588a05shiqian}
701e35fdd936d133bf8a48de140a3c666897588a05shiqian
702e35fdd936d133bf8a48de140a3c666897588a05shiqianinline bool CaseInsensitiveCStringEquals(const wchar_t* lhs,
703e35fdd936d133bf8a48de140a3c666897588a05shiqian                                         const wchar_t* rhs) {
704e35fdd936d133bf8a48de140a3c666897588a05shiqian  return String::CaseInsensitiveWideCStringEquals(lhs, rhs);
705e35fdd936d133bf8a48de140a3c666897588a05shiqian}
706e35fdd936d133bf8a48de140a3c666897588a05shiqian
707e35fdd936d133bf8a48de140a3c666897588a05shiqian// String comparison for narrow or wide strings that can have embedded NUL
708e35fdd936d133bf8a48de140a3c666897588a05shiqian// characters.
709e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
710e35fdd936d133bf8a48de140a3c666897588a05shiqianbool CaseInsensitiveStringEquals(const StringType& s1,
711e35fdd936d133bf8a48de140a3c666897588a05shiqian                                 const StringType& s2) {
712e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Are the heads equal?
713e35fdd936d133bf8a48de140a3c666897588a05shiqian  if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) {
714e35fdd936d133bf8a48de140a3c666897588a05shiqian    return false;
715e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
716e35fdd936d133bf8a48de140a3c666897588a05shiqian
717e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Skip the equal heads.
718e35fdd936d133bf8a48de140a3c666897588a05shiqian  const typename StringType::value_type nul = 0;
719e35fdd936d133bf8a48de140a3c666897588a05shiqian  const size_t i1 = s1.find(nul), i2 = s2.find(nul);
720e35fdd936d133bf8a48de140a3c666897588a05shiqian
721e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Are we at the end of either s1 or s2?
722e35fdd936d133bf8a48de140a3c666897588a05shiqian  if (i1 == StringType::npos || i2 == StringType::npos) {
723e35fdd936d133bf8a48de140a3c666897588a05shiqian    return i1 == i2;
724e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
725e35fdd936d133bf8a48de140a3c666897588a05shiqian
726e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Are the tails equal?
727e35fdd936d133bf8a48de140a3c666897588a05shiqian  return CaseInsensitiveStringEquals(s1.substr(i1 + 1), s2.substr(i2 + 1));
728e35fdd936d133bf8a48de140a3c666897588a05shiqian}
729e35fdd936d133bf8a48de140a3c666897588a05shiqian
730e35fdd936d133bf8a48de140a3c666897588a05shiqian// String matchers.
731e35fdd936d133bf8a48de140a3c666897588a05shiqian
732e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements equality-based string matchers like StrEq, StrCaseNe, and etc.
733e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
734e35fdd936d133bf8a48de140a3c666897588a05shiqianclass StrEqualityMatcher {
735e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
736e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
737e35fdd936d133bf8a48de140a3c666897588a05shiqian
738e35fdd936d133bf8a48de140a3c666897588a05shiqian  StrEqualityMatcher(const StringType& str, bool expect_eq,
739e35fdd936d133bf8a48de140a3c666897588a05shiqian                     bool case_sensitive)
740e35fdd936d133bf8a48de140a3c666897588a05shiqian      : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
741e35fdd936d133bf8a48de140a3c666897588a05shiqian
742e35fdd936d133bf8a48de140a3c666897588a05shiqian  // When expect_eq_ is true, returns true iff s is equal to string_;
743e35fdd936d133bf8a48de140a3c666897588a05shiqian  // otherwise returns true iff s is not equal to string_.
744e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(ConstCharPointer s) const {
745e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (s == NULL) {
746e35fdd936d133bf8a48de140a3c666897588a05shiqian      return !expect_eq_;
747e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
748e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matches(StringType(s));
749e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
750e35fdd936d133bf8a48de140a3c666897588a05shiqian
751e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const StringType& s) const {
752e35fdd936d133bf8a48de140a3c666897588a05shiqian    const bool eq = case_sensitive_ ? s == string_ :
753e35fdd936d133bf8a48de140a3c666897588a05shiqian        CaseInsensitiveStringEquals(s, string_);
754e35fdd936d133bf8a48de140a3c666897588a05shiqian    return expect_eq_ == eq;
755e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
756e35fdd936d133bf8a48de140a3c666897588a05shiqian
757e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
758e35fdd936d133bf8a48de140a3c666897588a05shiqian    DescribeToHelper(expect_eq_, os);
759e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
760e35fdd936d133bf8a48de140a3c666897588a05shiqian
761e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
762e35fdd936d133bf8a48de140a3c666897588a05shiqian    DescribeToHelper(!expect_eq_, os);
763e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
764e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
765e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeToHelper(bool expect_eq, ::std::ostream* os) const {
766e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "is ";
767e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (!expect_eq) {
768e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "not ";
769e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
770e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "equal to ";
771e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (!case_sensitive_) {
772e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "(ignoring case) ";
773e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
774e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(string_, os);
775e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
776e35fdd936d133bf8a48de140a3c666897588a05shiqian
777e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType string_;
778e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool expect_eq_;
779e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool case_sensitive_;
780e35fdd936d133bf8a48de140a3c666897588a05shiqian};
781e35fdd936d133bf8a48de140a3c666897588a05shiqian
782e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic HasSubstr(substring) matcher, which
783e35fdd936d133bf8a48de140a3c666897588a05shiqian// can be used as a Matcher<T> as long as T can be converted to a
784e35fdd936d133bf8a48de140a3c666897588a05shiqian// string.
785e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
786e35fdd936d133bf8a48de140a3c666897588a05shiqianclass HasSubstrMatcher {
787e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
788e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
789e35fdd936d133bf8a48de140a3c666897588a05shiqian
790e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit HasSubstrMatcher(const StringType& substring)
791e35fdd936d133bf8a48de140a3c666897588a05shiqian      : substring_(substring) {}
792e35fdd936d133bf8a48de140a3c666897588a05shiqian
793e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow HasSubstr(substring) to be used as a
794e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<T> as long as T can be converted to string.  Returns true
795e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff s contains substring_ as a substring.
796e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(ConstCharPointer s) const {
797e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s != NULL && Matches(StringType(s));
798e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
799e35fdd936d133bf8a48de140a3c666897588a05shiqian
800e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const StringType& s) const {
801e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s.find(substring_) != StringType::npos;
802e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
803e35fdd936d133bf8a48de140a3c666897588a05shiqian
804e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes what this matcher matches.
805e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
806e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "has substring ";
807e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(substring_, os);
808e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
809e35fdd936d133bf8a48de140a3c666897588a05shiqian
810e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
811e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "has no substring ";
812e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(substring_, os);
813e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
814e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
815e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType substring_;
816e35fdd936d133bf8a48de140a3c666897588a05shiqian};
817e35fdd936d133bf8a48de140a3c666897588a05shiqian
818e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic StartsWith(substring) matcher, which
819e35fdd936d133bf8a48de140a3c666897588a05shiqian// can be used as a Matcher<T> as long as T can be converted to a
820e35fdd936d133bf8a48de140a3c666897588a05shiqian// string.
821e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
822e35fdd936d133bf8a48de140a3c666897588a05shiqianclass StartsWithMatcher {
823e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
824e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
825e35fdd936d133bf8a48de140a3c666897588a05shiqian
826e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit StartsWithMatcher(const StringType& prefix) : prefix_(prefix) {
827e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
828e35fdd936d133bf8a48de140a3c666897588a05shiqian
829e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow StartsWith(prefix) to be used as a
830e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<T> as long as T can be converted to string.  Returns true
831e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff s starts with prefix_.
832e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(ConstCharPointer s) const {
833e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s != NULL && Matches(StringType(s));
834e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
835e35fdd936d133bf8a48de140a3c666897588a05shiqian
836e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const StringType& s) const {
837e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s.length() >= prefix_.length() &&
838e35fdd936d133bf8a48de140a3c666897588a05shiqian        s.substr(0, prefix_.length()) == prefix_;
839e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
840e35fdd936d133bf8a48de140a3c666897588a05shiqian
841e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
842e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "starts with ";
843e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(prefix_, os);
844e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
845e35fdd936d133bf8a48de140a3c666897588a05shiqian
846e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
847e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't start with ";
848e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(prefix_, os);
849e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
850e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
851e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType prefix_;
852e35fdd936d133bf8a48de140a3c666897588a05shiqian};
853e35fdd936d133bf8a48de140a3c666897588a05shiqian
854e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic EndsWith(substring) matcher, which
855e35fdd936d133bf8a48de140a3c666897588a05shiqian// can be used as a Matcher<T> as long as T can be converted to a
856e35fdd936d133bf8a48de140a3c666897588a05shiqian// string.
857e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
858e35fdd936d133bf8a48de140a3c666897588a05shiqianclass EndsWithMatcher {
859e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
860e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
861e35fdd936d133bf8a48de140a3c666897588a05shiqian
862e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit EndsWithMatcher(const StringType& suffix) : suffix_(suffix) {}
863e35fdd936d133bf8a48de140a3c666897588a05shiqian
864e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow EndsWith(suffix) to be used as a
865e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<T> as long as T can be converted to string.  Returns true
866e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff s ends with suffix_.
867e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(ConstCharPointer s) const {
868e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s != NULL && Matches(StringType(s));
869e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
870e35fdd936d133bf8a48de140a3c666897588a05shiqian
871e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const StringType& s) const {
872e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s.length() >= suffix_.length() &&
873e35fdd936d133bf8a48de140a3c666897588a05shiqian        s.substr(s.length() - suffix_.length()) == suffix_;
874e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
875e35fdd936d133bf8a48de140a3c666897588a05shiqian
876e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
877e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "ends with ";
878e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(suffix_, os);
879e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
880e35fdd936d133bf8a48de140a3c666897588a05shiqian
881e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
882e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't end with ";
883e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(suffix_, os);
884e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
885e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
886e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType suffix_;
887e35fdd936d133bf8a48de140a3c666897588a05shiqian};
888e35fdd936d133bf8a48de140a3c666897588a05shiqian
889e35fdd936d133bf8a48de140a3c666897588a05shiqian#if GMOCK_HAS_REGEX
890e35fdd936d133bf8a48de140a3c666897588a05shiqian
891e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements polymorphic matchers MatchesRegex(regex) and
892e35fdd936d133bf8a48de140a3c666897588a05shiqian// ContainsRegex(regex), which can be used as a Matcher<T> as long as
893e35fdd936d133bf8a48de140a3c666897588a05shiqian// T can be converted to a string.
894e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatchesRegexMatcher {
895e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
896e35fdd936d133bf8a48de140a3c666897588a05shiqian  MatchesRegexMatcher(const RE* regex, bool full_match)
897e35fdd936d133bf8a48de140a3c666897588a05shiqian      : regex_(regex), full_match_(full_match) {}
898e35fdd936d133bf8a48de140a3c666897588a05shiqian
899e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow MatchesRegex(regex) to be used as
900e35fdd936d133bf8a48de140a3c666897588a05shiqian  // a Matcher<T> as long as T can be converted to string.  Returns
901e35fdd936d133bf8a48de140a3c666897588a05shiqian  // true iff s matches regular expression regex.  When full_match_ is
902e35fdd936d133bf8a48de140a3c666897588a05shiqian  // true, a full match is done; otherwise a partial match is done.
903e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const char* s) const {
904e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s != NULL && Matches(internal::string(s));
905e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
906e35fdd936d133bf8a48de140a3c666897588a05shiqian
907e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const internal::string& s) const {
908e35fdd936d133bf8a48de140a3c666897588a05shiqian    return full_match_ ? RE::FullMatch(s, *regex_) :
909e35fdd936d133bf8a48de140a3c666897588a05shiqian        RE::PartialMatch(s, *regex_);
910e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
911e35fdd936d133bf8a48de140a3c666897588a05shiqian
912e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
913e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << (full_match_ ? "matches" : "contains")
914e35fdd936d133bf8a48de140a3c666897588a05shiqian        << " regular expression ";
915e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
916e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
917e35fdd936d133bf8a48de140a3c666897588a05shiqian
918e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
919e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't " << (full_match_ ? "match" : "contain")
920e35fdd936d133bf8a48de140a3c666897588a05shiqian        << " regular expression ";
921e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
922e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
923e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
924e35fdd936d133bf8a48de140a3c666897588a05shiqian  const internal::linked_ptr<const RE> regex_;
925e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool full_match_;
926e35fdd936d133bf8a48de140a3c666897588a05shiqian};
927e35fdd936d133bf8a48de140a3c666897588a05shiqian
928e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GMOCK_HAS_REGEX
929e35fdd936d133bf8a48de140a3c666897588a05shiqian
930e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements a matcher that compares the two fields of a 2-tuple
931e35fdd936d133bf8a48de140a3c666897588a05shiqian// using one of the ==, <=, <, etc, operators.  The two fields being
932e35fdd936d133bf8a48de140a3c666897588a05shiqian// compared don't have to have the same type.
933e35fdd936d133bf8a48de140a3c666897588a05shiqian//
934e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher defined here is polymorphic (for example, Eq() can be
935e35fdd936d133bf8a48de140a3c666897588a05shiqian// used to match a tuple<int, short>, a tuple<const long&, double>,
936e35fdd936d133bf8a48de140a3c666897588a05shiqian// etc).  Therefore we use a template type conversion operator in the
937e35fdd936d133bf8a48de140a3c666897588a05shiqian// implementation.
938e35fdd936d133bf8a48de140a3c666897588a05shiqian//
939e35fdd936d133bf8a48de140a3c666897588a05shiqian// We define this as a macro in order to eliminate duplicated source
940e35fdd936d133bf8a48de140a3c666897588a05shiqian// code.
941e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan#define GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(name, op, relation) \
942e35fdd936d133bf8a48de140a3c666897588a05shiqian  class name##2Matcher { \
943e35fdd936d133bf8a48de140a3c666897588a05shiqian   public: \
944e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename T1, typename T2> \
945e35fdd936d133bf8a48de140a3c666897588a05shiqian    operator Matcher<const ::std::tr1::tuple<T1, T2>&>() const { \
946e35fdd936d133bf8a48de140a3c666897588a05shiqian      return MakeMatcher(new Impl<T1, T2>); \
947e35fdd936d133bf8a48de140a3c666897588a05shiqian    } \
948e35fdd936d133bf8a48de140a3c666897588a05shiqian   private: \
949e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename T1, typename T2> \
950e35fdd936d133bf8a48de140a3c666897588a05shiqian    class Impl : public MatcherInterface<const ::std::tr1::tuple<T1, T2>&> { \
951e35fdd936d133bf8a48de140a3c666897588a05shiqian     public: \
952e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual bool Matches(const ::std::tr1::tuple<T1, T2>& args) const { \
953e35fdd936d133bf8a48de140a3c666897588a05shiqian        return ::std::tr1::get<0>(args) op ::std::tr1::get<1>(args); \
954e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
955e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeTo(::std::ostream* os) const { \
956e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "argument #0 is " relation " argument #1"; \
957e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
958e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeNegationTo(::std::ostream* os) const { \
959e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "argument #0 is not " relation " argument #1"; \
960e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
961e35fdd936d133bf8a48de140a3c666897588a05shiqian    }; \
962e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
963e35fdd936d133bf8a48de140a3c666897588a05shiqian
964e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements Eq(), Ge(), Gt(), Le(), Lt(), and Ne() respectively.
965e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Eq, ==, "equal to");
966e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Ge, >=, "greater than or equal to");
967e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Gt, >, "greater than");
968e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Le, <=, "less than or equal to");
969e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Lt, <, "less than");
970e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Ne, !=, "not equal to");
971e35fdd936d133bf8a48de140a3c666897588a05shiqian
972e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan#undef GMOCK_IMPLEMENT_COMPARISON2_MATCHER_
973e35fdd936d133bf8a48de140a3c666897588a05shiqian
974c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// Implements the Not(...) matcher for a particular argument type T.
975c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// We do not nest it inside the NotMatcher class template, as that
976c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// will prevent different instantiations of NotMatcher from sharing
977c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// the same NotMatcherImpl<T> class.
978c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wantemplate <typename T>
979c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wanclass NotMatcherImpl : public MatcherInterface<T> {
980c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan public:
981c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  explicit NotMatcherImpl(const Matcher<T>& matcher)
982c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      : matcher_(matcher) {}
983c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
984c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual bool Matches(T x) const {
985c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    return !matcher_.Matches(x);
986c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
987c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
988c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
989c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher_.DescribeNegationTo(os);
990c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
991c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
992c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
993c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher_.DescribeTo(os);
994c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
995c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
996c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void ExplainMatchResultTo(T x, ::std::ostream* os) const {
997c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher_.ExplainMatchResultTo(x, os);
998c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
999c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan private:
1000c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher_;
1001c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan};
1002c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1003e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Not(m) matcher, which matches a value that doesn't
1004e35fdd936d133bf8a48de140a3c666897588a05shiqian// match matcher m.
1005e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
1006e35fdd936d133bf8a48de140a3c666897588a05shiqianclass NotMatcher {
1007e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1008e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
1009e35fdd936d133bf8a48de140a3c666897588a05shiqian
1010e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template type conversion operator allows Not(m) to be used
1011e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to match any type m can match.
1012e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1013e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
1014c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1015e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1016e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1017c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  InnerMatcher matcher_;
1018c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan};
1019e35fdd936d133bf8a48de140a3c666897588a05shiqian
1020c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// Implements the AllOf(m1, m2) matcher for a particular argument type
1021c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// T. We do not nest it inside the BothOfMatcher class template, as
1022c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// that will prevent different instantiations of BothOfMatcher from
1023c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// sharing the same BothOfMatcherImpl<T> class.
1024c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wantemplate <typename T>
1025c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wanclass BothOfMatcherImpl : public MatcherInterface<T> {
1026c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan public:
1027c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  BothOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
1028c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      : matcher1_(matcher1), matcher2_(matcher2) {}
1029e35fdd936d133bf8a48de140a3c666897588a05shiqian
1030c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual bool Matches(T x) const {
1031c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    return matcher1_.Matches(x) && matcher2_.Matches(x);
1032c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1033e35fdd936d133bf8a48de140a3c666897588a05shiqian
1034c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
1035c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "(";
1036c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher1_.DescribeTo(os);
1037c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ") and (";
1038c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher2_.DescribeTo(os);
1039c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ")";
1040c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1041e35fdd936d133bf8a48de140a3c666897588a05shiqian
1042c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
1043c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "not ";
1044c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    DescribeTo(os);
1045c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1046e35fdd936d133bf8a48de140a3c666897588a05shiqian
1047c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void ExplainMatchResultTo(T x, ::std::ostream* os) const {
1048c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    if (Matches(x)) {
1049c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      // When both matcher1_ and matcher2_ match x, we need to
1050c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      // explain why *both* of them match.
1051c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      ::std::stringstream ss1;
1052c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      matcher1_.ExplainMatchResultTo(x, &ss1);
1053c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      const internal::string s1 = ss1.str();
1054c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1055c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      ::std::stringstream ss2;
1056c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      matcher2_.ExplainMatchResultTo(x, &ss2);
1057c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      const internal::string s2 = ss2.str();
1058c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1059c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      if (s1 == "") {
1060c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        *os << s2;
1061c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      } else {
1062c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        *os << s1;
1063c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        if (s2 != "") {
1064c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan          *os << "; " << s2;
1065c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        }
1066c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      }
1067c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    } else {
1068c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      // Otherwise we only need to explain why *one* of them fails
1069c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      // to match.
1070c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      if (!matcher1_.Matches(x)) {
1071c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        matcher1_.ExplainMatchResultTo(x, os);
1072c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      } else {
1073c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        matcher2_.ExplainMatchResultTo(x, os);
1074c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      }
1075c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    }
1076c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1077c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan private:
1078c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher1_;
1079c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher2_;
1080e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1081e35fdd936d133bf8a48de140a3c666897588a05shiqian
1082e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing the AllOf(m_1, ..., m_n) matcher, which
1083e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a value that matches all of the matchers m_1, ..., and m_n.
1084e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
1085e35fdd936d133bf8a48de140a3c666897588a05shiqianclass BothOfMatcher {
1086e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1087e35fdd936d133bf8a48de140a3c666897588a05shiqian  BothOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
1088e35fdd936d133bf8a48de140a3c666897588a05shiqian      : matcher1_(matcher1), matcher2_(matcher2) {}
1089e35fdd936d133bf8a48de140a3c666897588a05shiqian
1090e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template type conversion operator allows a
1091e35fdd936d133bf8a48de140a3c666897588a05shiqian  // BothOfMatcher<Matcher1, Matcher2> object to match any type that
1092e35fdd936d133bf8a48de140a3c666897588a05shiqian  // both Matcher1 and Matcher2 can match.
1093e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1094e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
1095c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    return Matcher<T>(new BothOfMatcherImpl<T>(SafeMatcherCast<T>(matcher1_),
1096c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan                                               SafeMatcherCast<T>(matcher2_)));
1097e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1098e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1099c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  Matcher1 matcher1_;
1100c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  Matcher2 matcher2_;
1101c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan};
1102e35fdd936d133bf8a48de140a3c666897588a05shiqian
1103c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// Implements the AnyOf(m1, m2) matcher for a particular argument type
1104c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// T.  We do not nest it inside the AnyOfMatcher class template, as
1105c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// that will prevent different instantiations of AnyOfMatcher from
1106c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// sharing the same EitherOfMatcherImpl<T> class.
1107c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wantemplate <typename T>
1108c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wanclass EitherOfMatcherImpl : public MatcherInterface<T> {
1109c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan public:
1110c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  EitherOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
1111c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      : matcher1_(matcher1), matcher2_(matcher2) {}
1112e35fdd936d133bf8a48de140a3c666897588a05shiqian
1113c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual bool Matches(T x) const {
1114c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    return matcher1_.Matches(x) || matcher2_.Matches(x);
1115c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1116e35fdd936d133bf8a48de140a3c666897588a05shiqian
1117c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
1118c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "(";
1119c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher1_.DescribeTo(os);
1120c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ") or (";
1121c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher2_.DescribeTo(os);
1122c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ")";
1123c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1124e35fdd936d133bf8a48de140a3c666897588a05shiqian
1125c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
1126c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "not ";
1127c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    DescribeTo(os);
1128c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1129c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1130c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void ExplainMatchResultTo(T x, ::std::ostream* os) const {
1131c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    if (Matches(x)) {
1132c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      // If either matcher1_ or matcher2_ matches x, we just need
1133c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      // to explain why *one* of them matches.
1134c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      if (matcher1_.Matches(x)) {
1135c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        matcher1_.ExplainMatchResultTo(x, os);
1136e35fdd936d133bf8a48de140a3c666897588a05shiqian      } else {
1137c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        matcher2_.ExplainMatchResultTo(x, os);
1138c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      }
1139c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    } else {
1140c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      // Otherwise we need to explain why *neither* matches.
1141c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      ::std::stringstream ss1;
1142c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      matcher1_.ExplainMatchResultTo(x, &ss1);
1143c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      const internal::string s1 = ss1.str();
1144c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1145c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      ::std::stringstream ss2;
1146c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      matcher2_.ExplainMatchResultTo(x, &ss2);
1147c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      const internal::string s2 = ss2.str();
1148c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1149c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      if (s1 == "") {
1150c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        *os << s2;
1151c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      } else {
1152c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        *os << s1;
1153c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan        if (s2 != "") {
1154c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan          *os << "; " << s2;
1155e35fdd936d133bf8a48de140a3c666897588a05shiqian        }
1156e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1157e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1158c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1159c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan private:
1160c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher1_;
1161c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher2_;
1162e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1163e35fdd936d133bf8a48de140a3c666897588a05shiqian
1164e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing the AnyOf(m_1, ..., m_n) matcher, which
1165e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a value that matches at least one of the matchers m_1, ...,
1166e35fdd936d133bf8a48de140a3c666897588a05shiqian// and m_n.
1167e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
1168e35fdd936d133bf8a48de140a3c666897588a05shiqianclass EitherOfMatcher {
1169e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1170e35fdd936d133bf8a48de140a3c666897588a05shiqian  EitherOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
1171e35fdd936d133bf8a48de140a3c666897588a05shiqian      : matcher1_(matcher1), matcher2_(matcher2) {}
1172e35fdd936d133bf8a48de140a3c666897588a05shiqian
1173e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template type conversion operator allows a
1174e35fdd936d133bf8a48de140a3c666897588a05shiqian  // EitherOfMatcher<Matcher1, Matcher2> object to match any type that
1175e35fdd936d133bf8a48de140a3c666897588a05shiqian  // both Matcher1 and Matcher2 can match.
1176e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1177e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
117816cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan    return Matcher<T>(new EitherOfMatcherImpl<T>(
117916cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan        SafeMatcherCast<T>(matcher1_), SafeMatcherCast<T>(matcher2_)));
1180e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1181e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1182e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher1 matcher1_;
1183e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher2 matcher2_;
1184e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1185e35fdd936d133bf8a48de140a3c666897588a05shiqian
1186e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing Truly(pred), which turns a predicate into a
1187e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher.
1188e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Predicate>
1189e35fdd936d133bf8a48de140a3c666897588a05shiqianclass TrulyMatcher {
1190e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1191e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit TrulyMatcher(Predicate pred) : predicate_(pred) {}
1192e35fdd936d133bf8a48de140a3c666897588a05shiqian
1193e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This method template allows Truly(pred) to be used as a matcher
1194e35fdd936d133bf8a48de140a3c666897588a05shiqian  // for type T where T is the argument type of predicate 'pred'.  The
1195e35fdd936d133bf8a48de140a3c666897588a05shiqian  // argument is passed by reference as the predicate may be
1196e35fdd936d133bf8a48de140a3c666897588a05shiqian  // interested in the address of the argument.
1197e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
119816cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan  bool Matches(T& x) const {  // NOLINT
1199652540a278e56528e576f9ea77515f386698a326zhanyong.wan#if GTEST_OS_WINDOWS
1200e35fdd936d133bf8a48de140a3c666897588a05shiqian    // MSVC warns about converting a value into bool (warning 4800).
1201e35fdd936d133bf8a48de140a3c666897588a05shiqian#pragma warning(push)          // Saves the current warning state.
1202e35fdd936d133bf8a48de140a3c666897588a05shiqian#pragma warning(disable:4800)  // Temporarily disables warning 4800.
1203e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GTEST_OS_WINDOWS
1204e35fdd936d133bf8a48de140a3c666897588a05shiqian    return predicate_(x);
1205652540a278e56528e576f9ea77515f386698a326zhanyong.wan#if GTEST_OS_WINDOWS
1206e35fdd936d133bf8a48de140a3c666897588a05shiqian#pragma warning(pop)           // Restores the warning state.
1207e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GTEST_OS_WINDOWS
1208e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1209e35fdd936d133bf8a48de140a3c666897588a05shiqian
1210e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1211e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "satisfies the given predicate";
1212e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1213e35fdd936d133bf8a48de140a3c666897588a05shiqian
1214e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1215e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't satisfy the given predicate";
1216e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1217e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1218e35fdd936d133bf8a48de140a3c666897588a05shiqian  Predicate predicate_;
1219e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1220e35fdd936d133bf8a48de140a3c666897588a05shiqian
1221e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing Matches(matcher), which turns a matcher into
1222e35fdd936d133bf8a48de140a3c666897588a05shiqian// a predicate.
1223e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
1224e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherAsPredicate {
1225e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1226e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
1227e35fdd936d133bf8a48de140a3c666897588a05shiqian
1228e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template operator() allows Matches(m) to be used as a
1229e35fdd936d133bf8a48de140a3c666897588a05shiqian  // predicate on type T where m is a matcher on type T.
1230e35fdd936d133bf8a48de140a3c666897588a05shiqian  //
1231e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The argument x is passed by reference instead of by value, as
1232e35fdd936d133bf8a48de140a3c666897588a05shiqian  // some matcher may be interested in its address (e.g. as in
1233e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matches(Ref(n))(x)).
1234e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1235e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool operator()(const T& x) const {
1236e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We let matcher_ commit to a particular type here instead of
1237e35fdd936d133bf8a48de140a3c666897588a05shiqian    // when the MatcherAsPredicate object was constructed.  This
1238e35fdd936d133bf8a48de140a3c666897588a05shiqian    // allows us to write Matches(m) where m is a polymorphic matcher
1239e35fdd936d133bf8a48de140a3c666897588a05shiqian    // (e.g. Eq(5)).
1240e35fdd936d133bf8a48de140a3c666897588a05shiqian    //
1241e35fdd936d133bf8a48de140a3c666897588a05shiqian    // If we write Matcher<T>(matcher_).Matches(x) here, it won't
1242e35fdd936d133bf8a48de140a3c666897588a05shiqian    // compile when matcher_ has type Matcher<const T&>; if we write
1243e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Matcher<const T&>(matcher_).Matches(x) here, it won't compile
1244e35fdd936d133bf8a48de140a3c666897588a05shiqian    // when matcher_ has type Matcher<T>; if we just write
1245e35fdd936d133bf8a48de140a3c666897588a05shiqian    // matcher_.Matches(x), it won't compile when matcher_ is
1246e35fdd936d133bf8a48de140a3c666897588a05shiqian    // polymorphic, e.g. Eq(5).
1247e35fdd936d133bf8a48de140a3c666897588a05shiqian    //
1248e35fdd936d133bf8a48de140a3c666897588a05shiqian    // MatcherCast<const T&>() is necessary for making the code work
1249e35fdd936d133bf8a48de140a3c666897588a05shiqian    // in all of the above situations.
1250e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MatcherCast<const T&>(matcher_).Matches(x);
1251e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1252e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1253e35fdd936d133bf8a48de140a3c666897588a05shiqian  M matcher_;
1254e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1255e35fdd936d133bf8a48de140a3c666897588a05shiqian
1256e35fdd936d133bf8a48de140a3c666897588a05shiqian// For implementing ASSERT_THAT() and EXPECT_THAT().  The template
1257e35fdd936d133bf8a48de140a3c666897588a05shiqian// argument M must be a type that can be converted to a matcher.
1258e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
1259e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PredicateFormatterFromMatcher {
1260e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1261e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit PredicateFormatterFromMatcher(const M& m) : matcher_(m) {}
1262e35fdd936d133bf8a48de140a3c666897588a05shiqian
1263e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template () operator allows a PredicateFormatterFromMatcher
1264e35fdd936d133bf8a48de140a3c666897588a05shiqian  // object to act as a predicate-formatter suitable for using with
1265e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Google Test's EXPECT_PRED_FORMAT1() macro.
1266e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1267e35fdd936d133bf8a48de140a3c666897588a05shiqian  AssertionResult operator()(const char* value_text, const T& x) const {
1268e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We convert matcher_ to a Matcher<const T&> *now* instead of
1269e35fdd936d133bf8a48de140a3c666897588a05shiqian    // when the PredicateFormatterFromMatcher object was constructed,
1270e35fdd936d133bf8a48de140a3c666897588a05shiqian    // as matcher_ may be polymorphic (e.g. NotNull()) and we won't
1271e35fdd936d133bf8a48de140a3c666897588a05shiqian    // know which type to instantiate it to until we actually see the
1272e35fdd936d133bf8a48de140a3c666897588a05shiqian    // type of x here.
1273e35fdd936d133bf8a48de140a3c666897588a05shiqian    //
1274e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We write MatcherCast<const T&>(matcher_) instead of
1275e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Matcher<const T&>(matcher_), as the latter won't compile when
1276e35fdd936d133bf8a48de140a3c666897588a05shiqian    // matcher_ has type Matcher<T> (e.g. An<int>()).
1277e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<const T&> matcher = MatcherCast<const T&>(matcher_);
1278e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (matcher.Matches(x)) {
1279e35fdd936d133bf8a48de140a3c666897588a05shiqian      return AssertionSuccess();
1280e35fdd936d133bf8a48de140a3c666897588a05shiqian    } else {
1281e35fdd936d133bf8a48de140a3c666897588a05shiqian      ::std::stringstream ss;
1282e35fdd936d133bf8a48de140a3c666897588a05shiqian      ss << "Value of: " << value_text << "\n"
1283e35fdd936d133bf8a48de140a3c666897588a05shiqian         << "Expected: ";
1284e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher.DescribeTo(&ss);
1285e35fdd936d133bf8a48de140a3c666897588a05shiqian      ss << "\n  Actual: ";
1286e35fdd936d133bf8a48de140a3c666897588a05shiqian      UniversalPrinter<T>::Print(x, &ss);
1287e35fdd936d133bf8a48de140a3c666897588a05shiqian      ExplainMatchResultAsNeededTo<const T&>(matcher, x, &ss);
1288e35fdd936d133bf8a48de140a3c666897588a05shiqian      return AssertionFailure(Message() << ss.str());
1289e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1290e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1291e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1292e35fdd936d133bf8a48de140a3c666897588a05shiqian  const M matcher_;
1293e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1294e35fdd936d133bf8a48de140a3c666897588a05shiqian
1295e35fdd936d133bf8a48de140a3c666897588a05shiqian// A helper function for converting a matcher to a predicate-formatter
1296e35fdd936d133bf8a48de140a3c666897588a05shiqian// without the user needing to explicitly write the type.  This is
1297e35fdd936d133bf8a48de140a3c666897588a05shiqian// used for implementing ASSERT_THAT() and EXPECT_THAT().
1298e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
1299e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PredicateFormatterFromMatcher<M>
1300e35fdd936d133bf8a48de140a3c666897588a05shiqianMakePredicateFormatterFromMatcher(const M& matcher) {
1301e35fdd936d133bf8a48de140a3c666897588a05shiqian  return PredicateFormatterFromMatcher<M>(matcher);
1302e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1303e35fdd936d133bf8a48de140a3c666897588a05shiqian
1304e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic floating point equality matcher, which
1305e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches two float values using ULP-based approximation.  The
1306e35fdd936d133bf8a48de140a3c666897588a05shiqian// template is meant to be instantiated with FloatType being either
1307e35fdd936d133bf8a48de140a3c666897588a05shiqian// float or double.
1308e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename FloatType>
1309e35fdd936d133bf8a48de140a3c666897588a05shiqianclass FloatingEqMatcher {
1310e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1311e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructor for FloatingEqMatcher.
1312e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The matcher's input will be compared with rhs.  The matcher treats two
1313e35fdd936d133bf8a48de140a3c666897588a05shiqian  // NANs as equal if nan_eq_nan is true.  Otherwise, under IEEE standards,
1314e35fdd936d133bf8a48de140a3c666897588a05shiqian  // equality comparisons between NANs will always return false.
1315e35fdd936d133bf8a48de140a3c666897588a05shiqian  FloatingEqMatcher(FloatType rhs, bool nan_eq_nan) :
1316e35fdd936d133bf8a48de140a3c666897588a05shiqian    rhs_(rhs), nan_eq_nan_(nan_eq_nan) {}
1317e35fdd936d133bf8a48de140a3c666897588a05shiqian
1318e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Implements floating point equality matcher as a Matcher<T>.
1319e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1320e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<T> {
1321e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
1322e35fdd936d133bf8a48de140a3c666897588a05shiqian    Impl(FloatType rhs, bool nan_eq_nan) :
1323e35fdd936d133bf8a48de140a3c666897588a05shiqian      rhs_(rhs), nan_eq_nan_(nan_eq_nan) {}
1324e35fdd936d133bf8a48de140a3c666897588a05shiqian
1325e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual bool Matches(T value) const {
1326e35fdd936d133bf8a48de140a3c666897588a05shiqian      const FloatingPoint<FloatType> lhs(value), rhs(rhs_);
1327e35fdd936d133bf8a48de140a3c666897588a05shiqian
1328e35fdd936d133bf8a48de140a3c666897588a05shiqian      // Compares NaNs first, if nan_eq_nan_ is true.
1329e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (nan_eq_nan_ && lhs.is_nan()) {
1330e35fdd936d133bf8a48de140a3c666897588a05shiqian        return rhs.is_nan();
1331e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1332e35fdd936d133bf8a48de140a3c666897588a05shiqian
1333e35fdd936d133bf8a48de140a3c666897588a05shiqian      return lhs.AlmostEquals(rhs);
1334e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1335e35fdd936d133bf8a48de140a3c666897588a05shiqian
1336e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
1337e35fdd936d133bf8a48de140a3c666897588a05shiqian      // os->precision() returns the previously set precision, which we
1338e35fdd936d133bf8a48de140a3c666897588a05shiqian      // store to restore the ostream to its original configuration
1339e35fdd936d133bf8a48de140a3c666897588a05shiqian      // after outputting.
1340e35fdd936d133bf8a48de140a3c666897588a05shiqian      const ::std::streamsize old_precision = os->precision(
1341e35fdd936d133bf8a48de140a3c666897588a05shiqian          ::std::numeric_limits<FloatType>::digits10 + 2);
1342e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (FloatingPoint<FloatType>(rhs_).is_nan()) {
1343e35fdd936d133bf8a48de140a3c666897588a05shiqian        if (nan_eq_nan_) {
1344e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "is NaN";
1345e35fdd936d133bf8a48de140a3c666897588a05shiqian        } else {
1346e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "never matches";
1347e35fdd936d133bf8a48de140a3c666897588a05shiqian        }
1348e35fdd936d133bf8a48de140a3c666897588a05shiqian      } else {
1349e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is approximately " << rhs_;
1350e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1351e35fdd936d133bf8a48de140a3c666897588a05shiqian      os->precision(old_precision);
1352e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1353e35fdd936d133bf8a48de140a3c666897588a05shiqian
1354e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
1355e35fdd936d133bf8a48de140a3c666897588a05shiqian      // As before, get original precision.
1356e35fdd936d133bf8a48de140a3c666897588a05shiqian      const ::std::streamsize old_precision = os->precision(
1357e35fdd936d133bf8a48de140a3c666897588a05shiqian          ::std::numeric_limits<FloatType>::digits10 + 2);
1358e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (FloatingPoint<FloatType>(rhs_).is_nan()) {
1359e35fdd936d133bf8a48de140a3c666897588a05shiqian        if (nan_eq_nan_) {
1360e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "is not NaN";
1361e35fdd936d133bf8a48de140a3c666897588a05shiqian        } else {
1362e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "is anything";
1363e35fdd936d133bf8a48de140a3c666897588a05shiqian        }
1364e35fdd936d133bf8a48de140a3c666897588a05shiqian      } else {
1365e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is not approximately " << rhs_;
1366e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1367e35fdd936d133bf8a48de140a3c666897588a05shiqian      // Restore original precision.
1368e35fdd936d133bf8a48de140a3c666897588a05shiqian      os->precision(old_precision);
1369e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1370e35fdd936d133bf8a48de140a3c666897588a05shiqian
1371e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
1372e35fdd936d133bf8a48de140a3c666897588a05shiqian    const FloatType rhs_;
1373e35fdd936d133bf8a48de140a3c666897588a05shiqian    const bool nan_eq_nan_;
1374e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
1375e35fdd936d133bf8a48de140a3c666897588a05shiqian
1376e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The following 3 type conversion operators allow FloatEq(rhs) and
1377e35fdd936d133bf8a48de140a3c666897588a05shiqian  // NanSensitiveFloatEq(rhs) to be used as a Matcher<float>, a
1378e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<const float&>, or a Matcher<float&>, but nothing else.
1379e35fdd936d133bf8a48de140a3c666897588a05shiqian  // (While Google's C++ coding style doesn't allow arguments passed
1380e35fdd936d133bf8a48de140a3c666897588a05shiqian  // by non-const reference, we may see them in code not conforming to
1381e35fdd936d133bf8a48de140a3c666897588a05shiqian  // the style.  Therefore Google Mock needs to support them.)
1382e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<FloatType>() const {
1383e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<FloatType>(rhs_, nan_eq_nan_));
1384e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1385e35fdd936d133bf8a48de140a3c666897588a05shiqian
1386e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<const FloatType&>() const {
1387e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<const FloatType&>(rhs_, nan_eq_nan_));
1388e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1389e35fdd936d133bf8a48de140a3c666897588a05shiqian
1390e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<FloatType&>() const {
1391e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<FloatType&>(rhs_, nan_eq_nan_));
1392e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1393e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1394e35fdd936d133bf8a48de140a3c666897588a05shiqian  const FloatType rhs_;
1395e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool nan_eq_nan_;
1396e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1397e35fdd936d133bf8a48de140a3c666897588a05shiqian
1398e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Pointee(m) matcher for matching a pointer whose
1399e35fdd936d133bf8a48de140a3c666897588a05shiqian// pointee matches matcher m.  The pointer can be either raw or smart.
1400e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
1401e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PointeeMatcher {
1402e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1403e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit PointeeMatcher(const InnerMatcher& matcher) : matcher_(matcher) {}
1404e35fdd936d133bf8a48de140a3c666897588a05shiqian
1405e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This type conversion operator template allows Pointee(m) to be
1406e35fdd936d133bf8a48de140a3c666897588a05shiqian  // used as a matcher for any pointer type whose pointee type is
1407e35fdd936d133bf8a48de140a3c666897588a05shiqian  // compatible with the inner matcher, where type Pointer can be
1408e35fdd936d133bf8a48de140a3c666897588a05shiqian  // either a raw pointer or a smart pointer.
1409e35fdd936d133bf8a48de140a3c666897588a05shiqian  //
1410e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The reason we do this instead of relying on
1411e35fdd936d133bf8a48de140a3c666897588a05shiqian  // MakePolymorphicMatcher() is that the latter is not flexible
1412e35fdd936d133bf8a48de140a3c666897588a05shiqian  // enough for implementing the DescribeTo() method of Pointee().
1413e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Pointer>
1414e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<Pointer>() const {
1415e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<Pointer>(matcher_));
1416e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1417e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1418e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The monomorphic implementation that works for a particular pointer type.
1419e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Pointer>
1420e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<Pointer> {
1421e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
1422e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan    typedef typename PointeeOf<GMOCK_REMOVE_CONST_(  // NOLINT
1423e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan        GMOCK_REMOVE_REFERENCE_(Pointer))>::type Pointee;
1424e35fdd936d133bf8a48de140a3c666897588a05shiqian
1425e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit Impl(const InnerMatcher& matcher)
1426e35fdd936d133bf8a48de140a3c666897588a05shiqian        : matcher_(MatcherCast<const Pointee&>(matcher)) {}
1427e35fdd936d133bf8a48de140a3c666897588a05shiqian
1428e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual bool Matches(Pointer p) const {
1429e35fdd936d133bf8a48de140a3c666897588a05shiqian      return GetRawPointer(p) != NULL && matcher_.Matches(*p);
1430e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1431e35fdd936d133bf8a48de140a3c666897588a05shiqian
1432e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
1433e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "points to a value that ";
1434e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeTo(os);
1435e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1436e35fdd936d133bf8a48de140a3c666897588a05shiqian
1437e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
1438e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "does not point to a value that ";
1439e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeTo(os);
1440e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1441e35fdd936d133bf8a48de140a3c666897588a05shiqian
1442e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void ExplainMatchResultTo(Pointer pointer,
1443e35fdd936d133bf8a48de140a3c666897588a05shiqian                                      ::std::ostream* os) const {
1444e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (GetRawPointer(pointer) == NULL)
1445e35fdd936d133bf8a48de140a3c666897588a05shiqian        return;
1446e35fdd936d133bf8a48de140a3c666897588a05shiqian
1447e35fdd936d133bf8a48de140a3c666897588a05shiqian      ::std::stringstream ss;
1448e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.ExplainMatchResultTo(*pointer, &ss);
1449e35fdd936d133bf8a48de140a3c666897588a05shiqian      const internal::string s = ss.str();
1450e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (s != "") {
1451e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "points to a value that " << s;
1452e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1453e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1454e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
1455e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<const Pointee&> matcher_;
1456e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
1457e35fdd936d133bf8a48de140a3c666897588a05shiqian
1458e35fdd936d133bf8a48de140a3c666897588a05shiqian  const InnerMatcher matcher_;
1459e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1460e35fdd936d133bf8a48de140a3c666897588a05shiqian
1461e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Field() matcher for matching a field (i.e. member
1462e35fdd936d133bf8a48de140a3c666897588a05shiqian// variable) of an object.
1463e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename FieldType>
1464e35fdd936d133bf8a48de140a3c666897588a05shiqianclass FieldMatcher {
1465e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1466e35fdd936d133bf8a48de140a3c666897588a05shiqian  FieldMatcher(FieldType Class::*field,
1467e35fdd936d133bf8a48de140a3c666897588a05shiqian               const Matcher<const FieldType&>& matcher)
1468e35fdd936d133bf8a48de140a3c666897588a05shiqian      : field_(field), matcher_(matcher) {}
1469e35fdd936d133bf8a48de140a3c666897588a05shiqian
1470e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Returns true iff the inner matcher matches obj.field.
1471e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const Class& obj) const {
1472e35fdd936d133bf8a48de140a3c666897588a05shiqian    return matcher_.Matches(obj.*field_);
1473e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1474e35fdd936d133bf8a48de140a3c666897588a05shiqian
1475e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Returns true iff the inner matcher matches obj->field.
1476e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const Class* p) const {
1477e35fdd936d133bf8a48de140a3c666897588a05shiqian    return (p != NULL) && matcher_.Matches(p->*field_);
1478e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1479e35fdd936d133bf8a48de140a3c666897588a05shiqian
1480e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1481e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given field ";
1482e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeTo(os);
1483e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1484e35fdd936d133bf8a48de140a3c666897588a05shiqian
1485e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1486e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given field ";
1487e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeNegationTo(os);
1488e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1489e35fdd936d133bf8a48de140a3c666897588a05shiqian
149018490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // The first argument of ExplainMatchResultTo() is needed to help
149118490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Symbian's C++ compiler choose which overload to use.  Its type is
149218490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // true_type iff the Field() matcher is used to match a pointer.
149318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  void ExplainMatchResultTo(false_type /* is_not_pointer */, const Class& obj,
149418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan                            ::std::ostream* os) const {
1495e35fdd936d133bf8a48de140a3c666897588a05shiqian    ::std::stringstream ss;
1496e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.ExplainMatchResultTo(obj.*field_, &ss);
1497e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::string s = ss.str();
1498e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (s != "") {
1499e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "the given field " << s;
1500e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1501e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1502e35fdd936d133bf8a48de140a3c666897588a05shiqian
150318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  void ExplainMatchResultTo(true_type /* is_pointer */, const Class* p,
150418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan                            ::std::ostream* os) const {
1505e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (p != NULL) {
150618490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      // Since *p has a field, it must be a class/struct/union type
150718490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      // and thus cannot be a pointer.  Therefore we pass false_type()
150818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      // as the first argument.
150918490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      ExplainMatchResultTo(false_type(), *p, os);
1510e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1511e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1512e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1513e35fdd936d133bf8a48de140a3c666897588a05shiqian  const FieldType Class::*field_;
1514e35fdd936d133bf8a48de140a3c666897588a05shiqian  const Matcher<const FieldType&> matcher_;
1515e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1516e35fdd936d133bf8a48de140a3c666897588a05shiqian
151718490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// Explains the result of matching an object or pointer against a field matcher.
151818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wantemplate <typename Class, typename FieldType, typename T>
1519e35fdd936d133bf8a48de140a3c666897588a05shiqianvoid ExplainMatchResultTo(const FieldMatcher<Class, FieldType>& matcher,
152018490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan                          const T& value, ::std::ostream* os) {
152118490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  matcher.ExplainMatchResultTo(
152218490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      typename ::testing::internal::is_pointer<T>::type(), value, os);
1523e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1524e35fdd936d133bf8a48de140a3c666897588a05shiqian
1525e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Property() matcher for matching a property
1526e35fdd936d133bf8a48de140a3c666897588a05shiqian// (i.e. return value of a getter method) of an object.
1527e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename PropertyType>
1528e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PropertyMatcher {
1529e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1530e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The property may have a reference type, so 'const PropertyType&'
1531e35fdd936d133bf8a48de140a3c666897588a05shiqian  // may cause double references and fail to compile.  That's why we
1532e35fdd936d133bf8a48de140a3c666897588a05shiqian  // need GMOCK_REFERENCE_TO_CONST, which works regardless of
1533e35fdd936d133bf8a48de140a3c666897588a05shiqian  // PropertyType being a reference or not.
1534e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan  typedef GMOCK_REFERENCE_TO_CONST_(PropertyType) RefToConstProperty;
1535e35fdd936d133bf8a48de140a3c666897588a05shiqian
1536e35fdd936d133bf8a48de140a3c666897588a05shiqian  PropertyMatcher(PropertyType (Class::*property)() const,
1537e35fdd936d133bf8a48de140a3c666897588a05shiqian                  const Matcher<RefToConstProperty>& matcher)
1538e35fdd936d133bf8a48de140a3c666897588a05shiqian      : property_(property), matcher_(matcher) {}
1539e35fdd936d133bf8a48de140a3c666897588a05shiqian
1540e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Returns true iff obj.property() matches the inner matcher.
1541e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const Class& obj) const {
1542e35fdd936d133bf8a48de140a3c666897588a05shiqian    return matcher_.Matches((obj.*property_)());
1543e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1544e35fdd936d133bf8a48de140a3c666897588a05shiqian
1545e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Returns true iff p->property() matches the inner matcher.
1546e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool Matches(const Class* p) const {
1547e35fdd936d133bf8a48de140a3c666897588a05shiqian    return (p != NULL) && matcher_.Matches((p->*property_)());
1548e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1549e35fdd936d133bf8a48de140a3c666897588a05shiqian
1550e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1551e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given property ";
1552e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeTo(os);
1553e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1554e35fdd936d133bf8a48de140a3c666897588a05shiqian
1555e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1556e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given property ";
1557e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeNegationTo(os);
1558e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1559e35fdd936d133bf8a48de140a3c666897588a05shiqian
156018490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // The first argument of ExplainMatchResultTo() is needed to help
156118490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Symbian's C++ compiler choose which overload to use.  Its type is
156218490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // true_type iff the Property() matcher is used to match a pointer.
156318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  void ExplainMatchResultTo(false_type /* is_not_pointer */, const Class& obj,
156418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan                            ::std::ostream* os) const {
1565e35fdd936d133bf8a48de140a3c666897588a05shiqian    ::std::stringstream ss;
1566e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.ExplainMatchResultTo((obj.*property_)(), &ss);
1567e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::string s = ss.str();
1568e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (s != "") {
1569e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "the given property " << s;
1570e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1571e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1572e35fdd936d133bf8a48de140a3c666897588a05shiqian
157318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  void ExplainMatchResultTo(true_type /* is_pointer */, const Class* p,
157418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan                            ::std::ostream* os) const {
1575e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (p != NULL) {
157618490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      // Since *p has a property method, it must be a
157718490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      // class/struct/union type and thus cannot be a pointer.
157818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      // Therefore we pass false_type() as the first argument.
157918490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      ExplainMatchResultTo(false_type(), *p, os);
1580e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1581e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1582e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1583e35fdd936d133bf8a48de140a3c666897588a05shiqian  PropertyType (Class::*property_)() const;
1584e35fdd936d133bf8a48de140a3c666897588a05shiqian  const Matcher<RefToConstProperty> matcher_;
1585e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1586e35fdd936d133bf8a48de140a3c666897588a05shiqian
158718490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// Explains the result of matching an object or pointer against a
158818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// property matcher.
158918490653e80d484b4650d8799184fd1e021efc7bzhanyong.wantemplate <typename Class, typename PropertyType, typename T>
1590e35fdd936d133bf8a48de140a3c666897588a05shiqianvoid ExplainMatchResultTo(const PropertyMatcher<Class, PropertyType>& matcher,
159118490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan                          const T& value, ::std::ostream* os) {
159218490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  matcher.ExplainMatchResultTo(
159318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan      typename ::testing::internal::is_pointer<T>::type(), value, os);
1594e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1595e35fdd936d133bf8a48de140a3c666897588a05shiqian
1596e35fdd936d133bf8a48de140a3c666897588a05shiqian// Type traits specifying various features of different functors for ResultOf.
1597e35fdd936d133bf8a48de140a3c666897588a05shiqian// The default template specifies features for functor objects.
1598e35fdd936d133bf8a48de140a3c666897588a05shiqian// Functor classes have to typedef argument_type and result_type
1599e35fdd936d133bf8a48de140a3c666897588a05shiqian// to be compatible with ResultOf.
1600e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Functor>
1601e35fdd936d133bf8a48de140a3c666897588a05shiqianstruct CallableTraits {
1602e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename Functor::result_type ResultType;
1603e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef Functor StorageType;
1604e35fdd936d133bf8a48de140a3c666897588a05shiqian
1605e35fdd936d133bf8a48de140a3c666897588a05shiqian  static void CheckIsValid(Functor functor) {}
1606e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1607e35fdd936d133bf8a48de140a3c666897588a05shiqian  static ResultType Invoke(Functor f, T arg) { return f(arg); }
1608e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1609e35fdd936d133bf8a48de140a3c666897588a05shiqian
1610e35fdd936d133bf8a48de140a3c666897588a05shiqian// Specialization for function pointers.
1611e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename ArgType, typename ResType>
1612e35fdd936d133bf8a48de140a3c666897588a05shiqianstruct CallableTraits<ResType(*)(ArgType)> {
1613e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef ResType ResultType;
1614e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef ResType(*StorageType)(ArgType);
1615e35fdd936d133bf8a48de140a3c666897588a05shiqian
1616e35fdd936d133bf8a48de140a3c666897588a05shiqian  static void CheckIsValid(ResType(*f)(ArgType)) {
1617e35fdd936d133bf8a48de140a3c666897588a05shiqian    GMOCK_CHECK_(f != NULL)
1618e35fdd936d133bf8a48de140a3c666897588a05shiqian        << "NULL function pointer is passed into ResultOf().";
1619e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1620e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1621e35fdd936d133bf8a48de140a3c666897588a05shiqian  static ResType Invoke(ResType(*f)(ArgType), T arg) {
1622e35fdd936d133bf8a48de140a3c666897588a05shiqian    return (*f)(arg);
1623e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1624e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1625e35fdd936d133bf8a48de140a3c666897588a05shiqian
1626e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the ResultOf() matcher for matching a return value of a
1627e35fdd936d133bf8a48de140a3c666897588a05shiqian// unary function of an object.
1628e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Callable>
1629e35fdd936d133bf8a48de140a3c666897588a05shiqianclass ResultOfMatcher {
1630e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1631e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename CallableTraits<Callable>::ResultType ResultType;
1632e35fdd936d133bf8a48de140a3c666897588a05shiqian
1633e35fdd936d133bf8a48de140a3c666897588a05shiqian  ResultOfMatcher(Callable callable, const Matcher<ResultType>& matcher)
1634e35fdd936d133bf8a48de140a3c666897588a05shiqian      : callable_(callable), matcher_(matcher) {
1635e35fdd936d133bf8a48de140a3c666897588a05shiqian    CallableTraits<Callable>::CheckIsValid(callable_);
1636e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1637e35fdd936d133bf8a48de140a3c666897588a05shiqian
1638e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1639e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
1640e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(new Impl<T>(callable_, matcher_));
1641e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1642e35fdd936d133bf8a48de140a3c666897588a05shiqian
1643e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1644e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename CallableTraits<Callable>::StorageType CallableStorageType;
1645e35fdd936d133bf8a48de140a3c666897588a05shiqian
1646e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1647e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<T> {
1648e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
1649e35fdd936d133bf8a48de140a3c666897588a05shiqian    Impl(CallableStorageType callable, const Matcher<ResultType>& matcher)
1650e35fdd936d133bf8a48de140a3c666897588a05shiqian        : callable_(callable), matcher_(matcher) {}
1651e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Returns true iff callable_(obj) matches the inner matcher.
1652e35fdd936d133bf8a48de140a3c666897588a05shiqian    // The calling syntax is different for different types of callables
1653e35fdd936d133bf8a48de140a3c666897588a05shiqian    // so we abstract it in CallableTraits<Callable>::Invoke().
1654e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual bool Matches(T obj) const {
1655e35fdd936d133bf8a48de140a3c666897588a05shiqian      return matcher_.Matches(
1656e35fdd936d133bf8a48de140a3c666897588a05shiqian          CallableTraits<Callable>::template Invoke<T>(callable_, obj));
1657e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1658e35fdd936d133bf8a48de140a3c666897588a05shiqian
1659e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
1660e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "result of the given callable ";
1661e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeTo(os);
1662e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1663e35fdd936d133bf8a48de140a3c666897588a05shiqian
1664e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
1665e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "result of the given callable ";
1666e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeNegationTo(os);
1667e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1668e35fdd936d133bf8a48de140a3c666897588a05shiqian
1669e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void ExplainMatchResultTo(T obj, ::std::ostream* os) const {
1670e35fdd936d133bf8a48de140a3c666897588a05shiqian      ::std::stringstream ss;
1671e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.ExplainMatchResultTo(
1672e35fdd936d133bf8a48de140a3c666897588a05shiqian          CallableTraits<Callable>::template Invoke<T>(callable_, obj),
1673e35fdd936d133bf8a48de140a3c666897588a05shiqian          &ss);
1674e35fdd936d133bf8a48de140a3c666897588a05shiqian      const internal::string s = ss.str();
1675e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (s != "")
1676e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "result of the given callable " << s;
1677e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1678e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
1679e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Functors often define operator() as non-const method even though
1680e35fdd936d133bf8a48de140a3c666897588a05shiqian    // they are actualy stateless. But we need to use them even when
1681e35fdd936d133bf8a48de140a3c666897588a05shiqian    // 'this' is a const pointer. It's the user's responsibility not to
1682e35fdd936d133bf8a48de140a3c666897588a05shiqian    // use stateful callables with ResultOf(), which does't guarantee
1683e35fdd936d133bf8a48de140a3c666897588a05shiqian    // how many times the callable will be invoked.
1684e35fdd936d133bf8a48de140a3c666897588a05shiqian    mutable CallableStorageType callable_;
1685e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<ResultType> matcher_;
1686e35fdd936d133bf8a48de140a3c666897588a05shiqian  };  // class Impl
1687e35fdd936d133bf8a48de140a3c666897588a05shiqian
1688e35fdd936d133bf8a48de140a3c666897588a05shiqian  const CallableStorageType callable_;
1689e35fdd936d133bf8a48de140a3c666897588a05shiqian  const Matcher<ResultType> matcher_;
1690e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1691e35fdd936d133bf8a48de140a3c666897588a05shiqian
1692e35fdd936d133bf8a48de140a3c666897588a05shiqian// Explains the result of matching a value against a functor matcher.
1693e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename Callable>
1694e35fdd936d133bf8a48de140a3c666897588a05shiqianvoid ExplainMatchResultTo(const ResultOfMatcher<Callable>& matcher,
1695e35fdd936d133bf8a48de140a3c666897588a05shiqian                          T obj, ::std::ostream* os) {
1696e35fdd936d133bf8a48de140a3c666897588a05shiqian  matcher.ExplainMatchResultTo(obj, os);
1697e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1698e35fdd936d133bf8a48de140a3c666897588a05shiqian
16996a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// Implements an equality matcher for any STL-style container whose elements
17006a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// support ==. This matcher is like Eq(), but its failure explanations provide
17016a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// more detailed information that is useful when the container is used as a set.
17026a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// The failure message reports elements that are in one of the operands but not
17036a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// the other. The failure messages do not report duplicate or out-of-order
17046a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// elements in the containers (which don't properly matter to sets, but can
17056a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// occur if the containers are vectors or lists, for example).
17066a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan//
17076a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// Uses the container's const_iterator, value_type, operator ==,
17086a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// begin(), and end().
17096a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wantemplate <typename Container>
17106a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wanclass ContainerEqMatcher {
17116a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan public:
1712b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef internal::StlContainerView<Container> View;
1713b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::type StlContainer;
1714b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::const_reference StlContainerReference;
1715b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1716b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // We make a copy of rhs in case the elements in it are modified
1717b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // after this matcher is created.
1718b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  explicit ContainerEqMatcher(const Container& rhs) : rhs_(View::Copy(rhs)) {
1719b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // Makes sure the user doesn't instantiate this class template
1720b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // with a const or reference type.
1721b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    testing::StaticAssertTypeEq<Container,
1722b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(Container))>();
1723b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1724b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1725b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  template <typename LhsContainer>
1726b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  bool Matches(const LhsContainer& lhs) const {
1727b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // GMOCK_REMOVE_CONST_() is needed to work around an MSVC 8.0 bug
1728b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // that causes LhsContainer to be a const type sometimes.
1729b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    typedef internal::StlContainerView<GMOCK_REMOVE_CONST_(LhsContainer)>
1730b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        LhsView;
1731b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    StlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
1732b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    return lhs_stl_container == rhs_;
1733b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
17346a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  void DescribeTo(::std::ostream* os) const {
17356a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    *os << "equals ";
1736b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    UniversalPrinter<StlContainer>::Print(rhs_, os);
17376a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  }
17386a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  void DescribeNegationTo(::std::ostream* os) const {
17396a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    *os << "does not equal ";
1740b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    UniversalPrinter<StlContainer>::Print(rhs_, os);
17416a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  }
17426a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
1743b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  template <typename LhsContainer>
1744b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  void ExplainMatchResultTo(const LhsContainer& lhs,
17456a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan                            ::std::ostream* os) const {
1746b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // GMOCK_REMOVE_CONST_() is needed to work around an MSVC 8.0 bug
1747b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // that causes LhsContainer to be a const type sometimes.
1748b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    typedef internal::StlContainerView<GMOCK_REMOVE_CONST_(LhsContainer)>
1749b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        LhsView;
1750b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    typedef typename LhsView::type LhsStlContainer;
1751b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    StlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
1752b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
17536a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    // Something is different. Check for missing values first.
17546a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    bool printed_header = false;
1755b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    for (typename LhsStlContainer::const_iterator it =
1756b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan             lhs_stl_container.begin();
1757b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan         it != lhs_stl_container.end(); ++it) {
1758b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      if (internal::ArrayAwareFind(rhs_.begin(), rhs_.end(), *it) ==
1759b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan          rhs_.end()) {
17606a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        if (printed_header) {
17616a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan          *os << ", ";
17626a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        } else {
17636a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan          *os << "Only in actual: ";
17646a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan          printed_header = true;
17656a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        }
1766b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        UniversalPrinter<typename LhsStlContainer::value_type>::Print(*it, os);
17676a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan      }
17686a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    }
17696a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
17706a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    // Now check for extra values.
17716a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    bool printed_header2 = false;
1772b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    for (typename StlContainer::const_iterator it = rhs_.begin();
17736a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan         it != rhs_.end(); ++it) {
1774b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      if (internal::ArrayAwareFind(
1775b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan              lhs_stl_container.begin(), lhs_stl_container.end(), *it) ==
1776b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan          lhs_stl_container.end()) {
17776a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        if (printed_header2) {
17786a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan          *os << ", ";
17796a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        } else {
17806a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan          *os << (printed_header ? "; not" : "Not") << " in actual: ";
17816a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan          printed_header2 = true;
17826a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        }
1783b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        UniversalPrinter<typename StlContainer::value_type>::Print(*it, os);
17846a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan      }
17856a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    }
17866a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  }
17876a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan private:
1788b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  const StlContainer rhs_;
17896a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan};
17906a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
1791b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename LhsContainer, typename Container>
17926a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wanvoid ExplainMatchResultTo(const ContainerEqMatcher<Container>& matcher,
1793b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan                          const LhsContainer& lhs,
17946a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan                          ::std::ostream* os) {
17956a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  matcher.ExplainMatchResultTo(lhs, os);
17966a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan}
17976a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
1798b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Implements Contains(element_matcher) for the given argument type Container.
1799b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename Container>
1800b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wanclass ContainsMatcherImpl : public MatcherInterface<Container> {
1801b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan public:
1802b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(Container)) RawContainer;
1803b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef StlContainerView<RawContainer> View;
1804b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::type StlContainer;
1805b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::const_reference StlContainerReference;
1806b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename StlContainer::value_type Element;
1807b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1808b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  template <typename InnerMatcher>
1809b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  explicit ContainsMatcherImpl(InnerMatcher inner_matcher)
1810b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      : inner_matcher_(
1811b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan          testing::SafeMatcherCast<const Element&>(inner_matcher)) {}
1812b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1813b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // Returns true iff 'container' matches.
1814b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  virtual bool Matches(Container container) const {
1815b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    StlContainerReference stl_container = View::ConstReference(container);
1816b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    for (typename StlContainer::const_iterator it = stl_container.begin();
1817b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan         it != stl_container.end(); ++it) {
1818b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      if (inner_matcher_.Matches(*it))
1819b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        return true;
1820b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    }
1821b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    return false;
1822b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1823b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1824b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // Describes what this matcher does.
1825b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
1826b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    *os << "contains at least one element that ";
1827b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    inner_matcher_.DescribeTo(os);
1828b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1829b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1830b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // Describes what the negation of this matcher does.
1831b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
1832b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    *os << "doesn't contain any element that ";
1833b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    inner_matcher_.DescribeTo(os);
1834b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1835b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1836b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // Explains why 'container' matches, or doesn't match, this matcher.
1837b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  virtual void ExplainMatchResultTo(Container container,
1838b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan                                    ::std::ostream* os) const {
1839b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    StlContainerReference stl_container = View::ConstReference(container);
1840b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1841b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // We need to explain which (if any) element matches inner_matcher_.
1842b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    typename StlContainer::const_iterator it = stl_container.begin();
1843b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    for (size_t i = 0; it != stl_container.end(); ++it, ++i) {
1844b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      if (inner_matcher_.Matches(*it)) {
1845b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        *os << "element " << i << " matches";
1846b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        return;
1847b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      }
1848b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    }
1849b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1850b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1851b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan private:
1852b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  const Matcher<const Element&> inner_matcher_;
1853b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan};
1854b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1855b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Implements polymorphic Contains(element_matcher).
1856b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename M>
1857b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wanclass ContainsMatcher {
1858b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan public:
1859b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  explicit ContainsMatcher(M m) : inner_matcher_(m) {}
1860b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1861b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  template <typename Container>
1862b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  operator Matcher<Container>() const {
1863b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    return MakeMatcher(new ContainsMatcherImpl<Container>(inner_matcher_));
1864b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1865b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1866b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan private:
1867b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  const M inner_matcher_;
1868b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan};
1869b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1870e35fdd936d133bf8a48de140a3c666897588a05shiqian}  // namespace internal
1871e35fdd936d133bf8a48de140a3c666897588a05shiqian
1872e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements MatcherCast().
1873e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename M>
1874e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> MatcherCast(M matcher) {
1875e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::MatcherCastImpl<T, M>::Cast(matcher);
1876e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1877e35fdd936d133bf8a48de140a3c666897588a05shiqian
1878e35fdd936d133bf8a48de140a3c666897588a05shiqian// _ is a matcher that matches anything of any type.
1879e35fdd936d133bf8a48de140a3c666897588a05shiqian//
1880e35fdd936d133bf8a48de140a3c666897588a05shiqian// This definition is fine as:
1881e35fdd936d133bf8a48de140a3c666897588a05shiqian//
1882e35fdd936d133bf8a48de140a3c666897588a05shiqian//   1. The C++ standard permits using the name _ in a namespace that
1883e35fdd936d133bf8a48de140a3c666897588a05shiqian//      is not the global namespace or ::std.
1884e35fdd936d133bf8a48de140a3c666897588a05shiqian//   2. The AnythingMatcher class has no data member or constructor,
1885e35fdd936d133bf8a48de140a3c666897588a05shiqian//      so it's OK to create global variables of this type.
1886e35fdd936d133bf8a48de140a3c666897588a05shiqian//   3. c-style has approved of using _ in this case.
1887e35fdd936d133bf8a48de140a3c666897588a05shiqianconst internal::AnythingMatcher _ = {};
1888e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value of the given type T.
1889e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
1890e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> A() { return MakeMatcher(new internal::AnyMatcherImpl<T>()); }
1891e35fdd936d133bf8a48de140a3c666897588a05shiqian
1892e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value of the given type T.
1893e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
1894e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> An() { return A<T>(); }
1895e35fdd936d133bf8a48de140a3c666897588a05shiqian
1896e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything equal to x.
1897e35fdd936d133bf8a48de140a3c666897588a05shiqian// Note: if the parameter of Eq() were declared as const T&, Eq("foo")
1898e35fdd936d133bf8a48de140a3c666897588a05shiqian// wouldn't compile.
1899e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
1900e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); }
1901e35fdd936d133bf8a48de140a3c666897588a05shiqian
1902e35fdd936d133bf8a48de140a3c666897588a05shiqian// Constructs a Matcher<T> from a 'value' of type T.  The constructed
1903e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher matches any value that's equal to 'value'.
1904e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
1905e35fdd936d133bf8a48de140a3c666897588a05shiqianMatcher<T>::Matcher(T value) { *this = Eq(value); }
1906e35fdd936d133bf8a48de140a3c666897588a05shiqian
1907e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a monomorphic matcher that matches anything with type Lhs
1908e35fdd936d133bf8a48de140a3c666897588a05shiqian// and equal to rhs.  A user may need to use this instead of Eq(...)
1909e35fdd936d133bf8a48de140a3c666897588a05shiqian// in order to resolve an overloading ambiguity.
1910e35fdd936d133bf8a48de140a3c666897588a05shiqian//
1911e35fdd936d133bf8a48de140a3c666897588a05shiqian// TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))
1912e35fdd936d133bf8a48de140a3c666897588a05shiqian// or Matcher<T>(x), but more readable than the latter.
1913e35fdd936d133bf8a48de140a3c666897588a05shiqian//
1914e35fdd936d133bf8a48de140a3c666897588a05shiqian// We could define similar monomorphic matchers for other comparison
1915e35fdd936d133bf8a48de140a3c666897588a05shiqian// operations (e.g. TypedLt, TypedGe, and etc), but decided not to do
1916e35fdd936d133bf8a48de140a3c666897588a05shiqian// it yet as those are used much less than Eq() in practice.  A user
1917e35fdd936d133bf8a48de140a3c666897588a05shiqian// can always write Matcher<T>(Lt(5)) to be explicit about the type,
1918e35fdd936d133bf8a48de140a3c666897588a05shiqian// for example.
1919e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Lhs, typename Rhs>
1920e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); }
1921e35fdd936d133bf8a48de140a3c666897588a05shiqian
1922e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything >= x.
1923e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
1924e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::GeMatcher<Rhs> Ge(Rhs x) {
1925e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::GeMatcher<Rhs>(x);
1926e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1927e35fdd936d133bf8a48de140a3c666897588a05shiqian
1928e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything > x.
1929e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
1930e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::GtMatcher<Rhs> Gt(Rhs x) {
1931e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::GtMatcher<Rhs>(x);
1932e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1933e35fdd936d133bf8a48de140a3c666897588a05shiqian
1934e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything <= x.
1935e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
1936e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::LeMatcher<Rhs> Le(Rhs x) {
1937e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::LeMatcher<Rhs>(x);
1938e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1939e35fdd936d133bf8a48de140a3c666897588a05shiqian
1940e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything < x.
1941e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
1942e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::LtMatcher<Rhs> Lt(Rhs x) {
1943e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::LtMatcher<Rhs>(x);
1944e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1945e35fdd936d133bf8a48de140a3c666897588a05shiqian
1946e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything != x.
1947e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
1948e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::NeMatcher<Rhs> Ne(Rhs x) {
1949e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::NeMatcher<Rhs>(x);
1950e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1951e35fdd936d133bf8a48de140a3c666897588a05shiqian
1952e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches any non-NULL pointer.
1953e35fdd936d133bf8a48de140a3c666897588a05shiqian// This is convenient as Not(NULL) doesn't compile (the compiler
1954e35fdd936d133bf8a48de140a3c666897588a05shiqian// thinks that that expression is comparing a pointer with an integer).
1955e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {
1956e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::NotNullMatcher());
1957e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1958e35fdd936d133bf8a48de140a3c666897588a05shiqian
1959e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches any argument that
1960e35fdd936d133bf8a48de140a3c666897588a05shiqian// references variable x.
1961e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
1962e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::RefMatcher<T&> Ref(T& x) {  // NOLINT
1963e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::RefMatcher<T&>(x);
1964e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1965e35fdd936d133bf8a48de140a3c666897588a05shiqian
1966e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any double argument approximately
1967e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, where two NANs are considered unequal.
1968e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<double> DoubleEq(double rhs) {
1969e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<double>(rhs, false);
1970e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1971e35fdd936d133bf8a48de140a3c666897588a05shiqian
1972e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any double argument approximately
1973e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, including NaN values when rhs is NaN.
1974e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<double> NanSensitiveDoubleEq(double rhs) {
1975e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<double>(rhs, true);
1976e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1977e35fdd936d133bf8a48de140a3c666897588a05shiqian
1978e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any float argument approximately
1979e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, where two NANs are considered unequal.
1980e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<float> FloatEq(float rhs) {
1981e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<float>(rhs, false);
1982e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1983e35fdd936d133bf8a48de140a3c666897588a05shiqian
1984e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any double argument approximately
1985e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, including NaN values when rhs is NaN.
1986e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<float> NanSensitiveFloatEq(float rhs) {
1987e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<float>(rhs, true);
1988e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1989e35fdd936d133bf8a48de140a3c666897588a05shiqian
1990e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches a pointer (raw or smart) that points
1991e35fdd936d133bf8a48de140a3c666897588a05shiqian// to a value that matches inner_matcher.
1992e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
1993e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::PointeeMatcher<InnerMatcher> Pointee(
1994e35fdd936d133bf8a48de140a3c666897588a05shiqian    const InnerMatcher& inner_matcher) {
1995e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::PointeeMatcher<InnerMatcher>(inner_matcher);
1996e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1997e35fdd936d133bf8a48de140a3c666897588a05shiqian
1998e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches an object whose given field matches
1999e35fdd936d133bf8a48de140a3c666897588a05shiqian// 'matcher'.  For example,
2000e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Field(&Foo::number, Ge(5))
2001e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a Foo object x iff x.number >= 5.
2002e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename FieldType, typename FieldMatcher>
2003e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<
2004e35fdd936d133bf8a48de140a3c666897588a05shiqian  internal::FieldMatcher<Class, FieldType> > Field(
2005e35fdd936d133bf8a48de140a3c666897588a05shiqian    FieldType Class::*field, const FieldMatcher& matcher) {
2006e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(
2007e35fdd936d133bf8a48de140a3c666897588a05shiqian      internal::FieldMatcher<Class, FieldType>(
2008e35fdd936d133bf8a48de140a3c666897588a05shiqian          field, MatcherCast<const FieldType&>(matcher)));
2009e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The call to MatcherCast() is required for supporting inner
2010e35fdd936d133bf8a48de140a3c666897588a05shiqian  // matchers of compatible types.  For example, it allows
2011e35fdd936d133bf8a48de140a3c666897588a05shiqian  //   Field(&Foo::bar, m)
2012e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to compile where bar is an int32 and m is a matcher for int64.
2013e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2014e35fdd936d133bf8a48de140a3c666897588a05shiqian
2015e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches an object whose given property
2016e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches 'matcher'.  For example,
2017e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Property(&Foo::str, StartsWith("hi"))
2018e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a Foo object x iff x.str() starts with "hi".
2019e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename PropertyType, typename PropertyMatcher>
2020e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<
2021e35fdd936d133bf8a48de140a3c666897588a05shiqian  internal::PropertyMatcher<Class, PropertyType> > Property(
2022e35fdd936d133bf8a48de140a3c666897588a05shiqian    PropertyType (Class::*property)() const, const PropertyMatcher& matcher) {
2023e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(
2024e35fdd936d133bf8a48de140a3c666897588a05shiqian      internal::PropertyMatcher<Class, PropertyType>(
2025e35fdd936d133bf8a48de140a3c666897588a05shiqian          property,
2026e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan          MatcherCast<GMOCK_REFERENCE_TO_CONST_(PropertyType)>(matcher)));
2027e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The call to MatcherCast() is required for supporting inner
2028e35fdd936d133bf8a48de140a3c666897588a05shiqian  // matchers of compatible types.  For example, it allows
2029e35fdd936d133bf8a48de140a3c666897588a05shiqian  //   Property(&Foo::bar, m)
2030e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to compile where bar() returns an int32 and m is a matcher for int64.
2031e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2032e35fdd936d133bf8a48de140a3c666897588a05shiqian
2033e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches an object iff the result of applying
2034e35fdd936d133bf8a48de140a3c666897588a05shiqian// a callable to x matches 'matcher'.
2035e35fdd936d133bf8a48de140a3c666897588a05shiqian// For example,
2036e35fdd936d133bf8a48de140a3c666897588a05shiqian//   ResultOf(f, StartsWith("hi"))
2037e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a Foo object x iff f(x) starts with "hi".
2038e35fdd936d133bf8a48de140a3c666897588a05shiqian// callable parameter can be a function, function pointer, or a functor.
2039e35fdd936d133bf8a48de140a3c666897588a05shiqian// Callable has to satisfy the following conditions:
2040e35fdd936d133bf8a48de140a3c666897588a05shiqian//   * It is required to keep no state affecting the results of
2041e35fdd936d133bf8a48de140a3c666897588a05shiqian//     the calls on it and make no assumptions about how many calls
2042e35fdd936d133bf8a48de140a3c666897588a05shiqian//     will be made. Any state it keeps must be protected from the
2043e35fdd936d133bf8a48de140a3c666897588a05shiqian//     concurrent access.
2044e35fdd936d133bf8a48de140a3c666897588a05shiqian//   * If it is a function object, it has to define type result_type.
2045e35fdd936d133bf8a48de140a3c666897588a05shiqian//     We recommend deriving your functor classes from std::unary_function.
2046e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Callable, typename ResultOfMatcher>
2047e35fdd936d133bf8a48de140a3c666897588a05shiqianinternal::ResultOfMatcher<Callable> ResultOf(
2048e35fdd936d133bf8a48de140a3c666897588a05shiqian    Callable callable, const ResultOfMatcher& matcher) {
2049e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::ResultOfMatcher<Callable>(
2050e35fdd936d133bf8a48de140a3c666897588a05shiqian          callable,
2051e35fdd936d133bf8a48de140a3c666897588a05shiqian          MatcherCast<typename internal::CallableTraits<Callable>::ResultType>(
2052e35fdd936d133bf8a48de140a3c666897588a05shiqian              matcher));
2053e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The call to MatcherCast() is required for supporting inner
2054e35fdd936d133bf8a48de140a3c666897588a05shiqian  // matchers of compatible types.  For example, it allows
2055e35fdd936d133bf8a48de140a3c666897588a05shiqian  //   ResultOf(Function, m)
2056e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to compile where Function() returns an int32 and m is a matcher for int64.
2057e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2058e35fdd936d133bf8a48de140a3c666897588a05shiqian
2059e35fdd936d133bf8a48de140a3c666897588a05shiqian// String matchers.
2060e35fdd936d133bf8a48de140a3c666897588a05shiqian
2061e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str.
2062e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2063e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrEq(const internal::string& str) {
2064e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2065e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, true));
2066e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2067e35fdd936d133bf8a48de140a3c666897588a05shiqian
2068e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str.
2069e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2070e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrNe(const internal::string& str) {
2071e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2072e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, true));
2073e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2074e35fdd936d133bf8a48de140a3c666897588a05shiqian
2075e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str, ignoring case.
2076e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2077e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseEq(const internal::string& str) {
2078e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2079e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, false));
2080e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2081e35fdd936d133bf8a48de140a3c666897588a05shiqian
2082e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str, ignoring case.
2083e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2084e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseNe(const internal::string& str) {
2085e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2086e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, false));
2087e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2088e35fdd936d133bf8a48de140a3c666897588a05shiqian
2089e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any string, std::string, or C string
2090e35fdd936d133bf8a48de140a3c666897588a05shiqian// that contains the given substring.
2091e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::HasSubstrMatcher<internal::string> >
2092e35fdd936d133bf8a48de140a3c666897588a05shiqian    HasSubstr(const internal::string& substring) {
2093e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::HasSubstrMatcher<internal::string>(
2094e35fdd936d133bf8a48de140a3c666897588a05shiqian      substring));
2095e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2096e35fdd936d133bf8a48de140a3c666897588a05shiqian
2097e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that starts with 'prefix' (case-sensitive).
2098e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StartsWithMatcher<internal::string> >
2099e35fdd936d133bf8a48de140a3c666897588a05shiqian    StartsWith(const internal::string& prefix) {
2100e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StartsWithMatcher<internal::string>(
2101e35fdd936d133bf8a48de140a3c666897588a05shiqian      prefix));
2102e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2103e35fdd936d133bf8a48de140a3c666897588a05shiqian
2104e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that ends with 'suffix' (case-sensitive).
2105e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::EndsWithMatcher<internal::string> >
2106e35fdd936d133bf8a48de140a3c666897588a05shiqian    EndsWith(const internal::string& suffix) {
2107e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::EndsWithMatcher<internal::string>(
2108e35fdd936d133bf8a48de140a3c666897588a05shiqian      suffix));
2109e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2110e35fdd936d133bf8a48de140a3c666897588a05shiqian
2111e35fdd936d133bf8a48de140a3c666897588a05shiqian#ifdef GMOCK_HAS_REGEX
2112e35fdd936d133bf8a48de140a3c666897588a05shiqian
2113e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that fully matches regular expression 'regex'.
2114e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher takes ownership of 'regex'.
2115e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
2116e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::RE* regex) {
2117e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, true));
2118e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2119e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
2120e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::string& regex) {
2121e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MatchesRegex(new internal::RE(regex));
2122e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2123e35fdd936d133bf8a48de140a3c666897588a05shiqian
2124e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that contains regular expression 'regex'.
2125e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher takes ownership of 'regex'.
2126e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
2127e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::RE* regex) {
2128e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, false));
2129e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2130e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
2131e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::string& regex) {
2132e35fdd936d133bf8a48de140a3c666897588a05shiqian  return ContainsRegex(new internal::RE(regex));
2133e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2134e35fdd936d133bf8a48de140a3c666897588a05shiqian
2135e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GMOCK_HAS_REGEX
2136e35fdd936d133bf8a48de140a3c666897588a05shiqian
2137e35fdd936d133bf8a48de140a3c666897588a05shiqian#if GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING
2138e35fdd936d133bf8a48de140a3c666897588a05shiqian// Wide string matchers.
2139e35fdd936d133bf8a48de140a3c666897588a05shiqian
2140e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str.
2141e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2142e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrEq(const internal::wstring& str) {
2143e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2144e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, true));
2145e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2146e35fdd936d133bf8a48de140a3c666897588a05shiqian
2147e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str.
2148e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2149e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrNe(const internal::wstring& str) {
2150e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2151e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, true));
2152e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2153e35fdd936d133bf8a48de140a3c666897588a05shiqian
2154e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str, ignoring case.
2155e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2156e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseEq(const internal::wstring& str) {
2157e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2158e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, false));
2159e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2160e35fdd936d133bf8a48de140a3c666897588a05shiqian
2161e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str, ignoring case.
2162e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2163e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseNe(const internal::wstring& str) {
2164e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2165e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, false));
2166e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2167e35fdd936d133bf8a48de140a3c666897588a05shiqian
2168e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any wstring, std::wstring, or C wide string
2169e35fdd936d133bf8a48de140a3c666897588a05shiqian// that contains the given substring.
2170e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::HasSubstrMatcher<internal::wstring> >
2171e35fdd936d133bf8a48de140a3c666897588a05shiqian    HasSubstr(const internal::wstring& substring) {
2172e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::HasSubstrMatcher<internal::wstring>(
2173e35fdd936d133bf8a48de140a3c666897588a05shiqian      substring));
2174e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2175e35fdd936d133bf8a48de140a3c666897588a05shiqian
2176e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that starts with 'prefix' (case-sensitive).
2177e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StartsWithMatcher<internal::wstring> >
2178e35fdd936d133bf8a48de140a3c666897588a05shiqian    StartsWith(const internal::wstring& prefix) {
2179e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StartsWithMatcher<internal::wstring>(
2180e35fdd936d133bf8a48de140a3c666897588a05shiqian      prefix));
2181e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2182e35fdd936d133bf8a48de140a3c666897588a05shiqian
2183e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that ends with 'suffix' (case-sensitive).
2184e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::EndsWithMatcher<internal::wstring> >
2185e35fdd936d133bf8a48de140a3c666897588a05shiqian    EndsWith(const internal::wstring& suffix) {
2186e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::EndsWithMatcher<internal::wstring>(
2187e35fdd936d133bf8a48de140a3c666897588a05shiqian      suffix));
2188e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2189e35fdd936d133bf8a48de140a3c666897588a05shiqian
2190e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING
2191e35fdd936d133bf8a48de140a3c666897588a05shiqian
2192e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2193e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field == the second field.
2194e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Eq2Matcher Eq() { return internal::Eq2Matcher(); }
2195e35fdd936d133bf8a48de140a3c666897588a05shiqian
2196e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2197e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field >= the second field.
2198e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); }
2199e35fdd936d133bf8a48de140a3c666897588a05shiqian
2200e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2201e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field > the second field.
2202e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Gt2Matcher Gt() { return internal::Gt2Matcher(); }
2203e35fdd936d133bf8a48de140a3c666897588a05shiqian
2204e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2205e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field <= the second field.
2206e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Le2Matcher Le() { return internal::Le2Matcher(); }
2207e35fdd936d133bf8a48de140a3c666897588a05shiqian
2208e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2209e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field < the second field.
2210e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Lt2Matcher Lt() { return internal::Lt2Matcher(); }
2211e35fdd936d133bf8a48de140a3c666897588a05shiqian
2212e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2213e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field != the second field.
2214e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Ne2Matcher Ne() { return internal::Ne2Matcher(); }
2215e35fdd936d133bf8a48de140a3c666897588a05shiqian
2216e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value of type T that m doesn't
2217e35fdd936d133bf8a48de140a3c666897588a05shiqian// match.
2218e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
2219e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::NotMatcher<InnerMatcher> Not(InnerMatcher m) {
2220e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::NotMatcher<InnerMatcher>(m);
2221e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2222e35fdd936d133bf8a48de140a3c666897588a05shiqian
2223e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value that matches all of the
2224e35fdd936d133bf8a48de140a3c666897588a05shiqian// given matchers.
2225e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2226e35fdd936d133bf8a48de140a3c666897588a05shiqian// For now we only support up to 5 matchers.  Support for more
2227e35fdd936d133bf8a48de140a3c666897588a05shiqian// matchers can be added as needed, or the user can use nested
2228e35fdd936d133bf8a48de140a3c666897588a05shiqian// AllOf()s.
2229e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
2230e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1, Matcher2>
2231e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2) {
2232e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::BothOfMatcher<Matcher1, Matcher2>(m1, m2);
2233e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2234e35fdd936d133bf8a48de140a3c666897588a05shiqian
2235e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3>
2236e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1,
2237e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::BothOfMatcher<Matcher2, Matcher3> >
2238e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3) {
2239e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AllOf(m1, AllOf(m2, m3));
2240e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2241e35fdd936d133bf8a48de140a3c666897588a05shiqian
2242e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2243e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4>
2244e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1,
2245e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::BothOfMatcher<Matcher2,
2246e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::BothOfMatcher<Matcher3, Matcher4> > >
2247e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4) {
2248e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AllOf(m1, AllOf(m2, m3, m4));
2249e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2250e35fdd936d133bf8a48de140a3c666897588a05shiqian
2251e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2252e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4, typename Matcher5>
2253e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1,
2254e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::BothOfMatcher<Matcher2,
2255e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::BothOfMatcher<Matcher3,
2256e35fdd936d133bf8a48de140a3c666897588a05shiqian                   internal::BothOfMatcher<Matcher4, Matcher5> > > >
2257e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5) {
2258e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AllOf(m1, AllOf(m2, m3, m4, m5));
2259e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2260e35fdd936d133bf8a48de140a3c666897588a05shiqian
2261e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value that matches at least one
2262e35fdd936d133bf8a48de140a3c666897588a05shiqian// of the given matchers.
2263e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2264e35fdd936d133bf8a48de140a3c666897588a05shiqian// For now we only support up to 5 matchers.  Support for more
2265e35fdd936d133bf8a48de140a3c666897588a05shiqian// matchers can be added as needed, or the user can use nested
2266e35fdd936d133bf8a48de140a3c666897588a05shiqian// AnyOf()s.
2267e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
2268e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1, Matcher2>
2269e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2) {
2270e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::EitherOfMatcher<Matcher1, Matcher2>(m1, m2);
2271e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2272e35fdd936d133bf8a48de140a3c666897588a05shiqian
2273e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3>
2274e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1,
2275e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::EitherOfMatcher<Matcher2, Matcher3> >
2276e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3) {
2277e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AnyOf(m1, AnyOf(m2, m3));
2278e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2279e35fdd936d133bf8a48de140a3c666897588a05shiqian
2280e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2281e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4>
2282e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1,
2283e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::EitherOfMatcher<Matcher2,
2284e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::EitherOfMatcher<Matcher3, Matcher4> > >
2285e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4) {
2286e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AnyOf(m1, AnyOf(m2, m3, m4));
2287e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2288e35fdd936d133bf8a48de140a3c666897588a05shiqian
2289e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2290e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4, typename Matcher5>
2291e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1,
2292e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::EitherOfMatcher<Matcher2,
2293e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::EitherOfMatcher<Matcher3,
2294e35fdd936d133bf8a48de140a3c666897588a05shiqian                   internal::EitherOfMatcher<Matcher4, Matcher5> > > >
2295e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5) {
2296e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AnyOf(m1, AnyOf(m2, m3, m4, m5));
2297e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2298e35fdd936d133bf8a48de140a3c666897588a05shiqian
2299e35fdd936d133bf8a48de140a3c666897588a05shiqian// Returns a matcher that matches anything that satisfies the given
2300e35fdd936d133bf8a48de140a3c666897588a05shiqian// predicate.  The predicate can be any unary function or functor
2301e35fdd936d133bf8a48de140a3c666897588a05shiqian// whose return type can be implicitly converted to bool.
2302e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Predicate>
2303e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::TrulyMatcher<Predicate> >
2304e35fdd936d133bf8a48de140a3c666897588a05shiqianTruly(Predicate pred) {
2305e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::TrulyMatcher<Predicate>(pred));
2306e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2307e35fdd936d133bf8a48de140a3c666897588a05shiqian
23086a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// Returns a matcher that matches an equal container.
23096a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// This matcher behaves like Eq(), but in the event of mismatch lists the
23106a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// values that are included in one container but not the other. (Duplicate
23116a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// values and order differences are not explained.)
23126a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wantemplate <typename Container>
2313b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.waninline PolymorphicMatcher<internal::ContainerEqMatcher<
2314b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan                            GMOCK_REMOVE_CONST_(Container)> >
23156a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    ContainerEq(const Container& rhs) {
2316b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // This following line is for working around a bug in MSVC 8.0,
2317b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // which causes Container to be a const type sometimes.
2318b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef GMOCK_REMOVE_CONST_(Container) RawContainer;
2319b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  return MakePolymorphicMatcher(internal::ContainerEqMatcher<RawContainer>(rhs));
2320b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan}
2321b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
2322b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Matches an STL-style container or a native array that contains at
2323b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// least one element matching the given value or matcher.
2324b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//
2325b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Examples:
2326b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   ::std::set<int> page_ids;
2327b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   page_ids.insert(3);
2328b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   page_ids.insert(1);
2329b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(page_ids, Contains(1));
2330b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(page_ids, Contains(Gt(2)));
2331b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(page_ids, Not(Contains(4)));
2332b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//
2333b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   ::std::map<int, size_t> page_lengths;
2334b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   page_lengths[1] = 100;
2335b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(map_int, Contains(::std::pair<const int, size_t>(1, 100)));
2336b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//
2337b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   const char* user_ids[] = { "joe", "mike", "tom" };
2338b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(user_ids, Contains(Eq(::std::string("tom"))));
2339b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename M>
2340b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.waninline internal::ContainsMatcher<M> Contains(M matcher) {
2341b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  return internal::ContainsMatcher<M>(matcher);
23426a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan}
23436a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
2344e35fdd936d133bf8a48de140a3c666897588a05shiqian// Returns a predicate that is satisfied by anything that matches the
2345e35fdd936d133bf8a48de140a3c666897588a05shiqian// given matcher.
2346e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
2347e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::MatcherAsPredicate<M> Matches(M matcher) {
2348e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::MatcherAsPredicate<M>(matcher);
2349e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2350e35fdd936d133bf8a48de140a3c666897588a05shiqian
2351b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Returns true iff the value matches the matcher.
2352b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename T, typename M>
2353b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.waninline bool Value(const T& value, M matcher) {
2354b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  return testing::Matches(matcher)(value);
2355b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan}
2356b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
2357e35fdd936d133bf8a48de140a3c666897588a05shiqian// These macros allow using matchers to check values in Google Test
2358e35fdd936d133bf8a48de140a3c666897588a05shiqian// tests.  ASSERT_THAT(value, matcher) and EXPECT_THAT(value, matcher)
2359e35fdd936d133bf8a48de140a3c666897588a05shiqian// succeed iff the value matches the matcher.  If the assertion fails,
2360e35fdd936d133bf8a48de140a3c666897588a05shiqian// the value and the description of the matcher will be printed.
2361e35fdd936d133bf8a48de140a3c666897588a05shiqian#define ASSERT_THAT(value, matcher) ASSERT_PRED_FORMAT1(\
2362e35fdd936d133bf8a48de140a3c666897588a05shiqian    ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
2363e35fdd936d133bf8a48de140a3c666897588a05shiqian#define EXPECT_THAT(value, matcher) EXPECT_PRED_FORMAT1(\
2364e35fdd936d133bf8a48de140a3c666897588a05shiqian    ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
2365e35fdd936d133bf8a48de140a3c666897588a05shiqian
2366e35fdd936d133bf8a48de140a3c666897588a05shiqian}  // namespace testing
2367e35fdd936d133bf8a48de140a3c666897588a05shiqian
2368e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
2369