Merge pull request #1 from mpeuster/master
[osm/vim-emu.git] / emuvim / api / zerorpcapi.py
1 """
2 Distributed Cloud Emulator (dcemulator)
3 (c) 2015 by Manuel Peuster <manuel.peuster@upb.de>
4 """
5
6 import logging
7 import threading
8 import zerorpc
9
10 logging.basicConfig(level=logging.INFO)
11
12
13 class ZeroRpcApiEndpoint(object):
14 """
15 Simple API endpoint that offers a zerorpc-based
16 interface. This interface will be used by the
17 default command line client.
18 It can be used as a reference to implement
19 REST interfaces providing the same semantics,
20 like e.g. OpenStack compute API.
21 """
22
23 def __init__(self, listenip, port):
24 self.dcs = {}
25 self.ip = listenip
26 self.port = port
27 logging.debug("Created API endpoint %s(%s:%d)" % (
28 self.__class__.__name__, self.ip, self.port))
29
30 def connectDatacenter(self, dc):
31 self.dcs[dc.name] = dc
32 logging.info("Connected DC(%s) to API endpoint %s(%s:%d)" % (
33 dc.name, self.__class__.__name__, self.ip, self.port))
34
35 def start(self):
36 thread = threading.Thread(target=self._api_server_thread, args=())
37 thread.daemon = True
38 thread.start()
39 logging.debug("Started API endpoint %s(%s:%d)" % (
40 self.__class__.__name__, self.ip, self.port))
41
42 def _api_server_thread(self):
43 s = zerorpc.Server(MultiDatacenterApi(self.dcs))
44 s.bind("tcp://%s:%d" % (self.ip, self.port))
45 s.run()
46
47
48 class MultiDatacenterApi(object):
49 """
50 Just pass through the corresponding request to the
51 selected data center. Do not implement provisioning
52 logic here because will will have multiple API
53 endpoint implementations at the end.
54 """
55
56 def __init__(self, dcs):
57 self.dcs = dcs
58
59 def compute_action_start(self, dc_name, compute_name, image, network):
60 # network e.g. {"ip": "10.0.0.254/8"}
61 # TODO what to return UUID / given name / internal name ?
62 logging.debug("RPC CALL: compute start")
63 try:
64 c = self.dcs.get(dc_name).startCompute(
65 compute_name, image=image, network=network)
66 return str(c.name)
67 except Exception as ex:
68 logging.exception("RPC error.")
69 return ex.message
70
71 def compute_action_stop(self, dc_name, compute_name):
72 logging.debug("RPC CALL: compute stop")
73 try:
74 return self.dcs.get(dc_name).stopCompute(compute_name)
75 except Exception as ex:
76 logging.exception("RPC error.")
77 return ex.message
78
79 def compute_list(self, dc_name):
80 logging.debug("RPC CALL: compute list")
81 try:
82 if dc_name is None:
83 # return list with all compute nodes in all DCs
84 all_containers = []
85 for dc in self.dcs.itervalues():
86 all_containers += dc.listCompute()
87 return [(c.name, c.getStatus())
88 for c in all_containers]
89 else:
90 # return list of compute nodes for specified DC
91 return [(c.name, c.getStatus())
92 for c in self.dcs.get(dc_name).listCompute()]
93 except Exception as ex:
94 logging.exception("RPC error.")
95 return ex.message
96
97 def compute_status(self, dc_name, compute_name):
98 logging.debug("RPC CALL: compute status")
99 try:
100 return self.dcs.get(
101 dc_name).containers.get(compute_name).getStatus()
102 except Exception as ex:
103 logging.exception("RPC error.")
104 return ex.message