[2e46f35] | 1 | #!/usr/bin/env python |
---|
[d743d60] | 2 | |
---|
| 3 | import sys |
---|
| 4 | |
---|
[e83f2f2] | 5 | from federation.proof import proof |
---|
[d743d60] | 6 | from federation.remote_service import service_caller |
---|
| 7 | from federation.client_lib import client_opts, exit_with_fault, RPCException,\ |
---|
[e83f2f2] | 8 | wrangle_standard_options, do_rpc, get_experiment_names, info_format, \ |
---|
| 9 | log_authentication |
---|
[d743d60] | 10 | |
---|
| 11 | class exp_data_opts(client_opts): |
---|
| 12 | def __init__(self): |
---|
| 13 | client_opts.__init__(self) |
---|
| 14 | self.add_option("--experiment_cert", dest="exp_certfile", |
---|
[62f3dd9] | 15 | action='callback', callback=self.expand_file, type='str', |
---|
| 16 | help="experiment certificate file") |
---|
[d743d60] | 17 | self.add_option("--experiment_name", dest="exp_name", |
---|
| 18 | type="string", help="human readable experiment name") |
---|
| 19 | self.add_option("--data", dest="data", default=[], |
---|
| 20 | action="append", type="choice", |
---|
| 21 | choices=("id", "experimentdescription", "federant", "vtopo", |
---|
[2fd8f8c] | 22 | "vis", "log", "status", "embedding"), |
---|
[d743d60] | 23 | help="data to extract") |
---|
| 24 | |
---|
| 25 | parser = exp_data_opts() |
---|
| 26 | (opts, args) = parser.parse_args() |
---|
[5d854e1] | 27 | cert, fid, url = wrangle_standard_options(opts) |
---|
[d743d60] | 28 | |
---|
| 29 | if opts.exp_name and opts.exp_certfile: |
---|
| 30 | sys.exit("Only one of --experiment_cert and --experiment_name permitted") |
---|
| 31 | elif opts.exp_certfile: |
---|
| 32 | exp_id = { 'fedid': fedid(file=opts.exp_certfile) } |
---|
| 33 | elif opts.exp_name: |
---|
| 34 | exp_id = { 'localname' : opts.exp_name } |
---|
| 35 | else: |
---|
| 36 | sys.exit("specify one of --experiment_cert and --experiment_name") |
---|
| 37 | |
---|
| 38 | req = { 'experiment': exp_id } |
---|
| 39 | |
---|
| 40 | try: |
---|
| 41 | resp_dict = do_rpc(req, |
---|
[5d854e1] | 42 | url, opts.transport, cert, opts.trusted, |
---|
[d743d60] | 43 | serialize_only=opts.serialize_only, |
---|
| 44 | tracefile=opts.tracefile, |
---|
| 45 | caller=service_caller('Info'), responseBody='InfoResponseBody') |
---|
| 46 | except RPCException, e: |
---|
[e83f2f2] | 47 | exit_with_fault(e, 'Info', opts) |
---|
[d743d60] | 48 | except RuntimeError, e: |
---|
| 49 | sys.exit("Error processing RPC: %s" % e) |
---|
| 50 | |
---|
| 51 | formatter = info_format() |
---|
| 52 | for d in opts.data: |
---|
[2fd8f8c] | 53 | try: |
---|
| 54 | formatter(resp_dict, d) |
---|
| 55 | except RuntimeError, e: |
---|
| 56 | print >>sys.stderr, "Warning: %s" % e |
---|
[e83f2f2] | 57 | proof = proof.from_dict(resp_dict.get('proof', {})) |
---|
| 58 | if proof and opts.auth_log: |
---|
| 59 | log_authentication(opts.auth_log, 'Info', 'succeeded', proof) |
---|