]> git.proxmox.com Git - ceph.git/blob - ceph/src/messages/MOSDPGRemove.h
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / messages / MOSDPGRemove.h
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 #ifndef CEPH_MOSDPGREMOVE_H
17 #define CEPH_MOSDPGREMOVE_H
18
19 #include "common/hobject.h"
20 #include "msg/Message.h"
21
22
23 class MOSDPGRemove final : public Message {
24 private:
25 static constexpr int HEAD_VERSION = 3;
26 static constexpr int COMPAT_VERSION = 3;
27
28 epoch_t epoch = 0;
29
30 public:
31 std::vector<spg_t> pg_list;
32
33 epoch_t get_epoch() const { return epoch; }
34
35 MOSDPGRemove() :
36 Message{MSG_OSD_PG_REMOVE, HEAD_VERSION, COMPAT_VERSION} {}
37 MOSDPGRemove(epoch_t e, std::vector<spg_t>& l) :
38 Message{MSG_OSD_PG_REMOVE, HEAD_VERSION, COMPAT_VERSION} {
39 this->epoch = e;
40 pg_list.swap(l);
41 }
42 private:
43 ~MOSDPGRemove() final {}
44
45 public:
46 std::string_view get_type_name() const override { return "PGrm"; }
47
48 void encode_payload(uint64_t features) override {
49 using ceph::encode;
50 encode(epoch, payload);
51 encode(pg_list, payload);
52 }
53 void decode_payload() override {
54 using ceph::decode;
55 auto p = payload.cbegin();
56 decode(epoch, p);
57 decode(pg_list, p);
58 }
59 void print(std::ostream& out) const override {
60 out << "osd pg remove(" << "epoch " << epoch << "; ";
61 for (auto i = pg_list.begin(); i != pg_list.end(); ++i) {
62 out << "pg" << *i << "; ";
63 }
64 out << ")";
65 }
66 private:
67 template<class T, typename... Args>
68 friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
69 };
70
71 #endif