-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilesystem.py
184 lines (142 loc) · 4.84 KB
/
filesystem.py
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
from __future__ import print_function, absolute_import, division
import logging
from collections import defaultdict
from errno import ENOENT
from stat import S_IFDIR, S_IFLNK, S_IFREG
from time import time
from fuse import FUSE, FuseOSError, Operations, LoggingMixIn
from myredis import MyRedis
r = MyRedis('localhost', 6379, '')
if not hasattr(__builtins__, 'bytes'):
bytes = str
class Memory(LoggingMixIn, Operations):
def __init__(self):
self.files = {}
self.data = defaultdict(bytes)
self.fd = 0
now = time()
self.files['/'] = dict(
st_mode=(S_IFDIR | 0o755),
st_ctime=now,
st_mtime=now,
st_atime=now,
st_nlink=2)
def create(self, path, mode):
self.files[path] = dict(
st_mode=(S_IFREG | mode),
st_nlink=1,
st_size=0,
st_ctime=time(),
st_mtime=time(),
st_atime=time())
self.fd += 1
return self.fd
def mkdir(self, path, mode):
self.files[path] = dict(
st_mode=(S_IFDIR | mode),
st_nlink=2,
st_size=0,
st_ctime=time(),
st_mtime=time(),
st_atime=time())
self.files['/']['st_nlink'] += 1
def open(self, path, flags):
self.fd += 1
return self.fd
def read(self, path, size, offset, fh):
data = r.my_get(path)
if data:
print ("cache hit")
return data
else:
print ("cache miss")
data = self.data[path][offset:offset + size]
r.my_set(path, data)
return data
def write(self, path, data, offset, fh):
print ("in write")
self.data[path] = self.data[path][:offset] + data
self.files[path]['st_size'] = len(self.data[path])
print (path, '/.' in path)
if not ('/.' in path):
r.my_set(path, data)
print ("saved in cache")
return len(data)
def rename(self, old, new):
data = r.my_rename(old, new)
self.data[new] = self.data.pop(old)
self.files[new] = self.files.pop(old)
def unlink(self, path):
print ("in delete")
r.my_delete(path)
self.data.pop(path)
self.files.pop(path)
def readdir(self, path, fh):
return ['.', '..'] + [x[1:] for x in self.files if x != '/']
def readlink(self, path):
return self.data[path]
def rmdir(self, path):
keys_data = r.get_info(path+'*')
for key in keys_data:
r.my_delete(key)
self.files.pop(path)
self.files['/']['st_nlink'] -= 1
def getattr(self, path, fh=None):
if path not in self.files:
raise FuseOSError(ENOENT)
return self.files[path]
def getxattr(self, path, name, position=0):
attrs = self.files[path].get('attrs', {})
try:
return attrs[name]
except KeyError:
return '' # Should return ENOATTR
def chmod(self, path, mode):
self.files[path]['st_mode'] &= 0o770000
self.files[path]['st_mode'] |= mode
return 0
def chown(self, path, uid, gid):
self.files[path]['st_uid'] = uid
self.files[path]['st_gid'] = gid
def getxattr(self, path, name, position=0):
attrs = self.files[path].get('attrs', {})
try:
return attrs[name]
except KeyError:
return '' # Should return ENOATTR
def listxattr(self, path):
attrs = self.files[path].get('attrs', {})
return attrs.keys()
def removexattr(self, path, name):
attrs = self.files[path].get('attrs', {})
try:
del attrs[name]
except KeyError:
pass # Should return ENOATTR
def setxattr(self, path, name, value, options, position=0):
# Ignore options
attrs = self.files[path].setdefault('attrs', {})
attrs[name] = value
def statfs(self, path):
return dict(f_bsize=512, f_blocks=4096, f_bavail=2048)
def symlink(self, target, source):
self.files[target] = dict(
st_mode=(S_IFLNK | 0o777),
st_nlink=1,
st_size=len(source))
self.data[target] = source
def truncate(self, path, length, fh=None):
self.data[path] = self.data[path][:length]
self.files[path]['st_size'] = length
def utimens(self, path, times=None):
now = time()
atime, mtime = times if times else (now, now)
self.files[path]['st_atime'] = atime
self.files[path]['st_mtime'] = mtime
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('mount')
args = parser.parse_args()
logging.basicConfig(level=logging.DEBUG)
fuse = FUSE(Memory(), args.mount, foreground=True, allow_other=False)