summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_sal_config.h
blob: 7050940220b5909a526a6e75c0344351edbc1e53 (plain)
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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab ft=cpp

/*
 * Ceph - scalable distributed file system
 *
 * Copyright (C) 2022 Red Hat, Inc.
 *
 * This is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software
 * Foundation. See file COPYING.
 *
 */

#pragma once

#include <memory>
#include <optional>
#include <span>
#include <string>
#include "rgw_sal_fwd.h"

class DoutPrefixProvider;
class optional_yield;
struct RGWPeriod;
struct RGWPeriodConfig;
struct RGWRealm;
struct RGWZoneGroup;
struct RGWZoneParams;

namespace rgw::sal {

/// Results of a listing operation
template <typename T>
struct ListResult {
  /// The subspan of the input entries that contain results
  std::span<T> entries;
  /// The next marker to resume listing, or empty
  std::string next;
};

/// Storage abstraction for realm/zonegroup/zone configuration
class ConfigStore {
 public:
  virtual ~ConfigStore() {}

  /// @group Realm
  ///@{

  /// Set the cluster-wide default realm id
  virtual int write_default_realm_id(const DoutPrefixProvider* dpp,
                                     optional_yield y, bool exclusive,
                                     std::string_view realm_id) = 0;
  /// Read the cluster's default realm id
  virtual int read_default_realm_id(const DoutPrefixProvider* dpp,
                                    optional_yield y,
                                    std::string& realm_id) = 0;
  /// Delete the cluster's default realm id
  virtual int delete_default_realm_id(const DoutPrefixProvider* dpp,
                                      optional_yield y) = 0;

  /// Create a realm
  virtual int create_realm(const DoutPrefixProvider* dpp,
                           optional_yield y, bool exclusive,
                           const RGWRealm& info,
                           std::unique_ptr<RealmWriter>* writer) = 0;
  /// Read a realm by id
  virtual int read_realm_by_id(const DoutPrefixProvider* dpp,
                               optional_yield y,
                               std::string_view realm_id,
                               RGWRealm& info,
                               std::unique_ptr<RealmWriter>* writer) = 0;
  /// Read a realm by name
  virtual int read_realm_by_name(const DoutPrefixProvider* dpp,
                                 optional_yield y,
                                 std::string_view realm_name,
                                 RGWRealm& info,
                                 std::unique_ptr<RealmWriter>* writer) = 0;
  /// Read the cluster's default realm
  virtual int read_default_realm(const DoutPrefixProvider* dpp,
                                 optional_yield y,
                                 RGWRealm& info,
                                 std::unique_ptr<RealmWriter>* writer) = 0;
  /// Look up a realm id by its name
  virtual int read_realm_id(const DoutPrefixProvider* dpp,
                            optional_yield y, std::string_view realm_name,
                            std::string& realm_id) = 0;
  /// Notify the cluster of a new period, so radosgws can reload with the new
  /// configuration
  virtual int realm_notify_new_period(const DoutPrefixProvider* dpp,
                                      optional_yield y,
                                      const RGWPeriod& period) = 0;
  /// List up to 'entries.size()' realm names starting from the given marker
  virtual int list_realm_names(const DoutPrefixProvider* dpp,
                               optional_yield y, const std::string& marker,
                               std::span<std::string> entries,
                               ListResult<std::string>& result) = 0;
  ///@}

  /// @group Period
  ///@{

  /// Write a period and advance its latest epoch
  virtual int create_period(const DoutPrefixProvider* dpp,
                            optional_yield y, bool exclusive,
                            const RGWPeriod& info) = 0;
  /// Read a period by id and epoch. If no epoch is given, read the latest
  virtual int read_period(const DoutPrefixProvider* dpp,
                          optional_yield y, std::string_view period_id,
                          std::optional<uint32_t> epoch, RGWPeriod& info) = 0;
  /// Delete all period epochs with the given period id
  virtual int delete_period(const DoutPrefixProvider* dpp,
                            optional_yield y,
                            std::string_view period_id) = 0;
  /// List up to 'entries.size()' period ids starting from the given marker
  virtual int list_period_ids(const DoutPrefixProvider* dpp,
                              optional_yield y, const std::string& marker,
                              std::span<std::string> entries,
                              ListResult<std::string>& result) = 0;
  ///@}

  /// @group ZoneGroup
  ///@{

  /// Set the cluster-wide default zonegroup id
  virtual int write_default_zonegroup_id(const DoutPrefixProvider* dpp,
                                         optional_yield y, bool exclusive,
                                         std::string_view realm_id,
                                         std::string_view zonegroup_id) = 0;
  /// Read the cluster's default zonegroup id
  virtual int read_default_zonegroup_id(const DoutPrefixProvider* dpp,
                                        optional_yield y,
                                        std::string_view realm_id,
                                        std::string& zonegroup_id) = 0;
  /// Delete the cluster's default zonegroup id
  virtual int delete_default_zonegroup_id(const DoutPrefixProvider* dpp,
                                          optional_yield y,
                                          std::string_view realm_id) = 0;

  /// Create a zonegroup
  virtual int create_zonegroup(const DoutPrefixProvider* dpp,
                               optional_yield y, bool exclusive,
                               const RGWZoneGroup& info,
                               std::unique_ptr<ZoneGroupWriter>* writer) = 0;
  /// Read a zonegroup by id
  virtual int read_zonegroup_by_id(const DoutPrefixProvider* dpp,
                                   optional_yield y,
                                   std::string_view zonegroup_id,
                                   RGWZoneGroup& info,
                                   std::unique_ptr<ZoneGroupWriter>* writer) = 0;
  /// Read a zonegroup by name
  virtual int read_zonegroup_by_name(const DoutPrefixProvider* dpp,
                                     optional_yield y,
                                     std::string_view zonegroup_name,
                                     RGWZoneGroup& info,
                                     std::unique_ptr<ZoneGroupWriter>* writer) = 0;
  /// Read the cluster's default zonegroup
  virtual int read_default_zonegroup(const DoutPrefixProvider* dpp,
                                     optional_yield y,
                                     std::string_view realm_id,
                                     RGWZoneGroup& info,
                                     std::unique_ptr<ZoneGroupWriter>* writer) = 0;
  /// List up to 'entries.size()' zonegroup names starting from the given marker
  virtual int list_zonegroup_names(const DoutPrefixProvider* dpp,
                                   optional_yield y, const std::string& marker,
                                   std::span<std::string> entries,
                                   ListResult<std::string>& result) = 0;
  ///@}

  /// @group Zone
  ///@{

  /// Set the realm-wide default zone id
  virtual int write_default_zone_id(const DoutPrefixProvider* dpp,
                                    optional_yield y, bool exclusive,
                                    std::string_view realm_id,
                                    std::string_view zone_id) = 0;
  /// Read the realm's default zone id
  virtual int read_default_zone_id(const DoutPrefixProvider* dpp,
                                   optional_yield y,
                                   std::string_view realm_id,
                                   std::string& zone_id) = 0;
  /// Delete the realm's default zone id
  virtual int delete_default_zone_id(const DoutPrefixProvider* dpp,
                                     optional_yield y,
                                     std::string_view realm_id) = 0;

  /// Create a zone
  virtual int create_zone(const DoutPrefixProvider* dpp,
                          optional_yield y, bool exclusive,
                          const RGWZoneParams& info,
                          std::unique_ptr<ZoneWriter>* writer) = 0;
  /// Read a zone by id
  virtual int read_zone_by_id(const DoutPrefixProvider* dpp,
                              optional_yield y,
                              std::string_view zone_id,
                              RGWZoneParams& info,
                              std::unique_ptr<ZoneWriter>* writer) = 0;
  /// Read a zone by id or name. If both are empty, try to load the
  /// cluster's default zone
  virtual int read_zone_by_name(const DoutPrefixProvider* dpp,
                                optional_yield y,
                                std::string_view zone_name,
                                RGWZoneParams& info,
                                std::unique_ptr<ZoneWriter>* writer) = 0;
  /// Read the realm's default zone
  virtual int read_default_zone(const DoutPrefixProvider* dpp,
                                optional_yield y,
                                std::string_view realm_id,
                                RGWZoneParams& info,
                                std::unique_ptr<ZoneWriter>* writer) = 0;
  /// List up to 'entries.size()' zone names starting from the given marker
  virtual int list_zone_names(const DoutPrefixProvider* dpp,
                              optional_yield y, const std::string& marker,
                              std::span<std::string> entries,
                              ListResult<std::string>& result) = 0;
  ///@}

  /// @group PeriodConfig
  ///@{

  /// Read period config object
  virtual int read_period_config(const DoutPrefixProvider* dpp,
                                 optional_yield y,
                                 std::string_view realm_id,
                                 RGWPeriodConfig& info) = 0;
  /// Write period config object
  virtual int write_period_config(const DoutPrefixProvider* dpp,
                                  optional_yield y, bool exclusive,
                                  std::string_view realm_id,
                                  const RGWPeriodConfig& info) = 0;
  ///@}

}; // ConfigStore


/// A handle to manage the atomic updates of an existing realm object. This
/// is initialized on read, and any subsequent writes through this handle will
/// fail with -ECANCELED if another writer updates the object in the meantime.
class RealmWriter {
 public:
  virtual ~RealmWriter() {}

  /// Overwrite an existing realm. Must not change id or name
  virtual int write(const DoutPrefixProvider* dpp,
                    optional_yield y,
                    const RGWRealm& info) = 0;
  /// Rename an existing realm. Must not change id
  virtual int rename(const DoutPrefixProvider* dpp,
                     optional_yield y,
                     RGWRealm& info,
                     std::string_view new_name) = 0;
  /// Delete an existing realm
  virtual int remove(const DoutPrefixProvider* dpp,
                     optional_yield y) = 0;
};

/// A handle to manage the atomic updates of an existing zonegroup object. This
/// is initialized on read, and any subsequent writes through this handle will
/// fail with -ECANCELED if another writer updates the object in the meantime.
class ZoneGroupWriter {
 public:
  virtual ~ZoneGroupWriter() {}

  /// Overwrite an existing zonegroup. Must not change id or name
  virtual int write(const DoutPrefixProvider* dpp,
                    optional_yield y,
                    const RGWZoneGroup& info) = 0;
  /// Rename an existing zonegroup. Must not change id
  virtual int rename(const DoutPrefixProvider* dpp,
                     optional_yield y,
                     RGWZoneGroup& info,
                     std::string_view new_name) = 0;
  /// Delete an existing zonegroup
  virtual int remove(const DoutPrefixProvider* dpp,
                     optional_yield y) = 0;
};

/// A handle to manage the atomic updates of an existing zone object. This
/// is initialized on read, and any subsequent writes through this handle will
/// fail with -ECANCELED if another writer updates the object in the meantime.
class ZoneWriter {
 public:
  virtual ~ZoneWriter() {}

  /// Overwrite an existing zone. Must not change id or name
  virtual int write(const DoutPrefixProvider* dpp,
                    optional_yield y,
                    const RGWZoneParams& info) = 0;
  /// Rename an existing zone. Must not change id
  virtual int rename(const DoutPrefixProvider* dpp,
                     optional_yield y,
                     RGWZoneParams& info,
                     std::string_view new_name) = 0;
  /// Delete an existing zone
  virtual int remove(const DoutPrefixProvider* dpp,
                     optional_yield y) = 0;
};

} // namespace rgw::sal