Fix: Fixed version of tinyrpc to not break the Ryu installation.
[osm/vim-emu.git] / src / emuvim / api / rest / rest_api_endpoint.py
1 # Copyright (c) 2015 SONATA-NFV and Paderborn University
2 # ALL RIGHTS RESERVED.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16 # Neither the name of the SONATA-NFV, Paderborn University
17 # nor the names of its contributors may be used to endorse or promote
18 # products derived from this software without specific prior written
19 # permission.
20 #
21 # This work has been performed in the framework of the SONATA project,
22 # funded by the European Commission under Grant number 671517 through
23 # the Horizon 2020 and 5G-PPP programmes. The authors would like to
24 # acknowledge the contributions of their colleagues of the SONATA
25 # partner consortium (www.sonata-nfv.eu).
26
27 import logging
28 import threading
29 from flask import Flask, send_from_directory
30 from flask_restful import Api
31 from gevent.pywsgi import WSGIServer
32
33 # need to import total module to set its global variable dcs
34 import compute
35 from compute import ComputeList, Compute, ComputeResources, DatacenterList, DatacenterStatus
36
37 # need to import total module to set its global variable net
38 import network
39 from network import NetworkAction, DrawD3jsgraph
40
41 import monitor
42 from monitor import MonitorInterfaceAction, MonitorFlowAction, MonitorLinkAction, MonitorSkewAction, MonitorTerminal
43
44 import pkg_resources
45 from os import path
46
47
48 logging.basicConfig()
49
50
51 class RestApiEndpoint(object):
52 """
53 Simple API endpoint that offers a REST
54 interface. This interface will be used by the
55 default command line client.
56 """
57
58 def __init__(self, listenip, port, DCnetwork=None):
59 self.ip = listenip
60 self.port = port
61
62 # connect this DC network to the rest api endpoint (needed for the
63 # networking and monitoring api)
64 self.connectDCNetwork(DCnetwork)
65
66 # setup Flask
67 self.app = Flask(__name__)
68 self.api = Api(self.app)
69
70 # define dashboard endpoints
71 db_dir, db_file = self.get_dashboard_path()
72
73 @self.app.route('/dashboard/<path:path>')
74 def db_file(path):
75 logging.info("[DB] Serving: {}".format(path))
76 return send_from_directory(db_dir, path)
77
78 # define REST API endpoints
79 # compute related actions (start/stop VNFs, get info)
80 self.api.add_resource(
81 Compute, "/restapi/compute/<dc_label>/<compute_name>")
82 self.api.add_resource(ComputeList,
83 "/restapi/compute",
84 "/restapi/compute/<dc_label>")
85 self.api.add_resource(
86 ComputeResources, "/restapi/compute/resources/<dc_label>/<compute_name>")
87
88 self.api.add_resource(
89 DatacenterStatus, "/restapi/datacenter/<dc_label>")
90 self.api.add_resource(DatacenterList, "/restapi/datacenter")
91
92 # network related actions (setup chaining between VNFs)
93 self.api.add_resource(NetworkAction,
94 "/restapi/network")
95 self.api.add_resource(DrawD3jsgraph,
96 "/restapi/network/d3jsgraph")
97
98 # monitoring related actions
99 # export a network interface traffic rate counter
100 self.api.add_resource(MonitorInterfaceAction,
101 "/restapi/monitor/interface")
102 # export flow traffic counter, of a manually pre-installed flow entry,
103 # specified by its cookie
104 self.api.add_resource(MonitorFlowAction,
105 "/restapi/monitor/flow")
106 # install monitoring of a specific flow on a pre-existing link in the service.
107 # the traffic counters of the newly installed monitor flow are exported
108 self.api.add_resource(MonitorLinkAction,
109 "/restapi/monitor/link")
110 # install skewness monitor of resource usage disribution
111 # the skewness metric is exported
112 self.api.add_resource(MonitorSkewAction,
113 "/restapi/monitor/skewness")
114 # start a terminal window for the specified vnfs
115 self.api.add_resource(MonitorTerminal,
116 "/restapi/monitor/term")
117
118 logging.debug("Created API endpoint %s(%s:%d)" %
119 (self.__class__.__name__, self.ip, self.port))
120
121 def get_dashboard_path(self):
122 """
123 Return absolute path to dashboard files.
124 """
125 db_file = pkg_resources.resource_filename(
126 'emuvim.dashboard', "index.html")
127 db_dir = path.dirname(db_file)
128 logging.info("[DB] Serving emulator dashboard from: {} and {}"
129 .format(db_dir, db_file))
130 return db_dir, db_file
131
132 def connectDatacenter(self, dc):
133 compute.dcs[dc.label] = dc
134 logging.info(
135 "Connected DC(%s) to API endpoint %s(%s:%d)" % (dc.label, self.__class__.__name__, self.ip, self.port))
136
137 def connectDCNetwork(self, DCnetwork):
138 network.net = DCnetwork
139 monitor.net = DCnetwork
140
141 logging.info("Connected DCNetwork to API endpoint %s(%s:%d)" % (
142 self.__class__.__name__, self.ip, self.port))
143
144 def start(self):
145 self.thread = threading.Thread(target=self._start_flask, args=())
146 self.thread.daemon = True
147 self.thread.start()
148 logging.info("Started API endpoint @ http://%s:%d" %
149 (self.ip, self.port))
150
151 def stop(self):
152 if self.http_server:
153 self.http_server.close()
154
155 def _start_flask(self):
156 # self.app.run(self.ip, self.port, debug=False, use_reloader=False)
157 # this should be a more production-fit http-server
158 # self.app.logger.setLevel(logging.ERROR)
159 self.http_server = WSGIServer((self.ip, self.port),
160 self.app,
161 # This disables HTTP request logs to not
162 # mess up the CLI when e.g. the
163 # auto-updated dashboard is used
164 log=open("/dev/null", "w")
165 )
166 self.http_server.serve_forever()