home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / fnb101.zip / Lib / site-packages / Fnorb / orb / Reactor.py < prev    next >
Text File  |  1999-06-28  |  3KB  |  108 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/Reactor.py,v $
  29. # Version:      @(#)$RCSfile: Reactor.py,v $ $Revision: 1.10 $
  30. #
  31. #############################################################################
  32. """ Abstract Reactor class (part of the Reactor pattern). """
  33.  
  34.  
  35. # Event masks.
  36. READ      = 0x1
  37. WRITE     = 0x2
  38. EXCEPTION = 0x4
  39. ALL       = 0xf
  40.  
  41.  
  42. def Reactor_init():
  43.     """ Initialise the Reactor.
  44.  
  45.     There can only be one instance of any concrete reactor class per process.
  46.  
  47.     """
  48.     # The default reactor is the 'SelectReactor'.
  49.     try:
  50.     import SelectReactor; reactor = SelectReactor.SelectReactor()
  51.  
  52.     except Reactor, reactor:
  53.     pass
  54.  
  55.     return reactor
  56.  
  57.  
  58. class Reactor:
  59.     """ Abstract Reactor class (part of the Reactor pattern). """
  60.  
  61.     # There can only be one instance of any *concrete* reactor class per
  62.     # process.
  63.     _instance = None
  64.  
  65.     def create_acceptor(self, host, port):
  66.     """ Factory method to create the 'Acceptor' used by this Reactor. """
  67.  
  68.     pass
  69.  
  70.     def register_handler(self, handler, mask):
  71.     """ Register an event handler. """
  72.  
  73.     pass
  74.  
  75.     def unregister_handler(self, handler, mask):
  76.     """ Withdraw a handler's registration. """
  77.  
  78.     pass
  79.  
  80.     def start_event_loop(self):
  81.     """ Start the event loop. """
  82.  
  83.     pass
  84.  
  85.     def stop_event_loop(self):
  86.     """ Stop the event loop. """
  87.  
  88.     pass
  89.  
  90.     def do_one_event(self):
  91.     """ Dispatch a single event. """
  92.  
  93.     pass
  94.  
  95.     def handles(self):
  96.     """ Return the handles for all registered handlers. """
  97.  
  98.     pass
  99.  
  100.     def handle_one_event(self, handle, mask):
  101.     """ Handle a single event. """
  102.  
  103.     pass
  104.  
  105. #############################################################################
  106.