RODY/app/utils/websocket_tool.py

109 lines
2.8 KiB
Python
Raw Normal View History

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
@MottoABC(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 17:04:46 +08:00
self.active_connections_dist = []
2022-11-24 16:45:04 +08:00
2022-11-24 10:58:58 +08:00
2022-11-04 17:37:08 +08:00
def connect(self, ws, id: str):
2022-11-24 17:24:11 +08:00
p1 = Persons(1)
p2 = Persons(2)
write(id="123", ws=[p1, p2])
ps = read(id="123")
ps[0].say()
print(ps[1].dict)
2022-11-04 17:37:08 +08:00
# 等待连接
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-24 17:06:21 +08:00
write(id=id, ws=ws_list)
2022-11-04 17:37:08 +08:00
else:
ws_list = [ws, ]
2022-11-24 17:06:21 +08:00
write(id=id, ws=ws_list)
print("--;;-----------", ws_list)
2022-11-24 16:45:04 +08:00
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 17:02:47 +08:00
print("===================", type(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):
2022-11-24 17:12:46 +08:00
print(f"序列化对象{ws}")
2022-11-24 16:45:04 +08:00
with open(f"{id}.pkl", "wb") as f:
2022-11-24 17:21:42 +08:00
pickle.dump(ws, f)
f.close()
2022-11-24 16:45:04 +08:00
def read(id: str):
2022-11-24 17:12:46 +08:00
2022-11-24 16:45:04 +08:00
with open(f"{id}.pkl", "rb") as f:
wss = pickle.load(f)
print(wss)
2022-11-24 17:21:42 +08:00
f.close()
2022-11-24 17:12:46 +08:00
print(f"反序列化对象{wss}")
2022-11-24 17:24:11 +08:00
return wss
class Persons():
def __init__(self, x) -> None:
self.dict = {
"1": 111 * x,
"2": 222 * x
}
def say(self):
self.dict[3] = "333"