]> git.proxmox.com Git - ceph.git/blame - ceph/src/messages/MInodeFileCaps.h
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / messages / MInodeFileCaps.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_MINODEFILECAPS_H
17#define CEPH_MINODEFILECAPS_H
18
f67539c2 19#include "messages/MMDSOp.h"
11fdf7f2 20
f67539c2 21class MInodeFileCaps final : public MMDSOp {
11fdf7f2 22private:
9f95a23c
TL
23 static constexpr int HEAD_VERSION = 1;
24 static constexpr int COMPAT_VERSION = 1;
7c673cae 25 inodeno_t ino;
11fdf7f2 26 __u32 caps = 0;
7c673cae 27
9f95a23c 28public:
11fdf7f2
TL
29 inodeno_t get_ino() const { return ino; }
30 int get_caps() const { return caps; }
31
32protected:
f67539c2 33 MInodeFileCaps() : MMDSOp(MSG_MDS_INODEFILECAPS, HEAD_VERSION, COMPAT_VERSION) {}
7c673cae 34 MInodeFileCaps(inodeno_t ino, int caps) :
f67539c2 35 MMDSOp(MSG_MDS_INODEFILECAPS, HEAD_VERSION, COMPAT_VERSION) {
7c673cae
FG
36 this->ino = ino;
37 this->caps = caps;
38 }
f67539c2 39 ~MInodeFileCaps() final {}
7c673cae
FG
40
41public:
11fdf7f2 42 std::string_view get_type_name() const override { return "inode_file_caps";}
f67539c2 43 void print(std::ostream& out) const override {
7c673cae
FG
44 out << "inode_file_caps(" << ino << " " << ccap_string(caps) << ")";
45 }
46
47 void encode_payload(uint64_t features) override {
11fdf7f2
TL
48 using ceph::encode;
49 encode(ino, payload);
50 encode(caps, payload);
7c673cae
FG
51 }
52 void decode_payload() override {
11fdf7f2
TL
53 using ceph::decode;
54 auto p = payload.cbegin();
55 decode(ino, p);
56 decode(caps, p);
7c673cae 57 }
9f95a23c
TL
58private:
59 template<class T, typename... Args>
60 friend boost::intrusive_ptr<T> ceph::make_message(Args&&... args);
7c673cae
FG
61};
62
63#endif