summaryrefslogtreecommitdiffstats
path: root/src/messages/MMDSPing.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/messages/MMDSPing.h')
-rw-r--r--src/messages/MMDSPing.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/messages/MMDSPing.h b/src/messages/MMDSPing.h
new file mode 100644
index 000000000..6c1f2f20e
--- /dev/null
+++ b/src/messages/MMDSPing.h
@@ -0,0 +1,50 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
+
+#ifndef CEPH_MESSAGES_MMDSPING_H
+#define CEPH_MESSAGES_MMDSPING_H
+
+#include "include/types.h"
+#include "messages/MMDSOp.h"
+
+class MMDSPing final : public MMDSOp {
+private:
+ static constexpr int HEAD_VERSION = 1;
+ static constexpr int COMPAT_VERSION = 1;
+public:
+ version_t seq;
+
+protected:
+ MMDSPing() : MMDSOp(MSG_MDS_PING, HEAD_VERSION, COMPAT_VERSION) {
+ }
+ MMDSPing(version_t seq)
+ : MMDSOp(MSG_MDS_PING, HEAD_VERSION, COMPAT_VERSION), seq(seq) {
+ }
+ ~MMDSPing() final {}
+
+public:
+ std::string_view get_type_name() const override {
+ return "mdsping";
+ }
+
+ void print(ostream &out) const override {
+ out << "mdsping";
+ }
+
+ void encode_payload(uint64_t features) override {
+ using ceph::encode;
+ encode(seq, payload);
+ }
+
+ void decode_payload() override {
+ using ceph::decode;
+ auto iter = payload.cbegin();
+ decode(seq, iter);
+ }
+
+private:
+ template<class T, typename... Args>
+ friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
+};
+
+#endif // CEPH_MESSAGES_MMDSPING_H