summaryrefslogtreecommitdiffstats
path: root/src/messages/MMDSPing.h
blob: 6c1f2f20edebd9a52d2e2ecc4b1f15a3bb1dc4c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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