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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef CEPH_RGW_REST_CONN_H
#define CEPH_RGW_REST_CONN_H
#include "rgw_rados.h"
#include "rgw_rest_client.h"
#include "common/ceph_json.h"
#include "common/RefCountedObj.h"
#include <atomic>
class CephContext;
class RGWRados;
template <class T>
static int parse_decode_json(CephContext *cct, T& t, bufferlist& bl)
{
JSONParser p;
int ret = p.parse(bl.c_str(), bl.length());
if (ret < 0) {
return ret;
}
try {
decode_json_obj(t, &p);
} catch (JSONDecoder::err& e) {
return -EINVAL;
}
return 0;
}
struct rgw_http_param_pair {
const char *key;
const char *val;
};
// copy a null-terminated rgw_http_param_pair list into a list of string pairs
inline param_vec_t make_param_list(const rgw_http_param_pair* pp)
{
param_vec_t params;
while (pp && pp->key) {
string k = pp->key;
string v = (pp->val ? pp->val : "");
params.emplace_back(make_pair(std::move(k), std::move(v)));
++pp;
}
return params;
}
class RGWRESTConn
{
CephContext *cct;
vector<string> endpoints;
RGWAccessKey key;
string self_zone_group;
string remote_id;
std::atomic<int64_t> counter = { 0 };
public:
RGWRESTConn(CephContext *_cct, RGWRados *store, const string& _remote_id, const list<string>& endpoints);
// custom move needed for atomic
RGWRESTConn(RGWRESTConn&& other);
RGWRESTConn& operator=(RGWRESTConn&& other);
int get_url(string& endpoint);
string get_url();
const string& get_self_zonegroup() {
return self_zone_group;
}
const string& get_remote_id() {
return remote_id;
}
RGWAccessKey& get_key() {
return key;
}
CephContext *get_ctx() {
return cct;
}
size_t get_endpoint_count() const { return endpoints.size(); }
/* sync request */
int forward(const rgw_user& uid, req_info& info, obj_version *objv, size_t max_response, bufferlist *inbl, bufferlist *outbl);
/* async request */
int put_obj_init(const rgw_user& uid, rgw_obj& obj, uint64_t obj_size,
map<string, bufferlist>& attrs, RGWRESTStreamWriteRequest **req);
int complete_request(RGWRESTStreamWriteRequest *req, string& etag, ceph::real_time *mtime);
int get_obj(const rgw_user& uid, req_info *info /* optional */, rgw_obj& obj,
const ceph::real_time *mod_ptr, const ceph::real_time *unmod_ptr,
uint32_t mod_zone_id, uint64_t mod_pg_ver,
bool prepend_metadata, bool get_op, bool rgwx_stat, bool sync_manifest,
RGWGetDataCB *cb, RGWRESTStreamRWRequest **req);
int complete_request(RGWRESTStreamRWRequest *req, string& etag, ceph::real_time *mtime, uint64_t *psize, map<string, string>& attrs);
int get_resource(const string& resource,
param_vec_t *extra_params,
map<string, string>* extra_headers,
bufferlist& bl,
bufferlist *send_data = nullptr,
RGWHTTPManager *mgr = nullptr);
template <class T>
int get_json_resource(const string& resource, param_vec_t *params, bufferlist *in_data, T& t);
template <class T>
int get_json_resource(const string& resource, param_vec_t *params, T& t);
template <class T>
int get_json_resource(const string& resource, const rgw_http_param_pair *pp, T& t);
};
template<class T>
int RGWRESTConn::get_json_resource(const string& resource, param_vec_t *params, bufferlist *in_data, T& t)
{
bufferlist bl;
int ret = get_resource(resource, params, nullptr, bl, in_data);
if (ret < 0) {
return ret;
}
ret = parse_decode_json(cct, t, bl);
if (ret < 0) {
return ret;
}
return 0;
}
template<class T>
int RGWRESTConn::get_json_resource(const string& resource, param_vec_t *params, T& t)
{
return get_json_resource(resource, params, nullptr, t);
}
template<class T>
int RGWRESTConn::get_json_resource(const string& resource, const rgw_http_param_pair *pp, T& t)
{
param_vec_t params = make_param_list(pp);
return get_json_resource(resource, ¶ms, t);
}
class RGWStreamIntoBufferlist : public RGWGetDataCB {
bufferlist& bl;
public:
RGWStreamIntoBufferlist(bufferlist& _bl) : bl(_bl) {}
int handle_data(bufferlist& inbl, off_t bl_ofs, off_t bl_len) override {
bl.claim_append(inbl);
return bl_len;
}
};
class RGWRESTReadResource : public RefCountedObject {
CephContext *cct;
RGWRESTConn *conn;
string resource;
param_vec_t params;
map<string, string> headers;
bufferlist bl;
RGWStreamIntoBufferlist cb;
RGWHTTPManager *mgr;
RGWRESTStreamReadRequest req;
void init_common(param_vec_t *extra_headers);
public:
RGWRESTReadResource(RGWRESTConn *_conn,
const string& _resource,
const rgw_http_param_pair *pp,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr);
RGWRESTReadResource(RGWRESTConn *_conn,
const string& _resource,
param_vec_t& _params,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr);
void set_user_info(void *user_info) {
req.set_user_info(user_info);
}
void *get_user_info() {
return req.get_user_info();
}
template <class T>
int decode_resource(T *dest);
int read();
int aio_read();
string to_str() {
return req.to_str();
}
int get_http_status() {
return req.get_http_status();
}
int wait_bl(bufferlist *pbl) {
int ret = req.wait();
if (ret < 0) {
return ret;
}
if (req.get_status() < 0) {
return req.get_status();
}
*pbl = bl;
return 0;
}
template <class T>
int wait(T *dest);
template <class T>
int fetch(T *dest);
};
template <class T>
int RGWRESTReadResource::decode_resource(T *dest)
{
int ret = req.get_status();
if (ret < 0) {
return ret;
}
ret = parse_decode_json(cct, *dest, bl);
if (ret < 0) {
return ret;
}
return 0;
}
template <class T>
int RGWRESTReadResource::fetch(T *dest)
{
int ret = read();
if (ret < 0) {
return ret;
}
ret = decode_resource(dest);
if (ret < 0) {
return ret;
}
return 0;
}
template <class T>
int RGWRESTReadResource::wait(T *dest)
{
int ret = req.wait();
if (ret < 0) {
return ret;
}
ret = decode_resource(dest);
if (ret < 0) {
return ret;
}
return 0;
}
class RGWRESTSendResource : public RefCountedObject {
CephContext *cct;
RGWRESTConn *conn;
string method;
string resource;
param_vec_t params;
map<string, string> headers;
bufferlist bl;
RGWStreamIntoBufferlist cb;
RGWHTTPManager *mgr;
RGWRESTStreamRWRequest req;
void init_common(param_vec_t *extra_headers);
public:
RGWRESTSendResource(RGWRESTConn *_conn,
const string& _method,
const string& _resource,
const rgw_http_param_pair *pp,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr);
RGWRESTSendResource(RGWRESTConn *_conn,
const string& _method,
const string& _resource,
param_vec_t& params,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr);
void set_user_info(void *user_info) {
req.set_user_info(user_info);
}
void *get_user_info() {
return req.get_user_info();
}
template <class T>
int decode_resource(T *dest);
int send(bufferlist& bl);
int aio_send(bufferlist& bl);
string to_str() {
return req.to_str();
}
int get_http_status() {
return req.get_http_status();
}
int wait_bl(bufferlist *pbl) {
int ret = req.wait();
if (ret < 0) {
return ret;
}
if (req.get_status() < 0) {
return req.get_status();
}
*pbl = bl;
return 0;
}
template <class T>
int wait(T *dest);
};
template <class T>
int RGWRESTSendResource::decode_resource(T *dest)
{
int ret = req.get_status();
if (ret < 0) {
return ret;
}
ret = parse_decode_json(cct, *dest, bl);
if (ret < 0) {
return ret;
}
return 0;
}
template <class T>
int RGWRESTSendResource::wait(T *dest)
{
int ret = req.wait();
if (ret < 0) {
return ret;
}
ret = decode_resource(dest);
if (ret < 0) {
return ret;
}
return 0;
}
class RGWRESTPostResource : public RGWRESTSendResource {
public:
RGWRESTPostResource(RGWRESTConn *_conn,
const string& _resource,
const rgw_http_param_pair *pp,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr) : RGWRESTSendResource(_conn, "POST", _resource,
pp, extra_headers, _mgr) {}
RGWRESTPostResource(RGWRESTConn *_conn,
const string& _resource,
param_vec_t& params,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr) : RGWRESTSendResource(_conn, "POST", _resource,
params, extra_headers, _mgr) {}
};
class RGWRESTPutResource : public RGWRESTSendResource {
public:
RGWRESTPutResource(RGWRESTConn *_conn,
const string& _resource,
const rgw_http_param_pair *pp,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr) : RGWRESTSendResource(_conn, "PUT", _resource,
pp, extra_headers, _mgr) {}
RGWRESTPutResource(RGWRESTConn *_conn,
const string& _resource,
param_vec_t& params,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr) : RGWRESTSendResource(_conn, "PUT", _resource,
params, extra_headers, _mgr) {}
};
class RGWRESTDeleteResource : public RGWRESTSendResource {
public:
RGWRESTDeleteResource(RGWRESTConn *_conn,
const string& _resource,
const rgw_http_param_pair *pp,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr) : RGWRESTSendResource(_conn, "DELETE", _resource,
pp, extra_headers, _mgr) {}
RGWRESTDeleteResource(RGWRESTConn *_conn,
const string& _resource,
param_vec_t& params,
param_vec_t *extra_headers,
RGWHTTPManager *_mgr) : RGWRESTSendResource(_conn, "DELETE", _resource,
params, extra_headers, _mgr) {}
};
#endif
|