gmock-matchers.h revision db22c227826b82e1ad05d6c47facfef73c99e057
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
67821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// MatchResultListener is an abstract class.  Its << operator can be
68821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// used by a matcher to explain why a value matches or doesn't match.
69821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan//
70821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// TODO(wan@google.com): add method
71821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan//   bool InterestedInWhy(bool result) const;
72821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// to indicate whether the listener is interested in why the match
73821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// result is 'result'.
74821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wanclass MatchResultListener {
75821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan public:
76821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // Creates a listener object with the given underlying ostream.  The
77821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // listener does not own the ostream.
78821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  explicit MatchResultListener(::std::ostream* os) : stream_(os) {}
79821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual ~MatchResultListener() = 0;  // Makes this class abstract.
80821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
81821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // Streams x to the underlying ostream; does nothing if the ostream
82821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // is NULL.
83821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  template <typename T>
84821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  MatchResultListener& operator<<(const T& x) {
85821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (stream_ != NULL)
86821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *stream_ << x;
87821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return *this;
88821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  }
89821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
90821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // Returns the underlying ostream.
91821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  ::std::ostream* stream() { return stream_; }
92821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
93821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan private:
94821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  ::std::ostream* const stream_;
95821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
96821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  GTEST_DISALLOW_COPY_AND_ASSIGN_(MatchResultListener);
97821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan};
98821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
99821133180ccdb9eb062548d964929ba3b354eb84zhanyong.waninline MatchResultListener::~MatchResultListener() {
100821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan}
101821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
102e35fdd936d133bf8a48de140a3c666897588a05shiqian// The implementation of a matcher.
103e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
104e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherInterface {
105e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
106e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual ~MatcherInterface() {}
107e35fdd936d133bf8a48de140a3c666897588a05shiqian
108821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // Returns true iff the matcher matches x; also explains the match
109821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // result to 'listener'.
110821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  //
111db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  // You should override this method when defining a new matcher.
112821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  //
113821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // It's the responsibility of the caller (Google Mock) to guarantee
114821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // that 'listener' is not NULL.  This helps to simplify a matcher's
115821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // implementation when it doesn't care about the performance, as it
116821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // can talk to 'listener' without checking its validity first.
117821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // However, in order to implement dummy listeners efficiently,
118821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // listener->stream() may be NULL.
119db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const = 0;
120e35fdd936d133bf8a48de140a3c666897588a05shiqian
121e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes this matcher to an ostream.
122e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeTo(::std::ostream* os) const = 0;
123e35fdd936d133bf8a48de140a3c666897588a05shiqian
124e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes the negation of this matcher to an ostream.  For
125e35fdd936d133bf8a48de140a3c666897588a05shiqian  // example, if the description of this matcher is "is greater than
126e35fdd936d133bf8a48de140a3c666897588a05shiqian  // 7", the negated description could be "is not greater than 7".
127e35fdd936d133bf8a48de140a3c666897588a05shiqian  // You are not required to override this when implementing
128e35fdd936d133bf8a48de140a3c666897588a05shiqian  // MatcherInterface, but it is highly advised so that your matcher
129e35fdd936d133bf8a48de140a3c666897588a05shiqian  // can produce good error messages.
130e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeNegationTo(::std::ostream* os) const {
131e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "not (";
132e35fdd936d133bf8a48de140a3c666897588a05shiqian    DescribeTo(os);
133e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << ")";
134e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
135e35fdd936d133bf8a48de140a3c666897588a05shiqian};
136e35fdd936d133bf8a48de140a3c666897588a05shiqian
137e35fdd936d133bf8a48de140a3c666897588a05shiqiannamespace internal {
138e35fdd936d133bf8a48de140a3c666897588a05shiqian
139821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// A match result listener that ignores the explanation.
140821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wanclass DummyMatchResultListener : public MatchResultListener {
141821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan public:
142821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  DummyMatchResultListener() : MatchResultListener(NULL) {}
143821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
144821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan private:
145821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  GTEST_DISALLOW_COPY_AND_ASSIGN_(DummyMatchResultListener);
146821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan};
147821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
148821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// A match result listener that forwards the explanation to a given
149821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// ostream.  The difference between this and MatchResultListener is
150821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// that the former is concrete.
151821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wanclass StreamMatchResultListener : public MatchResultListener {
152821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan public:
153821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  explicit StreamMatchResultListener(::std::ostream* os)
154821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      : MatchResultListener(os) {}
155821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
156821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan private:
157821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  GTEST_DISALLOW_COPY_AND_ASSIGN_(StreamMatchResultListener);
158821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan};
159821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
160821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// A match result listener that stores the explanation in a string.
161821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wanclass StringMatchResultListener : public MatchResultListener {
162821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan public:
163821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  StringMatchResultListener() : MatchResultListener(&ss_) {}
164821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
165821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // Returns the explanation heard so far.
166821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  internal::string str() const { return ss_.str(); }
167821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
168821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan private:
169821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  ::std::stringstream ss_;
170821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
171821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  GTEST_DISALLOW_COPY_AND_ASSIGN_(StringMatchResultListener);
172821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan};
173821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
174e35fdd936d133bf8a48de140a3c666897588a05shiqian// An internal class for implementing Matcher<T>, which will derive
175e35fdd936d133bf8a48de140a3c666897588a05shiqian// from it.  We put functionalities common to all Matcher<T>
176e35fdd936d133bf8a48de140a3c666897588a05shiqian// specializations here to avoid code duplication.
177e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
178e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherBase {
179e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
180821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // Returns true iff the matcher matches x; also explains the match
181821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // result to 'listener'.
182821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  bool MatchAndExplain(T x, MatchResultListener* listener) const {
183821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return impl_->MatchAndExplain(x, listener);
184821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  }
185821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
186e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Returns true iff this matcher matches x.
187821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  bool Matches(T x) const {
188821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    DummyMatchResultListener dummy;
189821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return MatchAndExplain(x, &dummy);
190821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  }
191e35fdd936d133bf8a48de140a3c666897588a05shiqian
192e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes this matcher to an ostream.
193e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); }
194e35fdd936d133bf8a48de140a3c666897588a05shiqian
195e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes the negation of this matcher to an ostream.
196e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
197e35fdd936d133bf8a48de140a3c666897588a05shiqian    impl_->DescribeNegationTo(os);
198e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
199e35fdd936d133bf8a48de140a3c666897588a05shiqian
200e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Explains why x matches, or doesn't match, the matcher.
201e35fdd936d133bf8a48de140a3c666897588a05shiqian  void ExplainMatchResultTo(T x, ::std::ostream* os) const {
202821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StreamMatchResultListener listener(os);
203821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    MatchAndExplain(x, &listener);
204e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
20532de5f53763125925e078498250f7e73a88de9edzhanyong.wan
206e35fdd936d133bf8a48de140a3c666897588a05shiqian protected:
207e35fdd936d133bf8a48de140a3c666897588a05shiqian  MatcherBase() {}
208e35fdd936d133bf8a48de140a3c666897588a05shiqian
209e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructs a matcher from its implementation.
210e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit MatcherBase(const MatcherInterface<T>* impl)
211e35fdd936d133bf8a48de140a3c666897588a05shiqian      : impl_(impl) {}
212e35fdd936d133bf8a48de140a3c666897588a05shiqian
213e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual ~MatcherBase() {}
21432de5f53763125925e078498250f7e73a88de9edzhanyong.wan
215e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
216e35fdd936d133bf8a48de140a3c666897588a05shiqian  // shared_ptr (util/gtl/shared_ptr.h) and linked_ptr have similar
217e35fdd936d133bf8a48de140a3c666897588a05shiqian  // interfaces.  The former dynamically allocates a chunk of memory
218e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to hold the reference count, while the latter tracks all
219e35fdd936d133bf8a48de140a3c666897588a05shiqian  // references using a circular linked list without allocating
220e35fdd936d133bf8a48de140a3c666897588a05shiqian  // memory.  It has been observed that linked_ptr performs better in
221e35fdd936d133bf8a48de140a3c666897588a05shiqian  // typical scenarios.  However, shared_ptr can out-perform
222e35fdd936d133bf8a48de140a3c666897588a05shiqian  // linked_ptr when there are many more uses of the copy constructor
223e35fdd936d133bf8a48de140a3c666897588a05shiqian  // than the default constructor.
224e35fdd936d133bf8a48de140a3c666897588a05shiqian  //
225e35fdd936d133bf8a48de140a3c666897588a05shiqian  // If performance becomes a problem, we should see if using
226e35fdd936d133bf8a48de140a3c666897588a05shiqian  // shared_ptr helps.
227e35fdd936d133bf8a48de140a3c666897588a05shiqian  ::testing::internal::linked_ptr<const MatcherInterface<T> > impl_;
228e35fdd936d133bf8a48de140a3c666897588a05shiqian};
229e35fdd936d133bf8a48de140a3c666897588a05shiqian
230e35fdd936d133bf8a48de140a3c666897588a05shiqian}  // namespace internal
231e35fdd936d133bf8a48de140a3c666897588a05shiqian
232e35fdd936d133bf8a48de140a3c666897588a05shiqian// A Matcher<T> is a copyable and IMMUTABLE (except by assignment)
233e35fdd936d133bf8a48de140a3c666897588a05shiqian// object that can check whether a value of type T matches.  The
234e35fdd936d133bf8a48de140a3c666897588a05shiqian// implementation of Matcher<T> is just a linked_ptr to const
235e35fdd936d133bf8a48de140a3c666897588a05shiqian// MatcherInterface<T>, so copying is fairly cheap.  Don't inherit
236e35fdd936d133bf8a48de140a3c666897588a05shiqian// from Matcher!
237e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
238e35fdd936d133bf8a48de140a3c666897588a05shiqianclass Matcher : public internal::MatcherBase<T> {
239e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
240e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructs a null matcher.  Needed for storing Matcher objects in
241e35fdd936d133bf8a48de140a3c666897588a05shiqian  // STL containers.
242e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher() {}
243e35fdd936d133bf8a48de140a3c666897588a05shiqian
244e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructs a matcher from its implementation.
245e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit Matcher(const MatcherInterface<T>* impl)
246e35fdd936d133bf8a48de140a3c666897588a05shiqian      : internal::MatcherBase<T>(impl) {}
247e35fdd936d133bf8a48de140a3c666897588a05shiqian
24818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Implicit constructor here allows people to write
249e35fdd936d133bf8a48de140a3c666897588a05shiqian  // EXPECT_CALL(foo, Bar(5)) instead of EXPECT_CALL(foo, Bar(Eq(5))) sometimes
250e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(T value);  // NOLINT
251e35fdd936d133bf8a48de140a3c666897588a05shiqian};
252e35fdd936d133bf8a48de140a3c666897588a05shiqian
253e35fdd936d133bf8a48de140a3c666897588a05shiqian// The following two specializations allow the user to write str
254e35fdd936d133bf8a48de140a3c666897588a05shiqian// instead of Eq(str) and "foo" instead of Eq("foo") when a string
255e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher is expected.
256e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <>
257e35fdd936d133bf8a48de140a3c666897588a05shiqianclass Matcher<const internal::string&>
258e35fdd936d133bf8a48de140a3c666897588a05shiqian    : public internal::MatcherBase<const internal::string&> {
259e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
260e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher() {}
261e35fdd936d133bf8a48de140a3c666897588a05shiqian
262e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit Matcher(const MatcherInterface<const internal::string&>* impl)
263e35fdd936d133bf8a48de140a3c666897588a05shiqian      : internal::MatcherBase<const internal::string&>(impl) {}
264e35fdd936d133bf8a48de140a3c666897588a05shiqian
265e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write str instead of Eq(str) sometimes, where
266e35fdd936d133bf8a48de140a3c666897588a05shiqian  // str is a string object.
267e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const internal::string& s);  // NOLINT
268e35fdd936d133bf8a48de140a3c666897588a05shiqian
269e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write "foo" instead of Eq("foo") sometimes.
270e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const char* s);  // NOLINT
271e35fdd936d133bf8a48de140a3c666897588a05shiqian};
272e35fdd936d133bf8a48de140a3c666897588a05shiqian
273e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <>
274e35fdd936d133bf8a48de140a3c666897588a05shiqianclass Matcher<internal::string>
275e35fdd936d133bf8a48de140a3c666897588a05shiqian    : public internal::MatcherBase<internal::string> {
276e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
277e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher() {}
278e35fdd936d133bf8a48de140a3c666897588a05shiqian
279e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit Matcher(const MatcherInterface<internal::string>* impl)
280e35fdd936d133bf8a48de140a3c666897588a05shiqian      : internal::MatcherBase<internal::string>(impl) {}
281e35fdd936d133bf8a48de140a3c666897588a05shiqian
282e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write str instead of Eq(str) sometimes, where
283e35fdd936d133bf8a48de140a3c666897588a05shiqian  // str is a string object.
284e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const internal::string& s);  // NOLINT
285e35fdd936d133bf8a48de140a3c666897588a05shiqian
286e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Allows the user to write "foo" instead of Eq("foo") sometimes.
287e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher(const char* s);  // NOLINT
288e35fdd936d133bf8a48de140a3c666897588a05shiqian};
289e35fdd936d133bf8a48de140a3c666897588a05shiqian
290e35fdd936d133bf8a48de140a3c666897588a05shiqian// The PolymorphicMatcher class template makes it easy to implement a
291e35fdd936d133bf8a48de140a3c666897588a05shiqian// polymorphic matcher (i.e. a matcher that can match values of more
292e35fdd936d133bf8a48de140a3c666897588a05shiqian// than one type, e.g. Eq(n) and NotNull()).
293e35fdd936d133bf8a48de140a3c666897588a05shiqian//
294db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan// To define a polymorphic matcher, a user should provide an Impl
295db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan// class that has a DescribeTo() method and a DescribeNegationTo()
296db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan// method, and define a member function (or member function template)
297821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan//
298db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan//   bool MatchAndExplain(const Value& value,
299db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan//                        MatchResultListener* listener) const;
300821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan//
301821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// See the definition of NotNull() for a complete example.
302e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <class Impl>
303e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PolymorphicMatcher {
304e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
30532de5f53763125925e078498250f7e73a88de9edzhanyong.wan  explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {}
306e35fdd936d133bf8a48de140a3c666897588a05shiqian
3072b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan  // Returns a mutable reference to the underlying matcher
3082b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan  // implementation object.
3092b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan  Impl& mutable_impl() { return impl_; }
3102b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan
3112b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan  // Returns an immutable reference to the underlying matcher
3122b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan  // implementation object.
3132b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan  const Impl& impl() const { return impl_; }
3142b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan
315e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
316e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
317e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(new MonomorphicImpl<T>(impl_));
318e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
31932de5f53763125925e078498250f7e73a88de9edzhanyong.wan
320e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
321e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
322e35fdd936d133bf8a48de140a3c666897588a05shiqian  class MonomorphicImpl : public MatcherInterface<T> {
323e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
324e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
325e35fdd936d133bf8a48de140a3c666897588a05shiqian
326e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
327e35fdd936d133bf8a48de140a3c666897588a05shiqian      impl_.DescribeTo(os);
328e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
329e35fdd936d133bf8a48de140a3c666897588a05shiqian
330e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
331e35fdd936d133bf8a48de140a3c666897588a05shiqian      impl_.DescribeNegationTo(os);
332e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
333e35fdd936d133bf8a48de140a3c666897588a05shiqian
334821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
335db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan      return impl_.MatchAndExplain(x, listener);
336e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
3372b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan
338e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
339e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Impl impl_;
34032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
34132de5f53763125925e078498250f7e73a88de9edzhanyong.wan    GTEST_DISALLOW_ASSIGN_(MonomorphicImpl);
342e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
343e35fdd936d133bf8a48de140a3c666897588a05shiqian
3442b43a9ecd16edc1ec55429967e0f2de1aaf8e8bbzhanyong.wan  Impl impl_;
34532de5f53763125925e078498250f7e73a88de9edzhanyong.wan
34632de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(PolymorphicMatcher);
347e35fdd936d133bf8a48de140a3c666897588a05shiqian};
348e35fdd936d133bf8a48de140a3c666897588a05shiqian
349e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher from its implementation.  This is easier to use
350e35fdd936d133bf8a48de140a3c666897588a05shiqian// than the Matcher<T> constructor as it doesn't require you to
351e35fdd936d133bf8a48de140a3c666897588a05shiqian// explicitly write the template argument, e.g.
352e35fdd936d133bf8a48de140a3c666897588a05shiqian//
353e35fdd936d133bf8a48de140a3c666897588a05shiqian//   MakeMatcher(foo);
354e35fdd936d133bf8a48de140a3c666897588a05shiqian// vs
355e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Matcher<const string&>(foo);
356e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
357e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> MakeMatcher(const MatcherInterface<T>* impl) {
358e35fdd936d133bf8a48de140a3c666897588a05shiqian  return Matcher<T>(impl);
359e35fdd936d133bf8a48de140a3c666897588a05shiqian};
360e35fdd936d133bf8a48de140a3c666897588a05shiqian
361e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher from its implementation.  This is
362e35fdd936d133bf8a48de140a3c666897588a05shiqian// easier to use than the PolymorphicMatcher<Impl> constructor as it
363e35fdd936d133bf8a48de140a3c666897588a05shiqian// doesn't require you to explicitly write the template argument, e.g.
364e35fdd936d133bf8a48de140a3c666897588a05shiqian//
365e35fdd936d133bf8a48de140a3c666897588a05shiqian//   MakePolymorphicMatcher(foo);
366e35fdd936d133bf8a48de140a3c666897588a05shiqian// vs
367e35fdd936d133bf8a48de140a3c666897588a05shiqian//   PolymorphicMatcher<TypeOfFoo>(foo);
368e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <class Impl>
369e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) {
370e35fdd936d133bf8a48de140a3c666897588a05shiqian  return PolymorphicMatcher<Impl>(impl);
371e35fdd936d133bf8a48de140a3c666897588a05shiqian}
372e35fdd936d133bf8a48de140a3c666897588a05shiqian
373e35fdd936d133bf8a48de140a3c666897588a05shiqian// In order to be safe and clear, casting between different matcher
374e35fdd936d133bf8a48de140a3c666897588a05shiqian// types is done explicitly via MatcherCast<T>(m), which takes a
375e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher m and returns a Matcher<T>.  It compiles only when T can be
376e35fdd936d133bf8a48de140a3c666897588a05shiqian// statically converted to the argument type of m.
377e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename M>
378e35fdd936d133bf8a48de140a3c666897588a05shiqianMatcher<T> MatcherCast(M m);
379e35fdd936d133bf8a48de140a3c666897588a05shiqian
38018490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan// Implements SafeMatcherCast().
38118490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan//
38295b12332c345cee508a8e2b68e007280392506e0zhanyong.wan// We use an intermediate class to do the actual safe casting as Nokia's
38395b12332c345cee508a8e2b68e007280392506e0zhanyong.wan// Symbian compiler cannot decide between
38495b12332c345cee508a8e2b68e007280392506e0zhanyong.wan// template <T, M> ... (M) and
38595b12332c345cee508a8e2b68e007280392506e0zhanyong.wan// template <T, U> ... (const Matcher<U>&)
38695b12332c345cee508a8e2b68e007280392506e0zhanyong.wan// for function templates but can for member function templates.
38795b12332c345cee508a8e2b68e007280392506e0zhanyong.wantemplate <typename T>
38895b12332c345cee508a8e2b68e007280392506e0zhanyong.wanclass SafeMatcherCastImpl {
38995b12332c345cee508a8e2b68e007280392506e0zhanyong.wan public:
39095b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // This overload handles polymorphic matchers only since monomorphic
39195b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // matchers are handled by the next one.
39295b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  template <typename M>
39395b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  static inline Matcher<T> Cast(M polymorphic_matcher) {
39495b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    return Matcher<T>(polymorphic_matcher);
39595b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  }
39618490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan
39795b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // This overload handles monomorphic matchers.
39895b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  //
39995b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // In general, if type T can be implicitly converted to type U, we can
40095b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // safely convert a Matcher<U> to a Matcher<T> (i.e. Matcher is
40195b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // contravariant): just keep a copy of the original Matcher<U>, convert the
40295b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // argument from type T to U, and then pass it to the underlying Matcher<U>.
40395b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // The only exception is when U is a reference and T is not, as the
40495b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // underlying Matcher<U> may be interested in the argument's address, which
40595b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  // is not preserved in the conversion from T to U.
40695b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  template <typename U>
40795b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  static inline Matcher<T> Cast(const Matcher<U>& matcher) {
40895b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    // Enforce that T can be implicitly converted to U.
40995b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    GMOCK_COMPILE_ASSERT_((internal::ImplicitlyConvertible<T, U>::value),
41095b12332c345cee508a8e2b68e007280392506e0zhanyong.wan                          T_must_be_implicitly_convertible_to_U);
41195b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    // Enforce that we are not converting a non-reference type T to a reference
41295b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    // type U.
41395b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    GMOCK_COMPILE_ASSERT_(
41495b12332c345cee508a8e2b68e007280392506e0zhanyong.wan        internal::is_reference<T>::value || !internal::is_reference<U>::value,
41595b12332c345cee508a8e2b68e007280392506e0zhanyong.wan        cannot_convert_non_referentce_arg_to_reference);
41695b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    // In case both T and U are arithmetic types, enforce that the
41795b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    // conversion is not lossy.
41895b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(T)) RawT;
41995b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(U)) RawU;
42095b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    const bool kTIsOther = GMOCK_KIND_OF_(RawT) == internal::kOther;
42195b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    const bool kUIsOther = GMOCK_KIND_OF_(RawU) == internal::kOther;
42295b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    GMOCK_COMPILE_ASSERT_(
42395b12332c345cee508a8e2b68e007280392506e0zhanyong.wan        kTIsOther || kUIsOther ||
42495b12332c345cee508a8e2b68e007280392506e0zhanyong.wan        (internal::LosslessArithmeticConvertible<RawT, RawU>::value),
42595b12332c345cee508a8e2b68e007280392506e0zhanyong.wan        conversion_of_arithmetic_types_must_be_lossless);
42695b12332c345cee508a8e2b68e007280392506e0zhanyong.wan    return MatcherCast<T>(matcher);
42795b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  }
42895b12332c345cee508a8e2b68e007280392506e0zhanyong.wan};
42995b12332c345cee508a8e2b68e007280392506e0zhanyong.wan
43095b12332c345cee508a8e2b68e007280392506e0zhanyong.wantemplate <typename T, typename M>
43195b12332c345cee508a8e2b68e007280392506e0zhanyong.waninline Matcher<T> SafeMatcherCast(const M& polymorphic_matcher) {
43295b12332c345cee508a8e2b68e007280392506e0zhanyong.wan  return SafeMatcherCastImpl<T>::Cast(polymorphic_matcher);
43318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan}
43418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan
435e35fdd936d133bf8a48de140a3c666897588a05shiqian// A<T>() returns a matcher that matches any value of type T.
436e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
437e35fdd936d133bf8a48de140a3c666897588a05shiqianMatcher<T> A();
438e35fdd936d133bf8a48de140a3c666897588a05shiqian
439e35fdd936d133bf8a48de140a3c666897588a05shiqian// Anything inside the 'internal' namespace IS INTERNAL IMPLEMENTATION
440e35fdd936d133bf8a48de140a3c666897588a05shiqian// and MUST NOT BE USED IN USER CODE!!!
441e35fdd936d133bf8a48de140a3c666897588a05shiqiannamespace internal {
442e35fdd936d133bf8a48de140a3c666897588a05shiqian
443821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// If the given string is not empty and os is not NULL, wraps the
444821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan// string inside a pair of parentheses and streams the result to os.
445821133180ccdb9eb062548d964929ba3b354eb84zhanyong.waninline void StreamInParensAsNeeded(const internal::string& str,
446821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                                   ::std::ostream* os) {
447821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  if (!str.empty() && os != NULL) {
448821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    *os << " (" << str << ")";
449e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
450e35fdd936d133bf8a48de140a3c666897588a05shiqian}
451e35fdd936d133bf8a48de140a3c666897588a05shiqian
452e35fdd936d133bf8a48de140a3c666897588a05shiqian// An internal helper class for doing compile-time loop on a tuple's
453e35fdd936d133bf8a48de140a3c666897588a05shiqian// fields.
454e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <size_t N>
455e35fdd936d133bf8a48de140a3c666897588a05shiqianclass TuplePrefix {
456e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
457e35fdd936d133bf8a48de140a3c666897588a05shiqian  // TuplePrefix<N>::Matches(matcher_tuple, value_tuple) returns true
458e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff the first N fields of matcher_tuple matches the first N
459e35fdd936d133bf8a48de140a3c666897588a05shiqian  // fields of value_tuple, respectively.
460e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
461e35fdd936d133bf8a48de140a3c666897588a05shiqian  static bool Matches(const MatcherTuple& matcher_tuple,
462e35fdd936d133bf8a48de140a3c666897588a05shiqian                      const ValueTuple& value_tuple) {
463e35fdd936d133bf8a48de140a3c666897588a05shiqian    using ::std::tr1::get;
464e35fdd936d133bf8a48de140a3c666897588a05shiqian    return TuplePrefix<N - 1>::Matches(matcher_tuple, value_tuple)
465e35fdd936d133bf8a48de140a3c666897588a05shiqian        && get<N - 1>(matcher_tuple).Matches(get<N - 1>(value_tuple));
466e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
467e35fdd936d133bf8a48de140a3c666897588a05shiqian
468e35fdd936d133bf8a48de140a3c666897588a05shiqian  // TuplePrefix<N>::DescribeMatchFailuresTo(matchers, values, os)
469e35fdd936d133bf8a48de140a3c666897588a05shiqian  // describes failures in matching the first N fields of matchers
470e35fdd936d133bf8a48de140a3c666897588a05shiqian  // against the first N fields of values.  If there is no failure,
471e35fdd936d133bf8a48de140a3c666897588a05shiqian  // nothing will be streamed to os.
472e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
473e35fdd936d133bf8a48de140a3c666897588a05shiqian  static void DescribeMatchFailuresTo(const MatcherTuple& matchers,
474e35fdd936d133bf8a48de140a3c666897588a05shiqian                                      const ValueTuple& values,
475e35fdd936d133bf8a48de140a3c666897588a05shiqian                                      ::std::ostream* os) {
476e35fdd936d133bf8a48de140a3c666897588a05shiqian    using ::std::tr1::tuple_element;
477e35fdd936d133bf8a48de140a3c666897588a05shiqian    using ::std::tr1::get;
478e35fdd936d133bf8a48de140a3c666897588a05shiqian
479e35fdd936d133bf8a48de140a3c666897588a05shiqian    // First, describes failures in the first N - 1 fields.
480e35fdd936d133bf8a48de140a3c666897588a05shiqian    TuplePrefix<N - 1>::DescribeMatchFailuresTo(matchers, values, os);
481e35fdd936d133bf8a48de140a3c666897588a05shiqian
482e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Then describes the failure (if any) in the (N - 1)-th (0-based)
483e35fdd936d133bf8a48de140a3c666897588a05shiqian    // field.
484e35fdd936d133bf8a48de140a3c666897588a05shiqian    typename tuple_element<N - 1, MatcherTuple>::type matcher =
485e35fdd936d133bf8a48de140a3c666897588a05shiqian        get<N - 1>(matchers);
486e35fdd936d133bf8a48de140a3c666897588a05shiqian    typedef typename tuple_element<N - 1, ValueTuple>::type Value;
487e35fdd936d133bf8a48de140a3c666897588a05shiqian    Value value = get<N - 1>(values);
488821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener;
489821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (!matcher.MatchAndExplain(value, &listener)) {
490e35fdd936d133bf8a48de140a3c666897588a05shiqian      // TODO(wan): include in the message the name of the parameter
491e35fdd936d133bf8a48de140a3c666897588a05shiqian      // as used in MOCK_METHOD*() when possible.
492e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "  Expected arg #" << N - 1 << ": ";
493e35fdd936d133bf8a48de140a3c666897588a05shiqian      get<N - 1>(matchers).DescribeTo(os);
494e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "\n           Actual: ";
495e35fdd936d133bf8a48de140a3c666897588a05shiqian      // We remove the reference in type Value to prevent the
496e35fdd936d133bf8a48de140a3c666897588a05shiqian      // universal printer from printing the address of value, which
497e35fdd936d133bf8a48de140a3c666897588a05shiqian      // isn't interesting to the user most of the time.  The
498db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan      // matcher's MatchAndExplain() method handles the case when
499e35fdd936d133bf8a48de140a3c666897588a05shiqian      // the address is interesting.
500e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan      internal::UniversalPrinter<GMOCK_REMOVE_REFERENCE_(Value)>::
501e35fdd936d133bf8a48de140a3c666897588a05shiqian          Print(value, os);
502821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
503821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      StreamInParensAsNeeded(listener.str(), os);
504e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "\n";
505e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
506e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
507e35fdd936d133bf8a48de140a3c666897588a05shiqian};
508e35fdd936d133bf8a48de140a3c666897588a05shiqian
509e35fdd936d133bf8a48de140a3c666897588a05shiqian// The base case.
510e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <>
511e35fdd936d133bf8a48de140a3c666897588a05shiqianclass TuplePrefix<0> {
512e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
513e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
5143fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan  static bool Matches(const MatcherTuple& /* matcher_tuple */,
5153fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                      const ValueTuple& /* value_tuple */) {
516e35fdd936d133bf8a48de140a3c666897588a05shiqian    return true;
517e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
518e35fdd936d133bf8a48de140a3c666897588a05shiqian
519e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename MatcherTuple, typename ValueTuple>
5203fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan  static void DescribeMatchFailuresTo(const MatcherTuple& /* matchers */,
5213fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                                      const ValueTuple& /* values */,
5223fbd2dd020819fcfd7cef2aa6a17fad73c41a0eezhanyong.wan                                      ::std::ostream* /* os */) {}
523e35fdd936d133bf8a48de140a3c666897588a05shiqian};
524e35fdd936d133bf8a48de140a3c666897588a05shiqian
525e35fdd936d133bf8a48de140a3c666897588a05shiqian// TupleMatches(matcher_tuple, value_tuple) returns true iff all
526e35fdd936d133bf8a48de140a3c666897588a05shiqian// matchers in matcher_tuple match the corresponding fields in
527e35fdd936d133bf8a48de140a3c666897588a05shiqian// value_tuple.  It is a compiler error if matcher_tuple and
528e35fdd936d133bf8a48de140a3c666897588a05shiqian// value_tuple have different number of fields or incompatible field
529e35fdd936d133bf8a48de140a3c666897588a05shiqian// types.
530e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename MatcherTuple, typename ValueTuple>
531e35fdd936d133bf8a48de140a3c666897588a05shiqianbool TupleMatches(const MatcherTuple& matcher_tuple,
532e35fdd936d133bf8a48de140a3c666897588a05shiqian                  const ValueTuple& value_tuple) {
533e35fdd936d133bf8a48de140a3c666897588a05shiqian  using ::std::tr1::tuple_size;
534e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Makes sure that matcher_tuple and value_tuple have the same
535e35fdd936d133bf8a48de140a3c666897588a05shiqian  // number of fields.
536e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan  GMOCK_COMPILE_ASSERT_(tuple_size<MatcherTuple>::value ==
537e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan                        tuple_size<ValueTuple>::value,
538e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan                        matcher_and_value_have_different_numbers_of_fields);
539e35fdd936d133bf8a48de140a3c666897588a05shiqian  return TuplePrefix<tuple_size<ValueTuple>::value>::
540e35fdd936d133bf8a48de140a3c666897588a05shiqian      Matches(matcher_tuple, value_tuple);
541e35fdd936d133bf8a48de140a3c666897588a05shiqian}
542e35fdd936d133bf8a48de140a3c666897588a05shiqian
543e35fdd936d133bf8a48de140a3c666897588a05shiqian// Describes failures in matching matchers against values.  If there
544e35fdd936d133bf8a48de140a3c666897588a05shiqian// is no failure, nothing will be streamed to os.
545e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename MatcherTuple, typename ValueTuple>
546e35fdd936d133bf8a48de140a3c666897588a05shiqianvoid DescribeMatchFailureTupleTo(const MatcherTuple& matchers,
547e35fdd936d133bf8a48de140a3c666897588a05shiqian                                 const ValueTuple& values,
548e35fdd936d133bf8a48de140a3c666897588a05shiqian                                 ::std::ostream* os) {
549e35fdd936d133bf8a48de140a3c666897588a05shiqian  using ::std::tr1::tuple_size;
550e35fdd936d133bf8a48de140a3c666897588a05shiqian  TuplePrefix<tuple_size<MatcherTuple>::value>::DescribeMatchFailuresTo(
551e35fdd936d133bf8a48de140a3c666897588a05shiqian      matchers, values, os);
552e35fdd936d133bf8a48de140a3c666897588a05shiqian}
553e35fdd936d133bf8a48de140a3c666897588a05shiqian
554e35fdd936d133bf8a48de140a3c666897588a05shiqian// The MatcherCastImpl class template is a helper for implementing
555e35fdd936d133bf8a48de140a3c666897588a05shiqian// MatcherCast().  We need this helper in order to partially
556e35fdd936d133bf8a48de140a3c666897588a05shiqian// specialize the implementation of MatcherCast() (C++ allows
557e35fdd936d133bf8a48de140a3c666897588a05shiqian// class/struct templates to be partially specialized, but not
558e35fdd936d133bf8a48de140a3c666897588a05shiqian// function templates.).
559e35fdd936d133bf8a48de140a3c666897588a05shiqian
560e35fdd936d133bf8a48de140a3c666897588a05shiqian// This general version is used when MatcherCast()'s argument is a
561e35fdd936d133bf8a48de140a3c666897588a05shiqian// polymorphic matcher (i.e. something that can be converted to a
562e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matcher but is not one yet; for example, Eq(value)).
563e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename M>
564e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherCastImpl {
565e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
566e35fdd936d133bf8a48de140a3c666897588a05shiqian  static Matcher<T> Cast(M polymorphic_matcher) {
567e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(polymorphic_matcher);
568e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
569e35fdd936d133bf8a48de140a3c666897588a05shiqian};
570e35fdd936d133bf8a48de140a3c666897588a05shiqian
571e35fdd936d133bf8a48de140a3c666897588a05shiqian// This more specialized version is used when MatcherCast()'s argument
572e35fdd936d133bf8a48de140a3c666897588a05shiqian// is already a Matcher.  This only compiles when type T can be
573e35fdd936d133bf8a48de140a3c666897588a05shiqian// statically converted to type U.
574e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename U>
575e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherCastImpl<T, Matcher<U> > {
576e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
577e35fdd936d133bf8a48de140a3c666897588a05shiqian  static Matcher<T> Cast(const Matcher<U>& source_matcher) {
578e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(new Impl(source_matcher));
579e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
58032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
581e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
582e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<T> {
583e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
584e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit Impl(const Matcher<U>& source_matcher)
585e35fdd936d133bf8a48de140a3c666897588a05shiqian        : source_matcher_(source_matcher) {}
586e35fdd936d133bf8a48de140a3c666897588a05shiqian
587e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We delegate the matching logic to the source matcher.
588821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
589821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return source_matcher_.MatchAndExplain(static_cast<U>(x), listener);
590e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
591e35fdd936d133bf8a48de140a3c666897588a05shiqian
592e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
593e35fdd936d133bf8a48de140a3c666897588a05shiqian      source_matcher_.DescribeTo(os);
594e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
595e35fdd936d133bf8a48de140a3c666897588a05shiqian
596e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
597e35fdd936d133bf8a48de140a3c666897588a05shiqian      source_matcher_.DescribeNegationTo(os);
598e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
599e35fdd936d133bf8a48de140a3c666897588a05shiqian
600e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
601e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<U> source_matcher_;
60232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
60332de5f53763125925e078498250f7e73a88de9edzhanyong.wan    GTEST_DISALLOW_ASSIGN_(Impl);
604e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
605e35fdd936d133bf8a48de140a3c666897588a05shiqian};
606e35fdd936d133bf8a48de140a3c666897588a05shiqian
607e35fdd936d133bf8a48de140a3c666897588a05shiqian// This even more specialized version is used for efficiently casting
608e35fdd936d133bf8a48de140a3c666897588a05shiqian// a matcher to its own type.
609e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
610e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherCastImpl<T, Matcher<T> > {
611e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
612e35fdd936d133bf8a48de140a3c666897588a05shiqian  static Matcher<T> Cast(const Matcher<T>& matcher) { return matcher; }
613e35fdd936d133bf8a48de140a3c666897588a05shiqian};
614e35fdd936d133bf8a48de140a3c666897588a05shiqian
615e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements A<T>().
616e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
617e35fdd936d133bf8a48de140a3c666897588a05shiqianclass AnyMatcherImpl : public MatcherInterface<T> {
618e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
619821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(
620821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      T /* x */, MatchResultListener* /* listener */) const { return true; }
621e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeTo(::std::ostream* os) const { *os << "is anything"; }
622e35fdd936d133bf8a48de140a3c666897588a05shiqian  virtual void DescribeNegationTo(::std::ostream* os) const {
623e35fdd936d133bf8a48de140a3c666897588a05shiqian    // This is mostly for completeness' safe, as it's not very useful
624e35fdd936d133bf8a48de140a3c666897588a05shiqian    // to write Not(A<bool>()).  However we cannot completely rule out
625e35fdd936d133bf8a48de140a3c666897588a05shiqian    // such a possibility, and it doesn't hurt to be prepared.
626e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "never matches";
627e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
628e35fdd936d133bf8a48de140a3c666897588a05shiqian};
629e35fdd936d133bf8a48de140a3c666897588a05shiqian
630e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements _, a matcher that matches any value of any
631e35fdd936d133bf8a48de140a3c666897588a05shiqian// type.  This is a polymorphic matcher, so we need a template type
632e35fdd936d133bf8a48de140a3c666897588a05shiqian// conversion operator to make it appearing as a Matcher<T> for any
633e35fdd936d133bf8a48de140a3c666897588a05shiqian// type T.
634e35fdd936d133bf8a48de140a3c666897588a05shiqianclass AnythingMatcher {
635e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
636e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
637e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const { return A<T>(); }
638e35fdd936d133bf8a48de140a3c666897588a05shiqian};
639e35fdd936d133bf8a48de140a3c666897588a05shiqian
640e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements a matcher that compares a given value with a
641e35fdd936d133bf8a48de140a3c666897588a05shiqian// pre-supplied value using one of the ==, <=, <, etc, operators.  The
642e35fdd936d133bf8a48de140a3c666897588a05shiqian// two values being compared don't have to have the same type.
643e35fdd936d133bf8a48de140a3c666897588a05shiqian//
644e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher defined here is polymorphic (for example, Eq(5) can be
645e35fdd936d133bf8a48de140a3c666897588a05shiqian// used to match an int, a short, a double, etc).  Therefore we use
646e35fdd936d133bf8a48de140a3c666897588a05shiqian// a template type conversion operator in the implementation.
647e35fdd936d133bf8a48de140a3c666897588a05shiqian//
648e35fdd936d133bf8a48de140a3c666897588a05shiqian// We define this as a macro in order to eliminate duplicated source
649e35fdd936d133bf8a48de140a3c666897588a05shiqian// code.
650e35fdd936d133bf8a48de140a3c666897588a05shiqian//
651e35fdd936d133bf8a48de140a3c666897588a05shiqian// The following template definition assumes that the Rhs parameter is
652e35fdd936d133bf8a48de140a3c666897588a05shiqian// a "bare" type (i.e. neither 'const T' nor 'T&').
653e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan#define GMOCK_IMPLEMENT_COMPARISON_MATCHER_(name, op, relation) \
654e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Rhs> class name##Matcher { \
655e35fdd936d133bf8a48de140a3c666897588a05shiqian   public: \
656e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit name##Matcher(const Rhs& rhs) : rhs_(rhs) {} \
657e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename Lhs> \
658e35fdd936d133bf8a48de140a3c666897588a05shiqian    operator Matcher<Lhs>() const { \
659e35fdd936d133bf8a48de140a3c666897588a05shiqian      return MakeMatcher(new Impl<Lhs>(rhs_)); \
660e35fdd936d133bf8a48de140a3c666897588a05shiqian    } \
661e35fdd936d133bf8a48de140a3c666897588a05shiqian   private: \
662e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename Lhs> \
663e35fdd936d133bf8a48de140a3c666897588a05shiqian    class Impl : public MatcherInterface<Lhs> { \
664e35fdd936d133bf8a48de140a3c666897588a05shiqian     public: \
665e35fdd936d133bf8a48de140a3c666897588a05shiqian      explicit Impl(const Rhs& rhs) : rhs_(rhs) {} \
666821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      virtual bool MatchAndExplain(\
667821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan          Lhs lhs, MatchResultListener* /* listener */) const { \
668821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        return lhs op rhs_; \
669821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      } \
670e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeTo(::std::ostream* os) const { \
671e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is " relation  " "; \
672e35fdd936d133bf8a48de140a3c666897588a05shiqian        UniversalPrinter<Rhs>::Print(rhs_, os); \
673e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
674e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeNegationTo(::std::ostream* os) const { \
675e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is not " relation  " "; \
676e35fdd936d133bf8a48de140a3c666897588a05shiqian        UniversalPrinter<Rhs>::Print(rhs_, os); \
677e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
678e35fdd936d133bf8a48de140a3c666897588a05shiqian     private: \
679e35fdd936d133bf8a48de140a3c666897588a05shiqian      Rhs rhs_; \
68032de5f53763125925e078498250f7e73a88de9edzhanyong.wan      GTEST_DISALLOW_ASSIGN_(Impl); \
681e35fdd936d133bf8a48de140a3c666897588a05shiqian    }; \
682e35fdd936d133bf8a48de140a3c666897588a05shiqian    Rhs rhs_; \
68332de5f53763125925e078498250f7e73a88de9edzhanyong.wan    GTEST_DISALLOW_ASSIGN_(name##Matcher); \
684e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
685e35fdd936d133bf8a48de140a3c666897588a05shiqian
686e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements Eq(v), Ge(v), Gt(v), Le(v), Lt(v), and Ne(v)
687e35fdd936d133bf8a48de140a3c666897588a05shiqian// respectively.
688e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Eq, ==, "equal to");
689e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ge, >=, "greater than or equal to");
690e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Gt, >, "greater than");
691e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Le, <=, "less than or equal to");
692e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Lt, <, "less than");
693e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wanGMOCK_IMPLEMENT_COMPARISON_MATCHER_(Ne, !=, "not equal to");
694e35fdd936d133bf8a48de140a3c666897588a05shiqian
695e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan#undef GMOCK_IMPLEMENT_COMPARISON_MATCHER_
696e35fdd936d133bf8a48de140a3c666897588a05shiqian
69779b83505bcf73bf2903ebf2e2f82cb1e1f181816vladlosev// Implements the polymorphic IsNull() matcher, which matches any raw or smart
6982d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan// pointer that is NULL.
6992d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wanclass IsNullMatcher {
7002d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan public:
70179b83505bcf73bf2903ebf2e2f82cb1e1f181816vladlosev  template <typename Pointer>
702db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const Pointer& p,
703db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
704db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return GetRawPointer(p) == NULL;
705db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  }
7062d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan
7072d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan  void DescribeTo(::std::ostream* os) const { *os << "is NULL"; }
7082d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan  void DescribeNegationTo(::std::ostream* os) const {
7092d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan    *os << "is not NULL";
7102d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan  }
7112d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan};
7122d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan
71379b83505bcf73bf2903ebf2e2f82cb1e1f181816vladlosev// Implements the polymorphic NotNull() matcher, which matches any raw or smart
714e35fdd936d133bf8a48de140a3c666897588a05shiqian// pointer that is not NULL.
715e35fdd936d133bf8a48de140a3c666897588a05shiqianclass NotNullMatcher {
716e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
71779b83505bcf73bf2903ebf2e2f82cb1e1f181816vladlosev  template <typename Pointer>
718db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const Pointer& p,
719db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
720db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return GetRawPointer(p) != NULL;
721db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  }
722e35fdd936d133bf8a48de140a3c666897588a05shiqian
723e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const { *os << "is not NULL"; }
724e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
725e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "is NULL";
726e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
727e35fdd936d133bf8a48de140a3c666897588a05shiqian};
728e35fdd936d133bf8a48de140a3c666897588a05shiqian
729e35fdd936d133bf8a48de140a3c666897588a05shiqian// Ref(variable) matches any argument that is a reference to
730e35fdd936d133bf8a48de140a3c666897588a05shiqian// 'variable'.  This matcher is polymorphic as it can match any
731e35fdd936d133bf8a48de140a3c666897588a05shiqian// super type of the type of 'variable'.
732e35fdd936d133bf8a48de140a3c666897588a05shiqian//
733e35fdd936d133bf8a48de140a3c666897588a05shiqian// The RefMatcher template class implements Ref(variable).  It can
734e35fdd936d133bf8a48de140a3c666897588a05shiqian// only be instantiated with a reference type.  This prevents a user
735e35fdd936d133bf8a48de140a3c666897588a05shiqian// from mistakenly using Ref(x) to match a non-reference function
736e35fdd936d133bf8a48de140a3c666897588a05shiqian// argument.  For example, the following will righteously cause a
737e35fdd936d133bf8a48de140a3c666897588a05shiqian// compiler error:
738e35fdd936d133bf8a48de140a3c666897588a05shiqian//
739e35fdd936d133bf8a48de140a3c666897588a05shiqian//   int n;
740e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Matcher<int> m1 = Ref(n);   // This won't compile.
741e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Matcher<int&> m2 = Ref(n);  // This will compile.
742e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
743e35fdd936d133bf8a48de140a3c666897588a05shiqianclass RefMatcher;
744e35fdd936d133bf8a48de140a3c666897588a05shiqian
745e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
746e35fdd936d133bf8a48de140a3c666897588a05shiqianclass RefMatcher<T&> {
747e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Google Mock is a generic framework and thus needs to support
748e35fdd936d133bf8a48de140a3c666897588a05shiqian  // mocking any function types, including those that take non-const
749e35fdd936d133bf8a48de140a3c666897588a05shiqian  // reference arguments.  Therefore the template parameter T (and
750e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Super below) can be instantiated to either a const type or a
751e35fdd936d133bf8a48de140a3c666897588a05shiqian  // non-const type.
752e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
753e35fdd936d133bf8a48de140a3c666897588a05shiqian  // RefMatcher() takes a T& instead of const T&, as we want the
754e35fdd936d133bf8a48de140a3c666897588a05shiqian  // compiler to catch using Ref(const_value) as a matcher for a
755e35fdd936d133bf8a48de140a3c666897588a05shiqian  // non-const reference.
756e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit RefMatcher(T& x) : object_(x) {}  // NOLINT
757e35fdd936d133bf8a48de140a3c666897588a05shiqian
758e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Super>
759e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<Super&>() const {
760e35fdd936d133bf8a48de140a3c666897588a05shiqian    // By passing object_ (type T&) to Impl(), which expects a Super&,
761e35fdd936d133bf8a48de140a3c666897588a05shiqian    // we make sure that Super is a super type of T.  In particular,
762e35fdd936d133bf8a48de140a3c666897588a05shiqian    // this catches using Ref(const_value) as a matcher for a
763e35fdd936d133bf8a48de140a3c666897588a05shiqian    // non-const reference, as you cannot implicitly convert a const
764e35fdd936d133bf8a48de140a3c666897588a05shiqian    // reference to a non-const reference.
765e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<Super>(object_));
766e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
76732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
768e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
769e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Super>
770e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<Super&> {
771e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
772e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit Impl(Super& x) : object_(x) {}  // NOLINT
773e35fdd936d133bf8a48de140a3c666897588a05shiqian
774db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    // MatchAndExplain() takes a Super& (as opposed to const Super&)
775db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    // in order to match the interface MatcherInterface<Super&>.
776821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    virtual bool MatchAndExplain(
777821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        Super& x, MatchResultListener* listener) const {
778821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << "is located @" << static_cast<const void*>(&x);
779821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return &x == &object_;
780821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
781e35fdd936d133bf8a48de140a3c666897588a05shiqian
782e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
783e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "references the variable ";
784e35fdd936d133bf8a48de140a3c666897588a05shiqian      UniversalPrinter<Super&>::Print(object_, os);
785e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
786e35fdd936d133bf8a48de140a3c666897588a05shiqian
787e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
788e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "does not reference the variable ";
789e35fdd936d133bf8a48de140a3c666897588a05shiqian      UniversalPrinter<Super&>::Print(object_, os);
790e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
791e35fdd936d133bf8a48de140a3c666897588a05shiqian
792e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
793e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Super& object_;
79432de5f53763125925e078498250f7e73a88de9edzhanyong.wan
79532de5f53763125925e078498250f7e73a88de9edzhanyong.wan    GTEST_DISALLOW_ASSIGN_(Impl);
796e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
797e35fdd936d133bf8a48de140a3c666897588a05shiqian
798e35fdd936d133bf8a48de140a3c666897588a05shiqian  T& object_;
79932de5f53763125925e078498250f7e73a88de9edzhanyong.wan
80032de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(RefMatcher);
801e35fdd936d133bf8a48de140a3c666897588a05shiqian};
802e35fdd936d133bf8a48de140a3c666897588a05shiqian
803e35fdd936d133bf8a48de140a3c666897588a05shiqian// Polymorphic helper functions for narrow and wide string matchers.
804e35fdd936d133bf8a48de140a3c666897588a05shiqianinline bool CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) {
805e35fdd936d133bf8a48de140a3c666897588a05shiqian  return String::CaseInsensitiveCStringEquals(lhs, rhs);
806e35fdd936d133bf8a48de140a3c666897588a05shiqian}
807e35fdd936d133bf8a48de140a3c666897588a05shiqian
808e35fdd936d133bf8a48de140a3c666897588a05shiqianinline bool CaseInsensitiveCStringEquals(const wchar_t* lhs,
809e35fdd936d133bf8a48de140a3c666897588a05shiqian                                         const wchar_t* rhs) {
810e35fdd936d133bf8a48de140a3c666897588a05shiqian  return String::CaseInsensitiveWideCStringEquals(lhs, rhs);
811e35fdd936d133bf8a48de140a3c666897588a05shiqian}
812e35fdd936d133bf8a48de140a3c666897588a05shiqian
813e35fdd936d133bf8a48de140a3c666897588a05shiqian// String comparison for narrow or wide strings that can have embedded NUL
814e35fdd936d133bf8a48de140a3c666897588a05shiqian// characters.
815e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
816e35fdd936d133bf8a48de140a3c666897588a05shiqianbool CaseInsensitiveStringEquals(const StringType& s1,
817e35fdd936d133bf8a48de140a3c666897588a05shiqian                                 const StringType& s2) {
818e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Are the heads equal?
819e35fdd936d133bf8a48de140a3c666897588a05shiqian  if (!CaseInsensitiveCStringEquals(s1.c_str(), s2.c_str())) {
820e35fdd936d133bf8a48de140a3c666897588a05shiqian    return false;
821e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
822e35fdd936d133bf8a48de140a3c666897588a05shiqian
823e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Skip the equal heads.
824e35fdd936d133bf8a48de140a3c666897588a05shiqian  const typename StringType::value_type nul = 0;
825e35fdd936d133bf8a48de140a3c666897588a05shiqian  const size_t i1 = s1.find(nul), i2 = s2.find(nul);
826e35fdd936d133bf8a48de140a3c666897588a05shiqian
827e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Are we at the end of either s1 or s2?
828e35fdd936d133bf8a48de140a3c666897588a05shiqian  if (i1 == StringType::npos || i2 == StringType::npos) {
829e35fdd936d133bf8a48de140a3c666897588a05shiqian    return i1 == i2;
830e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
831e35fdd936d133bf8a48de140a3c666897588a05shiqian
832e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Are the tails equal?
833e35fdd936d133bf8a48de140a3c666897588a05shiqian  return CaseInsensitiveStringEquals(s1.substr(i1 + 1), s2.substr(i2 + 1));
834e35fdd936d133bf8a48de140a3c666897588a05shiqian}
835e35fdd936d133bf8a48de140a3c666897588a05shiqian
836e35fdd936d133bf8a48de140a3c666897588a05shiqian// String matchers.
837e35fdd936d133bf8a48de140a3c666897588a05shiqian
838e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements equality-based string matchers like StrEq, StrCaseNe, and etc.
839e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
840e35fdd936d133bf8a48de140a3c666897588a05shiqianclass StrEqualityMatcher {
841e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
842e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
843e35fdd936d133bf8a48de140a3c666897588a05shiqian
844e35fdd936d133bf8a48de140a3c666897588a05shiqian  StrEqualityMatcher(const StringType& str, bool expect_eq,
845e35fdd936d133bf8a48de140a3c666897588a05shiqian                     bool case_sensitive)
846e35fdd936d133bf8a48de140a3c666897588a05shiqian      : string_(str), expect_eq_(expect_eq), case_sensitive_(case_sensitive) {}
847e35fdd936d133bf8a48de140a3c666897588a05shiqian
848e35fdd936d133bf8a48de140a3c666897588a05shiqian  // When expect_eq_ is true, returns true iff s is equal to string_;
849e35fdd936d133bf8a48de140a3c666897588a05shiqian  // otherwise returns true iff s is not equal to string_.
850db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(ConstCharPointer s,
851db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* listener) const {
852e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (s == NULL) {
853e35fdd936d133bf8a48de140a3c666897588a05shiqian      return !expect_eq_;
854e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
855db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return MatchAndExplain(StringType(s), listener);
856e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
857e35fdd936d133bf8a48de140a3c666897588a05shiqian
858db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const StringType& s,
859db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
860e35fdd936d133bf8a48de140a3c666897588a05shiqian    const bool eq = case_sensitive_ ? s == string_ :
861e35fdd936d133bf8a48de140a3c666897588a05shiqian        CaseInsensitiveStringEquals(s, string_);
862e35fdd936d133bf8a48de140a3c666897588a05shiqian    return expect_eq_ == eq;
863e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
864e35fdd936d133bf8a48de140a3c666897588a05shiqian
865e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
866e35fdd936d133bf8a48de140a3c666897588a05shiqian    DescribeToHelper(expect_eq_, os);
867e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
868e35fdd936d133bf8a48de140a3c666897588a05shiqian
869e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
870e35fdd936d133bf8a48de140a3c666897588a05shiqian    DescribeToHelper(!expect_eq_, os);
871e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
87232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
873e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
874e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeToHelper(bool expect_eq, ::std::ostream* os) const {
875e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "is ";
876e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (!expect_eq) {
877e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "not ";
878e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
879e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "equal to ";
880e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (!case_sensitive_) {
881e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "(ignoring case) ";
882e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
883e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(string_, os);
884e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
885e35fdd936d133bf8a48de140a3c666897588a05shiqian
886e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType string_;
887e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool expect_eq_;
888e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool case_sensitive_;
88932de5f53763125925e078498250f7e73a88de9edzhanyong.wan
89032de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(StrEqualityMatcher);
891e35fdd936d133bf8a48de140a3c666897588a05shiqian};
892e35fdd936d133bf8a48de140a3c666897588a05shiqian
893e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic HasSubstr(substring) matcher, which
894e35fdd936d133bf8a48de140a3c666897588a05shiqian// can be used as a Matcher<T> as long as T can be converted to a
895e35fdd936d133bf8a48de140a3c666897588a05shiqian// string.
896e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
897e35fdd936d133bf8a48de140a3c666897588a05shiqianclass HasSubstrMatcher {
898e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
899e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
900e35fdd936d133bf8a48de140a3c666897588a05shiqian
901e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit HasSubstrMatcher(const StringType& substring)
902e35fdd936d133bf8a48de140a3c666897588a05shiqian      : substring_(substring) {}
903e35fdd936d133bf8a48de140a3c666897588a05shiqian
904e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow HasSubstr(substring) to be used as a
905e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<T> as long as T can be converted to string.  Returns true
906e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff s contains substring_ as a substring.
907db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(ConstCharPointer s,
908db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* listener) const {
909db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return s != NULL && MatchAndExplain(StringType(s), listener);
910e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
911e35fdd936d133bf8a48de140a3c666897588a05shiqian
912db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const StringType& s,
913db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
914e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s.find(substring_) != StringType::npos;
915e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
916e35fdd936d133bf8a48de140a3c666897588a05shiqian
917e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Describes what this matcher matches.
918e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
919e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "has substring ";
920e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(substring_, os);
921e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
922e35fdd936d133bf8a48de140a3c666897588a05shiqian
923e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
924e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "has no substring ";
925e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(substring_, os);
926e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
92732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
928e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
929e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType substring_;
93032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
93132de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(HasSubstrMatcher);
932e35fdd936d133bf8a48de140a3c666897588a05shiqian};
933e35fdd936d133bf8a48de140a3c666897588a05shiqian
934e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic StartsWith(substring) matcher, which
935e35fdd936d133bf8a48de140a3c666897588a05shiqian// can be used as a Matcher<T> as long as T can be converted to a
936e35fdd936d133bf8a48de140a3c666897588a05shiqian// string.
937e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
938e35fdd936d133bf8a48de140a3c666897588a05shiqianclass StartsWithMatcher {
939e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
940e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
941e35fdd936d133bf8a48de140a3c666897588a05shiqian
942e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit StartsWithMatcher(const StringType& prefix) : prefix_(prefix) {
943e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
944e35fdd936d133bf8a48de140a3c666897588a05shiqian
945e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow StartsWith(prefix) to be used as a
946e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<T> as long as T can be converted to string.  Returns true
947e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff s starts with prefix_.
948db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(ConstCharPointer s,
949db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* listener) const {
950db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return s != NULL && MatchAndExplain(StringType(s), listener);
951e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
952e35fdd936d133bf8a48de140a3c666897588a05shiqian
953db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const StringType& s,
954db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
955e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s.length() >= prefix_.length() &&
956e35fdd936d133bf8a48de140a3c666897588a05shiqian        s.substr(0, prefix_.length()) == prefix_;
957e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
958e35fdd936d133bf8a48de140a3c666897588a05shiqian
959e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
960e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "starts with ";
961e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(prefix_, os);
962e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
963e35fdd936d133bf8a48de140a3c666897588a05shiqian
964e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
965e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't start with ";
966e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(prefix_, os);
967e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
96832de5f53763125925e078498250f7e73a88de9edzhanyong.wan
969e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
970e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType prefix_;
97132de5f53763125925e078498250f7e73a88de9edzhanyong.wan
97232de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(StartsWithMatcher);
973e35fdd936d133bf8a48de140a3c666897588a05shiqian};
974e35fdd936d133bf8a48de140a3c666897588a05shiqian
975e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic EndsWith(substring) matcher, which
976e35fdd936d133bf8a48de140a3c666897588a05shiqian// can be used as a Matcher<T> as long as T can be converted to a
977e35fdd936d133bf8a48de140a3c666897588a05shiqian// string.
978e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename StringType>
979e35fdd936d133bf8a48de140a3c666897588a05shiqianclass EndsWithMatcher {
980e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
981e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename StringType::const_pointer ConstCharPointer;
982e35fdd936d133bf8a48de140a3c666897588a05shiqian
983e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit EndsWithMatcher(const StringType& suffix) : suffix_(suffix) {}
984e35fdd936d133bf8a48de140a3c666897588a05shiqian
985e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow EndsWith(suffix) to be used as a
986e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<T> as long as T can be converted to string.  Returns true
987e35fdd936d133bf8a48de140a3c666897588a05shiqian  // iff s ends with suffix_.
988db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(ConstCharPointer s,
989db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* listener) const {
990db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return s != NULL && MatchAndExplain(StringType(s), listener);
991e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
992e35fdd936d133bf8a48de140a3c666897588a05shiqian
993db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const StringType& s,
994db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
995e35fdd936d133bf8a48de140a3c666897588a05shiqian    return s.length() >= suffix_.length() &&
996e35fdd936d133bf8a48de140a3c666897588a05shiqian        s.substr(s.length() - suffix_.length()) == suffix_;
997e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
998e35fdd936d133bf8a48de140a3c666897588a05shiqian
999e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1000e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "ends with ";
1001e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(suffix_, os);
1002e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1003e35fdd936d133bf8a48de140a3c666897588a05shiqian
1004e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1005e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't end with ";
1006e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<StringType>::Print(suffix_, os);
1007e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
100832de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1009e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1010e35fdd936d133bf8a48de140a3c666897588a05shiqian  const StringType suffix_;
101132de5f53763125925e078498250f7e73a88de9edzhanyong.wan
101232de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(EndsWithMatcher);
1013e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1014e35fdd936d133bf8a48de140a3c666897588a05shiqian
1015e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements polymorphic matchers MatchesRegex(regex) and
1016e35fdd936d133bf8a48de140a3c666897588a05shiqian// ContainsRegex(regex), which can be used as a Matcher<T> as long as
1017e35fdd936d133bf8a48de140a3c666897588a05shiqian// T can be converted to a string.
1018e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatchesRegexMatcher {
1019e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1020e35fdd936d133bf8a48de140a3c666897588a05shiqian  MatchesRegexMatcher(const RE* regex, bool full_match)
1021e35fdd936d133bf8a48de140a3c666897588a05shiqian      : regex_(regex), full_match_(full_match) {}
1022e35fdd936d133bf8a48de140a3c666897588a05shiqian
1023e35fdd936d133bf8a48de140a3c666897588a05shiqian  // These overloaded methods allow MatchesRegex(regex) to be used as
1024e35fdd936d133bf8a48de140a3c666897588a05shiqian  // a Matcher<T> as long as T can be converted to string.  Returns
1025e35fdd936d133bf8a48de140a3c666897588a05shiqian  // true iff s matches regular expression regex.  When full_match_ is
1026e35fdd936d133bf8a48de140a3c666897588a05shiqian  // true, a full match is done; otherwise a partial match is done.
1027db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const char* s,
1028db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* listener) const {
1029db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return s != NULL && MatchAndExplain(internal::string(s), listener);
1030e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1031e35fdd936d133bf8a48de140a3c666897588a05shiqian
1032db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const internal::string& s,
1033db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
1034e35fdd936d133bf8a48de140a3c666897588a05shiqian    return full_match_ ? RE::FullMatch(s, *regex_) :
1035e35fdd936d133bf8a48de140a3c666897588a05shiqian        RE::PartialMatch(s, *regex_);
1036e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1037e35fdd936d133bf8a48de140a3c666897588a05shiqian
1038e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1039e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << (full_match_ ? "matches" : "contains")
1040e35fdd936d133bf8a48de140a3c666897588a05shiqian        << " regular expression ";
1041e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
1042e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1043e35fdd936d133bf8a48de140a3c666897588a05shiqian
1044e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1045e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't " << (full_match_ ? "match" : "contain")
1046e35fdd936d133bf8a48de140a3c666897588a05shiqian        << " regular expression ";
1047e35fdd936d133bf8a48de140a3c666897588a05shiqian    UniversalPrinter<internal::string>::Print(regex_->pattern(), os);
1048e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
104932de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1050e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1051e35fdd936d133bf8a48de140a3c666897588a05shiqian  const internal::linked_ptr<const RE> regex_;
1052e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool full_match_;
105332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
105432de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(MatchesRegexMatcher);
1055e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1056e35fdd936d133bf8a48de140a3c666897588a05shiqian
1057e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements a matcher that compares the two fields of a 2-tuple
1058e35fdd936d133bf8a48de140a3c666897588a05shiqian// using one of the ==, <=, <, etc, operators.  The two fields being
1059e35fdd936d133bf8a48de140a3c666897588a05shiqian// compared don't have to have the same type.
1060e35fdd936d133bf8a48de140a3c666897588a05shiqian//
1061e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher defined here is polymorphic (for example, Eq() can be
1062e35fdd936d133bf8a48de140a3c666897588a05shiqian// used to match a tuple<int, short>, a tuple<const long&, double>,
1063e35fdd936d133bf8a48de140a3c666897588a05shiqian// etc).  Therefore we use a template type conversion operator in the
1064e35fdd936d133bf8a48de140a3c666897588a05shiqian// implementation.
1065e35fdd936d133bf8a48de140a3c666897588a05shiqian//
1066e35fdd936d133bf8a48de140a3c666897588a05shiqian// We define this as a macro in order to eliminate duplicated source
1067e35fdd936d133bf8a48de140a3c666897588a05shiqian// code.
10682661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wan#define GMOCK_IMPLEMENT_COMPARISON2_MATCHER_(name, op) \
1069e35fdd936d133bf8a48de140a3c666897588a05shiqian  class name##2Matcher { \
1070e35fdd936d133bf8a48de140a3c666897588a05shiqian   public: \
1071e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename T1, typename T2> \
1072e35fdd936d133bf8a48de140a3c666897588a05shiqian    operator Matcher<const ::std::tr1::tuple<T1, T2>&>() const { \
1073e35fdd936d133bf8a48de140a3c666897588a05shiqian      return MakeMatcher(new Impl<T1, T2>); \
1074e35fdd936d133bf8a48de140a3c666897588a05shiqian    } \
1075e35fdd936d133bf8a48de140a3c666897588a05shiqian   private: \
1076e35fdd936d133bf8a48de140a3c666897588a05shiqian    template <typename T1, typename T2> \
1077e35fdd936d133bf8a48de140a3c666897588a05shiqian    class Impl : public MatcherInterface<const ::std::tr1::tuple<T1, T2>&> { \
1078e35fdd936d133bf8a48de140a3c666897588a05shiqian     public: \
1079821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      virtual bool MatchAndExplain( \
1080821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan          const ::std::tr1::tuple<T1, T2>& args, \
1081821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan          MatchResultListener* /* listener */) const { \
1082e35fdd936d133bf8a48de140a3c666897588a05shiqian        return ::std::tr1::get<0>(args) op ::std::tr1::get<1>(args); \
1083e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
1084e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeTo(::std::ostream* os) const { \
10852661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wan        *os << "are a pair (x, y) where x " #op " y"; \
1086e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
1087e35fdd936d133bf8a48de140a3c666897588a05shiqian      virtual void DescribeNegationTo(::std::ostream* os) const { \
10882661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wan        *os << "are a pair (x, y) where x " #op " y is false"; \
1089e35fdd936d133bf8a48de140a3c666897588a05shiqian      } \
1090e35fdd936d133bf8a48de140a3c666897588a05shiqian    }; \
1091e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1092e35fdd936d133bf8a48de140a3c666897588a05shiqian
1093e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements Eq(), Ge(), Gt(), Le(), Lt(), and Ne() respectively.
10942661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Eq, ==);
10952661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Ge, >=);
10962661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Gt, >);
10972661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Le, <=);
10982661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Lt, <);
10992661c6821a4d7964697e48747c4d739e1ac3a243zhanyong.wanGMOCK_IMPLEMENT_COMPARISON2_MATCHER_(Ne, !=);
1100e35fdd936d133bf8a48de140a3c666897588a05shiqian
1101e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan#undef GMOCK_IMPLEMENT_COMPARISON2_MATCHER_
1102e35fdd936d133bf8a48de140a3c666897588a05shiqian
1103c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// Implements the Not(...) matcher for a particular argument type T.
1104c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// We do not nest it inside the NotMatcher class template, as that
1105c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// will prevent different instantiations of NotMatcher from sharing
1106c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// the same NotMatcherImpl<T> class.
1107c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wantemplate <typename T>
1108c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wanclass NotMatcherImpl : public MatcherInterface<T> {
1109c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan public:
1110c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  explicit NotMatcherImpl(const Matcher<T>& matcher)
1111c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      : matcher_(matcher) {}
1112c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1113821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
1114821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return !matcher_.MatchAndExplain(x, listener);
1115c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1116c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1117c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
1118c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher_.DescribeNegationTo(os);
1119c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1120c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1121c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
1122c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher_.DescribeTo(os);
1123c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1124c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1125c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan private:
1126c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher_;
112732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
112832de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(NotMatcherImpl);
1129c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan};
1130c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1131e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Not(m) matcher, which matches a value that doesn't
1132e35fdd936d133bf8a48de140a3c666897588a05shiqian// match matcher m.
1133e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
1134e35fdd936d133bf8a48de140a3c666897588a05shiqianclass NotMatcher {
1135e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1136e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit NotMatcher(InnerMatcher matcher) : matcher_(matcher) {}
1137e35fdd936d133bf8a48de140a3c666897588a05shiqian
1138e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template type conversion operator allows Not(m) to be used
1139e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to match any type m can match.
1140e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1141e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
1142c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    return Matcher<T>(new NotMatcherImpl<T>(SafeMatcherCast<T>(matcher_)));
1143e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
114432de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1145e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1146c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  InnerMatcher matcher_;
114732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
114832de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(NotMatcher);
1149c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan};
1150e35fdd936d133bf8a48de140a3c666897588a05shiqian
1151c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// Implements the AllOf(m1, m2) matcher for a particular argument type
1152c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// T. We do not nest it inside the BothOfMatcher class template, as
1153c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// that will prevent different instantiations of BothOfMatcher from
1154c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// sharing the same BothOfMatcherImpl<T> class.
1155c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wantemplate <typename T>
1156c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wanclass BothOfMatcherImpl : public MatcherInterface<T> {
1157c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan public:
1158c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  BothOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
1159c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      : matcher1_(matcher1), matcher2_(matcher2) {}
1160e35fdd936d133bf8a48de140a3c666897588a05shiqian
1161c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
1162c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "(";
1163c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher1_.DescribeTo(os);
1164c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ") and (";
1165c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher2_.DescribeTo(os);
1166c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ")";
1167c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1168e35fdd936d133bf8a48de140a3c666897588a05shiqian
1169c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
1170c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "not ";
1171c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    DescribeTo(os);
1172c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1173e35fdd936d133bf8a48de140a3c666897588a05shiqian
1174821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
1175821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // If either matcher1_ or matcher2_ doesn't match x, we only need
1176821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // to explain why one of them fails.
1177821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener1;
1178821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (!matcher1_.MatchAndExplain(x, &listener1)) {
1179821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << listener1.str();
1180821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return false;
1181821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
1182c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1183821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener2;
1184821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (!matcher2_.MatchAndExplain(x, &listener2)) {
1185821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << listener2.str();
1186821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return false;
1187821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
1188c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1189821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // Otherwise we need to explain why *both* of them match.
1190821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const internal::string s1 = listener1.str();
1191821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const internal::string s2 = listener2.str();
1192821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
1193821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (s1 == "") {
1194821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << s2;
1195c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    } else {
1196821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << s1;
1197821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      if (s2 != "") {
1198821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "; " << s2;
1199c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      }
1200c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    }
1201821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return true;
1202c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
120332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1204c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan private:
1205c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher1_;
1206c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher2_;
120732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
120832de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(BothOfMatcherImpl);
1209e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1210e35fdd936d133bf8a48de140a3c666897588a05shiqian
1211e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing the AllOf(m_1, ..., m_n) matcher, which
1212e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a value that matches all of the matchers m_1, ..., and m_n.
1213e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
1214e35fdd936d133bf8a48de140a3c666897588a05shiqianclass BothOfMatcher {
1215e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1216e35fdd936d133bf8a48de140a3c666897588a05shiqian  BothOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
1217e35fdd936d133bf8a48de140a3c666897588a05shiqian      : matcher1_(matcher1), matcher2_(matcher2) {}
1218e35fdd936d133bf8a48de140a3c666897588a05shiqian
1219e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template type conversion operator allows a
1220e35fdd936d133bf8a48de140a3c666897588a05shiqian  // BothOfMatcher<Matcher1, Matcher2> object to match any type that
1221e35fdd936d133bf8a48de140a3c666897588a05shiqian  // both Matcher1 and Matcher2 can match.
1222e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1223e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
1224c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    return Matcher<T>(new BothOfMatcherImpl<T>(SafeMatcherCast<T>(matcher1_),
1225c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan                                               SafeMatcherCast<T>(matcher2_)));
1226e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
122732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1228e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1229c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  Matcher1 matcher1_;
1230c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  Matcher2 matcher2_;
123132de5f53763125925e078498250f7e73a88de9edzhanyong.wan
123232de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(BothOfMatcher);
1233c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan};
1234e35fdd936d133bf8a48de140a3c666897588a05shiqian
1235c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// Implements the AnyOf(m1, m2) matcher for a particular argument type
1236c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// T.  We do not nest it inside the AnyOfMatcher class template, as
1237c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// that will prevent different instantiations of AnyOfMatcher from
1238c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan// sharing the same EitherOfMatcherImpl<T> class.
1239c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wantemplate <typename T>
1240c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wanclass EitherOfMatcherImpl : public MatcherInterface<T> {
1241c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan public:
1242c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  EitherOfMatcherImpl(const Matcher<T>& matcher1, const Matcher<T>& matcher2)
1243c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan      : matcher1_(matcher1), matcher2_(matcher2) {}
1244e35fdd936d133bf8a48de140a3c666897588a05shiqian
1245c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
1246c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "(";
1247c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher1_.DescribeTo(os);
1248c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ") or (";
1249c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    matcher2_.DescribeTo(os);
1250c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << ")";
1251c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1252e35fdd936d133bf8a48de140a3c666897588a05shiqian
1253c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
1254c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    *os << "not ";
1255c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan    DescribeTo(os);
1256c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
1257c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1258821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(T x, MatchResultListener* listener) const {
1259821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // If either matcher1_ or matcher2_ matches x, we just need to
1260821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // explain why *one* of them matches.
1261821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener1;
1262821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (matcher1_.MatchAndExplain(x, &listener1)) {
1263821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << listener1.str();
1264821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return true;
1265821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
1266c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1267821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener2;
1268821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (matcher2_.MatchAndExplain(x, &listener2)) {
1269821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << listener2.str();
1270821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return true;
1271821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
1272c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan
1273821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // Otherwise we need to explain why *both* of them fail.
1274821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const internal::string s1 = listener1.str();
1275821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const internal::string s2 = listener2.str();
1276821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
1277821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (s1 == "") {
1278821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << s2;
1279821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    } else {
1280821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << s1;
1281821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      if (s2 != "") {
1282821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "; " << s2;
1283e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1284e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1285821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return false;
1286c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  }
128732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1288c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan private:
1289c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher1_;
1290c6a412397bc98f120d5e79d4a64e3972854b5af3zhanyong.wan  const Matcher<T> matcher2_;
129132de5f53763125925e078498250f7e73a88de9edzhanyong.wan
129232de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(EitherOfMatcherImpl);
1293e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1294e35fdd936d133bf8a48de140a3c666897588a05shiqian
1295e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing the AnyOf(m_1, ..., m_n) matcher, which
1296e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a value that matches at least one of the matchers m_1, ...,
1297e35fdd936d133bf8a48de140a3c666897588a05shiqian// and m_n.
1298e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
1299e35fdd936d133bf8a48de140a3c666897588a05shiqianclass EitherOfMatcher {
1300e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1301e35fdd936d133bf8a48de140a3c666897588a05shiqian  EitherOfMatcher(Matcher1 matcher1, Matcher2 matcher2)
1302e35fdd936d133bf8a48de140a3c666897588a05shiqian      : matcher1_(matcher1), matcher2_(matcher2) {}
1303e35fdd936d133bf8a48de140a3c666897588a05shiqian
1304e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template type conversion operator allows a
1305e35fdd936d133bf8a48de140a3c666897588a05shiqian  // EitherOfMatcher<Matcher1, Matcher2> object to match any type that
1306e35fdd936d133bf8a48de140a3c666897588a05shiqian  // both Matcher1 and Matcher2 can match.
1307e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1308e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
130916cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan    return Matcher<T>(new EitherOfMatcherImpl<T>(
131016cf473930c01cd7a1a51dff65f22c541fbad5b8zhanyong.wan        SafeMatcherCast<T>(matcher1_), SafeMatcherCast<T>(matcher2_)));
1311e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
131232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1313e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1314e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher1 matcher1_;
1315e35fdd936d133bf8a48de140a3c666897588a05shiqian  Matcher2 matcher2_;
131632de5f53763125925e078498250f7e73a88de9edzhanyong.wan
131732de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(EitherOfMatcher);
1318e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1319e35fdd936d133bf8a48de140a3c666897588a05shiqian
1320e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing Truly(pred), which turns a predicate into a
1321e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher.
1322e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Predicate>
1323e35fdd936d133bf8a48de140a3c666897588a05shiqianclass TrulyMatcher {
1324e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1325e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit TrulyMatcher(Predicate pred) : predicate_(pred) {}
1326e35fdd936d133bf8a48de140a3c666897588a05shiqian
1327e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This method template allows Truly(pred) to be used as a matcher
1328e35fdd936d133bf8a48de140a3c666897588a05shiqian  // for type T where T is the argument type of predicate 'pred'.  The
1329e35fdd936d133bf8a48de140a3c666897588a05shiqian  // argument is passed by reference as the predicate may be
1330e35fdd936d133bf8a48de140a3c666897588a05shiqian  // interested in the address of the argument.
1331e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1332db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(T& x,  // NOLINT
1333db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                       MatchResultListener* /* listener */) const {
1334652540a278e56528e576f9ea77515f386698a326zhanyong.wan#if GTEST_OS_WINDOWS
1335e35fdd936d133bf8a48de140a3c666897588a05shiqian    // MSVC warns about converting a value into bool (warning 4800).
1336e35fdd936d133bf8a48de140a3c666897588a05shiqian#pragma warning(push)          // Saves the current warning state.
1337e35fdd936d133bf8a48de140a3c666897588a05shiqian#pragma warning(disable:4800)  // Temporarily disables warning 4800.
1338e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GTEST_OS_WINDOWS
1339e35fdd936d133bf8a48de140a3c666897588a05shiqian    return predicate_(x);
1340652540a278e56528e576f9ea77515f386698a326zhanyong.wan#if GTEST_OS_WINDOWS
1341e35fdd936d133bf8a48de140a3c666897588a05shiqian#pragma warning(pop)           // Restores the warning state.
1342e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GTEST_OS_WINDOWS
1343e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1344e35fdd936d133bf8a48de140a3c666897588a05shiqian
1345e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1346e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "satisfies the given predicate";
1347e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1348e35fdd936d133bf8a48de140a3c666897588a05shiqian
1349e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1350e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "doesn't satisfy the given predicate";
1351e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
135232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1353e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1354e35fdd936d133bf8a48de140a3c666897588a05shiqian  Predicate predicate_;
135532de5f53763125925e078498250f7e73a88de9edzhanyong.wan
135632de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(TrulyMatcher);
1357e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1358e35fdd936d133bf8a48de140a3c666897588a05shiqian
1359e35fdd936d133bf8a48de140a3c666897588a05shiqian// Used for implementing Matches(matcher), which turns a matcher into
1360e35fdd936d133bf8a48de140a3c666897588a05shiqian// a predicate.
1361e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
1362e35fdd936d133bf8a48de140a3c666897588a05shiqianclass MatcherAsPredicate {
1363e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1364e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit MatcherAsPredicate(M matcher) : matcher_(matcher) {}
1365e35fdd936d133bf8a48de140a3c666897588a05shiqian
1366e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template operator() allows Matches(m) to be used as a
1367e35fdd936d133bf8a48de140a3c666897588a05shiqian  // predicate on type T where m is a matcher on type T.
1368e35fdd936d133bf8a48de140a3c666897588a05shiqian  //
1369e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The argument x is passed by reference instead of by value, as
1370e35fdd936d133bf8a48de140a3c666897588a05shiqian  // some matcher may be interested in its address (e.g. as in
1371e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matches(Ref(n))(x)).
1372e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1373e35fdd936d133bf8a48de140a3c666897588a05shiqian  bool operator()(const T& x) const {
1374e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We let matcher_ commit to a particular type here instead of
1375e35fdd936d133bf8a48de140a3c666897588a05shiqian    // when the MatcherAsPredicate object was constructed.  This
1376e35fdd936d133bf8a48de140a3c666897588a05shiqian    // allows us to write Matches(m) where m is a polymorphic matcher
1377e35fdd936d133bf8a48de140a3c666897588a05shiqian    // (e.g. Eq(5)).
1378e35fdd936d133bf8a48de140a3c666897588a05shiqian    //
1379e35fdd936d133bf8a48de140a3c666897588a05shiqian    // If we write Matcher<T>(matcher_).Matches(x) here, it won't
1380e35fdd936d133bf8a48de140a3c666897588a05shiqian    // compile when matcher_ has type Matcher<const T&>; if we write
1381e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Matcher<const T&>(matcher_).Matches(x) here, it won't compile
1382e35fdd936d133bf8a48de140a3c666897588a05shiqian    // when matcher_ has type Matcher<T>; if we just write
1383e35fdd936d133bf8a48de140a3c666897588a05shiqian    // matcher_.Matches(x), it won't compile when matcher_ is
1384e35fdd936d133bf8a48de140a3c666897588a05shiqian    // polymorphic, e.g. Eq(5).
1385e35fdd936d133bf8a48de140a3c666897588a05shiqian    //
1386e35fdd936d133bf8a48de140a3c666897588a05shiqian    // MatcherCast<const T&>() is necessary for making the code work
1387e35fdd936d133bf8a48de140a3c666897588a05shiqian    // in all of the above situations.
1388e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MatcherCast<const T&>(matcher_).Matches(x);
1389e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
139032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1391e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1392e35fdd936d133bf8a48de140a3c666897588a05shiqian  M matcher_;
139332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
139432de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(MatcherAsPredicate);
1395e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1396e35fdd936d133bf8a48de140a3c666897588a05shiqian
1397e35fdd936d133bf8a48de140a3c666897588a05shiqian// For implementing ASSERT_THAT() and EXPECT_THAT().  The template
1398e35fdd936d133bf8a48de140a3c666897588a05shiqian// argument M must be a type that can be converted to a matcher.
1399e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
1400e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PredicateFormatterFromMatcher {
1401e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1402e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit PredicateFormatterFromMatcher(const M& m) : matcher_(m) {}
1403e35fdd936d133bf8a48de140a3c666897588a05shiqian
1404e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This template () operator allows a PredicateFormatterFromMatcher
1405e35fdd936d133bf8a48de140a3c666897588a05shiqian  // object to act as a predicate-formatter suitable for using with
1406e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Google Test's EXPECT_PRED_FORMAT1() macro.
1407e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1408e35fdd936d133bf8a48de140a3c666897588a05shiqian  AssertionResult operator()(const char* value_text, const T& x) const {
1409e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We convert matcher_ to a Matcher<const T&> *now* instead of
1410e35fdd936d133bf8a48de140a3c666897588a05shiqian    // when the PredicateFormatterFromMatcher object was constructed,
1411e35fdd936d133bf8a48de140a3c666897588a05shiqian    // as matcher_ may be polymorphic (e.g. NotNull()) and we won't
1412e35fdd936d133bf8a48de140a3c666897588a05shiqian    // know which type to instantiate it to until we actually see the
1413e35fdd936d133bf8a48de140a3c666897588a05shiqian    // type of x here.
1414e35fdd936d133bf8a48de140a3c666897588a05shiqian    //
1415e35fdd936d133bf8a48de140a3c666897588a05shiqian    // We write MatcherCast<const T&>(matcher_) instead of
1416e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Matcher<const T&>(matcher_), as the latter won't compile when
1417e35fdd936d133bf8a48de140a3c666897588a05shiqian    // matcher_ has type Matcher<T> (e.g. An<int>()).
1418e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<const T&> matcher = MatcherCast<const T&>(matcher_);
1419821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener;
1420821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (matcher.MatchAndExplain(x, &listener)) {
1421e35fdd936d133bf8a48de140a3c666897588a05shiqian      return AssertionSuccess();
1422e35fdd936d133bf8a48de140a3c666897588a05shiqian    } else {
1423e35fdd936d133bf8a48de140a3c666897588a05shiqian      ::std::stringstream ss;
1424e35fdd936d133bf8a48de140a3c666897588a05shiqian      ss << "Value of: " << value_text << "\n"
1425e35fdd936d133bf8a48de140a3c666897588a05shiqian         << "Expected: ";
1426e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher.DescribeTo(&ss);
1427e35fdd936d133bf8a48de140a3c666897588a05shiqian      ss << "\n  Actual: ";
1428e35fdd936d133bf8a48de140a3c666897588a05shiqian      UniversalPrinter<T>::Print(x, &ss);
1429821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      StreamInParensAsNeeded(listener.str(), &ss);
1430e35fdd936d133bf8a48de140a3c666897588a05shiqian      return AssertionFailure(Message() << ss.str());
1431e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1432e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
143332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1434e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1435e35fdd936d133bf8a48de140a3c666897588a05shiqian  const M matcher_;
143632de5f53763125925e078498250f7e73a88de9edzhanyong.wan
143732de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(PredicateFormatterFromMatcher);
1438e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1439e35fdd936d133bf8a48de140a3c666897588a05shiqian
1440e35fdd936d133bf8a48de140a3c666897588a05shiqian// A helper function for converting a matcher to a predicate-formatter
1441e35fdd936d133bf8a48de140a3c666897588a05shiqian// without the user needing to explicitly write the type.  This is
1442e35fdd936d133bf8a48de140a3c666897588a05shiqian// used for implementing ASSERT_THAT() and EXPECT_THAT().
1443e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
1444e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PredicateFormatterFromMatcher<M>
1445e35fdd936d133bf8a48de140a3c666897588a05shiqianMakePredicateFormatterFromMatcher(const M& matcher) {
1446e35fdd936d133bf8a48de140a3c666897588a05shiqian  return PredicateFormatterFromMatcher<M>(matcher);
1447e35fdd936d133bf8a48de140a3c666897588a05shiqian}
1448e35fdd936d133bf8a48de140a3c666897588a05shiqian
1449e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the polymorphic floating point equality matcher, which
1450e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches two float values using ULP-based approximation.  The
1451e35fdd936d133bf8a48de140a3c666897588a05shiqian// template is meant to be instantiated with FloatType being either
1452e35fdd936d133bf8a48de140a3c666897588a05shiqian// float or double.
1453e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename FloatType>
1454e35fdd936d133bf8a48de140a3c666897588a05shiqianclass FloatingEqMatcher {
1455e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1456e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Constructor for FloatingEqMatcher.
1457e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The matcher's input will be compared with rhs.  The matcher treats two
1458e35fdd936d133bf8a48de140a3c666897588a05shiqian  // NANs as equal if nan_eq_nan is true.  Otherwise, under IEEE standards,
1459e35fdd936d133bf8a48de140a3c666897588a05shiqian  // equality comparisons between NANs will always return false.
1460e35fdd936d133bf8a48de140a3c666897588a05shiqian  FloatingEqMatcher(FloatType rhs, bool nan_eq_nan) :
1461e35fdd936d133bf8a48de140a3c666897588a05shiqian    rhs_(rhs), nan_eq_nan_(nan_eq_nan) {}
1462e35fdd936d133bf8a48de140a3c666897588a05shiqian
1463e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Implements floating point equality matcher as a Matcher<T>.
1464e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1465e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<T> {
1466e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
1467e35fdd936d133bf8a48de140a3c666897588a05shiqian    Impl(FloatType rhs, bool nan_eq_nan) :
1468e35fdd936d133bf8a48de140a3c666897588a05shiqian      rhs_(rhs), nan_eq_nan_(nan_eq_nan) {}
1469e35fdd936d133bf8a48de140a3c666897588a05shiqian
1470821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    virtual bool MatchAndExplain(T value,
1471821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                                 MatchResultListener* /* listener */) const {
1472e35fdd936d133bf8a48de140a3c666897588a05shiqian      const FloatingPoint<FloatType> lhs(value), rhs(rhs_);
1473e35fdd936d133bf8a48de140a3c666897588a05shiqian
1474e35fdd936d133bf8a48de140a3c666897588a05shiqian      // Compares NaNs first, if nan_eq_nan_ is true.
1475e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (nan_eq_nan_ && lhs.is_nan()) {
1476e35fdd936d133bf8a48de140a3c666897588a05shiqian        return rhs.is_nan();
1477e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1478e35fdd936d133bf8a48de140a3c666897588a05shiqian
1479e35fdd936d133bf8a48de140a3c666897588a05shiqian      return lhs.AlmostEquals(rhs);
1480e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1481e35fdd936d133bf8a48de140a3c666897588a05shiqian
1482e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
1483e35fdd936d133bf8a48de140a3c666897588a05shiqian      // os->precision() returns the previously set precision, which we
1484e35fdd936d133bf8a48de140a3c666897588a05shiqian      // store to restore the ostream to its original configuration
1485e35fdd936d133bf8a48de140a3c666897588a05shiqian      // after outputting.
1486e35fdd936d133bf8a48de140a3c666897588a05shiqian      const ::std::streamsize old_precision = os->precision(
1487e35fdd936d133bf8a48de140a3c666897588a05shiqian          ::std::numeric_limits<FloatType>::digits10 + 2);
1488e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (FloatingPoint<FloatType>(rhs_).is_nan()) {
1489e35fdd936d133bf8a48de140a3c666897588a05shiqian        if (nan_eq_nan_) {
1490e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "is NaN";
1491e35fdd936d133bf8a48de140a3c666897588a05shiqian        } else {
1492e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "never matches";
1493e35fdd936d133bf8a48de140a3c666897588a05shiqian        }
1494e35fdd936d133bf8a48de140a3c666897588a05shiqian      } else {
1495e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is approximately " << rhs_;
1496e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1497e35fdd936d133bf8a48de140a3c666897588a05shiqian      os->precision(old_precision);
1498e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1499e35fdd936d133bf8a48de140a3c666897588a05shiqian
1500e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
1501e35fdd936d133bf8a48de140a3c666897588a05shiqian      // As before, get original precision.
1502e35fdd936d133bf8a48de140a3c666897588a05shiqian      const ::std::streamsize old_precision = os->precision(
1503e35fdd936d133bf8a48de140a3c666897588a05shiqian          ::std::numeric_limits<FloatType>::digits10 + 2);
1504e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (FloatingPoint<FloatType>(rhs_).is_nan()) {
1505e35fdd936d133bf8a48de140a3c666897588a05shiqian        if (nan_eq_nan_) {
1506e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "is not NaN";
1507e35fdd936d133bf8a48de140a3c666897588a05shiqian        } else {
1508e35fdd936d133bf8a48de140a3c666897588a05shiqian          *os << "is anything";
1509e35fdd936d133bf8a48de140a3c666897588a05shiqian        }
1510e35fdd936d133bf8a48de140a3c666897588a05shiqian      } else {
1511e35fdd936d133bf8a48de140a3c666897588a05shiqian        *os << "is not approximately " << rhs_;
1512e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1513e35fdd936d133bf8a48de140a3c666897588a05shiqian      // Restore original precision.
1514e35fdd936d133bf8a48de140a3c666897588a05shiqian      os->precision(old_precision);
1515e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1516e35fdd936d133bf8a48de140a3c666897588a05shiqian
1517e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
1518e35fdd936d133bf8a48de140a3c666897588a05shiqian    const FloatType rhs_;
1519e35fdd936d133bf8a48de140a3c666897588a05shiqian    const bool nan_eq_nan_;
152032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
152132de5f53763125925e078498250f7e73a88de9edzhanyong.wan    GTEST_DISALLOW_ASSIGN_(Impl);
1522e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
1523e35fdd936d133bf8a48de140a3c666897588a05shiqian
1524e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The following 3 type conversion operators allow FloatEq(rhs) and
1525e35fdd936d133bf8a48de140a3c666897588a05shiqian  // NanSensitiveFloatEq(rhs) to be used as a Matcher<float>, a
1526e35fdd936d133bf8a48de140a3c666897588a05shiqian  // Matcher<const float&>, or a Matcher<float&>, but nothing else.
1527e35fdd936d133bf8a48de140a3c666897588a05shiqian  // (While Google's C++ coding style doesn't allow arguments passed
1528e35fdd936d133bf8a48de140a3c666897588a05shiqian  // by non-const reference, we may see them in code not conforming to
1529e35fdd936d133bf8a48de140a3c666897588a05shiqian  // the style.  Therefore Google Mock needs to support them.)
1530e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<FloatType>() const {
1531e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<FloatType>(rhs_, nan_eq_nan_));
1532e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1533e35fdd936d133bf8a48de140a3c666897588a05shiqian
1534e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<const FloatType&>() const {
1535e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<const FloatType&>(rhs_, nan_eq_nan_));
1536e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1537e35fdd936d133bf8a48de140a3c666897588a05shiqian
1538e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<FloatType&>() const {
1539e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<FloatType&>(rhs_, nan_eq_nan_));
1540e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1541e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1542e35fdd936d133bf8a48de140a3c666897588a05shiqian  const FloatType rhs_;
1543e35fdd936d133bf8a48de140a3c666897588a05shiqian  const bool nan_eq_nan_;
154432de5f53763125925e078498250f7e73a88de9edzhanyong.wan
154532de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(FloatingEqMatcher);
1546e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1547e35fdd936d133bf8a48de140a3c666897588a05shiqian
1548e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Pointee(m) matcher for matching a pointer whose
1549e35fdd936d133bf8a48de140a3c666897588a05shiqian// pointee matches matcher m.  The pointer can be either raw or smart.
1550e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
1551e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PointeeMatcher {
1552e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1553e35fdd936d133bf8a48de140a3c666897588a05shiqian  explicit PointeeMatcher(const InnerMatcher& matcher) : matcher_(matcher) {}
1554e35fdd936d133bf8a48de140a3c666897588a05shiqian
1555e35fdd936d133bf8a48de140a3c666897588a05shiqian  // This type conversion operator template allows Pointee(m) to be
1556e35fdd936d133bf8a48de140a3c666897588a05shiqian  // used as a matcher for any pointer type whose pointee type is
1557e35fdd936d133bf8a48de140a3c666897588a05shiqian  // compatible with the inner matcher, where type Pointer can be
1558e35fdd936d133bf8a48de140a3c666897588a05shiqian  // either a raw pointer or a smart pointer.
1559e35fdd936d133bf8a48de140a3c666897588a05shiqian  //
1560e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The reason we do this instead of relying on
1561e35fdd936d133bf8a48de140a3c666897588a05shiqian  // MakePolymorphicMatcher() is that the latter is not flexible
1562e35fdd936d133bf8a48de140a3c666897588a05shiqian  // enough for implementing the DescribeTo() method of Pointee().
1563e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Pointer>
1564e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<Pointer>() const {
1565e35fdd936d133bf8a48de140a3c666897588a05shiqian    return MakeMatcher(new Impl<Pointer>(matcher_));
1566e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
156732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1568e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1569e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The monomorphic implementation that works for a particular pointer type.
1570e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename Pointer>
1571e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<Pointer> {
1572e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
1573e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan    typedef typename PointeeOf<GMOCK_REMOVE_CONST_(  // NOLINT
1574e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan        GMOCK_REMOVE_REFERENCE_(Pointer))>::type Pointee;
1575e35fdd936d133bf8a48de140a3c666897588a05shiqian
1576e35fdd936d133bf8a48de140a3c666897588a05shiqian    explicit Impl(const InnerMatcher& matcher)
1577e35fdd936d133bf8a48de140a3c666897588a05shiqian        : matcher_(MatcherCast<const Pointee&>(matcher)) {}
1578e35fdd936d133bf8a48de140a3c666897588a05shiqian
1579e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
1580e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "points to a value that ";
1581e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeTo(os);
1582e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1583e35fdd936d133bf8a48de140a3c666897588a05shiqian
1584e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
1585e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "does not point to a value that ";
1586e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeTo(os);
1587e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1588e35fdd936d133bf8a48de140a3c666897588a05shiqian
1589821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    virtual bool MatchAndExplain(Pointer pointer,
1590821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                                 MatchResultListener* listener) const {
1591e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (GetRawPointer(pointer) == NULL)
1592821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        return false;
1593e35fdd936d133bf8a48de140a3c666897588a05shiqian
1594821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      StringMatchResultListener inner_listener;
1595821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      const bool match = matcher_.MatchAndExplain(*pointer, &inner_listener);
1596821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      const internal::string s = inner_listener.str();
1597e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (s != "") {
1598821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "points to a value that " << s;
1599e35fdd936d133bf8a48de140a3c666897588a05shiqian      }
1600821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return match;
1601e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
160232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1603e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
1604e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<const Pointee&> matcher_;
160532de5f53763125925e078498250f7e73a88de9edzhanyong.wan
160632de5f53763125925e078498250f7e73a88de9edzhanyong.wan    GTEST_DISALLOW_ASSIGN_(Impl);
1607e35fdd936d133bf8a48de140a3c666897588a05shiqian  };
1608e35fdd936d133bf8a48de140a3c666897588a05shiqian
1609e35fdd936d133bf8a48de140a3c666897588a05shiqian  const InnerMatcher matcher_;
161032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
161132de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(PointeeMatcher);
1612e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1613e35fdd936d133bf8a48de140a3c666897588a05shiqian
1614e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Field() matcher for matching a field (i.e. member
1615e35fdd936d133bf8a48de140a3c666897588a05shiqian// variable) of an object.
1616e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename FieldType>
1617e35fdd936d133bf8a48de140a3c666897588a05shiqianclass FieldMatcher {
1618e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1619e35fdd936d133bf8a48de140a3c666897588a05shiqian  FieldMatcher(FieldType Class::*field,
1620e35fdd936d133bf8a48de140a3c666897588a05shiqian               const Matcher<const FieldType&>& matcher)
1621e35fdd936d133bf8a48de140a3c666897588a05shiqian      : field_(field), matcher_(matcher) {}
1622e35fdd936d133bf8a48de140a3c666897588a05shiqian
1623e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1624e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given field ";
1625e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeTo(os);
1626e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1627e35fdd936d133bf8a48de140a3c666897588a05shiqian
1628e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1629e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given field ";
1630e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeNegationTo(os);
1631e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1632e35fdd936d133bf8a48de140a3c666897588a05shiqian
1633db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  template <typename T>
1634db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const T& value, MatchResultListener* listener) const {
1635db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return MatchAndExplainImpl(
1636db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan        typename ::testing::internal::
1637db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan            is_pointer<GMOCK_REMOVE_CONST_(T)>::type(),
1638db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan        value, listener);
1639db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  }
1640db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan
1641db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan private:
1642db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  // The first argument of MatchAndExplainImpl() is needed to help
164318490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Symbian's C++ compiler choose which overload to use.  Its type is
164418490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // true_type iff the Field() matcher is used to match a pointer.
1645db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplainImpl(false_type /* is_not_pointer */, const Class& obj,
1646db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                           MatchResultListener* listener) const {
1647821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener inner_listener;
1648821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const bool match = matcher_.MatchAndExplain(obj.*field_, &inner_listener);
1649821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const internal::string s = inner_listener.str();
1650e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (s != "") {
1651821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << "the given field " << s;
1652e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1653821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return match;
1654e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1655e35fdd936d133bf8a48de140a3c666897588a05shiqian
1656db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplainImpl(true_type /* is_pointer */, const Class* p,
1657db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                           MatchResultListener* listener) const {
1658821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (p == NULL)
1659821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return false;
1660821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
1661821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // Since *p has a field, it must be a class/struct/union type and
1662821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // thus cannot be a pointer.  Therefore we pass false_type() as
1663821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // the first argument.
1664db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return MatchAndExplainImpl(false_type(), *p, listener);
1665e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
166632de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1667e35fdd936d133bf8a48de140a3c666897588a05shiqian  const FieldType Class::*field_;
1668e35fdd936d133bf8a48de140a3c666897588a05shiqian  const Matcher<const FieldType&> matcher_;
166932de5f53763125925e078498250f7e73a88de9edzhanyong.wan
167032de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(FieldMatcher);
1671e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1672e35fdd936d133bf8a48de140a3c666897588a05shiqian
1673e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the Property() matcher for matching a property
1674e35fdd936d133bf8a48de140a3c666897588a05shiqian// (i.e. return value of a getter method) of an object.
1675e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename PropertyType>
1676e35fdd936d133bf8a48de140a3c666897588a05shiqianclass PropertyMatcher {
1677e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1678e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The property may have a reference type, so 'const PropertyType&'
1679e35fdd936d133bf8a48de140a3c666897588a05shiqian  // may cause double references and fail to compile.  That's why we
1680e35fdd936d133bf8a48de140a3c666897588a05shiqian  // need GMOCK_REFERENCE_TO_CONST, which works regardless of
1681e35fdd936d133bf8a48de140a3c666897588a05shiqian  // PropertyType being a reference or not.
1682e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan  typedef GMOCK_REFERENCE_TO_CONST_(PropertyType) RefToConstProperty;
1683e35fdd936d133bf8a48de140a3c666897588a05shiqian
1684e35fdd936d133bf8a48de140a3c666897588a05shiqian  PropertyMatcher(PropertyType (Class::*property)() const,
1685e35fdd936d133bf8a48de140a3c666897588a05shiqian                  const Matcher<RefToConstProperty>& matcher)
1686e35fdd936d133bf8a48de140a3c666897588a05shiqian      : property_(property), matcher_(matcher) {}
1687e35fdd936d133bf8a48de140a3c666897588a05shiqian
1688e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeTo(::std::ostream* os) const {
1689e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given property ";
1690e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeTo(os);
1691e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1692e35fdd936d133bf8a48de140a3c666897588a05shiqian
1693e35fdd936d133bf8a48de140a3c666897588a05shiqian  void DescribeNegationTo(::std::ostream* os) const {
1694e35fdd936d133bf8a48de140a3c666897588a05shiqian    *os << "the given property ";
1695e35fdd936d133bf8a48de140a3c666897588a05shiqian    matcher_.DescribeNegationTo(os);
1696e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1697e35fdd936d133bf8a48de140a3c666897588a05shiqian
1698db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  template <typename T>
1699db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplain(const T&value, MatchResultListener* listener) const {
1700db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return MatchAndExplainImpl(
1701db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan        typename ::testing::internal::
1702db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan            is_pointer<GMOCK_REMOVE_CONST_(T)>::type(),
1703db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan        value, listener);
1704db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  }
1705db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan
1706db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan private:
1707db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  // The first argument of MatchAndExplainImpl() is needed to help
170818490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // Symbian's C++ compiler choose which overload to use.  Its type is
170918490653e80d484b4650d8799184fd1e021efc7bzhanyong.wan  // true_type iff the Property() matcher is used to match a pointer.
1710db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplainImpl(false_type /* is_not_pointer */, const Class& obj,
1711db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                           MatchResultListener* listener) const {
1712821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener inner_listener;
1713821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const bool match = matcher_.MatchAndExplain((obj.*property_)(),
1714821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                                                &inner_listener);
1715821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const internal::string s = inner_listener.str();
1716e35fdd936d133bf8a48de140a3c666897588a05shiqian    if (s != "") {
1717821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << "the given property " << s;
1718e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1719821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return match;
1720e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1721e35fdd936d133bf8a48de140a3c666897588a05shiqian
1722db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan  bool MatchAndExplainImpl(true_type /* is_pointer */, const Class* p,
1723db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan                           MatchResultListener* listener) const {
1724821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (p == NULL)
1725821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return false;
1726821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
1727821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // Since *p has a property method, it must be a class/struct/union
1728821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // type and thus cannot be a pointer.  Therefore we pass
1729821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // false_type() as the first argument.
1730db22c227826b82e1ad05d6c47facfef73c99e057zhanyong.wan    return MatchAndExplainImpl(false_type(), *p, listener);
1731e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
173232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1733e35fdd936d133bf8a48de140a3c666897588a05shiqian  PropertyType (Class::*property_)() const;
1734e35fdd936d133bf8a48de140a3c666897588a05shiqian  const Matcher<RefToConstProperty> matcher_;
173532de5f53763125925e078498250f7e73a88de9edzhanyong.wan
173632de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(PropertyMatcher);
1737e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1738e35fdd936d133bf8a48de140a3c666897588a05shiqian
1739e35fdd936d133bf8a48de140a3c666897588a05shiqian// Type traits specifying various features of different functors for ResultOf.
1740e35fdd936d133bf8a48de140a3c666897588a05shiqian// The default template specifies features for functor objects.
1741e35fdd936d133bf8a48de140a3c666897588a05shiqian// Functor classes have to typedef argument_type and result_type
1742e35fdd936d133bf8a48de140a3c666897588a05shiqian// to be compatible with ResultOf.
1743e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Functor>
1744e35fdd936d133bf8a48de140a3c666897588a05shiqianstruct CallableTraits {
1745e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename Functor::result_type ResultType;
1746e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef Functor StorageType;
1747e35fdd936d133bf8a48de140a3c666897588a05shiqian
174832de5f53763125925e078498250f7e73a88de9edzhanyong.wan  static void CheckIsValid(Functor /* functor */) {}
1749e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1750e35fdd936d133bf8a48de140a3c666897588a05shiqian  static ResultType Invoke(Functor f, T arg) { return f(arg); }
1751e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1752e35fdd936d133bf8a48de140a3c666897588a05shiqian
1753e35fdd936d133bf8a48de140a3c666897588a05shiqian// Specialization for function pointers.
1754e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename ArgType, typename ResType>
1755e35fdd936d133bf8a48de140a3c666897588a05shiqianstruct CallableTraits<ResType(*)(ArgType)> {
1756e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef ResType ResultType;
1757e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef ResType(*StorageType)(ArgType);
1758e35fdd936d133bf8a48de140a3c666897588a05shiqian
1759e35fdd936d133bf8a48de140a3c666897588a05shiqian  static void CheckIsValid(ResType(*f)(ArgType)) {
1760f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    GTEST_CHECK_(f != NULL)
1761e35fdd936d133bf8a48de140a3c666897588a05shiqian        << "NULL function pointer is passed into ResultOf().";
1762e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1763e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1764e35fdd936d133bf8a48de140a3c666897588a05shiqian  static ResType Invoke(ResType(*f)(ArgType), T arg) {
1765e35fdd936d133bf8a48de140a3c666897588a05shiqian    return (*f)(arg);
1766e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1767e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1768e35fdd936d133bf8a48de140a3c666897588a05shiqian
1769e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements the ResultOf() matcher for matching a return value of a
1770e35fdd936d133bf8a48de140a3c666897588a05shiqian// unary function of an object.
1771e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Callable>
1772e35fdd936d133bf8a48de140a3c666897588a05shiqianclass ResultOfMatcher {
1773e35fdd936d133bf8a48de140a3c666897588a05shiqian public:
1774e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename CallableTraits<Callable>::ResultType ResultType;
1775e35fdd936d133bf8a48de140a3c666897588a05shiqian
1776e35fdd936d133bf8a48de140a3c666897588a05shiqian  ResultOfMatcher(Callable callable, const Matcher<ResultType>& matcher)
1777e35fdd936d133bf8a48de140a3c666897588a05shiqian      : callable_(callable), matcher_(matcher) {
1778e35fdd936d133bf8a48de140a3c666897588a05shiqian    CallableTraits<Callable>::CheckIsValid(callable_);
1779e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1780e35fdd936d133bf8a48de140a3c666897588a05shiqian
1781e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1782e35fdd936d133bf8a48de140a3c666897588a05shiqian  operator Matcher<T>() const {
1783e35fdd936d133bf8a48de140a3c666897588a05shiqian    return Matcher<T>(new Impl<T>(callable_, matcher_));
1784e35fdd936d133bf8a48de140a3c666897588a05shiqian  }
1785e35fdd936d133bf8a48de140a3c666897588a05shiqian
1786e35fdd936d133bf8a48de140a3c666897588a05shiqian private:
1787e35fdd936d133bf8a48de140a3c666897588a05shiqian  typedef typename CallableTraits<Callable>::StorageType CallableStorageType;
1788e35fdd936d133bf8a48de140a3c666897588a05shiqian
1789e35fdd936d133bf8a48de140a3c666897588a05shiqian  template <typename T>
1790e35fdd936d133bf8a48de140a3c666897588a05shiqian  class Impl : public MatcherInterface<T> {
1791e35fdd936d133bf8a48de140a3c666897588a05shiqian   public:
1792e35fdd936d133bf8a48de140a3c666897588a05shiqian    Impl(CallableStorageType callable, const Matcher<ResultType>& matcher)
1793e35fdd936d133bf8a48de140a3c666897588a05shiqian        : callable_(callable), matcher_(matcher) {}
1794e35fdd936d133bf8a48de140a3c666897588a05shiqian
1795e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeTo(::std::ostream* os) const {
1796e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "result of the given callable ";
1797e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeTo(os);
1798e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1799e35fdd936d133bf8a48de140a3c666897588a05shiqian
1800e35fdd936d133bf8a48de140a3c666897588a05shiqian    virtual void DescribeNegationTo(::std::ostream* os) const {
1801e35fdd936d133bf8a48de140a3c666897588a05shiqian      *os << "result of the given callable ";
1802e35fdd936d133bf8a48de140a3c666897588a05shiqian      matcher_.DescribeNegationTo(os);
1803e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
1804e35fdd936d133bf8a48de140a3c666897588a05shiqian
1805821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    virtual bool MatchAndExplain(T obj, MatchResultListener* listener) const {
1806821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      StringMatchResultListener inner_listener;
1807821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      const bool match = matcher_.MatchAndExplain(
1808e35fdd936d133bf8a48de140a3c666897588a05shiqian          CallableTraits<Callable>::template Invoke<T>(callable_, obj),
1809821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan          &inner_listener);
1810821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
1811821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      const internal::string s = inner_listener.str();
1812e35fdd936d133bf8a48de140a3c666897588a05shiqian      if (s != "")
1813821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "result of the given callable " << s;
1814821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
1815821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return match;
1816e35fdd936d133bf8a48de140a3c666897588a05shiqian    }
181732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
1818e35fdd936d133bf8a48de140a3c666897588a05shiqian   private:
1819e35fdd936d133bf8a48de140a3c666897588a05shiqian    // Functors often define operator() as non-const method even though
1820e35fdd936d133bf8a48de140a3c666897588a05shiqian    // they are actualy stateless. But we need to use them even when
1821e35fdd936d133bf8a48de140a3c666897588a05shiqian    // 'this' is a const pointer. It's the user's responsibility not to
1822e35fdd936d133bf8a48de140a3c666897588a05shiqian    // use stateful callables with ResultOf(), which does't guarantee
1823e35fdd936d133bf8a48de140a3c666897588a05shiqian    // how many times the callable will be invoked.
1824e35fdd936d133bf8a48de140a3c666897588a05shiqian    mutable CallableStorageType callable_;
1825e35fdd936d133bf8a48de140a3c666897588a05shiqian    const Matcher<ResultType> matcher_;
182632de5f53763125925e078498250f7e73a88de9edzhanyong.wan
182732de5f53763125925e078498250f7e73a88de9edzhanyong.wan    GTEST_DISALLOW_ASSIGN_(Impl);
1828e35fdd936d133bf8a48de140a3c666897588a05shiqian  };  // class Impl
1829e35fdd936d133bf8a48de140a3c666897588a05shiqian
1830e35fdd936d133bf8a48de140a3c666897588a05shiqian  const CallableStorageType callable_;
1831e35fdd936d133bf8a48de140a3c666897588a05shiqian  const Matcher<ResultType> matcher_;
183232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
183332de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(ResultOfMatcher);
1834e35fdd936d133bf8a48de140a3c666897588a05shiqian};
1835e35fdd936d133bf8a48de140a3c666897588a05shiqian
18366a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// Implements an equality matcher for any STL-style container whose elements
18376a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// support ==. This matcher is like Eq(), but its failure explanations provide
18386a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// more detailed information that is useful when the container is used as a set.
18396a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// The failure message reports elements that are in one of the operands but not
18406a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// the other. The failure messages do not report duplicate or out-of-order
18416a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// elements in the containers (which don't properly matter to sets, but can
18426a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// occur if the containers are vectors or lists, for example).
18436a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan//
18446a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// Uses the container's const_iterator, value_type, operator ==,
18456a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// begin(), and end().
18466a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wantemplate <typename Container>
18476a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wanclass ContainerEqMatcher {
18486a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan public:
1849b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef internal::StlContainerView<Container> View;
1850b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::type StlContainer;
1851b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::const_reference StlContainerReference;
1852b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1853b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // We make a copy of rhs in case the elements in it are modified
1854b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // after this matcher is created.
1855b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  explicit ContainerEqMatcher(const Container& rhs) : rhs_(View::Copy(rhs)) {
1856b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // Makes sure the user doesn't instantiate this class template
1857b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // with a const or reference type.
1858b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    testing::StaticAssertTypeEq<Container,
1859b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(Container))>();
1860b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1861b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
18626a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  void DescribeTo(::std::ostream* os) const {
18636a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    *os << "equals ";
1864b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    UniversalPrinter<StlContainer>::Print(rhs_, os);
18656a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  }
18666a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  void DescribeNegationTo(::std::ostream* os) const {
18676a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    *os << "does not equal ";
1868b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    UniversalPrinter<StlContainer>::Print(rhs_, os);
18696a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  }
18706a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
1871b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  template <typename LhsContainer>
1872e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan  bool MatchAndExplain(const LhsContainer& lhs,
1873e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan                       MatchResultListener* listener) const {
1874b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // GMOCK_REMOVE_CONST_() is needed to work around an MSVC 8.0 bug
1875b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    // that causes LhsContainer to be a const type sometimes.
1876b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    typedef internal::StlContainerView<GMOCK_REMOVE_CONST_(LhsContainer)>
1877b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan        LhsView;
1878b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    typedef typename LhsView::type LhsStlContainer;
1879b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    StlContainerReference lhs_stl_container = LhsView::ConstReference(lhs);
1880e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan    if (lhs_stl_container == rhs_)
1881e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan      return true;
1882b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1883e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan    ::std::ostream* const os = listener->stream();
1884e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan    if (os != NULL) {
1885e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan      // Something is different. Check for missing values first.
1886e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan      bool printed_header = false;
1887e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan      for (typename LhsStlContainer::const_iterator it =
1888e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan               lhs_stl_container.begin();
1889e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan           it != lhs_stl_container.end(); ++it) {
1890e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan        if (internal::ArrayAwareFind(rhs_.begin(), rhs_.end(), *it) ==
1891e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            rhs_.end()) {
1892e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan          if (printed_header) {
1893e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            *os << ", ";
1894e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan          } else {
1895e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            *os << "Only in actual: ";
1896e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            printed_header = true;
1897e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan          }
18986953a725fc2151eff18078f8315d92811cd4d90ezhanyong.wan          UniversalPrinter<typename LhsStlContainer::value_type>::
18996953a725fc2151eff18078f8315d92811cd4d90ezhanyong.wan              Print(*it, os);
19006a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        }
19016a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan      }
19026a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
1903e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan      // Now check for extra values.
1904e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan      bool printed_header2 = false;
1905e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan      for (typename StlContainer::const_iterator it = rhs_.begin();
1906e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan           it != rhs_.end(); ++it) {
1907e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan        if (internal::ArrayAwareFind(
1908e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan                lhs_stl_container.begin(), lhs_stl_container.end(), *it) ==
1909e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            lhs_stl_container.end()) {
1910e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan          if (printed_header2) {
1911e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            *os << ", ";
1912e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan          } else {
1913e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            *os << (printed_header ? "; not" : "Not") << " in actual: ";
1914e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan            printed_header2 = true;
1915e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan          }
1916e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan          UniversalPrinter<typename StlContainer::value_type>::Print(*it, os);
19176a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan        }
19186a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan      }
19196a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    }
1920e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan
1921e122e457a6e890faac399c1f86d87cc8d3177ac2zhanyong.wan    return false;
19226a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan  }
192332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
19246a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan private:
1925b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  const StlContainer rhs_;
192632de5f53763125925e078498250f7e73a88de9edzhanyong.wan
192732de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(ContainerEqMatcher);
19286a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan};
19296a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
1930b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Implements Contains(element_matcher) for the given argument type Container.
1931b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename Container>
1932b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wanclass ContainsMatcherImpl : public MatcherInterface<Container> {
1933b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan public:
1934b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(Container)) RawContainer;
1935b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef StlContainerView<RawContainer> View;
1936b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::type StlContainer;
1937b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename View::const_reference StlContainerReference;
1938b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef typename StlContainer::value_type Element;
1939b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1940b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  template <typename InnerMatcher>
1941b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  explicit ContainsMatcherImpl(InnerMatcher inner_matcher)
1942b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      : inner_matcher_(
1943b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan          testing::SafeMatcherCast<const Element&>(inner_matcher)) {}
1944b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1945b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // Describes what this matcher does.
1946b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
1947b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    *os << "contains at least one element that ";
1948b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    inner_matcher_.DescribeTo(os);
1949b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1950b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1951b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // Describes what the negation of this matcher does.
1952b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
1953b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    *os << "doesn't contain any element that ";
1954b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    inner_matcher_.DescribeTo(os);
1955b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1956b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1957821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(Container container,
1958821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                               MatchResultListener* listener) const {
1959b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    StlContainerReference stl_container = View::ConstReference(container);
1960821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    size_t i = 0;
1961821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    for (typename StlContainer::const_iterator it = stl_container.begin();
1962821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan         it != stl_container.end(); ++it, ++i) {
1963b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      if (inner_matcher_.Matches(*it)) {
1964821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "element " << i << " matches";
1965821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        return true;
1966b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan      }
1967b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    }
1968821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return false;
1969b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1970b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1971b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan private:
1972b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  const Matcher<const Element&> inner_matcher_;
197332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
197432de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(ContainsMatcherImpl);
1975b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan};
1976b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1977b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Implements polymorphic Contains(element_matcher).
1978b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename M>
1979b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wanclass ContainsMatcher {
1980b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan public:
1981b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  explicit ContainsMatcher(M m) : inner_matcher_(m) {}
1982b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1983b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  template <typename Container>
1984b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  operator Matcher<Container>() const {
1985b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan    return MakeMatcher(new ContainsMatcherImpl<Container>(inner_matcher_));
1986b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  }
1987b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1988b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan private:
1989b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  const M inner_matcher_;
199032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
199132de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(ContainsMatcher);
1992b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan};
1993b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
1994b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// Implements Key(inner_matcher) for the given argument pair type.
1995b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// Key(inner_matcher) matches an std::pair whose 'first' field matches
1996b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// inner_matcher.  For example, Contains(Key(Ge(5))) can be used to match an
1997b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// std::map that contains at least one element whose key is >= 5.
1998b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wantemplate <typename PairType>
1999b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wanclass KeyMatcherImpl : public MatcherInterface<PairType> {
2000b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan public:
2001b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(PairType)) RawPairType;
2002b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  typedef typename RawPairType::first_type KeyType;
2003b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2004b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  template <typename InnerMatcher>
2005b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  explicit KeyMatcherImpl(InnerMatcher inner_matcher)
2006b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan      : inner_matcher_(
2007b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan          testing::SafeMatcherCast<const KeyType&>(inner_matcher)) {
2008b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  }
2009b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2010b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  // Returns true iff 'key_value.first' (the key) matches the inner matcher.
2011821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(PairType key_value,
2012821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                               MatchResultListener* listener) const {
2013821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return inner_matcher_.MatchAndExplain(key_value.first, listener);
2014b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  }
2015b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2016b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  // Describes what this matcher does.
2017b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
2018b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan    *os << "has a key that ";
2019b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan    inner_matcher_.DescribeTo(os);
2020b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  }
2021b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2022b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  // Describes what the negation of this matcher does.
2023b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
2024b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan    *os << "doesn't have a key that ";
2025b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan    inner_matcher_.DescribeTo(os);
2026b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  }
2027b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2028b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan private:
2029b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  const Matcher<const KeyType&> inner_matcher_;
203032de5f53763125925e078498250f7e73a88de9edzhanyong.wan
203132de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(KeyMatcherImpl);
2032b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan};
2033b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2034b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// Implements polymorphic Key(matcher_for_key).
2035b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wantemplate <typename M>
2036b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wanclass KeyMatcher {
2037b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan public:
2038b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  explicit KeyMatcher(M m) : matcher_for_key_(m) {}
2039b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2040b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  template <typename PairType>
2041b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  operator Matcher<PairType>() const {
2042b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan    return MakeMatcher(new KeyMatcherImpl<PairType>(matcher_for_key_));
2043b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  }
2044b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2045b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan private:
2046b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  const M matcher_for_key_;
204732de5f53763125925e078498250f7e73a88de9edzhanyong.wan
204832de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(KeyMatcher);
2049b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan};
2050b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2051f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// Implements Pair(first_matcher, second_matcher) for the given argument pair
2052f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// type with its two matchers. See Pair() function below.
2053f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wantemplate <typename PairType>
2054f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wanclass PairMatcherImpl : public MatcherInterface<PairType> {
2055f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan public:
2056f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(PairType)) RawPairType;
2057f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  typedef typename RawPairType::first_type FirstType;
2058f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  typedef typename RawPairType::second_type SecondType;
2059f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2060f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  template <typename FirstMatcher, typename SecondMatcher>
2061f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  PairMatcherImpl(FirstMatcher first_matcher, SecondMatcher second_matcher)
2062f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan      : first_matcher_(
2063f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan            testing::SafeMatcherCast<const FirstType&>(first_matcher)),
2064f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan        second_matcher_(
2065f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan            testing::SafeMatcherCast<const SecondType&>(second_matcher)) {
2066f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  }
2067f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2068f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  // Describes what this matcher does.
2069f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
2070f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    *os << "has a first field that ";
2071f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    first_matcher_.DescribeTo(os);
2072f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    *os << ", and has a second field that ";
2073f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    second_matcher_.DescribeTo(os);
2074f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  }
2075f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2076f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  // Describes what the negation of this matcher does.
2077f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
2078f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    *os << "has a first field that ";
2079f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    first_matcher_.DescribeNegationTo(os);
2080f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    *os << ", or has a second field that ";
2081f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    second_matcher_.DescribeNegationTo(os);
2082f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  }
2083f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2084821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // Returns true iff 'a_pair.first' matches first_matcher and 'a_pair.second'
2085821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  // matches second_matcher.
2086821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(PairType a_pair,
2087821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                               MatchResultListener* listener) const {
2088821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener1;
2089821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const bool match1 = first_matcher_.MatchAndExplain(a_pair.first,
2090821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                                                       &listener1);
2091821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    internal::string s1 = listener1.str();
2092f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    if (s1 != "") {
2093821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      s1 = "the first field " + s1;
2094821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
2095821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (!match1) {
2096821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << s1;
2097821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return false;
2098f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    }
2099f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2100821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    StringMatchResultListener listener2;
2101821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const bool match2 = second_matcher_.MatchAndExplain(a_pair.second,
2102821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                                                        &listener2);
2103821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    internal::string s2 = listener2.str();
2104f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    if (s2 != "") {
2105821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      s2 = "the second field " + s2;
2106821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
2107821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (!match2) {
2108821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << s2;
2109821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return false;
2110f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    }
2111f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2112821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    *listener << s1;
2113f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    if (s1 != "" && s2 != "") {
2114821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      *listener << ", and ";
2115f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    }
2116821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    *listener << s2;
2117821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return true;
2118f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  }
2119f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2120f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan private:
2121f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  const Matcher<const FirstType&> first_matcher_;
2122f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  const Matcher<const SecondType&> second_matcher_;
212332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
212432de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(PairMatcherImpl);
2125f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan};
2126f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2127f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// Implements polymorphic Pair(first_matcher, second_matcher).
2128f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wantemplate <typename FirstMatcher, typename SecondMatcher>
2129f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wanclass PairMatcher {
2130f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan public:
2131f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  PairMatcher(FirstMatcher first_matcher, SecondMatcher second_matcher)
2132f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan      : first_matcher_(first_matcher), second_matcher_(second_matcher) {}
2133f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2134f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  template <typename PairType>
2135f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  operator Matcher<PairType> () const {
2136f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan    return MakeMatcher(
2137f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan        new PairMatcherImpl<PairType>(
2138f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan            first_matcher_, second_matcher_));
2139f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  }
2140f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2141f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan private:
2142f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  const FirstMatcher first_matcher_;
2143f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  const SecondMatcher second_matcher_;
214432de5f53763125925e078498250f7e73a88de9edzhanyong.wan
214532de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(PairMatcher);
2146f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan};
2147f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
21481afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// Implements ElementsAre() and ElementsAreArray().
21491afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wantemplate <typename Container>
21501afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanclass ElementsAreMatcherImpl : public MatcherInterface<Container> {
21511afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan public:
21521afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(Container)) RawContainer;
21531afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  typedef internal::StlContainerView<RawContainer> View;
21541afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  typedef typename View::type StlContainer;
21551afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  typedef typename View::const_reference StlContainerReference;
21561afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  typedef typename StlContainer::value_type Element;
21571afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
21581afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // Constructs the matcher from a sequence of element values or
21591afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // element matchers.
21601afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  template <typename InputIter>
216132de5f53763125925e078498250f7e73a88de9edzhanyong.wan  ElementsAreMatcherImpl(InputIter first, size_t a_count) {
216232de5f53763125925e078498250f7e73a88de9edzhanyong.wan    matchers_.reserve(a_count);
21631afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    InputIter it = first;
216432de5f53763125925e078498250f7e73a88de9edzhanyong.wan    for (size_t i = 0; i != a_count; ++i, ++it) {
21651afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      matchers_.push_back(MatcherCast<const Element&>(*it));
21661afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    }
21671afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  }
21681afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
21691afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // Describes what this matcher does.
21701afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  virtual void DescribeTo(::std::ostream* os) const {
21711afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    if (count() == 0) {
21721afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      *os << "is empty";
21731afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    } else if (count() == 1) {
21741afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      *os << "has 1 element that ";
21751afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      matchers_[0].DescribeTo(os);
21761afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    } else {
21771afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      *os << "has " << Elements(count()) << " where\n";
21781afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      for (size_t i = 0; i != count(); ++i) {
21791afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        *os << "element " << i << " ";
21801afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        matchers_[i].DescribeTo(os);
21811afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        if (i + 1 < count()) {
21821afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan          *os << ",\n";
21831afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        }
21841afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      }
21851afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    }
21861afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  }
21871afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
21881afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // Describes what the negation of this matcher does.
21891afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  virtual void DescribeNegationTo(::std::ostream* os) const {
21901afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    if (count() == 0) {
21911afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      *os << "is not empty";
21921afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      return;
21931afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    }
21941afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
21951afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    *os << "does not have " << Elements(count()) << ", or\n";
21961afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    for (size_t i = 0; i != count(); ++i) {
21971afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      *os << "element " << i << " ";
21981afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      matchers_[i].DescribeNegationTo(os);
21991afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      if (i + 1 < count()) {
22001afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        *os << ", or\n";
22011afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      }
22021afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    }
22031afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  }
22041afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
2205821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  virtual bool MatchAndExplain(Container container,
2206821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan                               MatchResultListener* listener) const {
22071afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    StlContainerReference stl_container = View::ConstReference(container);
2208821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    const size_t actual_count = stl_container.size();
2209821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    if (actual_count != count()) {
2210821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      // The element count doesn't match.  If the container is empty,
2211821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      // there's no need to explain anything as Google Mock already
2212821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      // prints the empty container.  Otherwise we just need to show
2213821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      // how many elements there actually are.
2214821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      if (actual_count != 0) {
2215821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "has " << Elements(actual_count);
22161afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      }
2217821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      return false;
2218821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
22191afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
2220821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    typename StlContainer::const_iterator it = stl_container.begin();
2221821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // explanations[i] is the explanation of the element at index i.
2222821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    std::vector<internal::string> explanations(count());
2223821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    for (size_t i = 0; i != count();  ++it, ++i) {
2224821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      StringMatchResultListener s;
2225821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      if (matchers_[i].MatchAndExplain(*it, &s)) {
2226821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        explanations[i] = s.str();
2227821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      } else {
2228821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        // The container has the right size but the i-th element
2229821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        // doesn't match its expectation.
2230821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "element " << i << " doesn't match";
2231821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
2232821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        StreamInParensAsNeeded(s.str(), listener->stream());
2233821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        return false;
2234821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      }
2235821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    }
22361afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
2237821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // Every element matches its expectation.  We need to explain why
2238821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    // (the obvious ones can be skipped).
22391afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
2240821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    bool reason_printed = false;
2241821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    for (size_t i = 0; i != count(); ++i) {
2242821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      const internal::string& s = explanations[i];
2243821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      if (!s.empty()) {
2244821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        if (reason_printed) {
2245821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan          *listener << ",\n";
22461afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        }
2247821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        *listener << "element " << i << " " << s;
2248821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan        reason_printed = true;
22491afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      }
22501afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    }
2251821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan
2252821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan    return true;
22531afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  }
22541afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22551afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan private:
22561afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  static Message Elements(size_t count) {
22571afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    return Message() << count << (count == 1 ? " element" : " elements");
22581afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  }
22591afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22601afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  size_t count() const { return matchers_.size(); }
22611afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  std::vector<Matcher<const Element&> > matchers_;
226232de5f53763125925e078498250f7e73a88de9edzhanyong.wan
226332de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(ElementsAreMatcherImpl);
22641afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan};
22651afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22661afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// Implements ElementsAre() of 0 arguments.
22671afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanclass ElementsAreMatcher0 {
22681afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan public:
22691afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  ElementsAreMatcher0() {}
22701afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22711afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  template <typename Container>
22721afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  operator Matcher<Container>() const {
22731afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(Container))
22741afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        RawContainer;
22751afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    typedef typename internal::StlContainerView<RawContainer>::type::value_type
22761afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        Element;
22771afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22781afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    const Matcher<const Element&>* const matchers = NULL;
22791afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    return MakeMatcher(new ElementsAreMatcherImpl<Container>(matchers, 0));
22801afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  }
22811afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan};
22821afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22831afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// Implements ElementsAreArray().
22841afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wantemplate <typename T>
22851afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanclass ElementsAreArrayMatcher {
22861afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan public:
22871afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  ElementsAreArrayMatcher(const T* first, size_t count) :
22881afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      first_(first), count_(count) {}
22891afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22901afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  template <typename Container>
22911afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  operator Matcher<Container>() const {
22921afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    typedef GMOCK_REMOVE_CONST_(GMOCK_REMOVE_REFERENCE_(Container))
22931afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        RawContainer;
22941afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    typedef typename internal::StlContainerView<RawContainer>::type::value_type
22951afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan        Element;
22961afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
22971afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    return MakeMatcher(new ElementsAreMatcherImpl<Container>(first_, count_));
22981afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  }
22991afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
23001afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan private:
23011afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  const T* const first_;
23021afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  const size_t count_;
230332de5f53763125925e078498250f7e73a88de9edzhanyong.wan
230432de5f53763125925e078498250f7e73a88de9edzhanyong.wan  GTEST_DISALLOW_ASSIGN_(ElementsAreArrayMatcher);
23051afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan};
23061afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
23071afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// Constants denoting interpolations in a matcher description string.
23081afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanconst int kTupleInterpolation = -1;    // "%(*)s"
23091afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanconst int kPercentInterpolation = -2;  // "%%"
23101afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanconst int kInvalidInterpolation = -3;  // "%" followed by invalid text
23111afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
23121afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// Records the location and content of an interpolation.
23131afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanstruct Interpolation {
23141afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  Interpolation(const char* start, const char* end, int param)
23151afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan      : start_pos(start), end_pos(end), param_index(param) {}
23161afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
23171afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // Points to the start of the interpolation (the '%' character).
23181afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  const char* start_pos;
23191afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // Points to the first character after the interpolation.
23201afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  const char* end_pos;
23211afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // 0-based index of the interpolated matcher parameter;
23221afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  // kTupleInterpolation for "%(*)s"; kPercentInterpolation for "%%".
23231afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan  int param_index;
23241afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan};
23251afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
23261afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wantypedef ::std::vector<Interpolation> Interpolations;
23271afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
23281afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// Parses a matcher description string and returns a vector of
23291afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// interpolations that appear in the string; generates non-fatal
23301afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// failures iff 'description' is an invalid matcher description.
23311afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// 'param_names' is a NULL-terminated array of parameter names in the
23321afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// order they appear in the MATCHER_P*() parameter list.
23331afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanInterpolations ValidateMatcherDescription(
23341afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    const char* param_names[], const char* description);
23351afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
23361afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// Returns the actual matcher description, given the matcher name,
23371afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// user-supplied description template string, interpolations in the
23381afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan// string, and the printed values of the matcher parameters.
23391afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wanstring FormatMatcherDescription(
23401afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    const char* matcher_name, const char* description,
23411afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan    const Interpolations& interp, const Strings& param_values);
23421afe1c7971e649ae8b85a39fc1ab6ac595e1dd58zhanyong.wan
2343e35fdd936d133bf8a48de140a3c666897588a05shiqian}  // namespace internal
2344e35fdd936d133bf8a48de140a3c666897588a05shiqian
2345e35fdd936d133bf8a48de140a3c666897588a05shiqian// Implements MatcherCast().
2346e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T, typename M>
2347e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> MatcherCast(M matcher) {
2348e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::MatcherCastImpl<T, M>::Cast(matcher);
2349e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2350e35fdd936d133bf8a48de140a3c666897588a05shiqian
2351e35fdd936d133bf8a48de140a3c666897588a05shiqian// _ is a matcher that matches anything of any type.
2352e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2353e35fdd936d133bf8a48de140a3c666897588a05shiqian// This definition is fine as:
2354e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2355e35fdd936d133bf8a48de140a3c666897588a05shiqian//   1. The C++ standard permits using the name _ in a namespace that
2356e35fdd936d133bf8a48de140a3c666897588a05shiqian//      is not the global namespace or ::std.
2357e35fdd936d133bf8a48de140a3c666897588a05shiqian//   2. The AnythingMatcher class has no data member or constructor,
2358e35fdd936d133bf8a48de140a3c666897588a05shiqian//      so it's OK to create global variables of this type.
2359e35fdd936d133bf8a48de140a3c666897588a05shiqian//   3. c-style has approved of using _ in this case.
2360e35fdd936d133bf8a48de140a3c666897588a05shiqianconst internal::AnythingMatcher _ = {};
2361e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value of the given type T.
2362e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
2363e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> A() { return MakeMatcher(new internal::AnyMatcherImpl<T>()); }
2364e35fdd936d133bf8a48de140a3c666897588a05shiqian
2365e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value of the given type T.
2366e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
2367e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<T> An() { return A<T>(); }
2368e35fdd936d133bf8a48de140a3c666897588a05shiqian
2369e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything equal to x.
2370e35fdd936d133bf8a48de140a3c666897588a05shiqian// Note: if the parameter of Eq() were declared as const T&, Eq("foo")
2371e35fdd936d133bf8a48de140a3c666897588a05shiqian// wouldn't compile.
2372e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
2373e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EqMatcher<T> Eq(T x) { return internal::EqMatcher<T>(x); }
2374e35fdd936d133bf8a48de140a3c666897588a05shiqian
2375e35fdd936d133bf8a48de140a3c666897588a05shiqian// Constructs a Matcher<T> from a 'value' of type T.  The constructed
2376e35fdd936d133bf8a48de140a3c666897588a05shiqian// matcher matches any value that's equal to 'value'.
2377e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
2378e35fdd936d133bf8a48de140a3c666897588a05shiqianMatcher<T>::Matcher(T value) { *this = Eq(value); }
2379e35fdd936d133bf8a48de140a3c666897588a05shiqian
2380e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a monomorphic matcher that matches anything with type Lhs
2381e35fdd936d133bf8a48de140a3c666897588a05shiqian// and equal to rhs.  A user may need to use this instead of Eq(...)
2382e35fdd936d133bf8a48de140a3c666897588a05shiqian// in order to resolve an overloading ambiguity.
2383e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2384e35fdd936d133bf8a48de140a3c666897588a05shiqian// TypedEq<T>(x) is just a convenient short-hand for Matcher<T>(Eq(x))
2385e35fdd936d133bf8a48de140a3c666897588a05shiqian// or Matcher<T>(x), but more readable than the latter.
2386e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2387e35fdd936d133bf8a48de140a3c666897588a05shiqian// We could define similar monomorphic matchers for other comparison
2388e35fdd936d133bf8a48de140a3c666897588a05shiqian// operations (e.g. TypedLt, TypedGe, and etc), but decided not to do
2389e35fdd936d133bf8a48de140a3c666897588a05shiqian// it yet as those are used much less than Eq() in practice.  A user
2390e35fdd936d133bf8a48de140a3c666897588a05shiqian// can always write Matcher<T>(Lt(5)) to be explicit about the type,
2391e35fdd936d133bf8a48de140a3c666897588a05shiqian// for example.
2392e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Lhs, typename Rhs>
2393e35fdd936d133bf8a48de140a3c666897588a05shiqianinline Matcher<Lhs> TypedEq(const Rhs& rhs) { return Eq(rhs); }
2394e35fdd936d133bf8a48de140a3c666897588a05shiqian
2395e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything >= x.
2396e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
2397e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::GeMatcher<Rhs> Ge(Rhs x) {
2398e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::GeMatcher<Rhs>(x);
2399e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2400e35fdd936d133bf8a48de140a3c666897588a05shiqian
2401e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything > x.
2402e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
2403e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::GtMatcher<Rhs> Gt(Rhs x) {
2404e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::GtMatcher<Rhs>(x);
2405e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2406e35fdd936d133bf8a48de140a3c666897588a05shiqian
2407e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything <= x.
2408e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
2409e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::LeMatcher<Rhs> Le(Rhs x) {
2410e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::LeMatcher<Rhs>(x);
2411e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2412e35fdd936d133bf8a48de140a3c666897588a05shiqian
2413e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything < x.
2414e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
2415e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::LtMatcher<Rhs> Lt(Rhs x) {
2416e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::LtMatcher<Rhs>(x);
2417e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2418e35fdd936d133bf8a48de140a3c666897588a05shiqian
2419e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches anything != x.
2420e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Rhs>
2421e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::NeMatcher<Rhs> Ne(Rhs x) {
2422e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::NeMatcher<Rhs>(x);
2423e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2424e35fdd936d133bf8a48de140a3c666897588a05shiqian
24252d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan// Creates a polymorphic matcher that matches any NULL pointer.
24262d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.waninline PolymorphicMatcher<internal::IsNullMatcher > IsNull() {
24272d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan  return MakePolymorphicMatcher(internal::IsNullMatcher());
24282d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan}
24292d970ee3bad530703ff24bc3a011390b45cdd293zhanyong.wan
2430e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches any non-NULL pointer.
2431e35fdd936d133bf8a48de140a3c666897588a05shiqian// This is convenient as Not(NULL) doesn't compile (the compiler
2432e35fdd936d133bf8a48de140a3c666897588a05shiqian// thinks that that expression is comparing a pointer with an integer).
2433e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::NotNullMatcher > NotNull() {
2434e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::NotNullMatcher());
2435e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2436e35fdd936d133bf8a48de140a3c666897588a05shiqian
2437e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches any argument that
2438e35fdd936d133bf8a48de140a3c666897588a05shiqian// references variable x.
2439e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename T>
2440e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::RefMatcher<T&> Ref(T& x) {  // NOLINT
2441e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::RefMatcher<T&>(x);
2442e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2443e35fdd936d133bf8a48de140a3c666897588a05shiqian
2444e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any double argument approximately
2445e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, where two NANs are considered unequal.
2446e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<double> DoubleEq(double rhs) {
2447e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<double>(rhs, false);
2448e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2449e35fdd936d133bf8a48de140a3c666897588a05shiqian
2450e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any double argument approximately
2451e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, including NaN values when rhs is NaN.
2452e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<double> NanSensitiveDoubleEq(double rhs) {
2453e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<double>(rhs, true);
2454e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2455e35fdd936d133bf8a48de140a3c666897588a05shiqian
2456e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any float argument approximately
2457e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, where two NANs are considered unequal.
2458e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<float> FloatEq(float rhs) {
2459e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<float>(rhs, false);
2460e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2461e35fdd936d133bf8a48de140a3c666897588a05shiqian
2462e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any double argument approximately
2463e35fdd936d133bf8a48de140a3c666897588a05shiqian// equal to rhs, including NaN values when rhs is NaN.
2464e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::FloatingEqMatcher<float> NanSensitiveFloatEq(float rhs) {
2465e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::FloatingEqMatcher<float>(rhs, true);
2466e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2467e35fdd936d133bf8a48de140a3c666897588a05shiqian
2468e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches a pointer (raw or smart) that points
2469e35fdd936d133bf8a48de140a3c666897588a05shiqian// to a value that matches inner_matcher.
2470e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
2471e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::PointeeMatcher<InnerMatcher> Pointee(
2472e35fdd936d133bf8a48de140a3c666897588a05shiqian    const InnerMatcher& inner_matcher) {
2473e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::PointeeMatcher<InnerMatcher>(inner_matcher);
2474e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2475e35fdd936d133bf8a48de140a3c666897588a05shiqian
2476e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches an object whose given field matches
2477e35fdd936d133bf8a48de140a3c666897588a05shiqian// 'matcher'.  For example,
2478e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Field(&Foo::number, Ge(5))
2479e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a Foo object x iff x.number >= 5.
2480e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename FieldType, typename FieldMatcher>
2481e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<
2482e35fdd936d133bf8a48de140a3c666897588a05shiqian  internal::FieldMatcher<Class, FieldType> > Field(
2483e35fdd936d133bf8a48de140a3c666897588a05shiqian    FieldType Class::*field, const FieldMatcher& matcher) {
2484e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(
2485e35fdd936d133bf8a48de140a3c666897588a05shiqian      internal::FieldMatcher<Class, FieldType>(
2486e35fdd936d133bf8a48de140a3c666897588a05shiqian          field, MatcherCast<const FieldType&>(matcher)));
2487e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The call to MatcherCast() is required for supporting inner
2488e35fdd936d133bf8a48de140a3c666897588a05shiqian  // matchers of compatible types.  For example, it allows
2489e35fdd936d133bf8a48de140a3c666897588a05shiqian  //   Field(&Foo::bar, m)
2490e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to compile where bar is an int32 and m is a matcher for int64.
2491e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2492e35fdd936d133bf8a48de140a3c666897588a05shiqian
2493e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches an object whose given property
2494e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches 'matcher'.  For example,
2495e35fdd936d133bf8a48de140a3c666897588a05shiqian//   Property(&Foo::str, StartsWith("hi"))
2496e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a Foo object x iff x.str() starts with "hi".
2497e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Class, typename PropertyType, typename PropertyMatcher>
2498e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<
2499e35fdd936d133bf8a48de140a3c666897588a05shiqian  internal::PropertyMatcher<Class, PropertyType> > Property(
2500e35fdd936d133bf8a48de140a3c666897588a05shiqian    PropertyType (Class::*property)() const, const PropertyMatcher& matcher) {
2501e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(
2502e35fdd936d133bf8a48de140a3c666897588a05shiqian      internal::PropertyMatcher<Class, PropertyType>(
2503e35fdd936d133bf8a48de140a3c666897588a05shiqian          property,
2504e0d051ea64dd5f32d5b6af9831747d1acb2a9c40zhanyong.wan          MatcherCast<GMOCK_REFERENCE_TO_CONST_(PropertyType)>(matcher)));
2505e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The call to MatcherCast() is required for supporting inner
2506e35fdd936d133bf8a48de140a3c666897588a05shiqian  // matchers of compatible types.  For example, it allows
2507e35fdd936d133bf8a48de140a3c666897588a05shiqian  //   Property(&Foo::bar, m)
2508e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to compile where bar() returns an int32 and m is a matcher for int64.
2509e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2510e35fdd936d133bf8a48de140a3c666897588a05shiqian
2511e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches an object iff the result of applying
2512e35fdd936d133bf8a48de140a3c666897588a05shiqian// a callable to x matches 'matcher'.
2513e35fdd936d133bf8a48de140a3c666897588a05shiqian// For example,
2514e35fdd936d133bf8a48de140a3c666897588a05shiqian//   ResultOf(f, StartsWith("hi"))
2515e35fdd936d133bf8a48de140a3c666897588a05shiqian// matches a Foo object x iff f(x) starts with "hi".
2516e35fdd936d133bf8a48de140a3c666897588a05shiqian// callable parameter can be a function, function pointer, or a functor.
2517e35fdd936d133bf8a48de140a3c666897588a05shiqian// Callable has to satisfy the following conditions:
2518e35fdd936d133bf8a48de140a3c666897588a05shiqian//   * It is required to keep no state affecting the results of
2519e35fdd936d133bf8a48de140a3c666897588a05shiqian//     the calls on it and make no assumptions about how many calls
2520e35fdd936d133bf8a48de140a3c666897588a05shiqian//     will be made. Any state it keeps must be protected from the
2521e35fdd936d133bf8a48de140a3c666897588a05shiqian//     concurrent access.
2522e35fdd936d133bf8a48de140a3c666897588a05shiqian//   * If it is a function object, it has to define type result_type.
2523e35fdd936d133bf8a48de140a3c666897588a05shiqian//     We recommend deriving your functor classes from std::unary_function.
2524e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Callable, typename ResultOfMatcher>
2525e35fdd936d133bf8a48de140a3c666897588a05shiqianinternal::ResultOfMatcher<Callable> ResultOf(
2526e35fdd936d133bf8a48de140a3c666897588a05shiqian    Callable callable, const ResultOfMatcher& matcher) {
2527e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::ResultOfMatcher<Callable>(
2528e35fdd936d133bf8a48de140a3c666897588a05shiqian          callable,
2529e35fdd936d133bf8a48de140a3c666897588a05shiqian          MatcherCast<typename internal::CallableTraits<Callable>::ResultType>(
2530e35fdd936d133bf8a48de140a3c666897588a05shiqian              matcher));
2531e35fdd936d133bf8a48de140a3c666897588a05shiqian  // The call to MatcherCast() is required for supporting inner
2532e35fdd936d133bf8a48de140a3c666897588a05shiqian  // matchers of compatible types.  For example, it allows
2533e35fdd936d133bf8a48de140a3c666897588a05shiqian  //   ResultOf(Function, m)
2534e35fdd936d133bf8a48de140a3c666897588a05shiqian  // to compile where Function() returns an int32 and m is a matcher for int64.
2535e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2536e35fdd936d133bf8a48de140a3c666897588a05shiqian
2537e35fdd936d133bf8a48de140a3c666897588a05shiqian// String matchers.
2538e35fdd936d133bf8a48de140a3c666897588a05shiqian
2539e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str.
2540e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2541e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrEq(const internal::string& str) {
2542e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2543e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, true));
2544e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2545e35fdd936d133bf8a48de140a3c666897588a05shiqian
2546e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str.
2547e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2548e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrNe(const internal::string& str) {
2549e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2550e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, true));
2551e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2552e35fdd936d133bf8a48de140a3c666897588a05shiqian
2553e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str, ignoring case.
2554e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2555e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseEq(const internal::string& str) {
2556e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2557e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, false));
2558e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2559e35fdd936d133bf8a48de140a3c666897588a05shiqian
2560e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str, ignoring case.
2561e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::string> >
2562e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseNe(const internal::string& str) {
2563e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::string>(
2564e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, false));
2565e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2566e35fdd936d133bf8a48de140a3c666897588a05shiqian
2567e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any string, std::string, or C string
2568e35fdd936d133bf8a48de140a3c666897588a05shiqian// that contains the given substring.
2569e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::HasSubstrMatcher<internal::string> >
2570e35fdd936d133bf8a48de140a3c666897588a05shiqian    HasSubstr(const internal::string& substring) {
2571e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::HasSubstrMatcher<internal::string>(
2572e35fdd936d133bf8a48de140a3c666897588a05shiqian      substring));
2573e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2574e35fdd936d133bf8a48de140a3c666897588a05shiqian
2575e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that starts with 'prefix' (case-sensitive).
2576e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StartsWithMatcher<internal::string> >
2577e35fdd936d133bf8a48de140a3c666897588a05shiqian    StartsWith(const internal::string& prefix) {
2578e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StartsWithMatcher<internal::string>(
2579e35fdd936d133bf8a48de140a3c666897588a05shiqian      prefix));
2580e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2581e35fdd936d133bf8a48de140a3c666897588a05shiqian
2582e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that ends with 'suffix' (case-sensitive).
2583e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::EndsWithMatcher<internal::string> >
2584e35fdd936d133bf8a48de140a3c666897588a05shiqian    EndsWith(const internal::string& suffix) {
2585e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::EndsWithMatcher<internal::string>(
2586e35fdd936d133bf8a48de140a3c666897588a05shiqian      suffix));
2587e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2588e35fdd936d133bf8a48de140a3c666897588a05shiqian
2589e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that fully matches regular expression 'regex'.
2590e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher takes ownership of 'regex'.
2591e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
2592e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::RE* regex) {
2593e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, true));
2594e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2595e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> MatchesRegex(
2596e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::string& regex) {
2597e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MatchesRegex(new internal::RE(regex));
2598e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2599e35fdd936d133bf8a48de140a3c666897588a05shiqian
2600e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that contains regular expression 'regex'.
2601e35fdd936d133bf8a48de140a3c666897588a05shiqian// The matcher takes ownership of 'regex'.
2602e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
2603e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::RE* regex) {
2604e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::MatchesRegexMatcher(regex, false));
2605e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2606e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::MatchesRegexMatcher> ContainsRegex(
2607e35fdd936d133bf8a48de140a3c666897588a05shiqian    const internal::string& regex) {
2608e35fdd936d133bf8a48de140a3c666897588a05shiqian  return ContainsRegex(new internal::RE(regex));
2609e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2610e35fdd936d133bf8a48de140a3c666897588a05shiqian
2611e35fdd936d133bf8a48de140a3c666897588a05shiqian#if GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING
2612e35fdd936d133bf8a48de140a3c666897588a05shiqian// Wide string matchers.
2613e35fdd936d133bf8a48de140a3c666897588a05shiqian
2614e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str.
2615e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2616e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrEq(const internal::wstring& str) {
2617e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2618e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, true));
2619e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2620e35fdd936d133bf8a48de140a3c666897588a05shiqian
2621e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str.
2622e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2623e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrNe(const internal::wstring& str) {
2624e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2625e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, true));
2626e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2627e35fdd936d133bf8a48de140a3c666897588a05shiqian
2628e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string equal to str, ignoring case.
2629e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2630e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseEq(const internal::wstring& str) {
2631e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2632e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, true, false));
2633e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2634e35fdd936d133bf8a48de140a3c666897588a05shiqian
2635e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string not equal to str, ignoring case.
2636e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StrEqualityMatcher<internal::wstring> >
2637e35fdd936d133bf8a48de140a3c666897588a05shiqian    StrCaseNe(const internal::wstring& str) {
2638e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StrEqualityMatcher<internal::wstring>(
2639e35fdd936d133bf8a48de140a3c666897588a05shiqian      str, false, false));
2640e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2641e35fdd936d133bf8a48de140a3c666897588a05shiqian
2642e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any wstring, std::wstring, or C wide string
2643e35fdd936d133bf8a48de140a3c666897588a05shiqian// that contains the given substring.
2644e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::HasSubstrMatcher<internal::wstring> >
2645e35fdd936d133bf8a48de140a3c666897588a05shiqian    HasSubstr(const internal::wstring& substring) {
2646e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::HasSubstrMatcher<internal::wstring>(
2647e35fdd936d133bf8a48de140a3c666897588a05shiqian      substring));
2648e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2649e35fdd936d133bf8a48de140a3c666897588a05shiqian
2650e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that starts with 'prefix' (case-sensitive).
2651e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::StartsWithMatcher<internal::wstring> >
2652e35fdd936d133bf8a48de140a3c666897588a05shiqian    StartsWith(const internal::wstring& prefix) {
2653e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::StartsWithMatcher<internal::wstring>(
2654e35fdd936d133bf8a48de140a3c666897588a05shiqian      prefix));
2655e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2656e35fdd936d133bf8a48de140a3c666897588a05shiqian
2657e35fdd936d133bf8a48de140a3c666897588a05shiqian// Matches a string that ends with 'suffix' (case-sensitive).
2658e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::EndsWithMatcher<internal::wstring> >
2659e35fdd936d133bf8a48de140a3c666897588a05shiqian    EndsWith(const internal::wstring& suffix) {
2660e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::EndsWithMatcher<internal::wstring>(
2661e35fdd936d133bf8a48de140a3c666897588a05shiqian      suffix));
2662e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2663e35fdd936d133bf8a48de140a3c666897588a05shiqian
2664e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GTEST_HAS_GLOBAL_WSTRING || GTEST_HAS_STD_WSTRING
2665e35fdd936d133bf8a48de140a3c666897588a05shiqian
2666e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2667e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field == the second field.
2668e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Eq2Matcher Eq() { return internal::Eq2Matcher(); }
2669e35fdd936d133bf8a48de140a3c666897588a05shiqian
2670e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2671e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field >= the second field.
2672e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Ge2Matcher Ge() { return internal::Ge2Matcher(); }
2673e35fdd936d133bf8a48de140a3c666897588a05shiqian
2674e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2675e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field > the second field.
2676e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Gt2Matcher Gt() { return internal::Gt2Matcher(); }
2677e35fdd936d133bf8a48de140a3c666897588a05shiqian
2678e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2679e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field <= the second field.
2680e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Le2Matcher Le() { return internal::Le2Matcher(); }
2681e35fdd936d133bf8a48de140a3c666897588a05shiqian
2682e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2683e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field < the second field.
2684e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Lt2Matcher Lt() { return internal::Lt2Matcher(); }
2685e35fdd936d133bf8a48de140a3c666897588a05shiqian
2686e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a polymorphic matcher that matches a 2-tuple where the
2687e35fdd936d133bf8a48de140a3c666897588a05shiqian// first field != the second field.
2688e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::Ne2Matcher Ne() { return internal::Ne2Matcher(); }
2689e35fdd936d133bf8a48de140a3c666897588a05shiqian
2690e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value of type T that m doesn't
2691e35fdd936d133bf8a48de140a3c666897588a05shiqian// match.
2692e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename InnerMatcher>
2693e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::NotMatcher<InnerMatcher> Not(InnerMatcher m) {
2694e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::NotMatcher<InnerMatcher>(m);
2695e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2696e35fdd936d133bf8a48de140a3c666897588a05shiqian
2697e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value that matches all of the
2698e35fdd936d133bf8a48de140a3c666897588a05shiqian// given matchers.
2699e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2700e35fdd936d133bf8a48de140a3c666897588a05shiqian// For now we only support up to 5 matchers.  Support for more
2701e35fdd936d133bf8a48de140a3c666897588a05shiqian// matchers can be added as needed, or the user can use nested
2702e35fdd936d133bf8a48de140a3c666897588a05shiqian// AllOf()s.
2703e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
2704e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1, Matcher2>
2705e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2) {
2706e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::BothOfMatcher<Matcher1, Matcher2>(m1, m2);
2707e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2708e35fdd936d133bf8a48de140a3c666897588a05shiqian
2709e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3>
2710e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1,
2711e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::BothOfMatcher<Matcher2, Matcher3> >
2712e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3) {
2713e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AllOf(m1, AllOf(m2, m3));
2714e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2715e35fdd936d133bf8a48de140a3c666897588a05shiqian
2716e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2717e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4>
2718e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1,
2719e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::BothOfMatcher<Matcher2,
2720e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::BothOfMatcher<Matcher3, Matcher4> > >
2721e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4) {
2722e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AllOf(m1, AllOf(m2, m3, m4));
2723e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2724e35fdd936d133bf8a48de140a3c666897588a05shiqian
2725e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2726e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4, typename Matcher5>
2727e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::BothOfMatcher<Matcher1,
2728e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::BothOfMatcher<Matcher2,
2729e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::BothOfMatcher<Matcher3,
2730e35fdd936d133bf8a48de140a3c666897588a05shiqian                   internal::BothOfMatcher<Matcher4, Matcher5> > > >
2731e35fdd936d133bf8a48de140a3c666897588a05shiqianAllOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5) {
2732e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AllOf(m1, AllOf(m2, m3, m4, m5));
2733e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2734e35fdd936d133bf8a48de140a3c666897588a05shiqian
2735e35fdd936d133bf8a48de140a3c666897588a05shiqian// Creates a matcher that matches any value that matches at least one
2736e35fdd936d133bf8a48de140a3c666897588a05shiqian// of the given matchers.
2737e35fdd936d133bf8a48de140a3c666897588a05shiqian//
2738e35fdd936d133bf8a48de140a3c666897588a05shiqian// For now we only support up to 5 matchers.  Support for more
2739e35fdd936d133bf8a48de140a3c666897588a05shiqian// matchers can be added as needed, or the user can use nested
2740e35fdd936d133bf8a48de140a3c666897588a05shiqian// AnyOf()s.
2741e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2>
2742e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1, Matcher2>
2743e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2) {
2744e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::EitherOfMatcher<Matcher1, Matcher2>(m1, m2);
2745e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2746e35fdd936d133bf8a48de140a3c666897588a05shiqian
2747e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3>
2748e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1,
2749e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::EitherOfMatcher<Matcher2, Matcher3> >
2750e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3) {
2751e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AnyOf(m1, AnyOf(m2, m3));
2752e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2753e35fdd936d133bf8a48de140a3c666897588a05shiqian
2754e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2755e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4>
2756e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1,
2757e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::EitherOfMatcher<Matcher2,
2758e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::EitherOfMatcher<Matcher3, Matcher4> > >
2759e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4) {
2760e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AnyOf(m1, AnyOf(m2, m3, m4));
2761e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2762e35fdd936d133bf8a48de140a3c666897588a05shiqian
2763e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Matcher1, typename Matcher2, typename Matcher3,
2764e35fdd936d133bf8a48de140a3c666897588a05shiqian          typename Matcher4, typename Matcher5>
2765e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::EitherOfMatcher<Matcher1,
2766e35fdd936d133bf8a48de140a3c666897588a05shiqian           internal::EitherOfMatcher<Matcher2,
2767e35fdd936d133bf8a48de140a3c666897588a05shiqian               internal::EitherOfMatcher<Matcher3,
2768e35fdd936d133bf8a48de140a3c666897588a05shiqian                   internal::EitherOfMatcher<Matcher4, Matcher5> > > >
2769e35fdd936d133bf8a48de140a3c666897588a05shiqianAnyOf(Matcher1 m1, Matcher2 m2, Matcher3 m3, Matcher4 m4, Matcher5 m5) {
2770e35fdd936d133bf8a48de140a3c666897588a05shiqian  return AnyOf(m1, AnyOf(m2, m3, m4, m5));
2771e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2772e35fdd936d133bf8a48de140a3c666897588a05shiqian
2773e35fdd936d133bf8a48de140a3c666897588a05shiqian// Returns a matcher that matches anything that satisfies the given
2774e35fdd936d133bf8a48de140a3c666897588a05shiqian// predicate.  The predicate can be any unary function or functor
2775e35fdd936d133bf8a48de140a3c666897588a05shiqian// whose return type can be implicitly converted to bool.
2776e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename Predicate>
2777e35fdd936d133bf8a48de140a3c666897588a05shiqianinline PolymorphicMatcher<internal::TrulyMatcher<Predicate> >
2778e35fdd936d133bf8a48de140a3c666897588a05shiqianTruly(Predicate pred) {
2779e35fdd936d133bf8a48de140a3c666897588a05shiqian  return MakePolymorphicMatcher(internal::TrulyMatcher<Predicate>(pred));
2780e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2781e35fdd936d133bf8a48de140a3c666897588a05shiqian
27826a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// Returns a matcher that matches an equal container.
27836a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// This matcher behaves like Eq(), but in the event of mismatch lists the
27846a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// values that are included in one container but not the other. (Duplicate
27856a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan// values and order differences are not explained.)
27866a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wantemplate <typename Container>
2787821133180ccdb9eb062548d964929ba3b354eb84zhanyong.waninline PolymorphicMatcher<internal::ContainerEqMatcher<  // NOLINT
2788b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan                            GMOCK_REMOVE_CONST_(Container)> >
27896a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan    ContainerEq(const Container& rhs) {
2790b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // This following line is for working around a bug in MSVC 8.0,
2791b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  // which causes Container to be a const type sometimes.
2792b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  typedef GMOCK_REMOVE_CONST_(Container) RawContainer;
2793821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan  return MakePolymorphicMatcher(
2794821133180ccdb9eb062548d964929ba3b354eb84zhanyong.wan      internal::ContainerEqMatcher<RawContainer>(rhs));
2795b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan}
2796b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
2797b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Matches an STL-style container or a native array that contains at
2798b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// least one element matching the given value or matcher.
2799b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//
2800b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Examples:
2801b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   ::std::set<int> page_ids;
2802b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   page_ids.insert(3);
2803b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   page_ids.insert(1);
2804b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(page_ids, Contains(1));
2805b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(page_ids, Contains(Gt(2)));
2806b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(page_ids, Not(Contains(4)));
2807b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//
2808b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   ::std::map<int, size_t> page_lengths;
2809b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   page_lengths[1] = 100;
28104019819dbb5369b1d638503523a04aaf7eb2a5adzhanyong.wan//   EXPECT_THAT(page_lengths,
28114019819dbb5369b1d638503523a04aaf7eb2a5adzhanyong.wan//               Contains(::std::pair<const int, size_t>(1, 100)));
2812b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//
2813b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   const char* user_ids[] = { "joe", "mike", "tom" };
2814b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan//   EXPECT_THAT(user_ids, Contains(Eq(::std::string("tom"))));
2815b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename M>
2816b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.waninline internal::ContainsMatcher<M> Contains(M matcher) {
2817b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  return internal::ContainsMatcher<M>(matcher);
28186a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan}
28196a896b5ec607a54d86bbd2efdbc0248754b042e1zhanyong.wan
2820b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// Key(inner_matcher) matches an std::pair whose 'first' field matches
2821b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// inner_matcher.  For example, Contains(Key(Ge(5))) can be used to match an
2822b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan// std::map that contains at least one element whose key is >= 5.
2823b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wantemplate <typename M>
2824b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.waninline internal::KeyMatcher<M> Key(M inner_matcher) {
2825b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan  return internal::KeyMatcher<M>(inner_matcher);
2826b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan}
2827b5937dab6969ca4b1d8304cc8939ce16c1fb62e5zhanyong.wan
2828f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// Pair(first_matcher, second_matcher) matches a std::pair whose 'first' field
2829f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// matches first_matcher and whose 'second' field matches second_matcher.  For
2830f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// example, EXPECT_THAT(map_type, ElementsAre(Pair(Ge(5), "foo"))) can be used
2831f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// to match a std::map<int, string> that contains exactly one element whose key
2832f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan// is >= 5 and whose value equals "foo".
2833f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wantemplate <typename FirstMatcher, typename SecondMatcher>
2834f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.waninline internal::PairMatcher<FirstMatcher, SecondMatcher>
2835f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wanPair(FirstMatcher first_matcher, SecondMatcher second_matcher) {
2836f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan  return internal::PairMatcher<FirstMatcher, SecondMatcher>(
2837f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan      first_matcher, second_matcher);
2838f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan}
2839f5e1ce5b9237edbc2e524ae9ebcb2452dc842937zhanyong.wan
2840e35fdd936d133bf8a48de140a3c666897588a05shiqian// Returns a predicate that is satisfied by anything that matches the
2841e35fdd936d133bf8a48de140a3c666897588a05shiqian// given matcher.
2842e35fdd936d133bf8a48de140a3c666897588a05shiqiantemplate <typename M>
2843e35fdd936d133bf8a48de140a3c666897588a05shiqianinline internal::MatcherAsPredicate<M> Matches(M matcher) {
2844e35fdd936d133bf8a48de140a3c666897588a05shiqian  return internal::MatcherAsPredicate<M>(matcher);
2845e35fdd936d133bf8a48de140a3c666897588a05shiqian}
2846e35fdd936d133bf8a48de140a3c666897588a05shiqian
2847b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan// Returns true iff the value matches the matcher.
2848b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wantemplate <typename T, typename M>
2849b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.waninline bool Value(const T& value, M matcher) {
2850b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan  return testing::Matches(matcher)(value);
2851b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan}
2852b82431625d1842d1498f3c0e6f1923ce81837c6ezhanyong.wan
2853bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan// AllArgs(m) is a synonym of m.  This is useful in
2854bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan//
2855bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan//   EXPECT_CALL(foo, Bar(_, _)).With(AllArgs(Eq()));
2856bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan//
2857bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan// which is easier to read than
2858bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan//
2859bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan//   EXPECT_CALL(foo, Bar(_, _)).With(Eq());
2860bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wantemplate <typename InnerMatcher>
2861bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.waninline InnerMatcher AllArgs(const InnerMatcher& matcher) { return matcher; }
2862bf55085d456e3ee55eb234c98c435e54d0a2d5aazhanyong.wan
2863e35fdd936d133bf8a48de140a3c666897588a05shiqian// These macros allow using matchers to check values in Google Test
2864e35fdd936d133bf8a48de140a3c666897588a05shiqian// tests.  ASSERT_THAT(value, matcher) and EXPECT_THAT(value, matcher)
2865e35fdd936d133bf8a48de140a3c666897588a05shiqian// succeed iff the value matches the matcher.  If the assertion fails,
2866e35fdd936d133bf8a48de140a3c666897588a05shiqian// the value and the description of the matcher will be printed.
2867e35fdd936d133bf8a48de140a3c666897588a05shiqian#define ASSERT_THAT(value, matcher) ASSERT_PRED_FORMAT1(\
2868e35fdd936d133bf8a48de140a3c666897588a05shiqian    ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
2869e35fdd936d133bf8a48de140a3c666897588a05shiqian#define EXPECT_THAT(value, matcher) EXPECT_PRED_FORMAT1(\
2870e35fdd936d133bf8a48de140a3c666897588a05shiqian    ::testing::internal::MakePredicateFormatterFromMatcher(matcher), value)
2871e35fdd936d133bf8a48de140a3c666897588a05shiqian
2872e35fdd936d133bf8a48de140a3c666897588a05shiqian}  // namespace testing
2873e35fdd936d133bf8a48de140a3c666897588a05shiqian
2874e35fdd936d133bf8a48de140a3c666897588a05shiqian#endif  // GMOCK_INCLUDE_GMOCK_GMOCK_MATCHERS_H_
2875