1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/gns3server/handlers/api/compute/notification_handler.py

58 lines
1.8 KiB
Python
Raw Normal View History

2016-03-17 14:15:30 +00:00
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import asyncio
2017-05-16 17:28:47 +00:00
import aiohttp
2016-03-17 14:15:30 +00:00
from aiohttp.web import WebSocketResponse
2016-05-14 00:00:07 +00:00
from gns3server.web.route import Route
from gns3server.compute.notification_manager import NotificationManager
2016-03-17 14:15:30 +00:00
@asyncio.coroutine
def process_websocket(ws):
"""
Process ping / pong and close message
"""
try:
yield from ws.receive()
2017-05-16 17:28:47 +00:00
except aiohttp.WSServerHandshakeError:
pass
2016-03-17 14:15:30 +00:00
class NotificationHandler:
2016-08-23 20:40:26 +00:00
2016-03-17 14:15:30 +00:00
@Route.get(
r"/notifications/ws",
2016-05-14 00:00:07 +00:00
description="Send notifications using Websockets")
2016-03-17 14:15:30 +00:00
def notifications(request, response):
notifications = NotificationManager.instance()
ws = WebSocketResponse()
yield from ws.prepare(request)
asyncio.async(process_websocket(ws))
2016-03-17 14:15:30 +00:00
with notifications.queue() as queue:
while True:
try:
2016-05-14 00:00:07 +00:00
notification = yield from queue.get_json(5)
except asyncio.futures.CancelledError:
break
if ws.closed:
break
2016-05-14 00:00:07 +00:00
ws.send_str(notification)
2016-03-17 14:15:30 +00:00
return ws