
After forking from Ryu, the namespace needs to change from 'ryu' to 'os_ken' so that it won't collide with the namespace of the old library. Change-Id: I807a8785e525cc02825d15a1a01eec3d5d20cce4
69 lines
2.0 KiB
Python
69 lines
2.0 KiB
Python
# Copyright (C) 2014 Nippon Telegraph and Telephone Corporation.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""
|
|
Usage example
|
|
|
|
1. Join switches (use your favorite method):
|
|
$ sudo mn --controller remote --topo tree,depth=3
|
|
|
|
2. Run this application:
|
|
$ PYTHONPATH=. ./bin/os_ken run \
|
|
--observe-links os_ken/app/gui_topology/gui_topology.py
|
|
|
|
3. Access http://<ip address of os_ken host>:8080 with your web browser.
|
|
"""
|
|
|
|
import os
|
|
|
|
from webob.static import DirectoryApp
|
|
|
|
from os_ken.app.wsgi import ControllerBase, WSGIApplication, route
|
|
from os_ken.base import app_manager
|
|
|
|
|
|
PATH = os.path.dirname(__file__)
|
|
|
|
|
|
# Serving static files
|
|
class GUIServerApp(app_manager.RyuApp):
|
|
_CONTEXTS = {
|
|
'wsgi': WSGIApplication,
|
|
}
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(GUIServerApp, self).__init__(*args, **kwargs)
|
|
|
|
wsgi = kwargs['wsgi']
|
|
wsgi.register(GUIServerController)
|
|
|
|
|
|
class GUIServerController(ControllerBase):
|
|
def __init__(self, req, link, data, **config):
|
|
super(GUIServerController, self).__init__(req, link, data, **config)
|
|
path = "%s/html/" % PATH
|
|
self.static_app = DirectoryApp(path)
|
|
|
|
@route('topology', '/{filename:[^/]*}')
|
|
def static_handler(self, req, **kwargs):
|
|
if kwargs['filename']:
|
|
req.path_info = kwargs['filename']
|
|
return self.static_app(req)
|
|
|
|
|
|
app_manager.require_app('os_ken.app.rest_topology')
|
|
app_manager.require_app('os_ken.app.ws_topology')
|
|
app_manager.require_app('os_ken.app.ofctl_rest')
|