Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / messages / MExportDirDiscover.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_MEXPORTDIRDISCOVER_H
16 #define CEPH_MEXPORTDIRDISCOVER_H
17
18 #include "msg/Message.h"
19 #include "include/types.h"
20
21 class MExportDirDiscover : public Message {
22   mds_rank_t from;
23   dirfrag_t dirfrag;
24   filepath path;
25
26  public:
27   mds_rank_t get_source_mds() { return from; }
28   inodeno_t get_ino() { return dirfrag.ino; }
29   dirfrag_t get_dirfrag() { return dirfrag; }
30   filepath& get_path() { return path; }
31
32   bool started;
33
34   MExportDirDiscover() :     
35     Message(MSG_MDS_EXPORTDIRDISCOVER),
36     started(false) { }
37   MExportDirDiscover(dirfrag_t df, filepath& p, mds_rank_t f, uint64_t tid) :
38     Message(MSG_MDS_EXPORTDIRDISCOVER),
39     from(f), dirfrag(df), path(p), started(false) {
40     set_tid(tid);
41   }
42 private:
43   ~MExportDirDiscover() override {}
44
45 public:
46   const char *get_type_name() const override { return "ExDis"; }
47   void print(ostream& o) const override {
48     o << "export_discover(" << dirfrag << " " << path << ")";
49   }
50
51   void decode_payload() override {
52     bufferlist::iterator p = payload.begin();
53     ::decode(from, p);
54     ::decode(dirfrag, p);
55     ::decode(path, p);
56   }
57
58   void encode_payload(uint64_t features) override {
59     ::encode(from, payload);
60     ::encode(dirfrag, payload);
61     ::encode(path, payload);
62   }
63 };
64
65 #endif