Merge branch '2492-docker-crunch-jobs'
[arvados.git] / sdk / python / bin / arv-mount
1 #!/usr/bin/env python
2
3 from arvados.fuse import *
4 import arvados
5 import subprocess
6 import argparse
7
8 if __name__ == '__main__':
9     # Handle command line parameters
10     parser = argparse.ArgumentParser(
11         description='Mount Keep data under the local filesystem.',
12         epilog="""
13 Note: When using the --exec feature, you must either specify the
14 mountpoint before --exec, or mark the end of your --exec arguments
15 with "--".
16 """)
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""")
25
26     args = parser.parse_args()
27
28     # Create the request handler
29     operations = Operations(os.getuid(), os.getgid())
30
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)))
35     else:
36         # Set up the request handler with the 'magic directory' at the root
37         operations.inodes.add_entry(MagicDirectory(llfuse.ROOT_INODE, operations.inodes))
38
39     # FUSE options, see mount.fuse(8)
40     opts = [optname for optname in ['allow_other', 'debug']
41             if getattr(args, optname)]
42
43     # Initialize the fuse connection
44     llfuse.init(operations, args.mountpoint, opts)
45
46     if args.exec_args:
47         t = threading.Thread(None, lambda: llfuse.main())
48         t.start()
49
50         # wait until the driver is finished initializing
51         operations.initlock.wait()
52
53         rc = 255
54         try:
55             rc = subprocess.call(args.exec_args, shell=False)
56         except OSError as e:
57             sys.stderr.write('arv-mount: %s -- exec %s\n' % (str(e), args.exec_args))
58             rc = e.errno
59         except Exception as e:
60             sys.stderr.write('arv-mount: %s\n' % str(e))
61         finally:
62             subprocess.call(["fusermount", "-u", "-z", args.mountpoint])
63
64         exit(rc)
65     else:
66         llfuse.main()