472,794 Members | 1,856 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

dynamic invoke

Hello,

Is there any way (other then eval) to invoke a method by passing
method name in a string.
It's very simple in php:
$oFoo = new Foo();
$dynamiMethod = "bar";
$oFoo->$dynamiMethod();

Unfortunately I can't find a good solution to do the same thing in
python. Does it have some build-in function to do it?

Kind Regards,

Lukasz.

Oct 19 '07 #1
11 1412
lu********@gmail.com napisa³(a):
Is there any way (other then eval) to invoke a method by passing
method name in a string.
It's very simple in php:
$oFoo = new Foo();
$dynamiMethod = "bar";
$oFoo->$dynamiMethod();

Unfortunately I can't find a good solution to do the same thing in
python. Does it have some build-in function to do it?
foo = getattr(module_or_object, 'function_name')
foo()

--
Jarek Zgoda
Skype: jzgoda | GTalk: zg***@jabber.aster.pl | voice: +48228430101

"We read Knuth so you don't have to." (Tim Peters)
Oct 19 '07 #2
On 19 Oct, 11:45, Jarek Zgoda <jzg...@o2.usun.plwrote:
lukasz....@gmail.com napisa³(a):
Is there any way (other then eval) to invoke a method by passing
method name in a string.
It's very simple in php:
$oFoo = new Foo();
$dynamiMethod = "bar";
$oFoo->$dynamiMethod();
Unfortunately I can't find a good solution to do the same thing in
python. Does it have some build-in function to do it?

foo = getattr(module_or_object, 'function_name')
foo()

--
Jarek Zgoda
Skype: jzgoda | GTalk: zg...@jabber.aster.pl | voice: +48228430101

"We read Knuth so you don't have to." (Tim Peters)
Superb!
I was lookig for something like this. Belive me or not but i spent
lots of time looking for this simple solution :)

Cheers.

Oct 19 '07 #3
lu********@gmail.com wrote:
On 19 Oct, 11:45, Jarek Zgoda <jzg...@o2.usun.plwrote:
>lukasz....@gmail.com napisa³(a):
Is there any way (other then eval) to invoke a method by passing
method name in a string.
It's very simple in php:
$oFoo = new Foo();
$dynamiMethod = "bar";
$oFoo->$dynamiMethod();
Unfortunately I can't find a good solution to do the same thing in
python. Does it have some build-in function to do it?

foo = getattr(module_or_object, 'function_name')
foo()

--
Jarek Zgoda
Skype: jzgoda | GTalk: zg...@jabber.aster.pl | voice: +48228430101

"We read Knuth so you don't have to." (Tim Peters)

Superb!
I was lookig for something like this. Belive me or not but i spent
lots of time looking for this simple solution :)
The above clearly is a solution to your problem. I just wonder if you _need_
it. PHP doesn't have the concept of a function reference. So you need to
store/use names.

But in Python you can do this:

def foo():
print "foo"

callback = foo
callback()

As trivial this code is, it illustrates one thing: passing around functions
is as easy as passing around other values. So maybe you don't need a
function name. Only a suggestion to ponder about though, it might be that
your usecase is not suited for the above.

Diez
Oct 19 '07 #4
On Oct 19, 12:39 pm, lukasz....@gmail.com wrote:
Hello,

Is there any way (other then eval) to invoke a method by passing
method name in a string.
It's very simple in php:
$oFoo = new Foo();
$dynamiMethod = "bar";
$oFoo->$dynamiMethod();

Unfortunately I can't find a good solution to do the same thing in
python. Does it have some build-in function to do it?

Kind Regards,

Lukasz.
Use apply(): http://docs.python.org/lib/non-essen...-in-funcs.html

Nils

Oct 19 '07 #5
Nils wrote:
On Oct 19, 12:39 pm, lukasz....@gmail.com wrote:
>Hello,

Is there any way (other then eval) to invoke a method by passing
method name in a string.
It's very simple in php:
$oFoo = new Foo();
$dynamiMethod = "bar";
$oFoo->$dynamiMethod();

Unfortunately I can't find a good solution to do the same thing in
python. Does it have some build-in function to do it?

Kind Regards,

Lukasz.

Use apply(): http://docs.python.org/lib/non-essen...-in-funcs.html
Apply doesn't help the OP - it's useful if you already have a function
pointer.

And it's obsoleted by the * and ** parameter passing mechanism.

Diez
Oct 19 '07 #6
Python will not allow string to be used a function pointer. It is type unsafe.
Best way is to convert string into function pointers manually.

if dynamicMethod == 'bar':
method = oFoo->bar
else:
method = oFoo->default
method()

On Friday 19 October 2007 7:56 am, Diez B. Roggisch wrote:
Nils wrote:
On Oct 19, 12:39 pm, lukasz....@gmail.com wrote:
Hello,

Is there any way (other then eval) to invoke a method by passing
method name in a string.
It's very simple in php:
$oFoo = new Foo();
$dynamiMethod = "bar";
$oFoo->$dynamiMethod();

Unfortunately I can't find a good solution to do the same thing in
python. Does it have some build-in function to do it?

Kind Regards,

Lukasz.
Use apply():
http://docs.python.org/lib/non-essen...-in-funcs.html

Apply doesn't help the OP - it's useful if you already have a function
pointer.

And it's obsoleted by the * and ** parameter passing mechanism.

Diez
Oct 19 '07 #7
Sushant wrote:
Python will not allow string to be used a function pointer. It is type
unsafe. Best way is to convert string into function pointers manually.

if dynamicMethod == 'bar':
method = oFoo->bar
else:
method = oFoo->default
method()
Sorry to say so, but that answer is bogus. It's not even Python!

Jarek has already shown how to solve this problem. And type-safety-issues
have nothing to do with it at all.

Diez
Oct 19 '07 #8
On Fri, 19 Oct 2007 11:34:39 +0000, Nils wrote:
Use apply():
http://docs.python.org/lib/non-essen...-in-funcs.html
No, don't use apply. Not only does it not solve the original poster's
problem, it is a deprecated function. You shouldn't use it in new code.

--
Steven.
Oct 19 '07 #9
On Fri, 19 Oct 2007 10:29:12 -0400, Sushant wrote:
Python will not allow string to be used a function pointer. It is type
unsafe. Best way is to convert string into function pointers manually.

if dynamicMethod == 'bar':
method = oFoo->bar
else:
method = oFoo->default
method()

I don't know what language you're programming in there, but it isn't
Python.

method = oFoo->bar
^
SyntaxError: invalid syntax

--
Steven.
Oct 19 '07 #10
I did not know about getattr and it is the right thing.

getattr seems to be converting string into function pointer and I am just
saying that string cannot be used as a function pointer in Python as may be
in PHP.

I copied the PHP code so I did not replace arrow with dot. Good point :)

-Sushant.

On Friday 19 October 2007 11:05 am, Diez B. Roggisch wrote:
Sushant wrote:
Python will not allow string to be used a function pointer. It is type
unsafe. Best way is to convert string into function pointers manually.

if dynamicMethod == 'bar':
method = oFoo->bar
else:
method = oFoo->default
method()

Sorry to say so, but that answer is bogus. It's not even Python!

Jarek has already shown how to solve this problem. And type-safety-issues
have nothing to do with it at all.

Diez
Oct 19 '07 #11
Sushant napisa³(a):
getattr seems to be converting string into function pointer and I am just
saying that string cannot be used as a function pointer in Python as may be
in PHP.
It seems, but it does not. Getattr performs lookup on object's
attributes dict, it does not "convert" anything. The abstraction of
"function pointer" is also wrong here, it's a reference to an object
(any object, not just function). The result might seems similar, but
works quite differently.

--
Jarek Zgoda
Skype: jzgoda | GTalk: zg***@jabber.aster.pl | voice: +48228430101

"We read Knuth so you don't have to." (Tim Peters)
Oct 22 '07 #12

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

Similar topics

3
by: ogled | last post by:
Hi I have an odd question: is it possible to have a delegate that recieves a methodname dynamically? Like this: aClassObj.OnGo += new ANamespace.Invoke(fName); where fName would be a string...
0
by: raca | last post by:
I am trying to create a generic SOA ServiceInvoker that will accept an XML string that will be used to deserialize an object generated by XSDObjectGen. The hierarchy goes like this:...
3
by: Stephen Gennard | last post by:
Hello, I having a problem dynamically invoking a static method that takes a reference to a SByte*. If I do it directly it works just fine. Anyone any ideas why? I have include a example...
4
by: Tamir Khason | last post by:
Is it possible (as was in VB - CallByName) to call function which name was generated. Example: private static void DS_function() { } private static void FD_function() {
10
by: Yechezkal Gutfreund | last post by:
I have two subclasses of SpriteModel (1) LocalSprite (2)Sprite Both implement a method called .ToXml() which returns an XmlDocument. But they are different. I instances of these objects...
2
by: Luis Arvayo | last post by:
Hi, In c#, I need to dynamically create types at runtime that will consist of the following: - inherits from a given interface - will have a constructor with an int argument
0
by: pjr | last post by:
Using VS2005, I dynamically create an event delegate. Code follows question. My method gets the event's parameters and passes them onto a common event handler. My delegate gets called when expected...
1
by: alexis.meilland | last post by:
Hello, Well, I have a problem with a dynamic debuging. My program is winform program written in Managed c++. I compile dynamically a dll in vb.net. It works well. To execute a function in...
9
by: =?Utf-8?B?RXZlcnQ=?= | last post by:
In my (Windows Forms) project I am using strongly typed datatables. Now I am trying to convert my 'rowfilter/group by' query logic to Linq. Most queries I can easily convert, but some I am having...
26
by: Aaron \Castironpi\ Brady | last post by:
Hello all, To me, this is a somewhat unintuitive behavior. I want to discuss the parts of it I don't understand. .... f= lambda: n .... 9 9
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Sept 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.