forked from sinojelly/mockcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReturnObjectList.cpp
More file actions
167 lines (131 loc) · 3.98 KB
/
ReturnObjectList.cpp
File metadata and controls
167 lines (131 loc) · 3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/***
mockcpp is a C/C++ mock framework.
Copyright [2008] [Darwin Yuan <[email protected]>]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
***/
#include <mockcpp/OutputStringStream.h>
#include <mockcpp/ReturnObjectList.h>
#include <mockcpp/Asserter.h>
#include <vector>
MOCKCPP_NS_START
struct ReturnObjectListImpl
{
typedef std::vector<Any> Objects;
unsigned int firstUnused;
Objects objects;
ReturnObjectListImpl() : firstUnused(0) {}
bool isCompleted() const;
unsigned int numberOfValidObjects() const;
Any& invoke();
std::string toString() const;
const std::type_info& type() const;
};
///////////////////////////////////////////////////////
const std::type_info& ReturnObjectListImpl::type() const
{
if (firstUnused >= objects.size()) return getEmptyAny().type();
return objects[firstUnused].type();
}
///////////////////////////////////////////////////////
std::string ReturnObjectListImpl::toString() const
{
oss_t oss;
unsigned int n = numberOfValidObjects();
for (unsigned int i = 0; i < n; i++)
{
if (i > 0) oss << ",";
oss << objects[i].toTypeAndValueString();
}
return oss.str();
}
///////////////////////////////////////////////////////
unsigned int ReturnObjectListImpl::numberOfValidObjects() const
{
for (size_t i = objects.size()-1; i >= 0; i--)
{
if(!objects[i].empty()) return (unsigned int)(i+1);
}
return 0;
}
///////////////////////////////////////////////////////
bool ReturnObjectListImpl::isCompleted() const
{
return firstUnused < numberOfValidObjects();
}
///////////////////////////////////////////////////////
Any& ReturnObjectListImpl::invoke()
{
if(firstUnused < numberOfValidObjects())
{
return objects[firstUnused++];
}
MOCKCPP_FAIL("All objects has been returned");
return getEmptyAny();
}
///////////////////////////////////////////////////////
#define STORE_OBJECTS(i) This->objects.push_back(o##i)
ReturnObjectList::ReturnObjectList(
const Any& o1
, const Any& o2
, const Any& o3
, const Any& o4
, const Any& o5
, const Any& o6
, const Any& o7
, const Any& o8
, const Any& o9
, const Any& o10
, const Any& o11
, const Any& o12
) : This(new ReturnObjectListImpl)
{
STORE_OBJECTS(1);
STORE_OBJECTS(2);
STORE_OBJECTS(3);
STORE_OBJECTS(4);
STORE_OBJECTS(5);
STORE_OBJECTS(6);
STORE_OBJECTS(7);
STORE_OBJECTS(8);
STORE_OBJECTS(9);
STORE_OBJECTS(10);
STORE_OBJECTS(11);
STORE_OBJECTS(12);
}
///////////////////////////////////////////////////
ReturnObjectList::~ReturnObjectList()
{
delete This;
}
///////////////////////////////////////////////////
Any& ReturnObjectList::invoke(void)
{
return This->invoke();
}
///////////////////////////////////////////////////
std::string ReturnObjectList::toString(void) const
{
oss_t oss;
oss << "returnObjectList(" << This->toString() << ")";
return oss.str();
}
///////////////////////////////////////////////////
const std::type_info& ReturnObjectList::type() const
{
return This->type();
}
///////////////////////////////////////////////////
bool ReturnObjectList::isCompleted() const
{
return This->isCompleted();
}
///////////////////////////////////////////////////
MOCKCPP_NS_END