blob: dc2b611a9858f5b048669f87406ae37d916e5f69 [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
peustermdfc14602017-01-13 08:22:45 +010035CORS_HEADER = {'Access-Control-Allow-Origin': '*'}
36
hadik3r237d3f52016-06-27 17:57:49 +020037dcs = {}
38
hadik3ra9dd9012016-08-09 10:51:13 +020039
40class Compute(Resource):
hadik3r237d3f52016-06-27 17:57:49 +020041 """
42 Start a new compute instance: A docker container (note: zerorpc does not support keyword arguments)
43 :param dc_label: name of the DC
44 :param compute_name: compute container name
45 :param image: image name
46 :param command: command to execute
47 :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 +020048 example networks list({"id":"input","ip": "10.0.0.254/8"}, {"id":"output","ip": "11.0.0.254/24"})
49 :return: docker inspect dict of deployed docker
hadik3r237d3f52016-06-27 17:57:49 +020050 """
51 global dcs
52
stevenvanrossemb3f34172016-11-16 23:30:57 +010053 def put(self, dc_label, compute_name, resource=None, value=None):
54 # check if resource update
55 if resource and value:
56 c = self._update_resource(dc_label, compute_name, resource, value)
57 return c.getStatus(), 200
hadik3ra9dd9012016-08-09 10:51:13 +020058
stevenvanrossemb3f34172016-11-16 23:30:57 +010059 # deploy new container
hadik3ra9dd9012016-08-09 10:51:13 +020060 # check if json data is a dict
61 data = request.json
62 if data is None:
63 data = {}
64 elif type(data) is not dict:
65 data = json.loads(request.json)
66
67 network = data.get("network")
68 nw_list = self._parse_network(network)
69 image = data.get("image")
70 command = data.get("docker_command")
71
hadik3r237d3f52016-06-27 17:57:49 +020072 try:
hadik3ra9dd9012016-08-09 10:51:13 +020073 logging.debug("API CALL: compute start")
hadik3r237d3f52016-06-27 17:57:49 +020074 c = dcs.get(dc_label).startCompute(
hadik3ra9dd9012016-08-09 10:51:13 +020075 compute_name, image=image, command=command, network=nw_list)
hadik3r237d3f52016-06-27 17:57:49 +020076 # return docker inspect dict
peustermdfc14602017-01-13 08:22:45 +010077 return c.getStatus(), 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +020078 except Exception as ex:
79 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +010080 return ex.message, 500, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +020081
stevenvanrossemb3f34172016-11-16 23:30:57 +010082 def _update_resource(self, dc_label, compute_name, resource, value):
83 #check if container exists
84 d = dcs.get(dc_label).net.getNodeByName(compute_name)
85 if resource == 'cpu':
86 cpu_period = int(dcs.get(dc_label).net.cpu_period)
87 cpu_quota = int(cpu_period * float(value))
88 #put default values back
89 if float(value) <= 0:
90 cpu_period = 100000
91 cpu_quota = -1
92 d.updateCpuLimit(cpu_period=cpu_period, cpu_quota=cpu_quota)
93 return d
94
95
hadik3ra9dd9012016-08-09 10:51:13 +020096 def get(self, dc_label, compute_name):
97
98 logging.debug("API CALL: compute status")
99
100 try:
peustermdfc14602017-01-13 08:22:45 +0100101 return dcs.get(dc_label).containers.get(compute_name).getStatus(), 200, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200102 except Exception as ex:
103 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100104 return ex.message, 500, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200105
106 def delete(self, dc_label, compute_name):
107 logging.debug("API CALL: compute stop")
108 try:
peustermdfc14602017-01-13 08:22:45 +0100109 return dcs.get(dc_label).stopCompute(compute_name), 200, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200110 except Exception as ex:
111 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100112 return ex.message, 500, CORS_HEADER
hadik3ra9dd9012016-08-09 10:51:13 +0200113
stevenvanrossemff6b4042016-07-14 20:51:37 +0200114 def _parse_network(self, network_str):
115 '''
116 parse the options for all network interfaces of the vnf
117 :param network_str: (id=x,ip=x.x.x.x/x), ...
118 :return: list of dicts [{"id":x,"ip":"x.x.x.x/x"}, ...]
119 '''
120 nw_list = list()
121
stevenvanrossem9c8a4122016-07-16 03:23:13 +0200122 # TODO make this more robust with regex check
hadik3ra9dd9012016-08-09 10:51:13 +0200123 if network_str is None:
stevenvanrossemff6b4042016-07-14 20:51:37 +0200124 return nw_list
125
126 networks = network_str[1:-1].split('),(')
127 for nw in networks:
128 nw_dict = dict(tuple(e.split('=')) for e in nw.split(','))
129 nw_list.append(nw_dict)
130
131 return nw_list
132
hadik3r237d3f52016-06-27 17:57:49 +0200133
134class ComputeList(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200135 global dcs
136
stevenvanrossem65819b82016-08-05 18:21:47 +0200137 def get(self, dc_label=None):
hadik3r237d3f52016-06-27 17:57:49 +0200138 logging.debug("API CALL: compute list")
139 try:
stevenvanrossem34566442016-08-10 00:13:24 +0200140 if dc_label is None or dc_label == 'None':
hadik3r237d3f52016-06-27 17:57:49 +0200141 # return list with all compute nodes in all DCs
142 all_containers = []
143 for dc in dcs.itervalues():
144 all_containers += dc.listCompute()
peustermdfc14602017-01-13 08:22:45 +0100145 return [(c.name, c.getStatus()) for c in all_containers], 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200146 else:
147 # return list of compute nodes for specified DC
148 return [(c.name, c.getStatus())
peustermdfc14602017-01-13 08:22:45 +0100149 for c in dcs.get(dc_label).listCompute()], 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200150 except Exception as ex:
151 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100152 return ex.message, 500, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200153
154
hadik3r237d3f52016-06-27 17:57:49 +0200155class DatacenterList(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200156 global dcs
157
158 def get(self):
159 logging.debug("API CALL: datacenter list")
160 try:
peustermdfc14602017-01-13 08:22:45 +0100161 return [d.getStatus() for d in dcs.itervalues()], 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200162 except Exception as ex:
163 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100164 return ex.message, 500, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200165
hadik3r237d3f52016-06-27 17:57:49 +0200166
hadik3ra9dd9012016-08-09 10:51:13 +0200167class DatacenterStatus(Resource):
hadik3r237d3f52016-06-27 17:57:49 +0200168 global dcs
169
170 def get(self, dc_label):
171 logging.debug("API CALL: datacenter status")
172 try:
peustermdfc14602017-01-13 08:22:45 +0100173 return dcs.get(dc_label).getStatus(), 200, CORS_HEADER
hadik3r237d3f52016-06-27 17:57:49 +0200174 except Exception as ex:
175 logging.exception("API error.")
peustermdfc14602017-01-13 08:22:45 +0100176 return ex.message, 500, CORS_HEADER