From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- src/rgw/rgw_lc_s3.h | 102 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 src/rgw/rgw_lc_s3.h (limited to 'src/rgw/rgw_lc_s3.h') diff --git a/src/rgw/rgw_lc_s3.h b/src/rgw/rgw_lc_s3.h new file mode 100644 index 000000000..5aa9c8e8c --- /dev/null +++ b/src/rgw/rgw_lc_s3.h @@ -0,0 +1,102 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab ft=cpp + +#ifndef CEPH_RGW_LC_S3_H +#define CEPH_RGW_LC_S3_H + +#include +#include +#include +#include + +#include "include/str_list.h" +#include "rgw_lc.h" +#include "rgw_xml.h" +#include "rgw_tag_s3.h" + +class LCFilter_S3 : public LCFilter +{ +public: + void dump_xml(Formatter *f) const; + void decode_xml(XMLObj *obj); +}; + +class LCExpiration_S3 : public LCExpiration +{ +private: + bool dm_expiration{false}; +public: + LCExpiration_S3() {} + LCExpiration_S3(string _days, string _date, bool _dm_expiration) : LCExpiration(_days, _date), dm_expiration(_dm_expiration) {} + + void dump_xml(Formatter *f) const; + void decode_xml(XMLObj *obj); + + void set_dm_expiration(bool _dm_expiration) { + dm_expiration = _dm_expiration; + } + + bool get_dm_expiration() { + return dm_expiration; + } +}; + +class LCNoncurExpiration_S3 : public LCExpiration +{ +public: + LCNoncurExpiration_S3() {} + + void decode_xml(XMLObj *obj); + void dump_xml(Formatter *f) const; +}; + +class LCMPExpiration_S3 : public LCExpiration +{ +public: + LCMPExpiration_S3() {} + + void decode_xml(XMLObj *obj); + void dump_xml(Formatter *f) const; +}; + +class LCTransition_S3 : public LCTransition +{ +public: + LCTransition_S3() {} + + void decode_xml(XMLObj *obj); + void dump_xml(Formatter *f) const; +}; + +class LCNoncurTransition_S3 : public LCTransition +{ +public: + LCNoncurTransition_S3() {} + ~LCNoncurTransition_S3() {} + + void decode_xml(XMLObj *obj); + void dump_xml(Formatter *f) const; +}; + + +class LCRule_S3 : public LCRule +{ +public: + LCRule_S3() {} + + void dump_xml(Formatter *f) const; + void decode_xml(XMLObj *obj); +}; + +class RGWLifecycleConfiguration_S3 : public RGWLifecycleConfiguration +{ +public: + explicit RGWLifecycleConfiguration_S3(CephContext *_cct) : RGWLifecycleConfiguration(_cct) {} + RGWLifecycleConfiguration_S3() : RGWLifecycleConfiguration(nullptr) {} + + void decode_xml(XMLObj *obj); + int rebuild(RGWLifecycleConfiguration& dest); + void dump_xml(Formatter *f) const; +}; + +#endif -- cgit v1.2.3