blob: 89f5b84024fd8ac01611d96a9f504d6d818c535c (
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
51
52
53
54
|
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#ifndef CEPH_MOSDFULL_H
#define CEPH_MOSDFULL_H
#include "messages/PaxosServiceMessage.h"
#include "osd/OSDMap.h"
// tell the mon to update the full/nearfull bits. note that in the
// future this message could be generalized to other state bits, but
// for now name it for its sole application.
class MOSDFull final : public PaxosServiceMessage {
public:
epoch_t map_epoch = 0;
uint32_t state = 0;
private:
~MOSDFull() final {}
public:
MOSDFull(epoch_t e, unsigned s)
: PaxosServiceMessage{MSG_OSD_FULL, e}, map_epoch(e), state(s) { }
MOSDFull()
: PaxosServiceMessage{MSG_OSD_FULL, 0} {}
public:
void encode_payload(uint64_t features) {
using ceph::encode;
paxos_encode();
encode(map_epoch, payload);
encode(state, payload);
}
void decode_payload() {
using ceph::decode;
auto p = payload.cbegin();
paxos_decode(p);
decode(map_epoch, p);
decode(state, p);
}
std::string_view get_type_name() const { return "osd_full"; }
void print(std::ostream &out) const {
std::set<std::string> states;
OSDMap::calc_state_set(state, states);
out << "osd_full(e" << map_epoch << " " << states << " v" << version << ")";
}
private:
template<class T, typename... Args>
friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
};
#endif
|