-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathhello_asyncio.py
More file actions
executable file
·169 lines (136 loc) · 5.22 KB
/
hello_asyncio.py
File metadata and controls
executable file
·169 lines (136 loc) · 5.22 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
'''
hello_asyncio.py - Example file system for pyfuse3 using asyncio.
This program presents a static file system containing a single file.
Copyright © 2015 Nikolaus Rath <Nikolaus.org>
Copyright © 2015 Gerion Entrup.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
'''
import asyncio
import errno
import logging
import os
import stat
from argparse import ArgumentParser
from typing import cast
import pyfuse3
import pyfuse3.asyncio
from pyfuse3 import FileHandleT, FileInfo, InodeT
try:
import faulthandler
except ImportError:
pass
else:
faulthandler.enable()
log = logging.getLogger(__name__)
pyfuse3.asyncio.enable()
class TestFs(pyfuse3.Operations):
def __init__(self):
super(TestFs, self).__init__()
self.hello_name = b"message"
self.hello_inode = cast(InodeT, pyfuse3.ROOT_INODE + 1)
self.hello_data = b"hello world\n"
async def getattr(self, inode, ctx=None):
entry = pyfuse3.EntryAttributes()
if inode == pyfuse3.ROOT_INODE:
entry.st_mode = stat.S_IFDIR | 0o755
entry.st_size = 0
elif inode == self.hello_inode:
entry.st_mode = stat.S_IFREG | 0o644
entry.st_size = len(self.hello_data)
else:
raise pyfuse3.FUSEError(errno.ENOENT)
stamp = int(1438467123.985654 * 1e9)
entry.st_atime_ns = stamp
entry.st_ctime_ns = stamp
entry.st_mtime_ns = stamp
entry.st_gid = os.getgid()
entry.st_uid = os.getuid()
entry.st_ino = inode
return entry
async def lookup(self, parent_inode, name, ctx=None):
if parent_inode != pyfuse3.ROOT_INODE or name != self.hello_name:
raise pyfuse3.FUSEError(errno.ENOENT)
return await self.getattr(self.hello_inode)
async def opendir(self, inode, ctx):
if inode != pyfuse3.ROOT_INODE:
raise pyfuse3.FUSEError(errno.ENOENT)
# For simplicity, we use the inode as file handle
return FileHandleT(inode)
async def readdir(self, fh, start_id, token):
assert fh == pyfuse3.ROOT_INODE
# only one entry
if start_id == 0:
pyfuse3.readdir_reply(token, self.hello_name, await self.getattr(self.hello_inode), 1)
return
async def setxattr(self, inode, name, value, ctx):
if inode != pyfuse3.ROOT_INODE or name != b'command':
raise pyfuse3.FUSEError(errno.ENOTSUP)
if value == b'terminate':
pyfuse3.terminate()
else:
raise pyfuse3.FUSEError(errno.EINVAL)
async def open(self, inode, flags, ctx):
if inode != self.hello_inode:
raise pyfuse3.FUSEError(errno.ENOENT)
if flags & os.O_RDWR or flags & os.O_WRONLY:
raise pyfuse3.FUSEError(errno.EACCES)
# For simplicity, we use the inode as file handle
return FileInfo(fh=FileHandleT(inode))
async def read(self, fh, off, size):
assert fh == self.hello_inode
return self.hello_data[off : off + size]
def init_logging(debug=False):
formatter = logging.Formatter(
'%(asctime)s.%(msecs)03d %(threadName)s: [%(name)s] %(message)s',
datefmt="%Y-%m-%d %H:%M:%S",
)
handler = logging.StreamHandler()
handler.setFormatter(formatter)
root_logger = logging.getLogger()
if debug:
handler.setLevel(logging.DEBUG)
root_logger.setLevel(logging.DEBUG)
else:
handler.setLevel(logging.INFO)
root_logger.setLevel(logging.INFO)
root_logger.addHandler(handler)
def parse_args():
'''Parse command line'''
parser = ArgumentParser()
parser.add_argument('mountpoint', type=str, help='Where to mount the file system')
parser.add_argument(
'--debug', action='store_true', default=False, help='Enable debugging output'
)
parser.add_argument(
'--debug-fuse', action='store_true', default=False, help='Enable FUSE debugging output'
)
return parser.parse_args()
def main():
options = parse_args()
init_logging(options.debug)
testfs = TestFs()
fuse_options = set(pyfuse3.default_options)
fuse_options.add('fsname=hello_asyncio')
if options.debug_fuse:
fuse_options.add('debug')
pyfuse3.init(testfs, options.mountpoint, fuse_options)
try:
asyncio.run(pyfuse3.main())
except:
pyfuse3.close(unmount=False)
raise
pyfuse3.close()
if __name__ == '__main__':
main()