X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Frgw%2Frgw_acl_swift.h;fp=src%2Fceph%2Fsrc%2Frgw%2Frgw_acl_swift.h;h=87bdb608f4e2560eaee153469322394b24f50eb8;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/rgw/rgw_acl_swift.h b/src/ceph/src/rgw/rgw_acl_swift.h new file mode 100644 index 0000000..87bdb60 --- /dev/null +++ b/src/ceph/src/rgw/rgw_acl_swift.h @@ -0,0 +1,55 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef CEPH_RGW_ACL_SWIFT_H +#define CEPH_RGW_ACL_SWIFT_H + +#include +#include +#include +#include + +#include + +#include "rgw_acl.h" + +class RGWAccessControlPolicy_SWIFT : public RGWAccessControlPolicy +{ + int add_grants(RGWRados *store, + const std::vector& uids, + uint32_t perm); + +public: + explicit RGWAccessControlPolicy_SWIFT(CephContext* const cct) + : RGWAccessControlPolicy(cct) { + } + ~RGWAccessControlPolicy_SWIFT() override = default; + + int create(RGWRados *store, + const rgw_user& id, + const std::string& name, + const std::string& read_list, + const std::string& write_list, + uint32_t& rw_mask); + void filter_merge(uint32_t mask, RGWAccessControlPolicy_SWIFT *policy); + void to_str(std::string& read, std::string& write); +}; + +class RGWAccessControlPolicy_SWIFTAcct : public RGWAccessControlPolicy +{ +public: + RGWAccessControlPolicy_SWIFTAcct(CephContext * const cct) + : RGWAccessControlPolicy(cct) { + } + ~RGWAccessControlPolicy_SWIFTAcct() override {} + + void add_grants(RGWRados *store, + const std::vector& uids, + uint32_t perm); + bool create(RGWRados *store, + const rgw_user& id, + const std::string& name, + const std::string& acl_str); + boost::optional to_str() const; +}; +#endif