-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrresponses.cpp
208 lines (155 loc) · 4.85 KB
/
rresponses.cpp
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#include <string.h>
#include <string>
#include "rresponses.hpp"
#include "trequests.hpp"
#include "trace.h"
#define WRITE(d, l) do { \
if (offset + l > limit) throw std::exception(); \
memcpy(data + offset, d, l); \
offset += l; \
} while (0)
#define WRITEVAL(d) WRITE(&d, sizeof(d))
#define WRITESTR(str) do { \
uint16_t __l = str.length(); \
WRITEVAL(__l); \
WRITE(str.c_str(), __l); \
} while (0)
RResponse::RResponse(uint8_t type, uint16_t tag) : m_type(type), m_tag(tag) { }
uint32_t RResponse::SerializedSize() {
return sizeof(uint32_t) +\
sizeof(p9_msg_t) +\
SerializedBodySize();
}
void RResponse::SerializeTo(uint8_t *data, size_t limit) {
// write out the header
size_t offset = 0;
uint32_t total = SerializedSize();
WRITEVAL(total);
WRITEVAL(m_type);
WRITEVAL(m_tag);
SerializeBodyTo(data + offset, limit - offset);
}
RError::RError(uint16_t tag, std::string error) :
RResponse(P9_RERROR, tag), m_error(error) { }
void RError::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITESTR(m_error);
}
uint32_t RError::SerializedBodySize() {
return sizeof(uint16_t) +\
m_error.length();
}
RVersion::RVersion(uint16_t tag, uint32_t msize, std::string version) :
m_msize(msize), m_version(version), RResponse(P9_RVERSION, tag) { }
void RVersion::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITEVAL(m_msize);
WRITESTR(m_version);
}
uint32_t RVersion::SerializedBodySize() {
return sizeof(uint32_t) +\
sizeof(uint16_t) +\
m_version.length();
}
RAuth::RAuth(uint16_t tag, qid_t aqid) : m_aqid(aqid), RResponse(P9_RAUTH, tag) { }
void RAuth::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITEVAL(m_aqid);
}
RFlush::RFlush(uint16_t tag) : RResponse(P9_RFLUSH, tag) { }
uint32_t RAuth::SerializedBodySize() {
return sizeof(qid_t);
}
RAttach::RAttach(uint16_t tag, qid_t qid) : m_qid(qid), RResponse(P9_RATTACH, tag) { }
void RAttach::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITEVAL(m_qid);
}
uint32_t RAttach::SerializedBodySize() {
return sizeof(qid_t);
}
RWalk::~RWalk() {
TRACE_PRINT("Destructing RWalk %p", this);
if (m_qids.size() > 2) {
auto it = m_qids.begin();
it++;
auto stop = m_qids.end();
stop--;
for (; it != stop; it++) {
QidObject *qobj = *it;
delete qobj;
}
}
}
RWalk::RWalk(uint16_t tag, std::list<QidObject *> qobjs)
: RResponse(P9_RWALK, tag) {
for (auto it = qobjs.begin(); it != qobjs.end(); it++) {
QidObject *obj = *it;
m_qids.push_back(obj);
}
}
void RWalk::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
TRACE_PRINT("Serializing RWalk %p", this);
uint16_t nqids = m_qids.size();
WRITEVAL(nqids);
for (auto it = m_qids.begin(); it != m_qids.end(); it++) {
qid_t q;
QidObject *obj = *it;
obj->Qid(&q);
WRITEVAL(q);
}
}
uint32_t RWalk::SerializedBodySize() {
return sizeof(uint16_t) * sizeof(qid_t);
}
ROpen::ROpen(uint16_t tag, qid_t qid, uint32_t iounit) :
m_qid(qid), m_iounit(iounit), RResponse(P9_ROPEN, tag) { }
void ROpen::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITEVAL(m_qid);
WRITEVAL(m_iounit);
}
uint32_t ROpen::SerializedBodySize() {
return sizeof(m_qid) + sizeof(m_iounit);
}
RCreate::RCreate(uint16_t tag, qid_t qid, uint32_t iounit) :
m_qid(qid), m_iounit(iounit), RResponse(P9_RCREATE, tag) { }
void RCreate::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITEVAL(m_qid);
WRITEVAL(m_iounit);
}
uint32_t RCreate::SerializedBodySize() {
return sizeof(m_qid) + sizeof(m_iounit);
}
RRead::RRead(uint16_t tag, uint32_t count, std::unique_ptr<uint8_t[]> data) :
m_count(count), m_data(std::move(data)), RResponse(P9_RREAD, tag) { }
void RRead::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITEVAL(m_count);
WRITE(m_data.get(), m_count);
}
uint32_t RRead::SerializedBodySize() {
return sizeof(uint32_t) + m_count;
}
RWrite::RWrite(uint16_t tag, uint32_t count) :
m_count(count), RResponse(P9_RWRITE, tag) { }
void RWrite::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITEVAL(m_count);
}
uint32_t RWrite::SerializedBodySize() {
return sizeof(uint32_t);
}
RClunk::RClunk(uint16_t tag) : RResponse(P9_RCLUNK, tag) { }
RRemove::RRemove(uint16_t tag) : RResponse(P9_RREMOVE, tag) { }
RStat::RStat(uint16_t tag, std::unique_ptr<p9_stat_t> stat) :
m_stat(std::move(stat)), RResponse(P9_RSTAT, tag) { }
void RStat::SerializeBodyTo(uint8_t *data, size_t limit) {
size_t offset = 0;
WRITE(m_stat.get(), sizeof(p9_stat_t));
}
uint32_t RStat::SerializedBodySize() {
return sizeof(p9_stat_t);
}