911c5efc1cb10d676386b7a64dca29c3ca0b134c
[osm/vim-emu.git] / src / emuvim / cli / network.py
1 """
2 son-emu network CLI
3 (c) 2016 by Manuel Peuster <manuel.peuster@upb.de>
4 """
5
6 import argparse
7 import pprint
8 from tabulate import tabulate
9 import zerorpc
10
11
12 pp = pprint.PrettyPrinter(indent=4)
13
14 class ZeroRpcClient(object):
15
16 def __init__(self):
17 self.c = zerorpc.Client()
18 # TODO connect to DCNetwork API
19 #self.c.connect("tcp://127.0.0.1:4242") # TODO hard coded for now. we'll change this later
20 self.c.connect("tcp://127.0.0.1:5151")
21 self.cmds = {}
22
23 def execute_command(self, args):
24 if getattr(self, args["command"]) is not None:
25 # call the local method with the same name as the command arg
26 getattr(self, args["command"])(args)
27 else:
28 print "Command not implemented."
29
30 def add(self, args):
31 vnf_src_name = self._parse_vnf_name(args.get("source"))
32 vnf_dst_name = self._parse_vnf_name(args.get("destination"))
33
34 params = self._create_dict(
35 vnf_src_interface=self._parse_vnf_interface(args.get("source")),
36 vnf_dst_interface=self._parse_vnf_interface(args.get("destination")),
37 weight=args.get("weight"),
38 match=args.get("match"),
39 bidirectional=args.get("bidirectional"),
40 cookie=args.get("cookie"))
41
42 # note zerorpc does not support named arguments
43 r = self.c.network_action_start(
44 #args.get("datacenter"),
45 vnf_src_name,
46 vnf_dst_name,
47 params)
48 pp.pprint(r)
49
50 def remove(self, args):
51 vnf_src_name = self._parse_vnf_name(args.get("source"))
52 vnf_dst_name = self._parse_vnf_name(args.get("destination"))
53
54 params = self._create_dict(
55 vnf_src_interface=self._parse_vnf_interface(args.get("source")),
56 vnf_dst_interface=self._parse_vnf_interface(args.get("destination")),
57 weight=args.get("weight"),
58 match=args.get("match"),
59 cookie=args.get("cookie"))
60
61 r = self.c.network_action_stop(
62 #args.get("datacenter"),
63 vnf_src_name,
64 vnf_dst_name,
65 params)
66 pp.pprint(r)
67
68 def _parse_vnf_name(self, vnf_name_str):
69 vnf_name = vnf_name_str.split(':')[0]
70 return vnf_name
71
72 def _parse_vnf_interface(self, vnf_name_str):
73 try:
74 vnf_interface = vnf_name_str.split(':')[1]
75 except:
76 vnf_interface = None
77
78 return vnf_interface
79
80 def _create_dict(self, **kwargs):
81 return kwargs
82
83 parser = argparse.ArgumentParser(description='son-emu network')
84 parser.add_argument(
85 "command",
86 help="Action to be executed: add|remove")
87 parser.add_argument(
88 "--datacenter", "-d", dest="datacenter",
89 help="Data center to in which the network action should be initiated")
90 parser.add_argument(
91 "--source", "-src", dest="source",
92 help="vnf name of the source of the chain")
93 parser.add_argument(
94 "--destination", "-dst", dest="destination",
95 help="vnf name of the destination of the chain")
96 parser.add_argument(
97 "--weight", "-w", dest="weight",
98 help="weight metric to calculate the path")
99 parser.add_argument(
100 "--match", "-m", dest="match",
101 help="string holding extra matches for the flow entries")
102 parser.add_argument(
103 "--bidirectional", "-b", dest="bidirectional",
104 action='store_true',
105 help="add/remove the flow entries in 2 directions")
106 parser.add_argument(
107 "--cookie", "-c", dest="cookie",
108 help="cookie for this flow")
109
110 def main(argv):
111 args = vars(parser.parse_args(argv))
112 c = ZeroRpcClient()
113 c.execute_command(args)