def _lineage(**kwargs): """Invoke the api.lineage() call from the CLI to find the lineage. Args: kwargs: command line args or internal dict call, must contain uuid:str and depth:int. Returns: None """ fs = disdat.fs.DisdatFS() if not fs.in_context(): _logger.warning('Not in a data context') return ctxt = fs._curr_context.get_local_name() # (depth, uuid, lineage) lin_tuples = api.lineage(ctxt, kwargs['uuid'], kwargs['depth']) for (d,uuid,l) in lin_tuples: if l is None: print("No lineage found for UUID {}".format(uuid)) else: print_lineage_protobuf(l, d) print() return
def _add(args): """Invoke the api.add() call from the CLI to create a bundle. Args: args: command line args. Returns: None """ fs = disdat.fs.DisdatFS() if not fs.in_context(): _logger.warning('Not in a data context') return _ = api.add(fs._curr_context.get_local_name(), args.bundle, args.path_name, tags=common.parse_args_tags(args.tag)) return