-
Notifications
You must be signed in to change notification settings - Fork 0
/
yfs_client.h
77 lines (61 loc) · 1.55 KB
/
yfs_client.h
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
#ifndef yfs_client_h
#define yfs_client_h
#include <string>
#include "lock_protocol.h"
#include "lock_client.h"
//#include "yfs_protocol.h"
#include "extent_client.h"
#include <vector>
class yfs_client {
extent_client *ec;
lock_client *lc;
public:
typedef unsigned long long inum;
enum xxstatus { OK, RPCERR, NOENT, EXIST };
typedef int status;
struct fileinfo {
unsigned long long size;
unsigned long atime;
unsigned long mtime;
unsigned long ctime;
};
struct dirinfo {
unsigned long atime;
unsigned long mtime;
unsigned long ctime;
};
struct linkinfo {
unsigned long atime;
unsigned long mtime;
unsigned long ctime;
};
struct direntraw {
yfs_client::inum inum;
int name_length;
int name_hash;
};
struct dirent {
std::string name;
yfs_client::inum inum;
};
public:
yfs_client(std::string, std::string);
bool isdir(inum);
bool isfile(inum);
bool islink(inum);
int getfile(inum, fileinfo &);
int getdir(inum, dirinfo &);
int getlink(inum, linkinfo &);
int lookup(inum, const char *, bool &, inum &);
int create(inum, const char *, mode_t, inum &);
int mkdir(inum, const char *, mode_t , inum &);
int mklink(inum, const char *, const char *, inum &); // symlink
int read(inum, size_t, off_t, std::string &);
int readdir(inum, std::list<dirent> &);
int readlink(inum, std::string &); // symlink
int setattr(inum, size_t);
int write(inum, size_t, off_t, const char *, size_t &);
int unlink(inum, const char *);
int vcaction(size_t);
};
#endif