]> git.proxmox.com Git - ceph.git/blame - ceph/src/messages/MOSDPGLog.h
import 15.2.0 Octopus source
[ceph.git] / ceph / src / messages / MOSDPGLog.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#ifndef CEPH_MOSDPGLOG_H
17#define CEPH_MOSDPGLOG_H
18
11fdf7f2 19#include "messages/MOSDPeeringOp.h"
9f95a23c 20#include "osd/PGPeeringEvent.h"
7c673cae 21
9f95a23c 22class MOSDPGLog : public MOSDPeeringOp {
11fdf7f2 23private:
9f95a23c 24 static constexpr int HEAD_VERSION = 6;
11fdf7f2 25 static constexpr int COMPAT_VERSION = 5;
7c673cae 26
d2e6a577 27 epoch_t epoch = 0;
7c673cae
FG
28 /// query_epoch is the epoch of the query being responded to, or
29 /// the current epoch if this is not being sent in response to a
30 /// query. This allows the recipient to disregard responses to old
31 /// queries.
d2e6a577 32 epoch_t query_epoch = 0;
7c673cae
FG
33
34public:
35 shard_id_t to;
36 shard_id_t from;
37 pg_info_t info;
38 pg_log_t log;
39 pg_missing_t missing;
40 PastIntervals past_intervals;
9f95a23c 41 std::optional<pg_lease_t> lease;
7c673cae
FG
42
43 epoch_t get_epoch() const { return epoch; }
44 spg_t get_pgid() const { return spg_t(info.pgid.pgid, to); }
45 epoch_t get_query_epoch() const { return query_epoch; }
46
11fdf7f2
TL
47 spg_t get_spg() const override {
48 return spg_t(info.pgid.pgid, to);
7c673cae 49 }
11fdf7f2
TL
50 epoch_t get_map_epoch() const override {
51 return epoch;
52 }
53 epoch_t get_min_epoch() const override {
54 return query_epoch;
55 }
56
57 PGPeeringEvent *get_event() override {
58 return new PGPeeringEvent(
59 epoch, query_epoch,
60 MLogRec(pg_shard_t(get_source().num(), from),
61 this),
62 true,
63 new PGCreateInfo(
64 get_spg(),
65 query_epoch,
66 info.history,
67 past_intervals,
68 false));
69 }
70
9f95a23c 71 MOSDPGLog() : MOSDPeeringOp{MSG_OSD_PG_LOG, HEAD_VERSION, COMPAT_VERSION} {
7c673cae
FG
72 set_priority(CEPH_MSG_PRIO_HIGH);
73 }
74 MOSDPGLog(shard_id_t to, shard_id_t from,
9f95a23c
TL
75 version_t mv, const pg_info_t& i, epoch_t query_epoch)
76 : MOSDPeeringOp{MSG_OSD_PG_LOG, HEAD_VERSION, COMPAT_VERSION},
7c673cae
FG
77 epoch(mv), query_epoch(query_epoch),
78 to(to), from(from),
79 info(i) {
80 set_priority(CEPH_MSG_PRIO_HIGH);
81 }
82
83private:
84 ~MOSDPGLog() override {}
85
86public:
11fdf7f2 87 std::string_view get_type_name() const override { return "PGlog"; }
9f95a23c 88 void inner_print(std::ostream& out) const override {
7c673cae
FG
89 // NOTE: log is not const, but operator<< doesn't touch fields
90 // swapped out by OSD code.
11fdf7f2
TL
91 out << "log " << log
92 << " pi " << past_intervals;
9f95a23c
TL
93 if (lease) {
94 out << " " << *lease;
95 }
7c673cae
FG
96 }
97
98 void encode_payload(uint64_t features) override {
11fdf7f2
TL
99 using ceph::encode;
100 encode(epoch, payload);
101 encode(info, payload);
102 encode(log, payload);
9f95a23c 103 encode(missing, payload, features);
11fdf7f2
TL
104 if (!HAVE_FEATURE(features, SERVER_NAUTILUS)) {
105 // pre-nautilus OSDs do not set last_peering_reset properly
106 encode(epoch, payload);
7c673cae 107 } else {
11fdf7f2 108 encode(query_epoch, payload);
7c673cae 109 }
11fdf7f2
TL
110 encode(past_intervals, payload);
111 encode(to, payload);
112 encode(from, payload);
9f95a23c 113 encode(lease, payload);
7c673cae
FG
114 }
115 void decode_payload() override {
9f95a23c 116 using ceph::decode;
11fdf7f2
TL
117 auto p = payload.cbegin();
118 decode(epoch, p);
119 decode(info, p);
7c673cae
FG
120 log.decode(p, info.pgid.pool());
121 missing.decode(p, info.pgid.pool());
11fdf7f2
TL
122 decode(query_epoch, p);
123 decode(past_intervals, p);
124 decode(to, p);
125 decode(from, p);
9f95a23c
TL
126 if (header.version >= 6) {
127 decode(lease, p);
128 }
7c673cae 129 }
9f95a23c
TL
130private:
131 template<class T, typename... Args>
132 friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
7c673cae
FG
133};
134
135#endif