2022-11-04 17:37:08 +08:00
|
|
|
|
"""
|
|
|
|
|
@Time : 2022/10/12 17:55
|
|
|
|
|
@Auth : 东
|
2022-11-24 10:58:58 +08:00
|
|
|
|
@File :websocket_tool.py
|
|
|
|
|
@IDE :PyCharm
|
2022-11-04 17:37:08 +08:00
|
|
|
|
@Motto:ABC(Always Be Coding)
|
|
|
|
|
@Desc:
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
import json
|
|
|
|
|
from typing import Union, List, Dict
|
2022-11-24 16:45:04 +08:00
|
|
|
|
import os
|
2022-11-04 17:37:08 +08:00
|
|
|
|
|
|
|
|
|
from app.core.common_utils import logger
|
|
|
|
|
from app.utils.JSONEncodeTools import MyEncoder
|
2022-11-24 10:45:05 +08:00
|
|
|
|
from configs.global_var import *
|
2022-11-24 14:15:23 +08:00
|
|
|
|
from app.utils.redis_config import redis_client
|
2022-11-24 15:21:00 +08:00
|
|
|
|
from multiprocessing import Process, Queue
|
2022-11-24 16:45:04 +08:00
|
|
|
|
import pickle
|
2022-11-04 17:37:08 +08:00
|
|
|
|
|
|
|
|
|
|
2022-11-24 11:15:07 +08:00
|
|
|
|
class WebsocketUtil:
|
|
|
|
|
|
2022-11-24 15:21:00 +08:00
|
|
|
|
def __init__(self):
|
|
|
|
|
# self.active_connections = multiprocessing.Manager().list()
|
2022-11-24 16:45:04 +08:00
|
|
|
|
self.active_connections_dist = {}
|
|
|
|
|
|
2022-11-24 10:58:58 +08:00
|
|
|
|
|
2022-11-04 17:37:08 +08:00
|
|
|
|
def connect(self, ws, id: str):
|
|
|
|
|
# 等待连接
|
|
|
|
|
msg = ws.receive()
|
|
|
|
|
# 存储ws连接对象
|
2022-11-24 16:45:04 +08:00
|
|
|
|
if os.path.exists(f"{id}.pkl"):
|
|
|
|
|
ws_list = read(id=id)
|
|
|
|
|
ws_list.append(ws)
|
2022-11-04 17:37:08 +08:00
|
|
|
|
else:
|
|
|
|
|
ws_list = [ws, ]
|
2022-11-24 16:45:04 +08:00
|
|
|
|
write(id=id, ws=list)
|
|
|
|
|
|
2022-11-24 14:15:23 +08:00
|
|
|
|
|
2022-11-04 17:37:08 +08:00
|
|
|
|
|
|
|
|
|
def disconnect(self, ws, id):
|
2022-11-24 16:45:04 +08:00
|
|
|
|
# 删除连接
|
|
|
|
|
if os.path.exists(f"{id}.pkl"):
|
|
|
|
|
os.remove(f"{id}.pkl")
|
2022-11-04 17:37:08 +08:00
|
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
|
async def send_personal_message(message: str, ws):
|
|
|
|
|
# 发送个人消息
|
|
|
|
|
await ws.send(message)
|
|
|
|
|
|
2022-11-24 15:21:00 +08:00
|
|
|
|
# def broadcast(self, message: str):
|
|
|
|
|
# # 广播消息
|
|
|
|
|
# # global active_connections
|
|
|
|
|
# active_connections = redis_client.get_redis().get("active_connections")
|
|
|
|
|
# if active_connections is not None:
|
|
|
|
|
# active_connections = json.loads(active_connections)
|
|
|
|
|
# for connection in active_connections:
|
|
|
|
|
# connection.send(message)
|
2022-11-04 17:37:08 +08:00
|
|
|
|
|
|
|
|
|
def send_message_proj_json(self, message: Union[str, int, List, Dict], id: str):
|
|
|
|
|
# 广播该项目的消息
|
2022-11-24 16:52:54 +08:00
|
|
|
|
active_connections = read(id=id)
|
2022-11-24 16:59:18 +08:00
|
|
|
|
print("===================", len(active_connections), active_connections[0])
|
2022-11-24 16:52:54 +08:00
|
|
|
|
for connection in active_connections:
|
2022-11-24 15:21:00 +08:00
|
|
|
|
try:
|
|
|
|
|
connection.send(json.dumps(message, cls=MyEncoder, indent=4), )
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logger.error("websocket异常断开,{}", e)
|
2022-11-04 17:37:08 +08:00
|
|
|
|
|
|
|
|
|
|
2022-11-24 16:45:04 +08:00
|
|
|
|
manager = WebsocketUtil()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def write(id: str, ws: List):
|
|
|
|
|
with open(f"{id}.pkl", "wb") as f:
|
2022-11-24 16:50:37 +08:00
|
|
|
|
wsdump = pickle.dump(ws, f)
|
2022-11-24 16:45:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def read(id: str):
|
|
|
|
|
with open(f"{id}.pkl", "rb") as f:
|
|
|
|
|
wss = pickle.load(f)
|
|
|
|
|
print(wss)
|
|
|
|
|
return wss
|