]> git.proxmox.com Git - ceph.git/blame - ceph/src/messages/MMonMetadata.h
Import ceph 15.2.8
[ceph.git] / ceph / src / messages / MMonMetadata.h
CommitLineData
7c673cae
FG
1// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2// vim: ts=8 sw=2 smarttab
3/*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2015 Red Hat
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15#ifndef CEPH_MMONMETADATA_H
16#define CEPH_MMONMETADATA_H
17
18#include "mon/mon_types.h"
19#include "msg/Message.h"
20
9f95a23c 21class MMonMetadata : public Message {
7c673cae
FG
22public:
23 Metadata data;
24
25private:
11fdf7f2 26 static constexpr int HEAD_VERSION = 1;
7c673cae
FG
27 ~MMonMetadata() override {}
28
29public:
30 MMonMetadata() :
9f95a23c 31 Message{CEPH_MSG_MON_METADATA}
7c673cae
FG
32 {}
33 MMonMetadata(const Metadata& metadata) :
9f95a23c 34 Message{CEPH_MSG_MON_METADATA, HEAD_VERSION},
7c673cae
FG
35 data(metadata)
36 {}
37
11fdf7f2 38 std::string_view get_type_name() const override {
7c673cae
FG
39 return "mon_metadata";
40 }
41
42 void encode_payload(uint64_t features) override {
11fdf7f2
TL
43 using ceph::encode;
44 encode(data, payload);
7c673cae
FG
45 }
46
47 void decode_payload() override {
11fdf7f2
TL
48 auto p = payload.cbegin();
49 decode(data, p);
7c673cae 50 }
9f95a23c
TL
51private:
52 template<class T, typename... Args>
53 friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
7c673cae
FG
54};
55
56#endif