source: fedd/fedd_info.py @ 80b1e82

compt_changesinfo-ops
Last change on this file since 80b1e82 was 80b1e82, checked in by Ted Faber <faber@…>, 12 years ago

Info stuff all works. SEER will need to add a legacy parameter to info.

  • Property mode set to 100755
File size: 2.2 KB
Line 
1#!/usr/bin/env python
2
3import sys
4
5from federation.proof import proof
6from federation.remote_service import service_caller
7from federation.client_lib import client_opts, exit_with_fault, RPCException,\
8        wrangle_standard_options, do_rpc, get_experiment_names, info_format, \
9        log_authentication
10
11class exp_data_opts(client_opts):
12    def __init__(self):
13        client_opts.__init__(self)
14        self.add_option("--experiment_cert", dest="exp_certfile",
15                action='callback', callback=self.expand_file, type='str',
16                help="experiment certificate file")
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", "vtopo", "vis", 
22                    "log", "status"),
23                help="data to extract")
24       
25parser = exp_data_opts()
26(opts, args) = parser.parse_args()
27cert, fid, url = wrangle_standard_options(opts)
28
29if opts.exp_name and opts.exp_certfile:
30    sys.exit("Only one of --experiment_cert and --experiment_name permitted")
31elif opts.exp_certfile:
32    exp_id = { 'fedid': fedid(file=opts.exp_certfile) }
33elif opts.exp_name:
34    exp_id = { 'localname' : opts.exp_name }
35else:
36    sys.exit("specify one of --experiment_cert and --experiment_name")
37
38req = { 'experiment': exp_id }
39
40# If legacy data is requested, request it from the server.
41if 'vis' in opts.data  or 'vtopo' in opts.data:
42    req['legacy'] = True
43
44try:
45    resp_dict = do_rpc(req,
46            url, opts.transport, cert, opts.trusted, 
47            serialize_only=opts.serialize_only,
48            tracefile=opts.tracefile,
49            caller=service_caller('Info'), responseBody='InfoResponseBody')
50except RPCException, e:
51    exit_with_fault(e, 'Info', opts)
52except RuntimeError, e:
53    sys.exit("Error processing RPC: %s" % e)
54
55formatter = info_format()
56for d in opts.data:
57    try:
58        formatter(resp_dict, d)
59    except RuntimeError, e:
60        print >>sys.stderr, "Warning: %s" % e
61proof = proof.from_dict(resp_dict.get('proof', {}))
62if proof and opts.auth_log:
63    log_authentication(opts.auth_log, 'Info', 'succeeded', proof)
Note: See TracBrowser for help on using the repository browser.