Fix some bugs when testing opensds ansible
[stor4nfv.git] / src / ceph / src / messages / MMDSFindInoReply.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) 2011 New Dream Network
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_MDSFINDINOREPLY_H
16 #define CEPH_MDSFINDINOREPLY_H
17
18 #include "msg/Message.h"
19 #include "include/filepath.h"
20
21 struct MMDSFindInoReply : public Message {
22   ceph_tid_t tid;
23   filepath path;
24
25   MMDSFindInoReply() : Message(MSG_MDS_FINDINOREPLY) {}
26   MMDSFindInoReply(ceph_tid_t t) : Message(MSG_MDS_FINDINOREPLY), tid(t) {}
27
28   const char *get_type_name() const override { return "findinoreply"; }
29   void print(ostream &out) const override {
30     out << "findinoreply(" << tid << " " << path << ")";
31   }
32   
33   void encode_payload(uint64_t features) override {
34     ::encode(tid, payload);
35     ::encode(path, payload);
36   }
37   void decode_payload() override {
38     bufferlist::iterator p = payload.begin();
39     ::decode(tid, p);
40     ::decode(path, p);
41   }
42 };
43
44 #endif