-
Notifications
You must be signed in to change notification settings - Fork 3
/
zeromq.py
47 lines (36 loc) · 1.49 KB
/
zeromq.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# soaplib - Copyright (C) Soaplib contributors.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
#
"""A soap client that uses ZeroMQ (zmq.REQ) as transport"""
import zmq
from soaplib.client import Service
from soaplib.client import RemoteProcedureBase
from soaplib.client import Base
context = zmq.Context()
class _RemoteProcedure(RemoteProcedureBase):
def __call__(self, *args, **kwargs):
out_object = self.get_out_object(args, kwargs)
out_string = self.get_out_string(out_object)
socket = context.socket(zmq.REQ)
socket.connect(self.url)
socket.send(out_string)
in_str = socket.recv()
return self.get_in_object(in_str)
class Client(Base):
def __init__(self, url, app):
Base.__init__(self, url, app)
self.service = Service(_RemoteProcedure, url, app)