Merge branch 'master' of https://github.com/sonata-nfv/son-emu
[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, DrawD3jsgraph
42
43 import monitor
44 from monitor import MonitorInterfaceAction, MonitorFlowAction, MonitorLinkAction, MonitorSkewAction, MonitorTerminal
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 self.api.add_resource(DrawD3jsgraph,
89 "/restapi/network/d3jsgraph")
90
91 # monitoring related actions
92 # export a network interface traffic rate counter
93 self.api.add_resource(MonitorInterfaceAction,
94 "/restapi/monitor/interface")
95 # export flow traffic counter, of a manually pre-installed flow entry, specified by its cookie
96 self.api.add_resource(MonitorFlowAction,
97 "/restapi/monitor/flow")
98 # install monitoring of a specific flow on a pre-existing link in the service.
99 # the traffic counters of the newly installed monitor flow are exported
100 self.api.add_resource(MonitorLinkAction,
101 "/restapi/monitor/link")
102 # install skewness monitor of resource usage disribution
103 # the skewness metric is exported
104 self.api.add_resource(MonitorSkewAction,
105 "/restapi/monitor/skewness")
106 # start a terminal window for the specified vnfs
107 self.api.add_resource(MonitorTerminal,
108 "/restapi/monitor/term")
109
110
111 logging.debug("Created API endpoint %s(%s:%d)" % (self.__class__.__name__, self.ip, self.port))
112
113
114 def connectDatacenter(self, dc):
115 compute.dcs[dc.label] = dc
116 logging.info(
117 "Connected DC(%s) to API endpoint %s(%s:%d)" % (dc.label, self.__class__.__name__, self.ip, self.port))
118
119 def connectDCNetwork(self, DCnetwork):
120 network.net = DCnetwork
121 monitor.net = DCnetwork
122
123 logging.info("Connected DCNetwork to API endpoint %s(%s:%d)" % (
124 self.__class__.__name__, self.ip, self.port))
125
126 def start(self):
127 thread = threading.Thread(target=self._start_flask, args=())
128 thread.daemon = True
129 thread.start()
130 logging.info("Started API endpoint @ http://%s:%d" % (self.ip, self.port))
131
132 def _start_flask(self):
133 #self.app.run(self.ip, self.port, debug=False, use_reloader=False)
134 #this should be a more production-fit http-server
135 #self.app.logger.setLevel(logging.ERROR)
136 http_server = WSGIServer((self.ip, self.port),
137 self.app,
138 log=open("/dev/null", "w") # This disables HTTP request logs to not mess up the CLI when e.g. the auto-updated dashboard is used
139 )
140 http_server.serve_forever()