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

61 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
async def process_websocket(ws):
"""
Process ping / pong and close message
"""
try:
await 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")
async def notifications(request, response):
2016-03-17 14:15:30 +00:00
notifications = NotificationManager.instance()
ws = WebSocketResponse()
await ws.prepare(request)
2016-03-17 14:15:30 +00:00
request.app['websockets'].add(ws)
asyncio.ensure_future(process_websocket(ws))
try:
with notifications.queue() as queue:
while True:
notification = await queue.get_json(1)
if ws.closed:
break
await ws.send_str(notification)
finally:
if not ws.closed:
await ws.close()
request.app['websockets'].discard(ws)
2016-03-17 14:15:30 +00:00
return ws