summaryrefslogtreecommitdiffstats
path: root/src/librbd/watcher/Types.cc
blob: 8f1991d7bf9f230ca8b5b928dfb3eb3e5bb6dd02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#include "librbd/watcher/Types.h"
#include "common/Formatter.h"

namespace librbd {
namespace watcher {

void ClientId::encode(bufferlist &bl) const {
  using ceph::encode;
  encode(gid, bl);
  encode(handle, bl);
}

void ClientId::decode(bufferlist::const_iterator &iter) {
  using ceph::decode;
  decode(gid, iter);
  decode(handle, iter);
}

void ClientId::dump(Formatter *f) const {
  f->dump_unsigned("gid", gid);
  f->dump_unsigned("handle", handle);
}

void NotifyResponse::encode(bufferlist& bl) const {
  using ceph::encode;
  encode(acks, bl);
  encode(timeouts, bl);
}

void NotifyResponse::decode(bufferlist::const_iterator& iter) {
  using ceph::decode;
  decode(acks, iter);
  decode(timeouts, iter);
}
std::ostream &operator<<(std::ostream &out,
                         const ClientId &client_id) {
  out << "[" << client_id.gid << "," << client_id.handle << "]";
  return out;
}

} // namespace watcher
} // namespace librbd