3 from arvados.fuse import *
8 if __name__ == '__main__':
9 # Handle command line parameters
10 parser = argparse.ArgumentParser(
11 description='Mount Keep data under the local filesystem.',
13 Note: When using the --exec feature, you must either specify the
14 mountpoint before --exec, or mark the end of your --exec arguments
17 parser.add_argument('mountpoint', type=str, help="""Mount point.""")
18 parser.add_argument('--allow-other', action='store_true',
19 help="""Let other users read the mount""")
20 parser.add_argument('--collection', type=str, help="""Collection locator""")
21 parser.add_argument('--debug', action='store_true', help="""Debug mode""")
22 parser.add_argument('--exec', type=str, nargs=argparse.REMAINDER,
23 dest="exec_args", metavar=('command', 'args', '...', '--'),
24 help="""Mount, run a command, then unmount and exit""")
26 args = parser.parse_args()
28 # Create the request handler
29 operations = Operations(os.getuid(), os.getgid())
31 if args.collection != None:
32 # Set up the request handler with the collection at the root
33 e = operations.inodes.add_entry(Directory(llfuse.ROOT_INODE))
34 operations.inodes.load_collection(e, arvados.CollectionReader(arvados.Keep.get(args.collection)))
36 # Set up the request handler with the 'magic directory' at the root
37 operations.inodes.add_entry(MagicDirectory(llfuse.ROOT_INODE, operations.inodes))
39 # FUSE options, see mount.fuse(8)
40 opts = [optname for optname in ['allow_other', 'debug']
41 if getattr(args, optname)]
43 # Initialize the fuse connection
44 llfuse.init(operations, args.mountpoint, opts)
47 t = threading.Thread(None, lambda: llfuse.main())
50 # wait until the driver is finished initializing
51 operations.initlock.wait()
55 rc = subprocess.call(args.exec_args, shell=False)
57 sys.stderr.write('arv-mount: %s -- exec %s\n' % (str(e), args.exec_args))
59 except Exception as e:
60 sys.stderr.write('arv-mount: %s\n' % str(e))
62 subprocess.call(["fusermount", "-u", "-z", args.mountpoint])