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
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef RGW_SYNC_MODULE_AWS_H
#define RGW_SYNC_MODULE_AWS_H
#include "rgw_sync_module.h"
struct rgw_sync_aws_multipart_part_info {
int part_num{0};
uint64_t ofs{0};
uint64_t size{0};
string etag;
void encode(bufferlist& bl) const {
ENCODE_START(1, 1, bl);
encode(part_num, bl);
encode(ofs, bl);
encode(size, bl);
encode(etag, bl);
ENCODE_FINISH(bl);
}
void decode(bufferlist::const_iterator& bl) {
DECODE_START(1, bl);
decode(part_num, bl);
decode(ofs, bl);
decode(size, bl);
decode(etag, bl);
DECODE_FINISH(bl);
}
};
WRITE_CLASS_ENCODER(rgw_sync_aws_multipart_part_info)
struct rgw_sync_aws_src_obj_properties {
ceph::real_time mtime;
string etag;
uint32_t zone_short_id{0};
uint64_t pg_ver{0};
uint64_t versioned_epoch{0};
void encode(bufferlist& bl) const {
ENCODE_START(1, 1, bl);
encode(mtime, bl);
encode(etag, bl);
encode(zone_short_id, bl);
encode(pg_ver, bl);
encode(versioned_epoch, bl);
ENCODE_FINISH(bl);
}
void decode(bufferlist::const_iterator& bl) {
DECODE_START(1, bl);
decode(mtime, bl);
decode(etag, bl);
decode(zone_short_id, bl);
decode(pg_ver, bl);
decode(versioned_epoch, bl);
DECODE_FINISH(bl);
}
};
WRITE_CLASS_ENCODER(rgw_sync_aws_src_obj_properties)
struct rgw_sync_aws_multipart_upload_info {
string upload_id;
uint64_t obj_size;
rgw_sync_aws_src_obj_properties src_properties;
uint32_t part_size{0};
uint32_t num_parts{0};
int cur_part{0};
uint64_t cur_ofs{0};
std::map<int, rgw_sync_aws_multipart_part_info> parts;
void encode(bufferlist& bl) const {
ENCODE_START(1, 1, bl);
encode(upload_id, bl);
encode(obj_size, bl);
encode(src_properties, bl);
encode(part_size, bl);
encode(num_parts, bl);
encode(cur_part, bl);
encode(cur_ofs, bl);
encode(parts, bl);
ENCODE_FINISH(bl);
}
void decode(bufferlist::const_iterator& bl) {
DECODE_START(1, bl);
decode(upload_id, bl);
decode(obj_size, bl);
decode(src_properties, bl);
decode(part_size, bl);
decode(num_parts, bl);
decode(cur_part, bl);
decode(cur_ofs, bl);
decode(parts, bl);
DECODE_FINISH(bl);
}
};
WRITE_CLASS_ENCODER(rgw_sync_aws_multipart_upload_info)
class RGWAWSSyncModule : public RGWSyncModule {
public:
RGWAWSSyncModule() {}
bool supports_data_export() override { return false;}
int create_instance(CephContext *cct, const JSONFormattable& config, RGWSyncModuleInstanceRef *instance) override;
};
#endif /* RGW_SYNC_MODULE_AWS_H */
|