diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/rgw/rgw_multi_del.cc | |
parent | Initial commit. (diff) | |
download | ceph-6d07fdb6bb33b1af39833b850bb6cf8af79fe293.tar.xz ceph-6d07fdb6bb33b1af39833b850bb6cf8af79fe293.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/rgw/rgw_multi_del.cc')
-rw-r--r-- | src/rgw/rgw_multi_del.cc | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/rgw/rgw_multi_del.cc b/src/rgw/rgw_multi_del.cc new file mode 100644 index 000000000..03485e622 --- /dev/null +++ b/src/rgw/rgw_multi_del.cc @@ -0,0 +1,73 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab ft=cpp + +#include <string.h> + +#include <iostream> + +#include "include/types.h" + +#include "rgw_xml.h" +#include "rgw_multi_del.h" + +#define dout_subsys ceph_subsys_rgw + + + +bool RGWMultiDelObject::xml_end(const char *el) +{ + RGWMultiDelKey *key_obj = static_cast<RGWMultiDelKey *>(find_first("Key")); + RGWMultiDelVersionId *vid = static_cast<RGWMultiDelVersionId *>(find_first("VersionId")); + + if (!key_obj) + return false; + + string s = key_obj->get_data(); + if (s.empty()) + return false; + + key = s; + + if (vid) { + version_id = vid->get_data(); + } + + return true; +} + +bool RGWMultiDelDelete::xml_end(const char *el) { + RGWMultiDelQuiet *quiet_set = static_cast<RGWMultiDelQuiet *>(find_first("Quiet")); + if (quiet_set) { + string quiet_val = quiet_set->get_data(); + quiet = (strcasecmp(quiet_val.c_str(), "true") == 0); + } + + XMLObjIter iter = find("Object"); + RGWMultiDelObject *object = static_cast<RGWMultiDelObject *>(iter.get_next()); + while (object) { + const string& key = object->get_key(); + const string& instance = object->get_version_id(); + rgw_obj_key k(key, instance); + objects.push_back(k); + object = static_cast<RGWMultiDelObject *>(iter.get_next()); + } + return true; +} + +XMLObj *RGWMultiDelXMLParser::alloc_obj(const char *el) { + XMLObj *obj = NULL; + if (strcmp(el, "Delete") == 0) { + obj = new RGWMultiDelDelete(); + } else if (strcmp(el, "Quiet") == 0) { + obj = new RGWMultiDelQuiet(); + } else if (strcmp(el, "Object") == 0) { + obj = new RGWMultiDelObject (); + } else if (strcmp(el, "Key") == 0) { + obj = new RGWMultiDelKey(); + } else if (strcmp(el, "VersionId") == 0) { + obj = new RGWMultiDelVersionId(); + } + + return obj; +} + |