Source code for spyne.server.zeromq
#
# spyne - Copyright (C) Spyne 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
#
"""The ``spyne.server.zeromq`` module contains a server implementation that
uses ZeroMQ (zmq.REP) as transport.
"""
import zmq
from spyne.auxproc import process_contexts
from spyne._base import MethodContext
from spyne.server import ServerBase
context = zmq.Context()
"""The ZeroMQ context."""
class ZmqMethodContext(MethodContext):
[docs]    def __init__(self, app):
        MethodContext.__init__(self, app)
        self.transport.type = 'zmq'
class ZeroMQServer(ServerBase): 
[docs]    """The ZeroMQ server transport."""
    transport = 'http://rfc.zeromq.org/'
    def __init__(self, app, app_url, wsdl_url=None):
        ServerBase.__init__(self, app)
        self.app_url = app_url
        self.wsdl_url = wsdl_url
        self.zmq_socket = context.socket(zmq.REP)
        self.zmq_socket.bind(app_url)
    def __handle_wsdl_request(self):
        return self.app.get_interface_document(self.url)
    def serve_forever(self):
[docs]        """Runs the ZeroMQ server."""
        while True:
            error = None
            initial_ctx = ZmqMethodContext(self)
            initial_ctx.in_string = [self.zmq_socket.recv()]
            contexts = self.generate_contexts(initial_ctx)
            p_ctx, others = contexts[0], contexts[1:]
            if p_ctx.in_error:
                p_ctx.out_object = p_ctx.in_error
                error = p_ctx.in_error
            else:
                self.get_in_object(p_ctx)
                if p_ctx.in_error:
                    p_ctx.out_object = p_ctx.in_error
                    error = p_ctx.in_error
                else:
                    self.get_out_object(p_ctx)
                    if p_ctx.out_error:
                        p_ctx.out_object = p_ctx.out_error
                        error = p_ctx.out_error
            self.get_out_string(p_ctx)
            process_contexts(self, others, error)
            self.zmq_socket.send(''.join(p_ctx.out_string))