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
|
// -*- 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 contributors to the Ceph project
*
* 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 <list>
#include <string>
#include "include/rados/librados_fwd.hpp"
#include "include/encoding.h"
#include "rgw_sal_fwd.h"
namespace ceph { class Formatter; }
class DoutPrefixProvider;
class optional_yield;
struct rgw_raw_obj;
struct RGWUserInfo;
namespace rgwrados::users {
/// Add the given user to the list.
int add(const DoutPrefixProvider* dpp,
optional_yield y,
librados::Rados& rados,
const rgw_raw_obj& obj,
const RGWUserInfo& user,
bool exclusive, uint32_t limit);
/// Look up a user's id by name in the list.
int get(const DoutPrefixProvider* dpp,
optional_yield y,
librados::Rados& rados,
const rgw_raw_obj& obj,
std::string_view name,
std::string& user_id);
/// Remove the given user from the list.
int remove(const DoutPrefixProvider* dpp,
optional_yield y,
librados::Rados& rados,
const rgw_raw_obj& obj,
std::string_view name);
/// Return a paginated listing of user ids.
int list(const DoutPrefixProvider* dpp,
optional_yield y,
librados::Rados& rados,
const rgw_raw_obj& obj,
std::string_view marker,
std::string_view path_prefix,
uint32_t max_items,
std::vector<std::string>& ids,
std::string& next_marker);
// user-specific metadata for cls_user_account_resource
struct resource_metadata {
std::string user_id;
void encode(bufferlist& bl) const {
ENCODE_START(1, 1, bl);
encode(user_id, bl);
ENCODE_FINISH(bl);
}
void decode(bufferlist::const_iterator& bl) {
DECODE_START(1, bl);
decode(user_id, bl);
DECODE_FINISH(bl);
}
void dump(ceph::Formatter* f) const;
static void generate_test_instances(std::list<resource_metadata*>& o);
};
WRITE_CLASS_ENCODER(resource_metadata);
} // namespace rgwrados::users
|