X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Flibrbd%2Fwatcher%2FTypes.h;fp=src%2Fceph%2Fsrc%2Flibrbd%2Fwatcher%2FTypes.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=e7886f6cad5e77869939528ec7b4a49c8e91cbd6;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/librbd/watcher/Types.h b/src/ceph/src/librbd/watcher/Types.h deleted file mode 100644 index e7886f6..0000000 --- a/src/ceph/src/librbd/watcher/Types.h +++ /dev/null @@ -1,71 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab - -#ifndef CEPH_LIBRBD_WATCHER_TYPES_H -#define CEPH_LIBRBD_WATCHER_TYPES_H - -#include "include/int_types.h" -#include "include/buffer_fwd.h" -#include "include/encoding.h" - -namespace ceph { class Formatter; } - -namespace librbd { - -class Watcher; - -namespace watcher { - -struct ClientId { - uint64_t gid; - uint64_t handle; - - ClientId() : gid(0), handle(0) {} - ClientId(uint64_t gid, uint64_t handle) : gid(gid), handle(handle) {} - - void encode(bufferlist& bl) const; - void decode(bufferlist::iterator& it); - void dump(Formatter *f) const; - - inline bool is_valid() const { - return (*this != ClientId()); - } - - inline bool operator==(const ClientId &rhs) const { - return (gid == rhs.gid && handle == rhs.handle); - } - inline bool operator!=(const ClientId &rhs) const { - return !(*this == rhs); - } - inline bool operator<(const ClientId &rhs) const { - if (gid != rhs.gid) { - return gid < rhs.gid; - } else { - return handle < rhs.handle; - } - } -}; - -struct NotifyResponse { - std::map acks; - std::vector timeouts; - - void encode(bufferlist& bl) const; - void decode(bufferlist::iterator& it); -}; - -template -struct Traits { - typedef librbd::Watcher Watcher; -}; - -} // namespace watcher -} // namespace librbd - -std::ostream &operator<<(std::ostream &out, - const librbd::watcher::ClientId &client); - -WRITE_CLASS_ENCODER(librbd::watcher::ClientId); -WRITE_CLASS_ENCODER(librbd::watcher::NotifyResponse); - -#endif // CEPH_LIBRBD_WATCHER_TYPES_H