X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/eb3c3c9eeb73529353ee385385865d6d3dc99913..964ab3dd90ff1508efc0c77378cde2b3a4da1029:/services/fuse/bin/arv-mount diff --git a/services/fuse/bin/arv-mount b/services/fuse/bin/arv-mount index e07860d6b9..c0472054a5 100755 --- a/services/fuse/bin/arv-mount +++ b/services/fuse/bin/arv-mount @@ -9,6 +9,7 @@ import signal import subprocess import time +import arvados.commands._util as arv_cmd from arvados_fuse import * logger = logging.getLogger('arvados.arv-mount') @@ -16,6 +17,7 @@ logger = logging.getLogger('arvados.arv-mount') if __name__ == '__main__': # Handle command line parameters parser = argparse.ArgumentParser( + parents=[arv_cmd.retry_opt], description='''Mount Keep data under the local filesystem. Default mode is --home''', epilog=""" Note: When using the --exec feature, you must either specify the @@ -41,9 +43,11 @@ with "--". parser.add_argument('--debug', action='store_true', help="""Debug mode""") parser.add_argument('--logfile', help="""Write debug logs and errors to the specified file (default stderr).""") parser.add_argument('--foreground', action='store_true', help="""Run in foreground (default is to daemonize unless --exec specified)""", default=False) + parser.add_argument('--encoding', type=str, help="Character encoding to use for filesystem, default is utf-8 (see Python codec registry for list of available encodings)", default="utf-8") parser.add_argument('--exec', type=str, nargs=argparse.REMAINDER, dest="exec_args", metavar=('command', 'args', '...', '--'), help="""Mount, run a command, then unmount and exit""") + parser.add_argument('--set-executable-bit', action='store_true', help="""Set executable bit on collection files""") args = parser.parse_args() args.mountpoint = os.path.realpath(args.mountpoint) @@ -77,32 +81,47 @@ with "--". try: # Create the request handler - operations = Operations(os.getuid(), os.getgid()) + operations = Operations(os.getuid(), os.getgid(), args.encoding, args.set_executable_bit) api = SafeApi(arvados.config) - usr = api.users().current().execute() + usr = api.users().current().execute(num_retries=args.retries) now = time.time() + dir_class = None + dir_args = [llfuse.ROOT_INODE, operations.inodes, api, args.retries] if args.by_id: # Set up the request handler with the 'magic directory' at the root - operations.inodes.add_entry(MagicDirectory(llfuse.ROOT_INODE, operations.inodes, api)) + dir_class = MagicDirectory elif args.by_tag: - operations.inodes.add_entry(TagsDirectory(llfuse.ROOT_INODE, operations.inodes, api)) + dir_class = TagsDirectory elif args.shared: - operations.inodes.add_entry(SharedDirectory(llfuse.ROOT_INODE, operations.inodes, api, usr)) + dir_class = SharedDirectory + dir_args.append(usr) elif args.home: - operations.inodes.add_entry(ProjectDirectory(llfuse.ROOT_INODE, operations.inodes, api, usr)) - elif args.collection != None: + dir_class = ProjectDirectory + dir_args.append(usr) + dir_args.append(True) + elif args.collection is not None: # Set up the request handler with the collection at the root - operations.inodes.add_entry(CollectionDirectory(llfuse.ROOT_INODE, operations.inodes, api, args.collection)) - elif args.project != None: - operations.inodes.add_entry(ProjectDirectory(llfuse.ROOT_INODE, operations.inodes, api, api.groups().get(uuid=args.project).execute())) + dir_class = CollectionDirectory + dir_args.append(args.collection) + elif args.project is not None: + dir_class = ProjectDirectory + dir_args.append(api.groups().get(uuid=args.project).execute( + num_retries=args.retries)) + + if dir_class is not None: + operations.inodes.add_entry(dir_class(*dir_args)) else: e = operations.inodes.add_entry(Directory(llfuse.ROOT_INODE)) + dir_args[0] = e.inode - e._entries['home'] = operations.inodes.add_entry(ProjectDirectory(e.inode, operations.inodes, api, usr)) - e._entries['shared'] = operations.inodes.add_entry(SharedDirectory(e.inode, operations.inodes, api, usr)) - e._entries['by_tag'] = operations.inodes.add_entry(TagsDirectory(e.inode, operations.inodes, api)) - e._entries['by_id'] = operations.inodes.add_entry(MagicDirectory(e.inode, operations.inodes, api)) + e._entries['by_id'] = operations.inodes.add_entry(MagicDirectory(*dir_args)) + e._entries['by_tag'] = operations.inodes.add_entry(TagsDirectory(*dir_args)) + + dir_args.append(usr) + dir_args.append(True) + e._entries['home'] = operations.inodes.add_entry(ProjectDirectory(*dir_args)) + e._entries['shared'] = operations.inodes.add_entry(SharedDirectory(*dir_args)) text = ''' Welcome to Arvados! This directory provides file system access to files and objects