-
Notifications
You must be signed in to change notification settings - Fork 0
/
chfs_client.cc
439 lines (380 loc) · 10.3 KB
/
chfs_client.cc
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
// chfs client. implements FS operations using extent and lock server
#include "chfs_client.h"
#include "extent_client.h"
#include <sstream>
#include <iostream>
#include <stdio.h>
#include <list>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
//#define DEBUG
chfs_client::chfs_client(std::string extent_dst) {
ec = new extent_client(extent_dst);
if (ec->put(1, "") != extent_protocol::OK)
printf("error init root dir\n"); // XYB: init root dir
}
//chfs_client::chfs_client(std::string extent_dst, std::string lock_dst) {
// ec = new extent_client();
// if (ec->put(1, "") != extent_protocol::OK)
// printf("error init root dir\n"); // XYB: init root dir
//}
chfs_client::inum
chfs_client::n2i(std::string n) {
std::istringstream ist(n);
unsigned long long finum;
ist >> finum;
return finum;
}
std::string
chfs_client::filename(inum inum) {
std::ostringstream ost;
ost << inum;
return ost.str();
}
bool
chfs_client::isfile(inum inum) {
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
return false;
}
return a.type == extent_protocol::T_FILE;
}
/** Your code here for Lab...
* You may need to add routines such as
* readlink, issymlink here to implement symbolic link.
*
* */
bool
chfs_client::isdir(inum inum) {
// Oops! is this still correct when you implement symlink?
// well, sure it should be corrected
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
return false;
}
return a.type == extent_protocol::T_DIR;
}
bool
chfs_client::issymlink(inum inum)
{
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
printf("error getting attr\n");
return false;
}
return a.type == extent_protocol::T_SYMLINK;
}
int
chfs_client::getfile(inum inum, fileinfo &fin) {
int r = OK;
printf("getfile %016llx\n", inum);
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
r = IOERR;
goto release;
}
fin.atime = a.atime;
fin.mtime = a.mtime;
fin.ctime = a.ctime;
fin.size = a.size;
printf("getfile %016llx -> sz %llu\n", inum, fin.size);
release:
return r;
}
int
chfs_client::getdir(inum inum, dirinfo &din) {
int r = OK;
printf("getdir %016llx\n", inum);
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
r = IOERR;
goto release;
}
din.atime = a.atime;
din.mtime = a.mtime;
din.ctime = a.ctime;
release:
return r;
}
#define EXT_RPC(xx) do { \
if ((xx) != extent_protocol::OK) { \
printf("EXT_RPC Error: %s:%d \n", __FILE__, __LINE__); \
r = IOERR; \
goto release; \
} \
} while (0)
// Only support set size of attr
int
chfs_client::setattr(inum ino, size_t size) {
int r = OK;
/*
* your code goes here.
* note: get the content of inode ino, and modify its content
* according to the size (<, =, or >) content length.
*/
// 获取当前目录文件内容
std::string buf;
if (ec->get(ino, buf) != extent_protocol::OK) {
r = IOERR;
goto release;
}
buf.resize(size);
if (ec->put(ino, buf) != extent_protocol::OK) {
r = IOERR;
}
release:
return r;
}
int
chfs_client::create(inum parent, const char *name, mode_t mode, inum &ino_out) {
int r = OK;
#ifdef DEBUG
printf("\tfuse:im create, inum:%llu, name:%s\n", parent, name);
#endif
/*
* your code goes here.
* note: lookup is what you need to check if file exist;
* after create file or dir, you must remember to modify the parent infomation.
*/
std::string buf, append_str;
bool if_exist;
// 判断改文件名是否已经存在
if (lookup(parent, name, if_exist, ino_out) != OK) {
r = EXIST;
goto release;
}
// 在当前目录下创建新文件
if (ec->create(extent_protocol::types::T_FILE, ino_out) != extent_protocol::OK) {
r = IOERR;
goto release;
}
// 获取当前目录文件内容
if (ec->get(parent, buf) != extent_protocol::OK) {
r = IOERR;
goto release;
}
// 将新建文件的entry添加到原目录
append_str = std::string(name) + '/' + std::to_string(ino_out) + '&';
buf.append(append_str);
if (ec->put(parent, buf) != extent_protocol::OK) {
r = IOERR;
}
release:
return r;
}
int
chfs_client::mkdir(inum parent, const char *name, mode_t mode, inum &ino_out) {
int r = OK;
/*
* your code goes here.
* note: lookup is what you need to check if directory exist;
* after create file or dir, you must remember to modify the parent infomation.
*/
std::string buf, append_str;
bool if_exist;
// 判断改文件名是否已经存在
if (lookup(parent, name, if_exist, ino_out) != OK) {
r = EXIST;
goto release;
}
// 在当前目录下创建新目录
if (ec->create(extent_protocol::types::T_DIR, ino_out) != extent_protocol::OK) {
r = IOERR;
goto release;
}
// 获取当前目录文件内容
if (ec->get(parent, buf) != extent_protocol::OK) {
r = IOERR;
goto release;
}
// 将新建文件的entry添加到原目录
append_str = std::string(name) + '/' + std::to_string(ino_out) +'&';
buf.append(append_str);
if (ec->put(parent, buf) != extent_protocol::OK) {
r = IOERR;
}
release:
return r;
}
int
chfs_client::lookup(inum parent, const char *name, bool &found, inum &ino_out) {
int r = OK;
/*
* your code goes here.
* note: lookup file from parent dir according to name;
* you should design the format of directory content.
*/
#ifdef DEBUG
printf("look up inum: %lld, name: %s\n:", parent, name);
#endif
std::list <dirent> dirent_list;
this->readdir(parent, dirent_list);
if(dirent_list.empty()) {
found = false;
goto release;
}
for (auto entry: dirent_list) {
if (!entry.name.compare(name)) {
found = true;
ino_out = entry.inum;
goto release;
}
}
found = false;
release:
return r;
}
int
chfs_client::readdir(inum dir, std::list <dirent> &list) {
int r = OK;
/*
* your code goes here.
* note: you should parse the dirctory content using your defined format,
* and push the dirents to the list.
*/
// my format: name/inum&name/inum.....
std::string data;
int pos_begin = 0;
int pos_end = 0;
std::string name, inum;
struct dirent dir_entry;
if(!isdir(dir)){
r = NOENT;
goto release;
}
if (ec->get(dir, data) != extent_protocol::OK) {
r = IOERR;
goto release;
}
pos_end = data.find('/', pos_begin);
while (std::string::npos != pos_end) {
pos_end = data.find('/', pos_begin);
name = data.substr(pos_begin, pos_end - pos_begin);
pos_begin = pos_end + 1;
pos_end = data.find('&', pos_begin);
inum = data.substr(pos_begin, pos_end - pos_begin);
dir_entry.inum = n2i(inum);
dir_entry.name = name;
list.push_back(dir_entry);
pos_begin = pos_end + 1;
pos_end = data.find('/', pos_begin);
}
release:
return r;
}
int
chfs_client::read(inum ino, size_t size, off_t off, std::string &data) {
int r = OK;
/*
* your code goes here.
* note: read using ec->get().
*/
if (ec->get(ino, data) != extent_protocol::OK) {
r = IOERR;
goto release;
}
if (off > data.size()) {
data = "";
goto release;
}
if (off + size > data.size()) {
data = data.substr(off);
goto release;
}
data = data.substr(off, size);
release:
return r;
}
int
chfs_client::write(inum ino, size_t size, off_t off, const char *data,
size_t &bytes_written) {
int r = OK;
/*
* your code goes here.
* note: write using ec->put().
* when off > length of original file, fill the holes with '\0'.
*/
std::string originData;
if (ec->get(ino, originData) != extent_protocol::OK) {
r = IOERR;
goto release;
}
originData.resize(std::max(originData.size(), off + size));
for (int i = 0; i < size; ++i) {
originData[off + i] = data[i];
}
bytes_written = size;
if (ec->put(ino, originData) != extent_protocol::OK) {
r = IOERR;
}
release:
return r;
}
int chfs_client::unlink(inum parent, const char *name) {
int r = OK;
/*
* your code goes here.
* note: you should remove the file using ec->remove,
* and update the parent directory content.
*/
bool found = false;
inum inum;
lookup(parent, name, found, inum);
// can't unlink directory
if(isdir(inum)) {
return r;
}
ec->remove(inum);
std::string buf;
if(ec->get(parent, buf) != extent_protocol::OK){
r = IOERR;
return r;
}
int erase_start = buf.find(name);
int erase_after = buf.find('&', erase_start);
buf.erase(erase_start, erase_after - erase_start + 1);
if(ec->put(parent, buf) != extent_protocol::OK) {
r = IOERR;
}
return r;
}
int chfs_client::link(inum parent, const char *name, const char* link_path, inum & ino_out) {
int r = OK;
bool found = false;
inum inum;
lookup(parent, name, found, inum);
std::string buf, append_str;
if (found){
r = EXIST;
goto release;
}
if(ec->create(extent_protocol::T_SYMLINK, ino_out) != extent_protocol::OK){
r = IOERR;
goto release;
}
if(ec->put(ino_out, std::string(link_path)) != extent_protocol::OK) {
r = IOERR;
goto release;
}
if(ec->get(parent, buf) != extent_protocol::OK) {
r = IOERR;
goto release;
}
// 将新建文件的entry添加到原目录
append_str = std::string(name) + '/' + std::to_string(ino_out) +'&';
buf.append(append_str);
if (ec->put(parent, buf) != extent_protocol::OK) {
r = IOERR;
}
release:
return r;
}
int chfs_client::readlink(inum ino, std::string &data) {
int r = OK;
if(ec->get(ino, data) != extent_protocol::OK){
r = IOERR;
}
return r;
}