blob: c3680a098c26ab0bef48614da30265aefee8b327 [file] [log] [blame]
peusterm79ef6ae2016-07-08 13:53:57 +02001"""
2Copyright (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).
27"""
hadik3r237d3f52016-06-27 17:57:49 +020028import logging
stevenvanrossem73efd192016-06-29 01:44:07 +020029from flask_restful import Resource
30from flask import request
hadik3r237d3f52016-06-27 17:57:49 +020031import json
32
hadik3r237d3f52016-06-27 17:57:49 +020033logging.basicConfig(level=logging.INFO)
34
hadik3r237d3f52016-06-27 17:57:49 +020035dcs = {}
36
hadik3ra9dd9012016-08-09 10:51:13 +020037
38class Compute(Resource):
hadik3r237d3f52016-06-27 17:57:49 +020039 """
40 Start a new compute instance: A docker container (note: zerorpc does not support keyword arguments)
41 :param dc_label: name of the DC
42 :param compute_name: compute container name
43 :param image: image name
44 :param command: command to execute
45 :param network: list of all interface of the vnf, with their parameters (id=id1,ip=x.x.x.x/x),...
stevenvanrossem73efd192016-06-29 01:44:07 +020046 example networks list({"id":"input","ip": "10.0.0.254/8"}, {"id":"output","ip": "11.0.0.254/24"})
47 :return: docker inspect dict of deployed docker
hadik3r237d3f52016-06-27 17:57:49 +020048 """
49 global dcs
50
51 def put(self, dc_label, compute_name):
hadik3ra9dd9012016-08-09 10:51:13 +020052
53 # check if json data is a dict
54 data = request.json
55 if data is None:
56 data = {}
57 elif type(data) is not dict:
58 data = json.loads(request.json)
59
60 network = data.get("network")
61 nw_list = self._parse_network(network)
62 image = data.get("image")
63 command = data.get("docker_command")
64
hadik3r237d3f52016-06-27 17:57:49 +020065 try:
hadik3ra9dd9012016-08-09 10:51:13 +020066 logging.debug("API CALL: compute start")
hadik3r237d3f52016-06-27 17:57:49 +020067 c = dcs.get(dc_label).startCompute(
hadik3ra9dd9012016-08-09 10:51:13 +020068 compute_name, image=image, command=command, network=nw_list)
hadik3r237d3f52016-06-27 17:57:49 +020069 # return docker inspect dict
stevenvanrossem73efd192016-06-29 01:44:07 +020070 return c.getStatus(), 200
hadik3r237d3f52016-06-27 17:57:49 +020071 except Exception as ex:
72 logging.exception("API error.")
73 return ex.message, 500
74
hadik3ra9dd9012016-08-09 10:51:13 +020075 def get(self, dc_label, compute_name):
76
77 logging.debug("API CALL: compute status")
78
79 try:
80 return dcs.get(dc_label).containers.get(compute_name).getStatus(), 200
81 except Exception as ex:
82 logging.exception("API error.")
83 return ex.message, 500
84
85 def delete(self, dc_label, compute_name):
86 logging.debug("API CALL: compute stop")
87 try:
88 return dcs.get(dc_label).stopCompute(compute_name), 200
89 except Exception as ex:
90 logging.exception("API error.")
91 return ex.message, 500
92
stevenvanrossemff6b4042016-07-14 20:51:37 +020093 def _parse_network(self, network_str):
94 '''
95 parse the options for all network interfaces of the vnf
96 :param network_str: (id=x,ip=x.x.x.x/x), ...
97 :return: list of dicts [{"id":x,"ip":"x.x.x.x/x"}, ...]
98 '''
99 nw_list = list()
100
stevenvanrossem9c8a4122016-07-16 03:23:13 +0200101 # TODO make this more robust with regex check
hadik3ra9dd9012016-08-09 10:51:13 +0200102 if network_str is None:
stevenvanrossemff6b4042016-07-14 20:51:37 +0200103 return nw_list
104
105 networks = network_str[1:-1].split('),(')
106 for nw in networks:
107 nw_dict = dict(tuple(e.split('=')) for e in nw.split(','))
108 nw_list.append(nw_dict)
109
110 return nw_list
111
hadik3r237d3f52016-06-27 17:57:49 +0200112
113class ComputeList(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200114 global dcs
115
stevenvanrossem65819b82016-08-05 18:21:47 +0200116 def get(self, dc_label=None):
hadik3r237d3f52016-06-27 17:57:49 +0200117 logging.debug("API CALL: compute list")
118 try:
stevenvanrossem34566442016-08-10 00:13:24 +0200119 if dc_label is None or dc_label == 'None':
hadik3r237d3f52016-06-27 17:57:49 +0200120 # return list with all compute nodes in all DCs
121 all_containers = []
122 for dc in dcs.itervalues():
123 all_containers += dc.listCompute()
124 return [(c.name, c.getStatus()) for c in all_containers], 200
125 else:
126 # return list of compute nodes for specified DC
127 return [(c.name, c.getStatus())
hadik3ra9dd9012016-08-09 10:51:13 +0200128 for c in dcs.get(dc_label).listCompute()], 200
hadik3r237d3f52016-06-27 17:57:49 +0200129 except Exception as ex:
130 logging.exception("API error.")
131 return ex.message, 500
132
133
hadik3r237d3f52016-06-27 17:57:49 +0200134class DatacenterList(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200135 global dcs
136
137 def get(self):
138 logging.debug("API CALL: datacenter list")
139 try:
140 return [d.getStatus() for d in dcs.itervalues()], 200
141 except Exception as ex:
142 logging.exception("API error.")
143 return ex.message, 500
144
hadik3r237d3f52016-06-27 17:57:49 +0200145
hadik3ra9dd9012016-08-09 10:51:13 +0200146class DatacenterStatus(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200147 global dcs
148
149 def get(self, dc_label):
150 logging.debug("API CALL: datacenter status")
151 try:
152 return dcs.get(dc_label).getStatus(), 200
153 except Exception as ex:
154 logging.exception("API error.")
155 return ex.message, 500