blob: c41884b0c4749c644d582c261dabfa4cc38e235c [file] [log] [blame]
peusterme26487b2016-03-08 14:00:21 +01001"""
peusterm79ef6ae2016-07-08 13:53:57 +02002Copyright (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"""
28"""
peusterme26487b2016-03-08 14:00:21 +010029This module implements a simple REST API that behaves like SONATA's gatekeeper.
30
31It is only used to support the development of SONATA's SDK tools and to demonstrate
32the year 1 version of the emulator until the integration with WP4's orchestrator is done.
33"""
34
35import logging
36import os
37import uuid
38import hashlib
peusterm786cd542016-03-14 14:12:17 +010039import zipfile
peusterm7ec665d2016-03-14 15:20:44 +010040import yaml
peustermbdfab7e2016-03-14 16:03:30 +010041from docker import Client as DockerClient
peusterme26487b2016-03-08 14:00:21 +010042from flask import Flask, request
43import flask_restful as fr
wtaverni5b23b662016-06-20 12:26:21 +020044from collections import defaultdict
peusterme26487b2016-03-08 14:00:21 +010045
peusterm398cd3b2016-03-21 15:04:54 +010046logging.basicConfig()
peusterm786cd542016-03-14 14:12:17 +010047LOG = logging.getLogger("sonata-dummy-gatekeeper")
48LOG.setLevel(logging.DEBUG)
peusterme26487b2016-03-08 14:00:21 +010049logging.getLogger("werkzeug").setLevel(logging.WARNING)
50
peusterm92237dc2016-03-21 15:45:58 +010051GK_STORAGE = "/tmp/son-dummy-gk/"
52UPLOAD_FOLDER = os.path.join(GK_STORAGE, "uploads/")
53CATALOG_FOLDER = os.path.join(GK_STORAGE, "catalog/")
peusterme26487b2016-03-08 14:00:21 +010054
peusterm82d406e2016-05-02 20:52:06 +020055# Enable Dockerfile build functionality
56BUILD_DOCKERFILE = False
57
peusterm398cd3b2016-03-21 15:04:54 +010058# flag to indicate that we run without the emulator (only the bare API for integration testing)
59GK_STANDALONE_MODE = False
60
peusterm56356cb2016-05-03 10:43:43 +020061# should a new version of an image be pulled even if its available
wtaverni5b23b662016-06-20 12:26:21 +020062FORCE_PULL = False
peusterme26487b2016-03-08 14:00:21 +010063
64class Gatekeeper(object):
65
66 def __init__(self):
peusterm786cd542016-03-14 14:12:17 +010067 self.services = dict()
peusterm082378b2016-03-16 20:14:22 +010068 self.dcs = dict()
peusterm3444ae42016-03-16 20:46:41 +010069 self.vnf_counter = 0 # used to generate short names for VNFs (Mininet limitation)
peusterm786cd542016-03-14 14:12:17 +010070 LOG.info("Create SONATA dummy gatekeeper.")
peusterme26487b2016-03-08 14:00:21 +010071
peusterm786cd542016-03-14 14:12:17 +010072 def register_service_package(self, service_uuid, service):
73 """
74 register new service package
75 :param service_uuid
76 :param service object
77 """
78 self.services[service_uuid] = service
79 # lets perform all steps needed to onboard the service
80 service.onboard()
81
peusterm3444ae42016-03-16 20:46:41 +010082 def get_next_vnf_name(self):
83 self.vnf_counter += 1
peusterm398cd3b2016-03-21 15:04:54 +010084 return "vnf%d" % self.vnf_counter
peusterm3444ae42016-03-16 20:46:41 +010085
peusterm786cd542016-03-14 14:12:17 +010086
87class Service(object):
88 """
89 This class represents a NS uploaded as a *.son package to the
90 dummy gatekeeper.
91 Can have multiple running instances of this service.
92 """
93
94 def __init__(self,
95 service_uuid,
96 package_file_hash,
97 package_file_path):
98 self.uuid = service_uuid
99 self.package_file_hash = package_file_hash
100 self.package_file_path = package_file_path
101 self.package_content_path = os.path.join(CATALOG_FOLDER, "services/%s" % self.uuid)
peusterm7ec665d2016-03-14 15:20:44 +0100102 self.manifest = None
103 self.nsd = None
104 self.vnfds = dict()
peustermbdfab7e2016-03-14 16:03:30 +0100105 self.local_docker_files = dict()
peusterm82d406e2016-05-02 20:52:06 +0200106 self.remote_docker_image_urls = dict()
peusterm786cd542016-03-14 14:12:17 +0100107 self.instances = dict()
wtaverni5b23b662016-06-20 12:26:21 +0200108 self.vnfname2num = dict()
peusterme26487b2016-03-08 14:00:21 +0100109
peusterm786cd542016-03-14 14:12:17 +0100110 def onboard(self):
111 """
112 Do all steps to prepare this service to be instantiated
113 :return:
114 """
115 # 1. extract the contents of the package and store them in our catalog
116 self._unpack_service_package()
117 # 2. read in all descriptor files
peusterm7ec665d2016-03-14 15:20:44 +0100118 self._load_package_descriptor()
119 self._load_nsd()
120 self._load_vnfd()
peusterm786cd542016-03-14 14:12:17 +0100121 # 3. prepare container images (e.g. download or build Dockerfile)
peusterm82d406e2016-05-02 20:52:06 +0200122 if BUILD_DOCKERFILE:
123 self._load_docker_files()
124 self._build_images_from_dockerfiles()
125 else:
126 self._load_docker_urls()
127 self._pull_predefined_dockerimages()
peusterm7ec665d2016-03-14 15:20:44 +0100128 LOG.info("On-boarded service: %r" % self.manifest.get("package_name"))
129
peusterm082378b2016-03-16 20:14:22 +0100130 def start_service(self):
peusterm3444ae42016-03-16 20:46:41 +0100131 """
132 This methods creates and starts a new service instance.
133 It computes placements, iterates over all VNFDs, and starts
134 each VNFD as a Docker container in the data center selected
135 by the placement algorithm.
136 :return:
137 """
138 LOG.info("Starting service %r" % self.uuid)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200139
peusterm3444ae42016-03-16 20:46:41 +0100140 # 1. each service instance gets a new uuid to identify it
peusterm082378b2016-03-16 20:14:22 +0100141 instance_uuid = str(uuid.uuid4())
peusterm3444ae42016-03-16 20:46:41 +0100142 # build a instances dict (a bit like a NSR :))
143 self.instances[instance_uuid] = dict()
144 self.instances[instance_uuid]["vnf_instances"] = list()
stevenvanrossemd87fe472016-05-11 11:34:34 +0200145
peusterm3444ae42016-03-16 20:46:41 +0100146 # 2. compute placement of this service instance (adds DC names to VNFDs)
peusterm398cd3b2016-03-21 15:04:54 +0100147 if not GK_STANDALONE_MODE:
148 self._calculate_placement(FirstDcPlacement)
peusterm3444ae42016-03-16 20:46:41 +0100149 # iterate over all vnfds that we have to start
peusterm082378b2016-03-16 20:14:22 +0100150 for vnfd in self.vnfds.itervalues():
peusterm398cd3b2016-03-21 15:04:54 +0100151 vnfi = None
152 if not GK_STANDALONE_MODE:
153 vnfi = self._start_vnfd(vnfd)
154 self.instances[instance_uuid]["vnf_instances"].append(vnfi)
stevenvanrossemd87fe472016-05-11 11:34:34 +0200155
156 # 3. Configure the chaining of the network functions (currently only E-Line links supported)
wtaverni5b23b662016-06-20 12:26:21 +0200157 nfid2name = defaultdict(lambda :"NotExistingNode",
158 reduce(lambda x,y: dict(x, **y),
159 map(lambda d:{d["vnf_id"]:d["vnf_name"]},
160 self.nsd["network_functions"])))
161
stevenvanrossemd87fe472016-05-11 11:34:34 +0200162 vlinks = self.nsd["virtual_links"]
163 fwd_links = self.nsd["forwarding_graphs"][0]["constituent_virtual_links"]
164 eline_fwd_links = [l for l in vlinks if (l["id"] in fwd_links) and (l["connectivity_type"] == "E-Line")]
165
wtaverni5b23b662016-06-20 12:26:21 +0200166 cookie = 1 # not clear why this is needed - to check with Steven
stevenvanrossemd87fe472016-05-11 11:34:34 +0200167 for link in eline_fwd_links:
168 src_node, src_port = link["connection_points_reference"][0].split(":")
169 dst_node, dst_port = link["connection_points_reference"][1].split(":")
170
wtaverni5b23b662016-06-20 12:26:21 +0200171 srcname = nfid2name[src_node]
172 dstname = nfid2name[dst_node]
173 LOG.debug("src name: "+srcname+" dst name: "+dstname)
peusterm9fb74ec2016-06-16 11:30:55 +0200174
wtaverni5b23b662016-06-20 12:26:21 +0200175 if (srcname in self.vnfds) and (dstname in self.vnfds) :
176 network = self.vnfds[srcname].get("dc").net # there should be a cleaner way to find the DCNetwork
177 src_vnf = self.vnfname2num[srcname]
178 dst_vnf = self.vnfname2num[dstname]
179 ret = network.setChain(src_vnf, dst_vnf, vnf_src_interface=src_port, vnf_dst_interface=dst_port, bidirectional = True, cmd="add-flow", cookie = cookie)
180 cookie += 1
stevenvanrossemd87fe472016-05-11 11:34:34 +0200181
peusterm8484b902016-06-21 09:03:35 +0200182 # 4. run the emulator specific entrypoint scripts in the VNFIs of this service instance
183 self._trigger_emulator_start_scripts_in_vnfis(self.instances[instance_uuid]["vnf_instances"])
184
peusterm3444ae42016-03-16 20:46:41 +0100185 LOG.info("Service started. Instance id: %r" % instance_uuid)
peusterm082378b2016-03-16 20:14:22 +0100186 return instance_uuid
187
peusterm398cd3b2016-03-21 15:04:54 +0100188 def _start_vnfd(self, vnfd):
189 """
190 Start a single VNFD of this service
191 :param vnfd: vnfd descriptor dict
192 :return:
193 """
194 # iterate over all deployment units within each VNFDs
195 for u in vnfd.get("virtual_deployment_units"):
196 # 1. get the name of the docker image to start and the assigned DC
peusterm56356cb2016-05-03 10:43:43 +0200197 vnf_name = vnfd.get("name")
198 if vnf_name not in self.remote_docker_image_urls:
199 raise Exception("No image name for %r found. Abort." % vnf_name)
200 docker_name = self.remote_docker_image_urls.get(vnf_name)
peusterm398cd3b2016-03-21 15:04:54 +0100201 target_dc = vnfd.get("dc")
202 # 2. perform some checks to ensure we can start the container
203 assert(docker_name is not None)
204 assert(target_dc is not None)
205 if not self._check_docker_image_exists(docker_name):
206 raise Exception("Docker image %r not found. Abort." % docker_name)
207 # 3. do the dc.startCompute(name="foobar") call to run the container
208 # TODO consider flavors, and other annotations
stevenvanrossemd87fe472016-05-11 11:34:34 +0200209 intfs = vnfd.get("connection_points")
wtaverni5b23b662016-06-20 12:26:21 +0200210 self.vnfname2num[vnf_name] = GK.get_next_vnf_name()
peusterm761c14d2016-07-19 09:31:19 +0200211 LOG.info("Starting %r as %r in DC %r" % (vnf_name, self.vnfname2num[vnf_name], vnfd.get("dc")))
212 LOG.debug("Interfaces for %r: %r" % (vnf_name, intfs))
wtaverni5b23b662016-06-20 12:26:21 +0200213 vnfi = target_dc.startCompute(self.vnfname2num[vnf_name], network=intfs, image=docker_name, flavor_name="small")
peusterm398cd3b2016-03-21 15:04:54 +0100214 return vnfi
215
peusterm8484b902016-06-21 09:03:35 +0200216 def _trigger_emulator_start_scripts_in_vnfis(self, vnfi_list):
217 for vnfi in vnfi_list:
218 config = vnfi.dcinfo.get("Config", dict())
219 env = config.get("Env", list())
220 for env_var in env:
221 if "SON_EMU_CMD=" in env_var:
222 cmd = str(env_var.split("=")[1])
223 LOG.info("Executing entrypoint script in %r: %r" % (vnfi.name, cmd))
224 vnfi.cmdPrint(cmd)
225
peusterm786cd542016-03-14 14:12:17 +0100226 def _unpack_service_package(self):
227 """
228 unzip *.son file and store contents in CATALOG_FOLDER/services/<service_uuid>/
229 """
peusterm82d406e2016-05-02 20:52:06 +0200230 LOG.info("Unzipping: %r" % self.package_file_path)
peusterm786cd542016-03-14 14:12:17 +0100231 with zipfile.ZipFile(self.package_file_path, "r") as z:
232 z.extractall(self.package_content_path)
233
peusterm82d406e2016-05-02 20:52:06 +0200234
peusterm7ec665d2016-03-14 15:20:44 +0100235 def _load_package_descriptor(self):
236 """
237 Load the main package descriptor YAML and keep it as dict.
238 :return:
239 """
240 self.manifest = load_yaml(
241 os.path.join(
242 self.package_content_path, "META-INF/MANIFEST.MF"))
243
244 def _load_nsd(self):
245 """
246 Load the entry NSD YAML and keep it as dict.
247 :return:
248 """
249 if "entry_service_template" in self.manifest:
250 nsd_path = os.path.join(
251 self.package_content_path,
252 make_relative_path(self.manifest.get("entry_service_template")))
253 self.nsd = load_yaml(nsd_path)
peusterm757fe9a2016-04-04 14:11:58 +0200254 LOG.debug("Loaded NSD: %r" % self.nsd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100255
256 def _load_vnfd(self):
257 """
258 Load all VNFD YAML files referenced in MANIFEST.MF and keep them in dict.
259 :return:
260 """
261 if "package_content" in self.manifest:
262 for pc in self.manifest.get("package_content"):
263 if pc.get("content-type") == "application/sonata.function_descriptor":
264 vnfd_path = os.path.join(
265 self.package_content_path,
266 make_relative_path(pc.get("name")))
267 vnfd = load_yaml(vnfd_path)
peusterm757fe9a2016-04-04 14:11:58 +0200268 self.vnfds[vnfd.get("name")] = vnfd
269 LOG.debug("Loaded VNFD: %r" % vnfd.get("name"))
peusterm7ec665d2016-03-14 15:20:44 +0100270
271 def _load_docker_files(self):
272 """
peusterm9d7d4b02016-03-23 19:56:44 +0100273 Get all paths to Dockerfiles from VNFDs and store them in dict.
peusterm7ec665d2016-03-14 15:20:44 +0100274 :return:
275 """
peusterm9d7d4b02016-03-23 19:56:44 +0100276 for k, v in self.vnfds.iteritems():
277 for vu in v.get("virtual_deployment_units"):
278 if vu.get("vm_image_format") == "docker":
279 vm_image = vu.get("vm_image")
peusterm7ec665d2016-03-14 15:20:44 +0100280 docker_path = os.path.join(
281 self.package_content_path,
peusterm9d7d4b02016-03-23 19:56:44 +0100282 make_relative_path(vm_image))
283 self.local_docker_files[k] = docker_path
peusterm56356cb2016-05-03 10:43:43 +0200284 LOG.debug("Found Dockerfile (%r): %r" % (k, docker_path))
peusterm7ec665d2016-03-14 15:20:44 +0100285
peusterm82d406e2016-05-02 20:52:06 +0200286 def _load_docker_urls(self):
287 """
288 Get all URLs to pre-build docker images in some repo.
289 :return:
290 """
291 for k, v in self.vnfds.iteritems():
292 for vu in v.get("virtual_deployment_units"):
293 if vu.get("vm_image_format") == "docker":
peusterm35ba4052016-05-02 21:21:14 +0200294 url = vu.get("vm_image")
295 if url is not None:
296 url = url.replace("http://", "")
297 self.remote_docker_image_urls[k] = url
peusterm56356cb2016-05-03 10:43:43 +0200298 LOG.debug("Found Docker image URL (%r): %r" % (k, self.remote_docker_image_urls[k]))
peusterm82d406e2016-05-02 20:52:06 +0200299
peustermbdfab7e2016-03-14 16:03:30 +0100300 def _build_images_from_dockerfiles(self):
301 """
302 Build Docker images for each local Dockerfile found in the package: self.local_docker_files
303 """
peusterm398cd3b2016-03-21 15:04:54 +0100304 if GK_STANDALONE_MODE:
305 return # do not build anything in standalone mode
peustermbdfab7e2016-03-14 16:03:30 +0100306 dc = DockerClient()
307 LOG.info("Building %d Docker images (this may take several minutes) ..." % len(self.local_docker_files))
308 for k, v in self.local_docker_files.iteritems():
309 for line in dc.build(path=v.replace("Dockerfile", ""), tag=k, rm=False, nocache=False):
310 LOG.debug("DOCKER BUILD: %s" % line)
311 LOG.info("Docker image created: %s" % k)
312
peusterm82d406e2016-05-02 20:52:06 +0200313 def _pull_predefined_dockerimages(self):
peustermbdfab7e2016-03-14 16:03:30 +0100314 """
315 If the package contains URLs to pre-build Docker images, we download them with this method.
316 """
peusterm35ba4052016-05-02 21:21:14 +0200317 dc = DockerClient()
318 for url in self.remote_docker_image_urls.itervalues():
peusterm56356cb2016-05-03 10:43:43 +0200319 if not FORCE_PULL: # only pull if not present (speedup for development)
320 if len(dc.images(name=url)) > 0:
321 LOG.debug("Image %r present. Skipping pull." % url)
322 continue
peusterm35ba4052016-05-02 21:21:14 +0200323 LOG.info("Pulling image: %r" % url)
324 dc.pull(url,
325 insecure_registry=True)
peusterm786cd542016-03-14 14:12:17 +0100326
peusterm3444ae42016-03-16 20:46:41 +0100327 def _check_docker_image_exists(self, image_name):
peusterm3f307142016-03-16 21:02:53 +0100328 """
329 Query the docker service and check if the given image exists
330 :param image_name: name of the docker image
331 :return:
332 """
333 return len(DockerClient().images(image_name)) > 0
peusterm3444ae42016-03-16 20:46:41 +0100334
peusterm082378b2016-03-16 20:14:22 +0100335 def _calculate_placement(self, algorithm):
336 """
337 Do placement by adding the a field "dc" to
338 each VNFD that points to one of our
339 data center objects known to the gatekeeper.
340 """
341 assert(len(self.vnfds) > 0)
342 assert(len(GK.dcs) > 0)
343 # instantiate algorithm an place
344 p = algorithm()
345 p.place(self.nsd, self.vnfds, GK.dcs)
346 LOG.info("Using placement algorithm: %r" % p.__class__.__name__)
347 # lets print the placement result
348 for name, vnfd in self.vnfds.iteritems():
349 LOG.info("Placed VNF %r on DC %r" % (name, str(vnfd.get("dc"))))
350
351
352"""
353Some (simple) placement algorithms
354"""
355
356
357class FirstDcPlacement(object):
358 """
359 Placement: Always use one and the same data center from the GK.dcs dict.
360 """
361 def place(self, nsd, vnfds, dcs):
362 for name, vnfd in vnfds.iteritems():
363 vnfd["dc"] = list(dcs.itervalues())[0]
364
peusterme26487b2016-03-08 14:00:21 +0100365
366"""
367Resource definitions and API endpoints
368"""
369
370
371class Packages(fr.Resource):
372
373 def post(self):
374 """
peusterm26455852016-03-08 14:23:53 +0100375 Upload a *.son service package to the dummy gatekeeper.
376
peusterme26487b2016-03-08 14:00:21 +0100377 We expect request with a *.son file and store it in UPLOAD_FOLDER
peusterm26455852016-03-08 14:23:53 +0100378 :return: UUID
peusterme26487b2016-03-08 14:00:21 +0100379 """
380 try:
381 # get file contents
wtavernib8d9ecb2016-03-25 15:18:31 +0100382 print(request.files)
peusterm593ca582016-03-30 19:55:01 +0200383 # lets search for the package in the request
384 if "package" in request.files:
385 son_file = request.files["package"]
386 # elif "file" in request.files:
387 # son_file = request.files["file"]
388 else:
389 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed. file not found."}, 500
peusterme26487b2016-03-08 14:00:21 +0100390 # generate a uuid to reference this package
391 service_uuid = str(uuid.uuid4())
peusterm786cd542016-03-14 14:12:17 +0100392 file_hash = hashlib.sha1(str(son_file)).hexdigest()
peusterme26487b2016-03-08 14:00:21 +0100393 # ensure that upload folder exists
394 ensure_dir(UPLOAD_FOLDER)
395 upload_path = os.path.join(UPLOAD_FOLDER, "%s.son" % service_uuid)
396 # store *.son file to disk
peusterm786cd542016-03-14 14:12:17 +0100397 son_file.save(upload_path)
peusterme26487b2016-03-08 14:00:21 +0100398 size = os.path.getsize(upload_path)
peusterm786cd542016-03-14 14:12:17 +0100399 # create a service object and register it
400 s = Service(service_uuid, file_hash, upload_path)
401 GK.register_service_package(service_uuid, s)
peusterme26487b2016-03-08 14:00:21 +0100402 # generate the JSON result
peusterm786cd542016-03-14 14:12:17 +0100403 return {"service_uuid": service_uuid, "size": size, "sha1": file_hash, "error": None}
peusterme26487b2016-03-08 14:00:21 +0100404 except Exception as ex:
peusterm786cd542016-03-14 14:12:17 +0100405 LOG.exception("Service package upload failed:")
peusterm593ca582016-03-30 19:55:01 +0200406 return {"service_uuid": None, "size": 0, "sha1": None, "error": "upload failed"}, 500
peusterme26487b2016-03-08 14:00:21 +0100407
408 def get(self):
peusterm26455852016-03-08 14:23:53 +0100409 """
410 Return a list of UUID's of uploaded service packages.
411 :return: dict/list
412 """
peusterm786cd542016-03-14 14:12:17 +0100413 return {"service_uuid_list": list(GK.services.iterkeys())}
peusterme26487b2016-03-08 14:00:21 +0100414
415
416class Instantiations(fr.Resource):
417
418 def post(self):
peusterm26455852016-03-08 14:23:53 +0100419 """
420 Instantiate a service specified by its UUID.
421 Will return a new UUID to identify the running service instance.
422 :return: UUID
423 """
peusterm64b45502016-03-16 21:15:14 +0100424 # try to extract the service uuid from the request
peusterm26455852016-03-08 14:23:53 +0100425 json_data = request.get_json(force=True)
peusterm64b45502016-03-16 21:15:14 +0100426 service_uuid = json_data.get("service_uuid")
427
428 # lets be a bit fuzzy here to make testing easier
429 if service_uuid is None and len(GK.services) > 0:
430 # if we don't get a service uuid, we simple start the first service in the list
431 service_uuid = list(GK.services.iterkeys())[0]
432
peustermbea87372016-03-16 19:37:35 +0100433 if service_uuid in GK.services:
peusterm64b45502016-03-16 21:15:14 +0100434 # ok, we have a service uuid, lets start the service
peustermbea87372016-03-16 19:37:35 +0100435 service_instance_uuid = GK.services.get(service_uuid).start_service()
peusterm26455852016-03-08 14:23:53 +0100436 return {"service_instance_uuid": service_instance_uuid}
peustermbea87372016-03-16 19:37:35 +0100437 return "Service not found", 404
peusterme26487b2016-03-08 14:00:21 +0100438
439 def get(self):
peusterm26455852016-03-08 14:23:53 +0100440 """
441 Returns a list of UUIDs containing all running services.
442 :return: dict / list
443 """
peusterm64b45502016-03-16 21:15:14 +0100444 return {"service_instance_list": [
445 list(s.instances.iterkeys()) for s in GK.services.itervalues()]}
peusterm786cd542016-03-14 14:12:17 +0100446
peusterme26487b2016-03-08 14:00:21 +0100447
448# create a single, global GK object
449GK = Gatekeeper()
450# setup Flask
451app = Flask(__name__)
452app.config['MAX_CONTENT_LENGTH'] = 512 * 1024 * 1024 # 512 MB max upload
453api = fr.Api(app)
454# define endpoints
peusterm593ca582016-03-30 19:55:01 +0200455api.add_resource(Packages, '/packages')
456api.add_resource(Instantiations, '/instantiations')
peusterme26487b2016-03-08 14:00:21 +0100457
458
peusterm082378b2016-03-16 20:14:22 +0100459def start_rest_api(host, port, datacenters=dict()):
peustermbea87372016-03-16 19:37:35 +0100460 GK.dcs = datacenters
peusterme26487b2016-03-08 14:00:21 +0100461 # start the Flask server (not the best performance but ok for our use case)
462 app.run(host=host,
463 port=port,
464 debug=True,
465 use_reloader=False # this is needed to run Flask in a non-main thread
466 )
467
468
469def ensure_dir(name):
470 if not os.path.exists(name):
peusterm7ec665d2016-03-14 15:20:44 +0100471 os.makedirs(name)
472
473
474def load_yaml(path):
475 with open(path, "r") as f:
476 try:
477 r = yaml.load(f)
478 except yaml.YAMLError as exc:
479 LOG.exception("YAML parse error")
480 r = dict()
481 return r
482
483
484def make_relative_path(path):
peusterm9d7d4b02016-03-23 19:56:44 +0100485 if path.startswith("file://"):
486 path = path.replace("file://", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100487 if path.startswith("/"):
peusterm9d7d4b02016-03-23 19:56:44 +0100488 path = path.replace("/", "", 1)
peusterm7ec665d2016-03-14 15:20:44 +0100489 return path
490
491
peusterme26487b2016-03-08 14:00:21 +0100492if __name__ == '__main__':
493 """
494 Lets allow to run the API in standalone mode.
495 """
peusterm398cd3b2016-03-21 15:04:54 +0100496 GK_STANDALONE_MODE = True
peusterme26487b2016-03-08 14:00:21 +0100497 logging.getLogger("werkzeug").setLevel(logging.INFO)
498 start_rest_api("0.0.0.0", 8000)
499