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_worker.h | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 src/rgw/rgw_worker.h (limited to 'src/rgw/rgw_worker.h') diff --git a/src/rgw/rgw_worker.h b/src/rgw/rgw_worker.h new file mode 100644 index 000000000..f878ff8a6 --- /dev/null +++ b/src/rgw/rgw_worker.h @@ -0,0 +1,95 @@ + + +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab ft=cpp + +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2019 Red Hat, Inc. + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * + */ + + +#pragma once + +#include + +#include "common/Thread.h" +#include "common/ceph_mutex.h" +#include "include/common_fwd.h" + +#define dout_subsys ceph_subsys_rgw + +class RGWRados; + +class RGWRadosThread { + class Worker : public Thread, public DoutPrefixProvider { + CephContext *cct; + RGWRadosThread *processor; + ceph::mutex lock = ceph::make_mutex("RGWRadosThread::Worker"); + ceph::condition_variable cond; + + void wait() { + std::unique_lock l{lock}; + cond.wait(l); + }; + + void wait_interval(const ceph::real_clock::duration& wait_time) { + std::unique_lock l{lock}; + cond.wait_for(l, wait_time); + } + + public: + Worker(CephContext *_cct, RGWRadosThread *_p) : cct(_cct), processor(_p) {} + void *entry() override; + void signal() { + std::lock_guard l{lock}; + cond.notify_all(); + } + + CephContext *get_cct() const { return cct; } + unsigned get_subsys() const { return dout_subsys; } + std::ostream& gen_prefix(std::ostream& out) const { return out << "rgw rados thread: "; } + + }; + + Worker *worker; + +protected: + CephContext *cct; + RGWRados *store; + + std::atomic down_flag = { false }; + + string thread_name; + + virtual uint64_t interval_msec() = 0; + virtual void stop_process() {} +public: + RGWRadosThread(RGWRados *_store, const string& thread_name = "radosgw") + : worker(NULL), cct(_store->ctx()), store(_store), thread_name(thread_name) {} + virtual ~RGWRadosThread() { + stop(); + } + + virtual int init(const DoutPrefixProvider *dpp) { return 0; } + virtual int process(const DoutPrefixProvider *dpp) = 0; + + bool going_down() { return down_flag; } + + void start(); + void stop(); + + void signal() { + if (worker) { + worker->signal(); + } + } +}; + -- cgit v1.2.3