Dynamic method invocation
Hi I am new to jythong and was wondering if/how I can do the following - a) register a java object with a given name with jython interpreter using set method b) call methods on the java object - but the methods may not exist on the object, so I would like to call from jython a generic method that I have defined on the object as opposed to using java reflection. Thus the java class is more like a proxy for invocation. As an example, I register an instance of java class Bar with name foo. I want to be able to call from jython - foo.method1 (args) I don't want to define all the methods that I can call from jython on class foo but have a generic method that the above jython code will invoke. I want to use a model where the methods that can be called on foo are discovered dynamically once they are invoked on java class. Clearly Java won't let me do this during method invocation so I am wondering if I can register some sort of proxy object with jython that will let me then delegate right call down to the java object. Thanks a bunch -- http://mail.python.org/mailman/listinfo/python-list
Re: Dynamic method invocation
Sorry for being a little vague. The last part of your response seems
like what I would need. So here are more details on what I am trying
to do.
I have an extensible command shell in java where commmand providers
plug in to supply new commands. I have a java class called MyShell
which has execCommand method on it. Thus MyShell class does not have
a concrete method on it for each command that it supports (e.g. grep,
ls, cat etc) but a generic execCommand method that takes the name of
the command and command params as arguments.
clas MyShell () {
Object execCommand (cmdName, params) {
Object o = // find command object from command name
return o.invoke (cmdName, params);
}
|
Now I want to use this in jython. So I could do something like
shell = MyShell()
shell.exec ("grep", grep_args)
What I would like to do is -
shell.grep (grep_args)
That way my users don't have to use some gorpy exec/invoke syntax for
each command but think that shell has all the commands defined on it.
So based on your example I am hoping that I can use getattr on "some"
object that returns me "some" method that I can call.
Does this make sense and is there a way to do this in jython?
--
http://mail.python.org/mailman/listinfo/python-list
Re: Dynamic method invocation
Actually let me add that in jython I don't need to always use MyShell. It may be ok to wrapper it with some Jython class which then delegates to MyShell. So something like shell = MyJythonShell() shell.grep (grep_args) So MyJythonShell is defined in Jython which calls MyShell. Am wondering how to go about all this. -- http://mail.python.org/mailman/listinfo/python-list
