5 # Ward Vandewege <ward@curoverse.com>
9 if RUBY_VERSION < '1.9.3' then
11 #{$0.gsub(/^\.\//,'')} requires Ruby version 1.9.3 or higher.
18 require 'arvados/google_api_client'
24 require 'active_support/inflector'
31 Please install all required gems:
33 gem install activesupport andand curb google-api-client json oj trollop yaml
38 # Search for 'ENTRY POINT' to see where things get going
40 ActiveSupport::Inflector.inflections do |inflect|
41 inflect.irregular 'specimen', 'specimens'
42 inflect.irregular 'human', 'humans'
47 original_verbosity = $VERBOSE
50 $VERBOSE = original_verbosity
55 class ArvadosClient < Google::APIClient
57 if args.last.is_a? Hash
58 args.last[:headers] ||= {}
59 args.last[:headers]['Accept'] ||= 'application/json'
66 # read authentication data from arvados configuration file if present
68 config_file = File.expand_path('~/.config/arvados/settings.conf') rescue nil
69 if not config_file.nil? and File.exist? config_file then
70 File.open(config_file, 'r').each do |line|
73 if line.match('^\s*#') then
76 var, val = line.chomp.split('=', 2)
77 # allow environment settings to override config files.
81 warn "#{config_file}: #{lineno}: could not parse `#{line}'"
88 subcommands = %w(copy create edit get keep pipeline run tag ws)
90 def exec_bin bin, opts
91 bin_path = `which #{bin}`.strip
93 raise "#{bin}: command not found"
98 def check_subcommands client, arvados, subcommand, global_opts, remaining_opts
101 arv_create client, arvados, global_opts, remaining_opts
103 arv_edit client, arvados, global_opts, remaining_opts
105 arv_get client, arvados, global_opts, remaining_opts
106 when 'copy', 'tag', 'ws', 'run'
107 exec_bin "arv-#{subcommand}", remaining_opts
109 @sub = remaining_opts.shift
110 if ['get', 'put', 'ls', 'normalize'].index @sub then
112 exec_bin "arv-#{@sub}", remaining_opts
113 elsif ['less', 'check'].index @sub then
115 exec_bin "wh#{@sub}", remaining_opts
116 elsif @sub == 'docker'
117 exec_bin "arv-keepdocker", remaining_opts
119 puts "Usage: arv keep [method] [--parameters]\n"
120 puts "Use 'arv keep [method] --help' to get more information about specific methods.\n\n"
121 puts "Available methods: ls, get, put, less, check, docker"
125 sub = remaining_opts.shift
127 exec_bin "arv-run-pipeline-instance", remaining_opts
129 puts "Usage: arv pipeline [method] [--parameters]\n"
130 puts "Use 'arv pipeline [method] --help' to get more information about specific methods.\n\n"
131 puts "Available methods: run"
137 def command_exists?(command)
138 File.executable?(command) || ENV['PATH'].split(':').any? {|folder| File.executable?(File.join(folder, command))}
145 [ENV["VISUAL"], ENV["EDITOR"], "nano", "vi"].each do |e|
146 editor ||= e if e and command_exists? e
149 abort "Could not find any editor to use, please set $VISUAL or $EDITOR to your desired editor."
156 if $?.exitstatus != 0
157 raise "Editor exited with status #{$?.exitstatus}"
161 def edit_and_commit_object initial_obj, tmp_stem, global_opts, &block
163 content = get_obj_content initial_obj, global_opts
165 tmp_file = Tempfile.new([tmp_stem, ".#{global_opts[:format]}"])
166 tmp_file.write(content)
173 run_editor tmp_file.path
176 newcontent = tmp_file.read()
179 # Strip lines starting with '#'
180 newcontent = newcontent.lines.select {|l| !l.start_with? '#'}.join
182 # Load the new object
183 newobj = case global_opts[:format]
187 YAML.load(newcontent)
189 abort "Unrecognized format #{global_opts[:format]}"
197 if e.is_a? Psych::SyntaxError
198 this_error = "YAML error parsing your input: #{e}"
199 elsif e.is_a? JSON::ParserError or e.is_a? Oj::ParseError
200 this_error = "JSON error parsing your input: #{e}"
201 elsif e.is_a? ArvadosAPIError
202 this_error = "API responded with error #{e}"
204 this_error = "#{e.class}: #{e}"
210 newcontent = tmp_file.read()
213 if newcontent == error_text or not can_retry
214 FileUtils::cp tmp_file.path, tmp_file.path + ".saved"
215 puts "File is unchanged, edit aborted." if can_retry
216 abort "Saved contents to " + tmp_file.path + ".saved"
220 error_text = this_error.to_s.lines.map {|l| '# ' + l}.join + "\n"
221 error_text += "# Please fix the error and try again.\n"
222 error_text += newcontent.lines.select {|l| !l.start_with? '#'}.join
223 tmp_file.write error_text
235 class ArvadosAPIError < RuntimeError
238 def check_response result
240 results = JSON.parse result.body
241 rescue JSON::ParserError, Oj::ParseError => e
242 raise "Failed to parse server response:\n" + e.to_s
245 if result.response.status != 200
246 raise ArvadosAPIError.new("#{result.response.status}: #{
247 ((results['errors'] && results['errors'].join('\n')) ||
248 Net::HTTPResponse::CODE_TO_OBJ[status.to_s].to_s.sub(/^Net::HTTP/, '').titleize)}")
254 def lookup_uuid_rsc arvados, uuid
255 m = /([a-z0-9]{5})-([a-z0-9]{5})-([a-z0-9]{15})/.match uuid
257 if /^[a-f0-9]{32}/.match uuid
258 abort "Arvados collections are not editable."
260 abort "'#{uuid}' does not appear to be an Arvados uuid"
265 arvados.discovery_document["resources"].each do |k,v|
266 klass = k.singularize.camelize
267 dig = Digest::MD5.hexdigest(klass).to_i(16).to_s(36)[-5..-1]
274 abort "Could not determine resource type #{m[2]}"
280 def fetch_rsc_obj client, arvados, rsc, uuid, remaining_opts
283 result = client.execute(:api_method => eval('arvados.' + rsc + '.get'),
284 :parameters => {"uuid" => uuid},
285 :authenticated => false,
287 authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN']
289 obj = check_response result
291 abort "Server error: #{e}"
294 if remaining_opts.length > 0
295 obj.select! { |k, v| remaining_opts.include? k }
301 def get_obj_content obj, global_opts
302 content = case global_opts[:format]
304 Oj.dump(obj, :indent => 1)
308 abort "Unrecognized format #{global_opts[:format]}"
313 def arv_edit client, arvados, global_opts, remaining_opts
314 uuid = remaining_opts.shift
315 if uuid.nil? or uuid == "-h" or uuid == "--help"
317 puts "Usage: arv edit [uuid] [fields...]\n\n"
318 puts "Fetch the specified Arvados object, select the specified fields, \n"
319 puts "open an interactive text editor on a text representation (json or\n"
320 puts "yaml, use --format) and then update the object. Will use 'nano'\n"
321 puts "by default, customize with the EDITOR or VISUAL environment variable.\n"
326 puts "Not connected to a TTY, cannot run interactive editor."
330 rsc = lookup_uuid_rsc arvados, uuid
331 oldobj = fetch_rsc_obj client, arvados, rsc, uuid, remaining_opts
333 edit_and_commit_object oldobj, uuid, global_opts do |newobj|
334 newobj.select! {|k| newobj[k] != oldobj[k]}
336 result = client.execute(:api_method => eval('arvados.' + rsc + '.update'),
337 :parameters => {"uuid" => uuid},
338 :body_object => { rsc.singularize => newobj },
339 :authenticated => false,
341 authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN']
343 results = check_response result
344 puts "Updated object #{results['uuid']}"
346 puts "Object is unchanged, did not update."
353 def arv_get client, arvados, global_opts, remaining_opts
354 uuid = remaining_opts.shift
355 if uuid.nil? or uuid == "-h" or uuid == "--help"
357 puts "Usage: arv get [uuid] [fields...]\n\n"
358 puts "Fetch the specified Arvados object, select the specified fields, \n"
359 puts "and print a text representation (json or yaml, use --format).\n"
363 rsc = lookup_uuid_rsc arvados, uuid
364 obj = fetch_rsc_obj client, arvados, rsc, uuid, remaining_opts
365 content = get_obj_content obj, global_opts
371 def arv_create client, arvados, global_opts, remaining_opts
372 types = resource_types(arvados.discovery_document)
373 create_opts = Trollop::options do
374 opt :project_uuid, "Project uuid in which to create the object", :type => :string
375 stop_on resource_types(arvados.discovery_document)
378 object_type = remaining_opts.shift
380 abort "Missing resource type, must be one of #{types.join ', '}"
383 rsc = arvados.discovery_document["resources"].keys.select { |k| object_type == k.singularize }
385 abort "Could not determine resource type #{object_type}"
389 discovered_params = arvados.discovery_document["resources"][rsc]["methods"]["create"]["parameters"]
390 method_opts = Trollop::options do
392 banner "Usage: arv create [--project-uuid] #{object_type} [create parameters]"
394 banner "This method supports the following parameters:"
396 discovered_params.each do |k,v|
398 opts[:type] = v["type"].to_sym if v.include?("type")
399 if [:datetime, :text, :object, :array].index opts[:type]
400 opts[:type] = :string # else trollop bork
402 opts[:default] = v["default"] if v.include?("default")
403 opts[:default] = v["default"].to_i if opts[:type] == :integer
404 opts[:default] = to_boolean(v["default"]) if opts[:type] == :boolean
405 opts[:required] = true if v.include?("required") and v["required"]
407 description = ' ' + v["description"] if v.include?("description")
408 opt k.to_sym, description, opts
413 if create_opts[:project_uuid]
414 initial_obj["owner_uuid"] = create_opts[:project_uuid]
417 edit_and_commit_object initial_obj, "", global_opts do |newobj|
418 result = client.execute(:api_method => eval('arvados.' + rsc + '.create'),
419 :parameters => method_opts,
420 :body_object => {object_type => newobj},
421 :authenticated => false,
423 authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN']
425 results = check_response result
426 puts "Created object #{results['uuid']}"
433 !!(s =~ /^(true|t|yes|y|1)$/i)
437 "Arvados command line client\n"
440 def help_methods(discovery_document, resource, method=nil)
442 banner += "Usage: arv #{resource} [method] [--parameters]\n"
443 banner += "Use 'arv #{resource} [method] --help' to get more information about specific methods.\n\n"
444 banner += "The #{resource} resource supports the following methods:"
446 discovery_document["resources"][resource.pluralize]["methods"].
449 if v.include? "description"
450 # add only the first line of the discovery doc description
451 description = ' ' + v["description"].split("\n").first.chomp
453 banner += " #{sprintf("%20s",k)}#{description}\n"
458 if not method.nil? and method != '--help' and method != '-h' then
459 abort "Unknown method #{method.inspect} " +
460 "for resource #{resource.inspect}"
465 def help_resources(option_parser, discovery_document, resource)
466 option_parser.educate
470 def resource_types discovery_document
471 resource_types = Array.new()
472 discovery_document["resources"].each do |k,v|
473 resource_types << k.singularize
478 def parse_arguments(discovery_document, subcommands)
479 resources_and_subcommands = resource_types(discovery_document) + subcommands
481 option_parser = Trollop::Parser.new do
484 banner "Usage: arv [--flags] subcommand|resource [method] [--parameters]"
486 banner "Available flags:"
488 opt :dry_run, "Don't actually do anything", :short => "-n"
489 opt :verbose, "Print some things on stderr"
491 "Set the output format. Must be one of json (default), yaml or uuid.",
494 opt :short, "Return only UUIDs (equivalent to --format=uuid)"
497 banner "Use 'arv subcommand|resource --help' to get more information about a particular command or resource."
499 banner "Available subcommands: #{subcommands.join(', ')}"
502 banner "Available resources: #{discovery_document['resources'].keys.map { |k| k.singularize }.join(', ')}"
505 banner "Additional options:"
507 conflicts :short, :format
508 stop_on resources_and_subcommands
511 global_opts = Trollop::with_standard_exception_handling option_parser do
512 o = option_parser.parse ARGV
515 unless %w(json yaml uuid).include?(global_opts[:format])
516 $stderr.puts "#{$0}: --format must be one of json, yaml or uuid."
517 $stderr.puts "Use #{$0} --help for more information."
521 if global_opts[:short]
522 global_opts[:format] = 'uuid'
525 resource = ARGV.shift
527 if not subcommands.include? resource
528 if not resources_and_subcommands.include?(resource)
529 puts "Resource or subcommand '#{resource}' is not recognized.\n\n" if !resource.nil?
530 help_resources(option_parser, discovery_document, resource)
534 if not (discovery_document["resources"][resource.pluralize]["methods"].
536 help_methods(discovery_document, resource, method)
539 discovered_params = discovery_document\
540 ["resources"][resource.pluralize]\
541 ["methods"][method]["parameters"]
542 method_opts = Trollop::options do
544 banner "Usage: arv #{resource} #{method} [--parameters]"
546 banner "This method supports the following parameters:"
548 discovered_params.each do |k,v|
550 opts[:type] = v["type"].to_sym if v.include?("type")
551 if [:datetime, :text, :object, :array].index opts[:type]
552 opts[:type] = :string # else trollop bork
554 opts[:default] = v["default"] if v.include?("default")
555 opts[:default] = v["default"].to_i if opts[:type] == :integer
556 opts[:default] = to_boolean(v["default"]) if opts[:type] == :boolean
557 opts[:required] = true if v.include?("required") and v["required"]
559 description = ' ' + v["description"] if v.include?("description")
560 opt k.to_sym, description, opts
563 body_object = discovery_document["resources"][resource.pluralize]["methods"][method]["request"]
564 if body_object and discovered_params[resource].nil?
566 if body_object["required"] == false
569 opt resource.to_sym, "#{resource} (request body)", {
570 required: is_required,
576 discovered_params.each do |k,v|
578 if ['object', 'array'].index(v["type"]) and method_opts.has_key? k
579 if method_opts[k].andand.match /^\//
580 method_opts[k] = File.open method_opts[k], 'rb' do |f| f.read end
586 return resource, method, method_opts, global_opts, ARGV
595 ENV['ARVADOS_API_VERSION'] ||= 'v1'
597 if not ENV.include?('ARVADOS_API_HOST') or not ENV.include?('ARVADOS_API_TOKEN') then
599 ARVADOS_API_HOST and ARVADOS_API_TOKEN need to be defined as environment variables.
603 # do this if you're testing with a dev server and you don't care about SSL certificate checks:
604 if ENV['ARVADOS_API_HOST_INSECURE']
605 suppress_warnings { OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE }
609 client = ArvadosClient.new(:host => ENV['ARVADOS_API_HOST'], :application_name => 'arvados-cli', :application_version => '1.0')
610 arvados = client.discovered_api('arvados', ENV['ARVADOS_API_VERSION'])
611 rescue Exception => e
612 puts "Failed to connect to Arvados API server: #{e}"
616 # Parse arguments here
617 resource_schema, method, method_opts, global_opts, remaining_opts = parse_arguments(arvados.discovery_document, subcommands)
619 check_subcommands client, arvados, resource_schema, global_opts, remaining_opts
621 controller = resource_schema.pluralize
623 api_method = 'arvados.' + controller + '.' + method
625 if global_opts[:dry_run]
626 if global_opts[:verbose]
627 $stderr.puts "#{api_method} #{method_opts.inspect}"
632 request_parameters = {_profile:true}.merge(method_opts)
633 resource_body = request_parameters.delete(resource_schema.to_sym)
636 resource_schema => resource_body
644 'arvados.jobs.log_tail_follow'
646 # Special case for methods that respond with data streams rather
647 # than JSON (TODO: use the discovery document instead of a static
649 uri_s = eval(api_method).generate_uri(request_parameters)
650 Curl::Easy.perform(uri_s) do |curl|
651 curl.headers['Accept'] = 'text/plain'
652 curl.headers['Authorization'] = "OAuth2 #{ENV['ARVADOS_API_TOKEN']}"
653 if ENV['ARVADOS_API_HOST_INSECURE']
654 curl.ssl_verify_peer = false
655 curl.ssl_verify_host = false
657 if global_opts[:verbose]
658 curl.on_header { |data| $stderr.write data }
660 curl.on_body { |data| $stdout.write data }
664 result = client.execute(:api_method => eval(api_method),
665 :parameters => request_parameters,
666 :body_object => request_body,
667 :authenticated => false,
669 authorization: 'OAuth2 '+ENV['ARVADOS_API_TOKEN']
674 results = JSON.parse result.body
675 rescue JSON::ParserError => e
676 abort "Failed to parse server response:\n" + e.to_s
679 if results["errors"] then
680 abort "Error: #{results["errors"][0]}"
683 case global_opts[:format]
685 puts Oj.dump(results, :indent => 1)
689 if results["items"] and results["kind"].match /list$/i
690 results['items'].each do |i| puts i['uuid'] end
691 elsif results['uuid'].nil?
692 abort("Response did not include a uuid:\n" +
693 Oj.dump(results, :indent => 1) +