summaryrefslogtreecommitdiffstats
path: root/src/messages/MMgrCommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/messages/MMgrCommand.h')
-rw-r--r--src/messages/MMgrCommand.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/messages/MMgrCommand.h b/src/messages/MMgrCommand.h
new file mode 100644
index 000000000..83ee618c5
--- /dev/null
+++ b/src/messages/MMgrCommand.h
@@ -0,0 +1,46 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+
+#pragma once
+
+#include <vector>
+
+#include "msg/Message.h"
+
+class MMgrCommand final : public Message {
+public:
+ uuid_d fsid;
+ std::vector<std::string> cmd;
+
+ MMgrCommand()
+ : Message{MSG_MGR_COMMAND} {}
+ MMgrCommand(const uuid_d &f)
+ : Message{MSG_MGR_COMMAND},
+ fsid(f) { }
+
+private:
+ ~MMgrCommand() final {}
+
+public:
+ std::string_view get_type_name() const override { return "mgr_command"; }
+ void print(std::ostream& o) const override {
+ o << "mgr_command(tid " << get_tid() << ": ";
+ for (unsigned i=0; i<cmd.size(); i++) {
+ if (i) o << ' ';
+ o << cmd[i];
+ }
+ o << ")";
+ }
+
+ void encode_payload(uint64_t features) override {
+ using ceph::encode;
+ encode(fsid, payload);
+ encode(cmd, payload);
+ }
+ void decode_payload() override {
+ using ceph::decode;
+ auto p = payload.cbegin();
+ decode(fsid, p);
+ decode(cmd, p);
+ }
+};