diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/rgw/rgw_multi_del.h | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/rgw/rgw_multi_del.h')
-rw-r--r-- | src/rgw/rgw_multi_del.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/rgw/rgw_multi_del.h b/src/rgw/rgw_multi_del.h new file mode 100644 index 00000000..1ac8e491 --- /dev/null +++ b/src/rgw/rgw_multi_del.h @@ -0,0 +1,66 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab + +#ifndef RGW_MULTI_DELETE_H_ +#define RGW_MULTI_DELETE_H_ + +#include <vector> +#include "rgw_xml.h" +#include "rgw_common.h" + +class RGWMultiDelDelete : public XMLObj +{ +public: + RGWMultiDelDelete() :quiet(false) {} + ~RGWMultiDelDelete() override {} + bool xml_end(const char *el) override; + + std::vector<rgw_obj_key> objects; + bool quiet; + bool is_quiet() { return quiet; } +}; + +class RGWMultiDelQuiet : public XMLObj +{ +public: + RGWMultiDelQuiet() {} + ~RGWMultiDelQuiet() override {} +}; + +class RGWMultiDelObject : public XMLObj +{ + string key; + string version_id; +public: + RGWMultiDelObject() {} + ~RGWMultiDelObject() override {} + bool xml_end(const char *el) override; + + const string& get_key() { return key; } + const string& get_version_id() { return version_id; } +}; + +class RGWMultiDelKey : public XMLObj +{ +public: + RGWMultiDelKey() {} + ~RGWMultiDelKey() override {} +}; + +class RGWMultiDelVersionId : public XMLObj +{ +public: + RGWMultiDelVersionId() {} + ~RGWMultiDelVersionId() override {} +}; + +class RGWMultiDelXMLParser : public RGWXMLParser +{ + XMLObj *alloc_obj(const char *el) override; +public: + RGWMultiDelXMLParser() {} + ~RGWMultiDelXMLParser() override {} +}; + + +#endif |