blob: e08a6c52b0b0a316f3727a4c802c4949de39ff82 [file] [log] [blame]
peusterme7c9e862016-02-04 16:10:19 +01001"""
peusterm79ef6ae2016-07-08 13:53:57 +02002Copyright (c) 2015 SONATA-NFV and Paderborn University
3ALL RIGHTS RESERVED.
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16
17Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION]
18nor the names of its contributors may be used to endorse or promote
19products derived from this software without specific prior written
20permission.
21
22This work has been performed in the framework of the SONATA project,
23funded by the European Commission under Grant number 671517 through
24the Horizon 2020 and 5G-PPP programmes. The authors would like to
25acknowledge the contributions of their colleagues of the SONATA
26partner consortium (www.sonata-nfv.eu).
peusterme7c9e862016-02-04 16:10:19 +010027"""
28
29import argparse
30import pprint
31from tabulate import tabulate
32import zerorpc
33
34
35pp = pprint.PrettyPrinter(indent=4)
36
37
38class ZeroRpcClient(object):
39
40 def __init__(self):
41 self.c = zerorpc.Client()
42 self.c.connect("tcp://127.0.0.1:4242") # TODO hard coded for now. we'll change this later
43 self.cmds = {}
44
45 def execute_command(self, args):
46 if getattr(self, args["command"]) is not None:
47 # call the local method with the same name as the command arg
48 getattr(self, args["command"])(args)
49 else:
stevenvanrossem49378152016-05-19 11:33:48 +020050 print("Command not implemented.")
peusterme7c9e862016-02-04 16:10:19 +010051
52 def list(self, args):
53 r = self.c.datacenter_list()
54 table = []
55 for d in r:
56 # for each dc add a line to the output table
57 if len(d) > 0:
58 table.append([d.get("label"),
59 d.get("internalname"),
60 d.get("switch"),
61 d.get("n_running_containers"),
62 len(d.get("metadata"))])
63 headers = ["Label",
64 "Internal Name",
65 "Switch",
66 "# Containers",
67 "# Metadata Items"]
stevenvanrossem49378152016-05-19 11:33:48 +020068 print(tabulate(table, headers=headers, tablefmt="grid"))
peusterme7c9e862016-02-04 16:10:19 +010069
70 def status(self, args):
71 r = self.c.datacenter_status(
72 args.get("datacenter"))
73 pp.pprint(r)
74
75
76parser = argparse.ArgumentParser(description='son-emu datacenter')
77parser.add_argument(
78 "command",
79 choices=['list', 'status'],
80 help="Action to be executed.")
81parser.add_argument(
82 "--datacenter", "-d", dest="datacenter",
83 help="Data center to which the command should be applied.")
84
85
86def main(argv):
87 args = vars(parser.parse_args(argv))
88 c = ZeroRpcClient()
89 c.execute_command(args)