home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fnb101.zip / Lib / site-packages / Fnorb / orb / GIOPClientWorker.py < prev    next >
Text File  |  1999-06-28  |  6KB  |  212 lines

  1. #!/usr/bin/env python
  2. #############################################################################
  3. # Copyright (C) DSTC Pty Ltd (ACN 052 372 577) 1997, 1998, 1999
  4. # All Rights Reserved.
  5. #
  6. # The software contained on this media is the property of the DSTC Pty
  7. # Ltd.  Use of this software is strictly in accordance with the
  8. # license agreement in the accompanying LICENSE.HTML file.  If your
  9. # distribution of this software does not contain a LICENSE.HTML file
  10. # then you have no rights to use this software in any manner and
  11. # should contact DSTC at the address below to determine an appropriate
  12. # licensing arrangement.
  13. #      DSTC Pty Ltd
  14. #      Level 7, GP South
  15. #      Staff House Road
  16. #      University of Queensland
  17. #      St Lucia, 4072
  18. #      Australia
  19. #      Tel: +61 7 3365 4310
  20. #      Fax: +61 7 3365 4311
  21. #      Email: enquiries@dstc.edu.au
  22. # This software is being provided "AS IS" without warranty of any
  23. # kind.  In no event shall DSTC Pty Ltd be liable for damage of any
  24. # kind arising out of or in connection with the use or performance of
  25. # this software.
  26. #
  27. # Project:      Fnorb
  28. # File:         $Source: /units/arch/src/Fnorb/orb/RCS/GIOPClientWorker.py,v $
  29. # Version:      @(#)$RCSfile: GIOPClientWorker.py,v $ $Revision: 1.4 $
  30. #
  31. #############################################################################
  32. """ GIOPClientWorker classes. """
  33.  
  34.  
  35. # Fnorb modules.
  36. import CORBA, GIOP, OctetStream, Util
  37.  
  38.  
  39. #############################################################################
  40. # GIOPClientWorker factory.
  41. #############################################################################
  42.  
  43. def GIOPClientWorkerFactory_init():
  44.     """ Return the GIOPClientWorker factory. 
  45.  
  46.     This is a factory function for the GIOPClientWorkerFactory class
  47.     (the GIOPClientWorker factory is a singleton (ie. there can only be one
  48.     instance per process)).
  49.  
  50.     """
  51.     try:
  52.     factory = GIOPClientWorkerFactory()
  53.  
  54.     except GIOPClientWorkerFactory, factory:
  55.     pass
  56.  
  57.     return factory
  58.  
  59.  
  60. class GIOPClientWorkerFactory:
  61.     """ Factory for GIOPClientWorker instances. 
  62.  
  63.     The factory is a singleton (ie. there can only be one instance per
  64.     process).
  65.  
  66.     """
  67.     __instance = None
  68.  
  69.     def __init__(self):
  70.     """ Constructor. """
  71.  
  72.     # The factory is a singleton (ie. there can only be one instance per
  73.     # process).
  74.     if GIOPClientWorkerFactory.__instance is not None:
  75.         raise GIOPClientWorkerFactory.__instance
  76.  
  77.     GIOPClientWorkerFactory.__instance = self
  78.  
  79.     return
  80.  
  81.     #########################################################################
  82.     # GIOPClientWorkerFactory interface.
  83.     #########################################################################
  84.  
  85.     def create_worker(self, protocol, address):
  86.     """ Create a new GIOP client worker. """
  87.  
  88.     # Find out what threading-model we are using.
  89.     model = CORBA.ORB_init()._fnorb_threading_model()
  90.  
  91.     # Reactive.
  92.     if model == Util.REACTIVE:
  93.         from GIOPClientWorkerReactive import GIOPClientWorkerReactive
  94.         worker = GIOPClientWorkerReactive(protocol,    address)
  95.  
  96.     # Multi-threaded.
  97.         else:
  98.         from GIOPClientWorkerThreaded import GIOPClientWorkerThreaded
  99.         worker = GIOPClientWorkerThreaded(protocol, address)
  100.  
  101.     return worker
  102.  
  103.  
  104. class GIOPClientWorker:
  105.     """  Abstract base class for GIOPClient workers. """
  106.  
  107.     def send(self, request_id, message):
  108.     """ Send an operation request to the remote object. """
  109.  
  110.     pass
  111.  
  112.     def recv(self, request_id):
  113.     """ Wait for a specific reply. """
  114.  
  115.     pass
  116.  
  117.     def poll(self, request_id):
  118.     """ Poll for a reply to a specific request. """
  119.  
  120.     pass
  121.  
  122.     def peek(self, request_id):
  123.     """ Peek at the reply for the specified request.
  124.  
  125.     This method does *not* delete the reply from the client's queue.
  126.  
  127.     """
  128.     pass
  129.  
  130.     def delete_reply(self, request_id):
  131.     """ Delete the reply with the specified request id. """
  132.  
  133.     pass
  134.  
  135.     def next_request_id(self):
  136.     """ Return the next request id. """
  137.  
  138.     pass
  139.  
  140.     def is_closed(self):
  141.     """ Has the worker received a close event? """
  142.  
  143.     pass
  144.  
  145.     def close_connection(self):
  146.     """ Close down the connection. """
  147.  
  148.     pass
  149.  
  150.     #########################################################################
  151.     # Protected interface (this is purely for code re-use between the
  152.     # reactive and threaded workers).
  153.     #########################################################################
  154.  
  155.     def _message_received(self, message):
  156.     """ Called when a complete GIOP message has been received. """
  157.  
  158.     # Get a cursor for the message.
  159.     cursor = message.cursor()
  160.  
  161.     # Get the GIOP message header.
  162.     giop_header = message.header()
  163.  
  164.     # Make sure that the header has the right magic and that we are talking
  165.     # the same version of GIOP.
  166.     if giop_header.magic != Util.MAGIC \
  167.        or giop_header.GIOP_version.major != Util.GIOP_VERSION_MAJOR \
  168.        or giop_header.GIOP_version.minor != Util.GIOP_VERSION_MINOR:
  169.         # Send a 'MessageError' to the server.
  170.         self._message_error()
  171.         
  172.     # Handle each GIOP message type.
  173.     #
  174.     # Reply.
  175.     if giop_header.message_type == GIOP.Reply.value():
  176.         # Unmarshal the reply header.
  177.         tc = CORBA.typecode('IDL:omg.org/GIOP/ReplyHeader:1.0')
  178.         reply_header = tc._fnorb_unmarshal_value(cursor)
  179.  
  180.         # Reply received.
  181.         self._reply_received(reply_header, cursor)
  182.  
  183.     # CloseConnection.
  184.     elif giop_header.message_type == GIOP.CloseConnection.value():
  185.         self.close_connection()
  186.  
  187.     # MessageError.
  188.     elif giop_header.message_type == GIOP.MessageError.value():
  189.         raise CORBA.COMM_FAILURE() # System exception.
  190.  
  191.     # Some unknown message type.
  192.     else:
  193.         # Send a 'MessageError' to the server.
  194.         self._message_error()
  195.  
  196.     return
  197.  
  198.     def _message_error(self):
  199.     """ Send a 'MessageError' message to the remote object. """
  200.  
  201.     # Create the 'MessageError' message.
  202.     message = OctetStream.GIOPMessage(type=GIOP.MessageError)
  203.  
  204.     # Send it!
  205.     self.send(self.next_request_id(), message)
  206.  
  207.     return
  208.  
  209. #############################################################################
  210.