mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-04 16:22:57 +08:00

* Support external module * Support external module * Support external module * Support external module * refactor code to make it more clear * refactor code to make it more clear * refactor code to make it more clear * refactor code to make it more clear * fix according to review * fix according to review * fix according to review * fix according to review * fix according to review * fix according to review * fix bug * fix bug * fix bug * merge --------- Co-authored-by: root <root@tjdm-inf-sci-k8s-hzz2-h12ni8-0202.tjdm.baidu.com>
92 lines
2.5 KiB
Python
92 lines
2.5 KiB
Python
"""
|
|
# Copyright (c) 2025 PaddlePaddle Authors. All Rights Reserved.
|
|
#
|
|
# 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 abc import ABC, abstractmethod
|
|
|
|
import zmq
|
|
|
|
|
|
class ZmqClientBase(ABC):
|
|
"""
|
|
ZmqClientBase is a base class that provides a client-side interface for sending and receiving messages using ZeroMQ.
|
|
"""
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def _create_socket(self):
|
|
"""Abstract method to create and return a ZeroMQ socket."""
|
|
pass
|
|
|
|
def _ensure_socket(self):
|
|
"""Ensure the socket is created before use."""
|
|
if self.socket is None:
|
|
self.socket = self._create_socket()
|
|
|
|
@abstractmethod
|
|
def connect(self):
|
|
"""
|
|
Connect to the server using the file name specified in the constructor.
|
|
"""
|
|
pass
|
|
|
|
def send_json(self, data):
|
|
"""
|
|
Send a JSON-serializable object over the socket.
|
|
"""
|
|
self._ensure_socket()
|
|
self.socket.send_json(data)
|
|
|
|
def recv_json(self):
|
|
"""
|
|
Receive a JSON-serializable object from the socket.
|
|
"""
|
|
self._ensure_socket()
|
|
return self.socket.recv_json()
|
|
|
|
def send_pyobj(self, data):
|
|
"""
|
|
Send a Pickle-serializable object over the socket.
|
|
"""
|
|
self._ensure_socket()
|
|
self.socket.send_pyobj(data)
|
|
|
|
def recv_pyobj(self):
|
|
"""
|
|
Receive a Pickle-serializable object from the socket.
|
|
"""
|
|
self._ensure_socket()
|
|
return self.socket.recv_pyobj()
|
|
|
|
|
|
class ZmqIpcClient(ZmqClientBase):
|
|
def __init__(self, name, mode):
|
|
self.name = name
|
|
self.mode = mode
|
|
self.file_name = f"/dev/shm/{name}.socket"
|
|
self.context = zmq.Context()
|
|
self.socket = self.context.socket(self.mode)
|
|
|
|
def _create_socket(self):
|
|
"""create and return a ZeroMQ socket."""
|
|
self.context = zmq.Context()
|
|
return self.context.socket(self.mode)
|
|
|
|
def connect(self):
|
|
self._ensure_socket()
|
|
self.socket.connect(f"ipc://{self.file_name}")
|