summaryrefslogtreecommitdiffstats
path: root/src/messages/MServiceMap.h
blob: 05954354a882bd43930b79152caf14ddc6bd49f7 (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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#pragma once

#include "msg/Message.h"
#include "mgr/ServiceMap.h"

class MServiceMap final : public Message {
public:
  ServiceMap service_map;

  MServiceMap() : Message{MSG_SERVICE_MAP} { }
  explicit MServiceMap(const ServiceMap& sm)
    : Message{MSG_SERVICE_MAP},
      service_map(sm) {
  }
private:
  ~MServiceMap() final {}

public:
  std::string_view get_type_name() const override { return "service_map"; }
  void print(std::ostream& out) const override {
    out << "service_map(e" << service_map.epoch << " "
	<< service_map.services.size() << " svc)";
  }
  void encode_payload(uint64_t features) override {
    using ceph::encode;
    encode(service_map, payload, features);
  }
  void decode_payload() override {
    using ceph::decode;
    auto p = payload.cbegin();
    decode(service_map, p);
  }
private:
  template<class T, typename... Args>
  friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
};