forked from OpenAPITools/openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPetApi.h
More file actions
234 lines (189 loc) · 5.08 KB
/
PetApi.h
File metadata and controls
234 lines (189 loc) · 5.08 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/**
* OpenAPI Petstore
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI-Generator 5.0.0-SNAPSHOT.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/*
* PetApi.h
*
*
*/
#ifndef PetApi_H_
#define PetApi_H_
#include <memory>
#include <utility>
#include <corvusoft/restbed/session.hpp>
#include <corvusoft/restbed/resource.hpp>
#include <corvusoft/restbed/service.hpp>
#include "ApiResponse.h"
#include "Pet.h"
#include <string>
namespace org {
namespace openapitools {
namespace server {
namespace api {
using namespace org::openapitools::server::model;
/// <summary>
/// Add a new pet to the store
/// </summary>
/// <remarks>
///
/// </remarks>
class PetApiPetResource: public restbed::Resource
{
public:
PetApiPetResource();
virtual ~PetApiPetResource();
void POST_method_handler(const std::shared_ptr<restbed::Session> session);
void PUT_method_handler(const std::shared_ptr<restbed::Session> session);
void set_handler_POST(
std::function<std::pair<int, std::string>(
std::shared_ptr<Pet> const &
)> handler
);
void set_handler_PUT(
std::function<std::pair<int, std::string>(
std::shared_ptr<Pet> const &
)> handler
);
private:
std::function<std::pair<int, std::string>(
std::shared_ptr<Pet> const &
)> handler_POST_;
std::function<std::pair<int, std::string>(
std::shared_ptr<Pet> const &
)> handler_PUT_;
std::shared_ptr<Pet> body{};
};
/// <summary>
/// Deletes a pet
/// </summary>
/// <remarks>
///
/// </remarks>
class PetApiPetPetIdResource: public restbed::Resource
{
public:
PetApiPetPetIdResource();
virtual ~PetApiPetPetIdResource();
void DELETE_method_handler(const std::shared_ptr<restbed::Session> session);
void POST_method_handler(const std::shared_ptr<restbed::Session> session);
void set_handler_DELETE(
std::function<std::pair<int, std::string>(
int64_t const &, std::string const &
)> handler
);
void set_handler_POST(
std::function<std::pair<int, std::string>(
int64_t const &, std::string const &, std::string const &
)> handler
);
private:
std::function<std::pair<int, std::string>(
int64_t const &, std::string const &
)> handler_DELETE_;
std::function<std::pair<int, std::string>(
int64_t const &, std::string const &, std::string const &
)> handler_POST_;
int64_t petId{};
std::string apiKey{};
};
/// <summary>
/// Finds Pets by status
/// </summary>
/// <remarks>
/// Multiple status values can be provided with comma separated strings
/// </remarks>
class PetApiPetFindByStatusResource: public restbed::Resource
{
public:
PetApiPetFindByStatusResource();
virtual ~PetApiPetFindByStatusResource();
void GET_method_handler(const std::shared_ptr<restbed::Session> session);
void set_handler_GET(
std::function<std::pair<int, std::string>(
std::vector<std::string> const &
)> handler
);
private:
std::function<std::pair<int, std::string>(
std::vector<std::string> const &
)> handler_GET_;
std::vector<std::string> status{};
};
/// <summary>
/// Finds Pets by tags
/// </summary>
/// <remarks>
/// Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
/// </remarks>
class PetApiPetFindByTagsResource: public restbed::Resource
{
public:
PetApiPetFindByTagsResource();
virtual ~PetApiPetFindByTagsResource();
void GET_method_handler(const std::shared_ptr<restbed::Session> session);
void set_handler_GET(
std::function<std::pair<int, std::string>(
std::vector<std::string> const &
)> handler
);
private:
std::function<std::pair<int, std::string>(
std::vector<std::string> const &
)> handler_GET_;
std::vector<std::string> tags{};
};
/// <summary>
/// uploads an image
/// </summary>
/// <remarks>
///
/// </remarks>
class PetApiPetPetIdUploadImageResource: public restbed::Resource
{
public:
PetApiPetPetIdUploadImageResource();
virtual ~PetApiPetPetIdUploadImageResource();
void POST_method_handler(const std::shared_ptr<restbed::Session> session);
void set_handler_POST(
std::function<std::pair<int, std::string>(
int64_t const &, std::string const &, std::string const &
)> handler
);
private:
std::function<std::pair<int, std::string>(
int64_t const &, std::string const &, std::string const &
)> handler_POST_;
int64_t petId{};
std::string additionalMetadata{};
std::string file{};
};
//
// The restbed service to actually implement the REST server
//
class PetApi: public restbed::Service
{
public:
PetApi();
~PetApi();
void startService(int const& port);
void stopService();
protected:
std::shared_ptr<PetApiPetResource> m_spPetApiPetResource;
std::shared_ptr<PetApiPetPetIdResource> m_spPetApiPetPetIdResource;
std::shared_ptr<PetApiPetFindByStatusResource> m_spPetApiPetFindByStatusResource;
std::shared_ptr<PetApiPetFindByTagsResource> m_spPetApiPetFindByTagsResource;
std::shared_ptr<PetApiPetPetIdUploadImageResource> m_spPetApiPetPetIdUploadImageResource;
};
}
}
}
}
#endif /* PetApi_H_ */