-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchfs_client.cc
205 lines (161 loc) · 4.72 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
// 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() {
ec = new extent_client();
}
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
}
// 字符串inum转数值型
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 a dir\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);
}
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.
*/
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.
*/
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.
*/
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.
*/
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.
*/
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().
*/
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'.
*/
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.
*/
return r;
}