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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// -*- 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 <sage@newdream.net>
*
* 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 __MCLIENTLEASE_H
#define __MCLIENTLEASE_H
#include "msg/Message.h"
struct MClientLease : public Message {
struct ceph_mds_lease h;
nstring dname;
int get_action() { return h.action; }
ceph_seq_t get_seq() { return h.seq; }
int get_mask() { return h.mask; }
inodeno_t get_ino() { return inodeno_t(h.ino); }
snapid_t get_first() { return snapid_t(h.first); }
snapid_t get_last() { return snapid_t(h.last); }
MClientLease() : Message(CEPH_MSG_CLIENT_LEASE) {}
MClientLease(int ac, ceph_seq_t seq, int m, __u64 i, __u64 sf, __u64 sl) :
Message(CEPH_MSG_CLIENT_LEASE) {
h.action = ac;
h.seq = seq;
h.mask = m;
h.ino = i;
h.first = sf;
h.last = sl;
}
MClientLease(int ac, ceph_seq_t seq, int m, __u64 i, __u64 sf, __u64 sl, const nstring& d) :
Message(CEPH_MSG_CLIENT_LEASE),
dname(d) {
h.action = ac;
h.seq = seq;
h.mask = m;
h.ino = i;
h.first = sf;
h.last = sl;
}
private:
~MClientLease() {}
public:
const char *get_type_name() { return "client_lease"; }
void print(ostream& out) {
out << "client_lease(a=" << ceph_lease_op_name(get_action())
<< " seq " << get_seq()
<< " mask " << get_mask();
out << " " << get_ino();
if (h.last != CEPH_NOSNAP)
out << " [" << snapid_t(h.first) << "," << snapid_t(h.last) << "]";
if (dname.length())
out << "/" << dname;
out << ")";
}
void decode_payload() {
bufferlist::iterator p = payload.begin();
::decode(h, p);
::decode(dname, p);
}
virtual void encode_payload() {
::encode(h, payload);
::encode(dname, payload);
}
};
#endif
|