use pprint.PrettyPrinter intead of pprint.pformat
[sfa.git] / sfa / client / sfaadmin.py
1 #!/usr/bin/python
2 import sys
3 import copy
4 from pprint import pformat 
5 from sfa.generic import Generic
6 from optparse import OptionParser
7 from pprint import PrettyPrinter
8 from sfa.util.xrn import Xrn
9 from sfa.storage.record import SfaRecord 
10 from sfa.client.sfi import save_records_to_file
11 pprinter = PrettyPrinter(indent=4)
12
13
14 def args(*args, **kwargs):
15     def _decorator(func):
16         func.__dict__.setdefault('options', []).insert(0, (args, kwargs))
17         return func
18     return _decorator
19
20 class Commands(object):
21
22     def _get_commands(self):
23         available_methods = []
24         for attrib in dir(self):
25             if callable(getattr(self, attrib)) and not attrib.startswith('_'):
26                 available_methods.append(attrib)
27         return available_methods         
28
29 class RegistryCommands(Commands):
30
31     def __init__(self, *args, **kwds):
32         self.api= Generic.the_flavour().make_api(interface='registry')
33  
34     def version(self):
35         version = self.api.manager.GetVersion(self.api, {})
36         pprinter.pprint(version)
37
38     @args('-x', '--xrn', dest='xrn', metavar='<xrn>', help='object hrn/urn') 
39     @args('-t', '--type', dest='type', metavar='<type>', help='object type', default=None) 
40     def list(self, xrn, type=None):
41         xrn = Xrn(xrn, type) 
42         records = self.api.manager.List(self.api, xrn.get_hrn())
43         for record in records:
44             if not type or record['type'] == type:
45                 print "%s (%s)" % (record['hrn'], record['type'])
46
47
48     @args('-x', '--xrn', dest='xrn', metavar='<xrn>', help='object hrn/urn') 
49     @args('-t', '--type', dest='type', metavar='<type>', help='object type', default=None) 
50     @args('-o', '--outfile', dest='outfile', metavar='<outfile>', help='save record to file') 
51     @args('-f', '--format', dest='format', metavar='<display>', type='choice', 
52           choices=('text', 'xml', 'summary'), help='display record in different formats') 
53     def show(self, xrn, type=None, format=None, outfile=None):
54         records = self.api.manager.Resolve(self.api, xrn, type, True)
55         for record in records:
56             sfa_record = SfaRecord(dict=record)
57             sfa_record.dump(format) 
58         if outfile:
59             save_records_to_file(outfile, records)                
60
61     def register(self, record):
62         pass
63
64     def update(self, record):
65         pass
66         
67     def remove(self, xrn):            
68         pass
69
70     def credential(self, xrn):
71         pass
72
73     def gid(self, xrn):
74         pass
75
76 class CerficiateCommands(Commands):
77     
78     def import_records(self, xrn):
79         pass
80
81     def export(self, xrn):
82         pass
83
84     def display(self, xrn):
85         pass
86
87     def nuke(self):
88         pass  
89
90 class AggregateCommands(Commands):
91
92     def __init__(self, *args, **kwds):
93         self.api= Generic.the_flavour().make_api(interface='aggregate')
94    
95     def version(self):
96         version = self.api.manager.GetVersion(self.api, {})
97         pprinter.pprint(version)
98
99     def slices(self):
100         print self.api.manager.ListSlices(self.api, [], {})
101
102     @args('-x', '--xrn', dest='xrn', metavar='<xrn>', help='object hrn/urn') 
103     def status(self, xrn):
104         urn = Xrn(xrn, 'slice').get_urn()
105         status = self.api.manager.SliverStatus(self.api, urn, [], {})
106         pprinter.pprint(status)
107  
108     def resources(self, xrn):
109         pass
110
111     def create(self, xrn, rspec):
112         pass
113
114     def delete(self, xrn):
115         pass 
116     
117     def start(self, xrn):
118         pass
119
120     def stop(self, xrn):
121         pass      
122
123     def reset(self, xrn):
124         pass
125
126     def ticket(self):
127         pass
128
129
130 class SliceManagerCommands(AggregateCommands):
131     
132     def __init__(self, *args, **kwds):
133         self.api= Generic().make_api(interface='slicemgr')
134
135
136 CATEGORIES = {'registry': RegistryCommands,
137               'aggregate': AggregateCommands,
138               'slicemgr': SliceManagerCommands}
139
140 def main():
141     argv = copy.deepcopy(sys.argv)
142     script_name = argv.pop(0)
143     if len(argv) < 1:
144         print script_name + " category action [<args>]"
145         print "Available categories:"
146         for k in CATEGORIES:
147             print "\t%s" % k
148         sys.exit(2)
149
150     category = argv.pop(0)
151     usage = "%%prog %s action <args> [options]" % (category)
152     parser = OptionParser(usage=usage)
153     command_class =  CATEGORIES[category]
154     command_instance = command_class()
155     actions = command_instance._get_commands()
156     if len(argv) < 1:
157         if hasattr(command_instance, '__call__'):
158             action = ''
159             command = command_instance.__call__
160         else:
161             print script_name + " category action [<args>]"
162             print "Available actions for %s category:" % category
163             for k in actions:
164                 print "\t%s" % k 
165             sys.exit(2)
166     else:
167         action = argv.pop(0)
168         command = getattr(command_instance, action)
169
170     options = getattr(command, 'options', [])
171     usage = "%%prog %s %s <args> [options]" % (category, action)
172     parser = OptionParser(usage=usage)
173     for arg, kwd in options:
174         parser.add_option(*arg, **kwd)
175     (opts, cmd_args) = parser.parse_args(argv)
176     cmd_kwds = vars(opts)
177
178     # dont overrride meth
179     for k, v in cmd_kwds.items():
180         if v is None:
181             del cmd_kwds[k]
182
183     try:
184         command(*cmd_args, **cmd_kwds)
185         sys.exit(0)
186     except TypeError:
187         print "Possible wrong number of arguments supplied"
188         print command.__doc__
189         parser.print_help()
190         #raise
191         raise
192     except Exception:
193         print "Command failed, please check log for more info"
194         raise
195
196
197 if __name__ == '__main__':
198     main()
199     
200      
201         
202