472,354 Members | 1,931 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,354 software developers and data experts.

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
May 2 '06 #1
3 1707
I wrote:
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.
(...)


<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
May 3 '06 #2
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 SimpleDispatcher(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:
call = SimpleDispatcher(globals()) def manager_showpage(): .... return 'Manager'
def member_showpage(): .... return 'Member'
def anonymous_showpage(): .... return 'Anonymous'
call('showpage', 'anonymous') 'Anonymous' call('showpage', 'manager') 'Manager' call('showpage', 'member')

'Member'
"""
def __init__(self, ns):
self._ns = ns
def __call__(self, funcname, classname, *args, **kw):
try:
func = getattr(self._ns, '%s_%s' % (classname, funcname))
except AttributeError:
func = self._ns['%s_%s' % (class

May 4 '06 #3
Michele Simionato writes:
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.
Looks interesting, I'll keep an eye on that.
Sometimes however the simplest possible way is enough, and you
can use something like this :

class SimpleDispatcher(object):
(...)


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
May 8 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: teddysnips | last post by:
Currently studying for 70-229. I'm trying to understand how security for users is managed in SQL Server. I've been using SQL Server for a few years now, but without investigating the bits that...
0
by: Edson Tadeu | last post by:
I was thinking in a way to do static dispatching on enumerations, in a way similar to dispatching on integral constants using Loki's Int2Type<> or Boost.MPL's int_<>, i.e, creating types based on...
4
by: Jono | last post by:
Hi Everyone, As it says in the title, I'm looking for a way to display a page while long running operations are performed on the server. Ideally, I'd like some way to push the current request...
7
by: BruceWho | last post by:
Hi, all Is there any mature library which implements a global message dispatching mechanism? I'm playing with wxpython in my spare time, and I like the pubsub or pyDispatch module very much. Any...
0
by: Cesar Zapata | last post by:
I brainstorming on the best way to get this DB working. i'm building a dispatching delivery db this is my idea of set up. TblOrders OrderID OrderDate/Time CustomerID RunID
5
by: Fekri | last post by:
Hi, I'm looking for the best way to dispatch my database to many computers which I don't want any access to the source! my database is for entring the data by users without see what is...
1
by: HopfZ | last post by:
I tried the javascript code dispatching click event to a link in Firefox(2.0.0.4), it does not work, it does trigger onclick handlers but doesn't trigger browser default action, that is, opening...
2
by: Shraddha | last post by:
On which of the following we cannot perform max. operations? 1. Array 2. Hash Table 3. Linked List 4. Heap 5. Bianry Tree
1
by: shaileshkumar | last post by:
i have developed three servlets whose registered names are Demo,Next & Last respectively. //code for dispatching to Next in Demo RequestDispatcher rd=getRequestDispatcher("Next");...
2
by: =?Utf-8?B?d2R1ZGVr?= | last post by:
I have a website using windows integrated security, with anonymous access turned off. The site is used to query orders from a database and when the search takes a long time, a windows login box...
2
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. header("Location:".$urlback); Is this the right layout the...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.