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/msg/SimplePolicyMessenger.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/msg/SimplePolicyMessenger.h')
-rw-r--r-- | src/msg/SimplePolicyMessenger.h | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/src/msg/SimplePolicyMessenger.h b/src/msg/SimplePolicyMessenger.h new file mode 100644 index 00000000..2e9b84ec --- /dev/null +++ b/src/msg/SimplePolicyMessenger.h @@ -0,0 +1,100 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net> + * Portions Copyright (C) 2013 CohortFS, LLC + * + * 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. + * + */ + +#ifndef SIMPLE_POLICY_MESSENGER_H +#define SIMPLE_POLICY_MESSENGER_H + +#include "Messenger.h" +#include "Policy.h" + +class SimplePolicyMessenger : public Messenger +{ +private: + /// lock protecting policy + Mutex policy_lock; + // entity_name_t::type -> Policy + ceph::net::PolicySet<Throttle> policy_set; + +public: + + SimplePolicyMessenger(CephContext *cct, entity_name_t name, + string mname, uint64_t _nonce) + : Messenger(cct, name), + policy_lock("SimplePolicyMessenger::policy_lock") + { + } + + /** + * Get the Policy associated with a type of peer. + * @param t The peer type to get the default policy for. + * + * @return A const Policy reference. + */ + Policy get_policy(int t) override { + Mutex::Locker l(policy_lock); + return policy_set.get(t); + } + + Policy get_default_policy() override { + Mutex::Locker l(policy_lock); + return policy_set.get_default(); + } + + /** + * Set a policy which is applied to all peers who do not have a type-specific + * Policy. + * This is an init-time function and cannot be called after calling + * start() or bind(). + * + * @param p The Policy to apply. + */ + void set_default_policy(Policy p) override { + Mutex::Locker l(policy_lock); + policy_set.set_default(p); + } + /** + * Set a policy which is applied to all peers of the given type. + * This is an init-time function and cannot be called after calling + * start() or bind(). + * + * @param type The peer type this policy applies to. + * @param p The policy to apply. + */ + void set_policy(int type, Policy p) override { + Mutex::Locker l(policy_lock); + policy_set.set(type, p); + } + + /** + * Set a Throttler which is applied to all Messages from the given + * type of peer. + * This is an init-time function and cannot be called after calling + * start() or bind(). + * + * @param type The peer type this Throttler will apply to. + * @param t The Throttler to apply. SimpleMessenger does not take + * ownership of this pointer, but you must not destroy it before + * you destroy SimpleMessenger. + */ + void set_policy_throttlers(int type, + Throttle* byte_throttle, + Throttle* msg_throttle) override { + Mutex::Locker l(policy_lock); + policy_set.set_throttlers(type, byte_throttle, msg_throttle); + } + +}; /* SimplePolicyMessenger */ + +#endif /* SIMPLE_POLICY_MESSENGER_H */ |