Merge remote-tracking branch 'upstream/master'
[osm/vim-emu.git] / src / emuvim / api / rest / rest_api_endpoint.py
1 """
2 Copyright (c) 2015 SONATA-NFV and Paderborn University
3 ALL RIGHTS RESERVED.
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 Neither the name of the SONATA-NFV [, ANY ADDITIONAL AFFILIATION]
18 nor the names of its contributors may be used to endorse or promote
19 products derived from this software without specific prior written
20 permission.
21
22 This work has been performed in the framework of the SONATA project,
23 funded by the European Commission under Grant number 671517 through
24 the Horizon 2020 and 5G-PPP programmes. The authors would like to
25 acknowledge the contributions of their colleagues of the SONATA
26 partner consortium (www.sonata-nfv.eu).
27 """
28
29 import logging
30 import threading
31 from flask import Flask
32 from flask_restful import Api
33 #from gevent.wsgi import WSGIServer
34
35 # need to import total module to set its global variable dcs
36 import compute
37 from compute import dcs, ComputeList, Compute, ComputeResources, DatacenterList, DatacenterStatus
38
39 # need to import total module to set its global variable net
40 import network
41 from network import NetworkAction
42
43 import monitor
44 from monitor import MonitorInterfaceAction, MonitorFlowAction, MonitorLinkAction, MonitorSkewAction
45
46 import pkg_resources
47 from os import path
48
49 logging.basicConfig(level=logging.INFO)
50
51
52 class RestApiEndpoint(object):
53 """
54 Simple API endpoint that offers a REST
55 interface. This interface will be used by the
56 default command line client.
57 """
58
59 def __init__(self, listenip, port):
60 self.ip = listenip
61 self.port = port
62
63 # setup Flask
64 # find directory of dashboard files
65 dashboard_file = pkg_resources.resource_filename('emuvim.dashboard', "index.html")
66 dashboard_dir = path.dirname(dashboard_file)
67 logging.info("Started emu dashboard: {0}".format(dashboard_dir))
68
69 self.app = Flask(__name__, static_folder=dashboard_dir, static_url_path='/dashboard')
70 self.api = Api(self.app)
71
72 # setup endpoints
73
74 # compute related actions (start/stop VNFs, get info)
75 self.api.add_resource(Compute, "/restapi/compute/<dc_label>/<compute_name>")
76 self.api.add_resource(ComputeList,
77 "/restapi/compute",
78 "/restapi/compute/<dc_label>")
79 self.api.add_resource(ComputeResources, "/restapi/compute/resources/<dc_label>/<compute_name>")
80
81 self.api.add_resource(DatacenterStatus, "/restapi/datacenter/<dc_label>")
82 self.api.add_resource(DatacenterList, "/restapi/datacenter")
83
84
85 # network related actions (setup chaining between VNFs)
86 self.api.add_resource(NetworkAction,
87 "/restapi/network")
88
89
90 # monitoring related actions
91 # export a network interface traffic rate counter
92 self.api.add_resource(MonitorInterfaceAction,
93 "/restapi/monitor/interface")
94 # export flow traffic counter, of a manually pre-installed flow entry, specified by its cookie
95 self.api.add_resource(MonitorFlowAction,
96 "/restapi/monitor/flow")
97 # install monitoring of a specific flow on a pre-existing link in the service.
98 # the traffic counters of the newly installed monitor flow are exported
99 self.api.add_resource(MonitorLinkAction,
100 "/restapi/monitor/link")
101 # install skewness monitor of resource usage disribution
102 # the skewness metric is exported
103 self.api.add_resource(MonitorSkewAction,
104 "/restapi/monitor/skewness")
105
106 logging.debug("Created API endpoint %s(%s:%d)" % (self.__class__.__name__, self.ip, self.port))
107
108
109 def connectDatacenter(self, dc):
110 compute.dcs[dc.label] = dc
111 logging.info(
112 "Connected DC(%s) to API endpoint %s(%s:%d)" % (dc.label, self.__class__.__name__, self.ip, self.port))
113
114 def connectDCNetwork(self, DCnetwork):
115 network.net = DCnetwork
116 monitor.net = DCnetwork
117
118 logging.info("Connected DCNetwork to API endpoint %s(%s:%d)" % (
119 self.__class__.__name__, self.ip, self.port))
120
121 def start(self):
122 thread = threading.Thread(target=self._start_flask, args=())
123 thread.daemon = True
124 thread.start()
125 logging.info("Started API endpoint @ http://%s:%d" % (self.ip, self.port))
126
127 def _start_flask(self):
128 self.app.run(self.ip, self.port, debug=True, use_reloader=False)
129 #this should be a more production-fit http-server
130 #http_server = WSGIServer((self.ip, self.port), self.app)
131 #http_server.serve_forever()