58 lines
1.6 KiB
Python
58 lines
1.6 KiB
Python
# Copyright 2017 Mycroft AI Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
from tornado import autoreload, web, ioloop
|
|
|
|
from mycroft.configuration import ConfigurationManager
|
|
from mycroft.lock import Lock # creates/supports PID locking file
|
|
from mycroft.messagebus.service.ws import WebsocketEventHandler
|
|
from mycroft.util import validate_param
|
|
|
|
|
|
settings = {
|
|
'debug': True
|
|
}
|
|
|
|
|
|
def main():
|
|
import tornado.options
|
|
lock = Lock("service")
|
|
tornado.options.parse_command_line()
|
|
|
|
def reload_hook():
|
|
""" Hook to release lock when autoreload is triggered. """
|
|
lock.delete()
|
|
|
|
autoreload.add_reload_hook(reload_hook)
|
|
|
|
config = ConfigurationManager.get().get("websocket")
|
|
|
|
host = config.get("host")
|
|
port = config.get("port")
|
|
route = config.get("route")
|
|
validate_param(host, "websocket.host")
|
|
validate_param(port, "websocket.port")
|
|
validate_param(route, "websocket.route")
|
|
|
|
routes = [
|
|
(route, WebsocketEventHandler)
|
|
]
|
|
application = web.Application(routes, **settings)
|
|
application.listen(port, host)
|
|
ioloop.IOLoop.instance().start()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|