]> git.proxmox.com Git - ceph.git/blame - ceph/src/messages/MExportDirPrepAck.h
import quincy beta 17.1.0
[ceph.git] / ceph / src / messages / MExportDirPrepAck.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#ifndef CEPH_MEXPORTDIRPREPACK_H
16#define CEPH_MEXPORTDIRPREPACK_H
17
7c673cae 18#include "include/types.h"
f67539c2 19#include "messages/MMDSOp.h"
7c673cae 20
f67539c2 21class MExportDirPrepAck final : public MMDSOp {
11fdf7f2 22private:
f67539c2
TL
23 static constexpr int HEAD_VERSION = 1;
24 static constexpr int COMPAT_VERSION = 1;
9f95a23c 25
7c673cae 26 dirfrag_t dirfrag;
11fdf7f2 27 bool success = false;
7c673cae
FG
28
29 public:
11fdf7f2
TL
30 dirfrag_t get_dirfrag() const { return dirfrag; }
31
32protected:
9f95a23c 33 MExportDirPrepAck() :
f67539c2 34 MMDSOp{MSG_MDS_EXPORTDIRPREPACK, HEAD_VERSION, COMPAT_VERSION} {}
7c673cae 35 MExportDirPrepAck(dirfrag_t df, bool s, uint64_t tid) :
f67539c2 36 MMDSOp{MSG_MDS_EXPORTDIRPREPACK, HEAD_VERSION, COMPAT_VERSION}, dirfrag(df), success(s) {
7c673cae
FG
37 set_tid(tid);
38 }
f67539c2 39 ~MExportDirPrepAck() final {}
7c673cae
FG
40
41public:
11fdf7f2
TL
42 bool is_success() const { return success; }
43 std::string_view get_type_name() const override { return "ExPAck"; }
f67539c2 44 void print(std::ostream& o) const override {
7c673cae
FG
45 o << "export_prep_ack(" << dirfrag << (success ? " success)" : " fail)");
46 }
47
48 void decode_payload() override {
11fdf7f2
TL
49 using ceph::decode;
50 auto p = payload.cbegin();
51 decode(dirfrag, p);
52 decode(success, p);
7c673cae
FG
53 }
54 void encode_payload(uint64_t features) override {
11fdf7f2
TL
55 using ceph::encode;
56 encode(dirfrag, payload);
57 encode(success, payload);
7c673cae 58 }
9f95a23c
TL
59private:
60 template<class T, typename... Args>
61 friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
20effc67
TL
62 template<class T, typename... Args>
63 friend MURef<T> crimson::make_message(Args&&... args);
7c673cae
FG
64};
65
66#endif