My question can be simply illustrated by this code:

def proceed(self, *args):
  myname = ???
  func = getattr(otherobj, myname)
  result = func(*args)
  # result = ... process result  ..
  return result


class dispatch(object):
  def __init__(self, cond=1):
    for index in range(1, cond):
      setattr(self, 'step%u' % (index,), new.instancemethod(proceed, self, dispatch)

After that instance of dispatch must have step1..stepn members, that call corresponding methods in otherobj. How to do that? Or more specifically: What must be inserted in proceed after 'myname =' ?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Not sure if this works, but you could try to exploit closures:

def make_proceed(name):
    def proceed(self, *args):
        func = getattr(otherobj, name)
        result = func(*args)
        # result = ... process result  ..
        return result
    return proceed


class dispatch(object):
  def __init__(self, cond=1):
    for index in range(1, cond):
      name = 'step%u' % (index,)
      setattr(self, name, new.instancemethod(make_proceed(name), self, dispatch))
link|improve this answer
Yes, this is working one. Thanx once more! – Willy aTan Feb 28 '11 at 15:33
feedback

If the methods are called step1 to stepn, you should do:

def proceed(myname):
    def fct(self, *args):
        func = getattr(otherobj, myname)
        result = func(*args)
        return result
    return fct

class dispatch(object):
    def __init__(self, cond=1):
        for index in range(1, cond):
            myname = "step%u" % (index,)
            setattr(self, myname, new.instancemethod(proceed(myname), self, dispatch))

If you don't know the name, I don't understand what you're trying to achieve.

link|improve this answer
Same idea as me :) You forgot to return the local function from proceed. – Björn Pollex Feb 28 '11 at 15:19
Yes. But you, Space_C0wb0y, forgot too... :) Ok, thank you guys for answer, I got idea! :) – Willy aTan Feb 28 '11 at 15:25
Oopsy, corrected :) – PierreBdR Feb 28 '11 at 16:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.