X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fmessages%2FMDiscover.h;fp=src%2Fceph%2Fsrc%2Fmessages%2FMDiscover.h;h=50b5d11b52f23ec62cd35bc0e557fcae18d5c70a;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/messages/MDiscover.h b/src/ceph/src/messages/MDiscover.h new file mode 100644 index 0000000..50b5d11 --- /dev/null +++ b/src/ceph/src/messages/MDiscover.h @@ -0,0 +1,92 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab +/* + * Ceph - scalable distributed file system + * + * Copyright (C) 2004-2006 Sage Weil + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * + */ + + +#ifndef CEPH_MDISCOVER_H +#define CEPH_MDISCOVER_H + +#include "msg/Message.h" +#include "include/filepath.h" + +#include + + +class MDiscover : public Message { + inodeno_t base_ino; // 1 -> root + frag_t base_dir_frag; + + snapid_t snapid; + filepath want; // ... [/]need/this/stuff + + bool want_base_dir; + bool want_xlocked; + + public: + inodeno_t get_base_ino() { return base_ino; } + frag_t get_base_dir_frag() { return base_dir_frag; } + snapid_t get_snapid() { return snapid; } + + filepath& get_want() { return want; } + const std::string& get_dentry(int n) { return want[n]; } + + bool wants_base_dir() { return want_base_dir; } + bool wants_xlocked() { return want_xlocked; } + + void set_base_dir_frag(frag_t f) { base_dir_frag = f; } + + MDiscover() : Message(MSG_MDS_DISCOVER) { } + MDiscover(inodeno_t base_ino_, + frag_t base_frag_, + snapid_t s, + filepath& want_path_, + bool want_base_dir_ = true, + bool discover_xlocks_ = false) : + Message(MSG_MDS_DISCOVER), + base_ino(base_ino_), + base_dir_frag(base_frag_), + snapid(s), + want(want_path_), + want_base_dir(want_base_dir_), + want_xlocked(discover_xlocks_) { } +private: + ~MDiscover() override {} + +public: + const char *get_type_name() const override { return "Dis"; } + void print(ostream &out) const override { + out << "discover(" << header.tid << " " << base_ino << "." << base_dir_frag + << " " << want << ")"; + } + + void decode_payload() override { + bufferlist::iterator p = payload.begin(); + ::decode(base_ino, p); + ::decode(base_dir_frag, p); + ::decode(snapid, p); + ::decode(want, p); + ::decode(want_base_dir, p); + ::decode(want_xlocked, p); + } + void encode_payload(uint64_t features) override { + ::encode(base_ino, payload); + ::encode(base_dir_frag, payload); + ::encode(snapid, payload); + ::encode(want, payload); + ::encode(want_base_dir, payload); + ::encode(want_xlocked, payload); + } + +}; + +#endif