25ac2477598197d101ca7aef9ac8848f140e0967
[osm/vim-emu.git] / src / emuvim / cli / compute.py
1 """
2 Copyright (c) 2015 SONATA-NFV and Paderborn University
3 ALL RIGHTS RESERVED.
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION]
18 nor the names of its contributors may be used to endorse or promote
19 products derived from this software without specific prior written
20 permission.
21
22 This work has been performed in the framework of the SONATA project,
23 funded by the European Commission under Grant number 671517 through
24 the Horizon 2020 and 5G-PPP programmes. The authors would like to
25 acknowledge the contributions of their colleagues of the SONATA
26 partner consortium (www.sonata-nfv.eu).
27 """
28
29 import argparse
30 import pprint
31 from tabulate import tabulate
32 import zerorpc
33
34
35 pp = pprint.PrettyPrinter(indent=4)
36
37
38 class ZeroRpcClient(object):
39
40 def __init__(self):
41 self.c = zerorpc.Client(heartbeat=None, timeout=120) #heartbeat=None, timeout=120
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:
50 print("Command not implemented.")
51
52 def start(self, args):
53 nw_list = list()
54 if args.get("network") is not None:
55 nw_list = self._parse_network(args.get("network"))
56 r = self.c.compute_action_start(
57 args.get("datacenter"),
58 args.get("name"),
59 args.get("image"),
60 nw_list,
61 args.get("docker_command")
62 )
63 pp.pprint(r)
64
65 def stop(self, args):
66 r = self.c.compute_action_stop(
67 args.get("datacenter"), args.get("name"))
68 pp.pprint(r)
69
70 def list(self, args):
71 r = self.c.compute_list(
72 args.get("datacenter"))
73 table = []
74 for c in r:
75 # for each container add a line to the output table
76 if len(c) > 1:
77 name = c[0]
78 status = c[1]
79 eth0ip = None
80 eth0status = "down"
81 if len(status.get("network")) > 0:
82 eth0ip = status.get("network")[0].get("ip")
83 eth0status = "up" if status.get(
84 "network")[0].get("up") else "down"
85 table.append([status.get("datacenter"),
86 name,
87 status.get("image"),
88 eth0ip,
89 eth0status,
90 status.get("state").get("Status")])
91 headers = ["Datacenter",
92 "Container",
93 "Image",
94 "eth0 IP",
95 "eth0 status",
96 "Status"]
97 print(tabulate(table, headers=headers, tablefmt="grid"))
98
99 def status(self, args):
100 r = self.c.compute_status(
101 args.get("datacenter"), args.get("name"))
102 pp.pprint(r)
103
104 def profile(self, args):
105 nw_list = list()
106 if args.get("network") is not None:
107 nw_list = self._parse_network(args.get("network"))
108
109 params = self._create_dict(
110 network=nw_list,
111 command=args.get("docker_command"),
112 image=args.get("image"),
113 input=args.get("input"),
114 output=args.get("output"))
115
116 for output in self.c.compute_profile(
117 args.get("datacenter"),
118 args.get("name"),
119 params):
120 print(output + '\n')
121
122 #pp.pprint(r)
123 #print(r)
124
125 def _create_dict(self, **kwargs):
126 return kwargs
127
128 def _parse_network(self, network_str):
129 '''
130 parse the options for all network interfaces of the vnf
131 :param network_str: (id=x,ip=x.x.x.x/x), ...
132 :return: list of dicts [{"id":x,"ip":"x.x.x.x/x"}, ...]
133 '''
134 nw_list = list()
135 networks = network_str[1:-1].split('),(')
136 for nw in networks:
137 nw_dict = dict(tuple(e.split('=')) for e in nw.split(','))
138 nw_list.append(nw_dict)
139
140 return nw_list
141
142
143
144 parser = argparse.ArgumentParser(description='son-emu compute')
145 parser.add_argument(
146 "command",
147 choices=['start', 'stop', 'list', 'status', 'profile'],
148 help="Action to be executed.")
149 parser.add_argument(
150 "--datacenter", "-d", dest="datacenter",
151 help="Data center to in which the compute instance should be executed")
152 parser.add_argument(
153 "--name", "-n", dest="name",
154 help="Name of compute instance e.g. 'vnf1'")
155 parser.add_argument(
156 "--image","-i", dest="image",
157 help="Name of container image to be used e.g. 'ubuntu:trusty'")
158 parser.add_argument(
159 "--dcmd", "-c", dest="docker_command",
160 help="Startup command of the container e.g. './start.sh'")
161 parser.add_argument(
162 "--net", dest="network",
163 help="Network properties of a compute instance e.g. \
164 '(id=input,ip=10.0.10.3/24),(id=output,ip=10.0.10.4/24)' for multiple interfaces.")
165 parser.add_argument(
166 "--input", "-in", dest="input",
167 help="input interface of the vnf to profile")
168 parser.add_argument(
169 "--output", "-out", dest="output",
170 help="output interface of the vnf to profile")
171
172
173 def main(argv):
174 args = vars(parser.parse_args(argv))
175 c = ZeroRpcClient()
176 c.execute_command(args)