]> git.proxmox.com Git - ceph.git/blame - ceph/src/messages/MOSDAlive.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / messages / MOSDAlive.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) 2004-2006 Sage Weil <sage@newdream.net>
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
16
17#ifndef CEPH_MOSDALIVE_H
18#define CEPH_MOSDALIVE_H
19
20#include "messages/PaxosServiceMessage.h"
21
9f95a23c 22class MOSDAlive : public PaxosServiceMessage {
11fdf7f2 23public:
d2e6a577 24 epoch_t want = 0;
7c673cae 25
9f95a23c
TL
26 MOSDAlive(epoch_t h, epoch_t w) : PaxosServiceMessage{MSG_OSD_ALIVE, h}, want(w) {}
27 MOSDAlive() : MOSDAlive{0, 0} {}
7c673cae
FG
28private:
29 ~MOSDAlive() override {}
30
31public:
32 void encode_payload(uint64_t features) override {
33 paxos_encode();
11fdf7f2
TL
34 using ceph::encode;
35 encode(want, payload);
7c673cae
FG
36 }
37 void decode_payload() override {
11fdf7f2 38 auto p = payload.cbegin();
7c673cae 39 paxos_decode(p);
11fdf7f2 40 decode(want, p);
7c673cae
FG
41 }
42
11fdf7f2 43 std::string_view get_type_name() const override { return "osd_alive"; }
7c673cae
FG
44 void print(ostream &out) const override {
45 out << "osd_alive(want up_thru " << want << " have " << version << ")";
46 }
9f95a23c
TL
47private:
48 template<class T, typename... Args>
49 friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
7c673cae
FG
50};
51
52#endif