-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchfs_client.cc
More file actions
477 lines (409 loc) · 11.4 KB
/
chfs_client.cc
File metadata and controls
477 lines (409 loc) · 11.4 KB
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
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
// 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 <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
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::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) {
printf("error getting attr\n");
return false;
}
if (a.type == extent_protocol::T_FILE) {
printf("isfile: %lld is a file\n", inum);
return true;
}
printf("isfile: %lld is not a file\n", inum);
return false;
}
/** 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?
// return ! isfile(inum);
extent_protocol::attr a;
if (ec->getattr(inum, a) != extent_protocol::OK) {
printf("error getting attr\n");
return false;
}
if (a.type == extent_protocol::T_DIR) {
printf("isdir: %lld is a dir\n", inum);
return true;
}
printf("isdir: %lld is not a dir\n", inum);
return false;
}
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;
}
if (a.type == extent_protocol::T_SYMLINK) {
printf("issymlink: %lld is a symlink\n", inum);
return true;
}
printf("issymlink: %lld is not a symlink\n", inum);
return false;
}
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;
// get the content of inode ino
ec->get(ino, buf);
// modify its content according to the size (<, =, or >) content length.
buf.resize(size);
ec->put(ino, buf);
return r;
}
int
chfs_client::create(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 file exist;
* after create file or dir, you must remember to modify the parent infomation.
*/
bool found = false;
inum inum_fd;
lookup(parent, name, found, inum_fd);
std::string buf = "";
if(found) {
// file exist
return EXIST;
} else {
// create file
ec->create(extent_protocol::T_FILE, ino_out);
// modify the parent infomation to add entry
// format for directory: name/inum/name/inum/name/inum/
// as / can not be part of file name
// read directory
ec->get(parent, buf);
buf += (std::string(name) + "/" + filename(ino_out) + "/");
ec->put(parent, buf);
}
if(CHFS_CLIENT_LOG) printf("chfs_client::create: create file, parent dir content:\n %s\n" , buf.c_str());
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.
*/
bool found = false;
inum inum_fd;
lookup(parent, name, found, inum_fd);
if(found) {
// dir exist
return EXIST;
} else {
// create dir
ec->create(extent_protocol::T_DIR, ino_out);
// modify the parent infomation to add entry
// format for directory: name/inum/name/inum/name/inum/
// as / can not be part of file name
std::string buf = "";
// read directory
ec->get(parent, buf);
buf += (std::string(name) + "/" + filename(ino_out) + "/");
ec->put(parent, buf);
}
return r;
}
int
chfs_client::symlink(inum parent, const char *name, const char *link, inum &ino_out)
{
int r = OK;
bool found = false;
inum inum_fd;
lookup(parent, name, found, inum_fd);
if(found) {
// symlink exist
return EXIST;
} else {
// create symlink ( store it just under path of name )
// pick an inum to store
ec->create(extent_protocol::T_SYMLINK, ino_out);
// add symlink content ( link str )
ec->put(ino_out, std::string(link));
// modify the parent infomation to add entry
// format for directory: name/inum/name/inum/name/inum/
// as / can not be part of file name
std::string buf = "";
// read directory
ec->get(parent, buf);
buf += (std::string(name) + "/" + filename(ino_out) + "/");
ec->put(parent, buf);
}
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.
*/
if(CHFS_CLIENT_LOG) printf("chfs_client::lookup: step in\n");
// read parent dir
std::list<dirent> list;
readdir(parent, list);
if(CHFS_CLIENT_LOG) printf("chfs_client::lookup: parent directory std::list<dirent> content\n");
// check file name in list
for(dirent d : list){
if(CHFS_CLIENT_LOG) {
printf("chfs_client::lookup: file name: %s, inum %llu\n", d.name.c_str(), d.inum);
}
// const char *name, string d.name
// !!! use == to judge equal char * does not mean strcmp
//if(d.name.c_str() == name){
if(strcmp(d.name.c_str(), name) == 0){
// found
found = true;
ino_out = d.inum;
return r;
}
}
// not found
found = false;
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.
*/
// format for directory: name/inum/name/inum/name/inum/
// as / can not be part of file name
if(CHFS_CLIENT_LOG) printf("chfs_client::readdir: step in\n");
std::string buf = "";
// read directory
ec->get(dir, buf);
if(CHFS_CLIENT_LOG) printf("chfs_client::readdir: buf content\n%s\n", buf.c_str());
// parse content of dir
size_t name_begin = 0;
size_t name_end = buf.find('/', name_begin);
size_t inum_begin, inum_end;
while(name_end != std::string::npos){
inum_begin = name_end + 1;
inum_end = buf.find('/', inum_begin);
struct dirent d;
std::string tmp = buf.substr(name_begin, name_end - name_begin);
d.name = tmp;
if(CHFS_CLIENT_LOG) printf("chfs_client::readdir: file name from %zu to %zu is %s\n", name_begin, name_end, tmp.c_str());
d.inum = n2i(buf.substr(inum_begin, inum_end - inum_begin));
// add name inum pair to list
list.push_back(d);
name_begin = inum_end + 1;
name_end = buf.find('/', name_begin);
}
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().
*/
std::string buf;
ec->get(ino, buf);
size_t buf_size = buf.size();
// offset 超出长度范围
if(off > buf_size){
printf("chfs_client: FAILED, read offset larger than file size\n");
data = "";
return r;
}
// offset + size 超出长度范围
if((off + size) > buf_size){
printf("chfs_client: read size + offset larger than file size\n");
data = buf.substr(off);
return r;
}
// offset + size 在长度范围之内
data = buf.substr(off, size);
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 buf;
ec->get(ino, buf);
size_t buf_size = buf.size();
// when off > length of original file, fill the holes with '\0'.
if(off > buf_size){
// make file buf larger
buf.resize(off + size);
// fill the holes with '\0'
for(size_t i = buf_size; i < off; ++i){
buf[i] = '\0';
}
// fill with data
for(size_t i = off; i < off + size; ++i){
buf[i] = data[i - off];
}
bytes_written = size;
ec->put(ino, buf);
return r;
}
// off + size > buf_size, off <= buf_size
if(off + size > buf_size){
// make file buf larger
buf.resize(off + size);
// fill with data
for(size_t i = off; i < off + size; ++i){
buf[i] = data[i - off];
}
bytes_written = size;
ec->put(ino, buf);
return r;
}
// off + size <= buf_size
// fill with data
for(size_t i = off; i < off + size; ++i){
buf[i] = data[i - off];
}
bytes_written = size;
ec->put(ino, buf);
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_fd;
lookup(parent, name, found, inum_fd);
if(found){
// remove the file using ec->remove
ec->remove(inum_fd);
// update parent directory content
std::string buf;
ec->get(parent, buf);
size_t entry_start = buf.find(name);
size_t name_end = buf.find('/', entry_start);
// !!! find from name_end + 1
size_t entry_end = buf.find('/', name_end + 1);
// also delete the / at end
buf.erase(entry_start, entry_end - entry_start + 1);
ec->put(parent, buf);
} else {
// not found
printf("chfs_client::unlink: file %s not found\n", name);
}
return r;
}
int chfs_client::readlink(inum inode,std::string &buf)
{
// read from inode, fill link into buf
ec->get(inode, buf);
return OK;
}