Dispatching operations to user-defined methods

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Hallvard B Furuseth

    #1

    Dispatching operations to user-defined methods

    I'm wondering how to design this:

    An API to let a request/response LDAP server be configured so a
    user-defined Python module can handle and/or modify some or all
    incoming operations, and later the outgoing responses (which are
    generated by the server). Operations have some common elements,
    and some which are distinct to the operation type (search, modify,
    compare, etc). So do responses.

    There are also some "operations " used internally by the server -
    like checking if the current session has access to perform the
    operation it requested.

    The server will have various internal classes for operations and
    data in operations, and methods for the user to access them.

    One obvious implementation would be to provide a class Operation,
    let the user define a single subclass of this, and have the server
    call request_search( ), response_search (), request_modify( ),
    check_access() etc in that subclass.

    Then I suppose the server would turn individual operations into
    instance of internal subclasses of the user's subclass - class
    SearchOperation (<user's class>), ModifyOperation (<user's class>)
    etc. Begins to look a bit messy now.

    And I'd like to try several methods - first try if the user defined
    response_search _entry() (one type of Search operation response),
    then response_search (), then response(), and after that give up.
    For that one, the Pythonic approach seems to be to define a class
    hierarchy for these, let the user subclass the subclasses and define
    request() and response() methods for them, and let Python handle the
    search for which request() method to use for which operation. And
    the server must keep track of which subclasses the user defined.
    This too feels a bit messy to me.

    Also there are plenty of operation parameters the user might wish to
    dispatch on, e.g. maybe he can handle Entry but not Referral search
    responses. I imagine it's more efficient to dispatch in a Python C
    module than to leave that to the user. But I may be getting too
    ambitious now.

    Anyway, ideas? Am I overlooking something obvious?

    --
    Hallvard
  • Hallvard B Furuseth

    #2
    Re: Dispatching operations to user-defined methods

    I wrote:[color=blue]
    > I'm wondering how to design this:
    > (...)
    > One obvious implementation would be to provide a class Operation,
    > let the user define a single subclass of this, and have the server
    > call request_search( ), response_search (), request_modify( ),
    > check_access() etc in that subclass.
    >
    > Then I suppose the server would turn individual operations into
    > instance of internal subclasses of the user's subclass - class
    > SearchOperation (<user's class>), ModifyOperation (<user's class>)
    > etc. Begins to look a bit messy now.
    > (...)[/color]

    <Slap head> Or two classes - one operation class and one class
    subclassed by the user.

    Still need some way to let the user provide both general and more
    specialized methods though.

    --
    Hallvard

    Comment

    • Michele Simionato

      #3
      Re: Dispatching operations to user-defined methods

      Apparently Guido fell in love with generic functions, so (possibly) in
      future Python
      versions you will be able to solve dispatching problems in in an
      industrial strenght
      way. Sometimes however the simplest possible way is enough, and you can
      use
      something like this :

      class SimpleDispatche r(object):
      """A dispatcher is a callable object that looks in a "namespace"
      for callable objects and calls them with the signature

      ``<dispatcher>( <callablename >, <dispatchtag> , <*args>, <**kw>)``

      The "namespace" can be a module, a class, a dictionary, or anything
      that responds to ``getattr`` or (alternatively) to ``__getitem__`` .

      Here is an example of usage:
      [color=blue][color=green][color=darkred]
      >>> call = SimpleDispatche r(globals())[/color][/color][/color]
      [color=blue][color=green][color=darkred]
      >>> def manager_showpag e():[/color][/color][/color]
      .... return 'Manager'
      [color=blue][color=green][color=darkred]
      >>> def member_showpage ():[/color][/color][/color]
      .... return 'Member'
      [color=blue][color=green][color=darkred]
      >>> def anonymous_showp age():[/color][/color][/color]
      .... return 'Anonymous'
      [color=blue][color=green][color=darkred]
      >>> call('showpage' , 'anonymous')[/color][/color][/color]
      'Anonymous'[color=blue][color=green][color=darkred]
      >>> call('showpage' , 'manager')[/color][/color][/color]
      'Manager'[color=blue][color=green][color=darkred]
      >>> call('showpage' , 'member')[/color][/color][/color]
      'Member'
      """
      def __init__(self, ns):
      self._ns = ns
      def __call__(self, funcname, classname, *args, **kw):
      try:
      func = getattr(self._n s, '%s_%s' % (classname, funcname))
      except AttributeError:
      func = self._ns['%s_%s' % (class

      Comment

      • Hallvard B Furuseth

        #4
        Re: Dispatching operations to user-defined methods

        Michele Simionato writes:[color=blue]
        > Apparently Guido fell in love with generic functions, so
        > (possibly) in future Python versions you will be able to
        > solve dispatching problems in in an industrial strenght way.[/color]

        Looks interesting, I'll keep an eye on that.
        [color=blue]
        > Sometimes however the simplest possible way is enough, and you
        > can use something like this :
        >
        > class SimpleDispatche r(object):
        > (...)[/color]

        That doesn't make use of any subclass hierarchies the user defines
        though. But maybe it's just as well to scan his class for names
        once he has defined it, and build the dispatch table myself.

        --
        Hallvard

        Comment

        Working...