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