diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/rgw/rgw_formats.h | |
parent | Initial commit. (diff) | |
download | ceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/rgw/rgw_formats.h')
-rw-r--r-- | src/rgw/rgw_formats.h | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/src/rgw/rgw_formats.h b/src/rgw/rgw_formats.h new file mode 100644 index 000000000..e645d3ec2 --- /dev/null +++ b/src/rgw/rgw_formats.h @@ -0,0 +1,134 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab ft=cpp + +#pragma once + +#include "common/Formatter.h" + +#include <list> +#include <stdint.h> +#include <string> +#include <ostream> + +struct plain_stack_entry { + int size; + bool is_array; +}; + +/* FIXME: this class is mis-named. + * FIXME: This was a hack to send certain swift messages. + * There is a much better way to do this. + */ +class RGWFormatter_Plain : public Formatter { + void reset_buf(); +public: + explicit RGWFormatter_Plain(bool use_kv = false); + ~RGWFormatter_Plain() override; + + void set_status(int status, const char* status_name) override {}; + void output_header() override {}; + void output_footer() override {}; + void enable_line_break() override {}; + void flush(std::ostream& os) override; + void reset() override; + + void open_array_section(std::string_view name) override; + void open_array_section_in_ns(std::string_view name, const char *ns) override; + void open_object_section(std::string_view name) override; + void open_object_section_in_ns(std::string_view name, const char *ns) override; + void close_section() override; + void dump_null(std::string_view name) override; + void dump_unsigned(std::string_view name, uint64_t u) override; + void dump_int(std::string_view name, int64_t u) override; + void dump_float(std::string_view name, double d) override; + void dump_string(std::string_view name, std::string_view s) override; + std::ostream& dump_stream(std::string_view name) override; + void dump_format_va(std::string_view name, const char *ns, bool quoted, const char *fmt, va_list ap) override; + int get_len() const override; + void write_raw_data(const char *data) override; + +private: + void write_data(const char *fmt, ...); + void dump_value_int(std::string_view name, const char *fmt, ...); + + char *buf = nullptr; + int len = 0; + int max_len = 0; + + std::list<struct plain_stack_entry> stack; + size_t min_stack_level = 0; + bool use_kv; + bool wrote_something = 0; +}; + + +/* This is a presentation layer. No logic inside, please. */ +class RGWSwiftWebsiteListingFormatter { + std::ostream& ss; + const std::string prefix; +protected: + std::string format_name(const std::string& item_name) const; +public: + RGWSwiftWebsiteListingFormatter(std::ostream& ss, + std::string prefix) + : ss(ss), + prefix(std::move(prefix)) { + } + + /* The supplied css_path can be empty. In such situation a default, + * embedded style sheet will be generated. */ + void generate_header(const std::string& dir_path, + const std::string& css_path); + void generate_footer(); + void dump_object(const rgw_bucket_dir_entry& objent); + void dump_subdir(const std::string& name); +}; + + +class RGWFormatterFlusher { +protected: + Formatter *formatter; + bool flushed; + bool started; + virtual void do_flush() = 0; + virtual void do_start(int ret) {} + void set_formatter(Formatter *f) { + formatter = f; + } +public: + explicit RGWFormatterFlusher(Formatter *f) : formatter(f), flushed(false), started(false) {} + virtual ~RGWFormatterFlusher() {} + + void flush() { + do_flush(); + flushed = true; + } + + virtual void start(int client_ret) { + if (!started) + do_start(client_ret); + started = true; + } + + Formatter *get_formatter() { return formatter; } + bool did_flush() { return flushed; } + bool did_start() { return started; } +}; + +class RGWStreamFlusher : public RGWFormatterFlusher { + std::ostream& os; +protected: + void do_flush() override { + formatter->flush(os); + } +public: + RGWStreamFlusher(Formatter *f, std::ostream& _os) : RGWFormatterFlusher(f), os(_os) {} +}; + +class RGWNullFlusher : public RGWFormatterFlusher { +protected: + void do_flush() override { + } +public: + RGWNullFlusher() : RGWFormatterFlusher(nullptr) {} +}; |