Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / messages / MExportDirAck.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 #ifndef CEPH_MEXPORTDIRACK_H
16 #define CEPH_MEXPORTDIRACK_H
17
18 #include "MExportDir.h"
19
20 class MExportDirAck : public Message {
21 public:
22   dirfrag_t dirfrag;
23   bufferlist imported_caps;
24
25   dirfrag_t get_dirfrag() { return dirfrag; }
26   
27   MExportDirAck() : Message(MSG_MDS_EXPORTDIRACK) {}
28   MExportDirAck(dirfrag_t df, uint64_t tid) :
29     Message(MSG_MDS_EXPORTDIRACK), dirfrag(df) {
30     set_tid(tid);
31   }
32 private:
33   ~MExportDirAck() override {}
34
35 public:
36   const char *get_type_name() const override { return "ExAck"; }
37     void print(ostream& o) const override {
38     o << "export_ack(" << dirfrag << ")";
39   }
40
41   void decode_payload() override {
42     bufferlist::iterator p = payload.begin();
43     ::decode(dirfrag, p);
44     ::decode(imported_caps, p);
45   }
46   void encode_payload(uint64_t features) override {
47     ::encode(dirfrag, payload);
48     ::encode(imported_caps, payload);
49   }
50
51 };
52
53 #endif