OOP languages providing Type Introspection ability : Ruby Objective-C C++ Object Pascal Java Object Introspection PHP Perl Python Actionscript (as3) http://en.wikipedia.org/wiki/Type_introspection
21
votes
5answers
12k views
Get an object attributes list in Objective-C
How can I get a list (in the form of an NSArray or NSDictionary) of a given object attributes in Objective-C?
Imagine the following scenario: I have defined a parent class which just extends ...
29
votes
4answers
8k views
Getting method parameter names in python
Given the python function:
def aMethod(arg1, arg2):
pass
How can I extract the number and names of the arguments. Ie. given that I have a reference to func, I want the func.[something] to ...
5
votes
9answers
8k views
How can you print a variable name in python? [closed]
Say I have a variable named choice it is equal to 2. How would I access the name of the variable? Something equivalent to
In [53]: namestr(choice)
Out[53]: 'choice'
for use in making a dictionary. ...
27
votes
5answers
12k views
Objective C Introspection/Reflection
Is there a built in method, function, API, commonly accepted way, etc. to dump the contents of an instantiated object in Objective C, specifically in Apple's Cocoa/Cocoa-Touch environment?
I want to ...
57
votes
9answers
30k views
Is there a function in Python to print all the current properties and values of an object?
So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
15
votes
5answers
3k views
C# how to get the name of the current method from code
I know you can do
this.GetType().FullName
Edit courtesy of @Pasi Savolainen
To get
My.Current.Class
But what can I call to get
My.Current.Class.CurrentMethod
1
vote
3answers
587 views
Ruby String#to_class
Taken from a previous post with some modifications to respond to sepp2k's comment about namespaces, I have implemented String#to_class method. I'm sharing the code here and I do believe that it could ...
113
votes
4answers
40k views
Getting the class name of an instance in Python
How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance has been derived?
Was ...
23
votes
4answers
6k views
Can you list the keyword arguments a Python function receives?
I have a dict, which I need to pass key/values as keyword arguments.. For example..
d_args = {'kw1': 'value1', 'kw2': 'value2'}
example(**d_args)
This works fine, but if there are values in the ...
7
votes
1answer
4k views
How to introspect django model fields?
I am trying to obtain class information on a field inside a model, when I only know name of the field and name of the model (both plain strings). How is it possible?
I can load the model dynamically:
...
13
votes
4answers
4k views
How do I list available methods on a given object or package in Perl?
How do I list available methods on a given object or package in Perl?
11
votes
3answers
2k views
List all the modules that are part of a python package?
Is there a straightforward way to find all the modules that are part of a python package? I've found this old discussion, which is not really conclusive, but I'd love to have a definite answer before ...
14
votes
4answers
3k views
Python: List all base classes in a hierarchy
Given a class Foo (whether it is a new-style class or not), how do you generate all the base classes - anywhere in the inheritance hierarchy - it issubclass of?
6
votes
5answers
6k views
How Do I Perform Introspection on an Object in Python 2.x?
I'm using Python 2.x and I have an object I'm summoning from the aether; the documentation on it is not particularly clear. I would like to be able to get a list of properties for that object and the ...
4
votes
1answer
2k views
Django get a model's fields
Given a Django model, I'm trying to list all of it's fields. I've seen some examples of doing this using the _meta model attribute, but doesn't the underscore in front of meta indicate that the _meta ...
3
votes
1answer
483 views
How to see function signature in python?
Is there a way to introspect a function so that it shows me information on the arguments it takes (like # of args, type if possible, name of arguments if named) and the return value? dir() doesn't ...
2
votes
2answers
343 views
Retrieve module object from stack frame
Given a frame object, I need to get the corresponding module object. In other words, implement callers_module so this works:
import sys
from some_other_module import callers_module
assert ...
6
votes
4answers
2k views
How do I find all the property keys of a KVC compliant Objective-C object?
Is there a method that returns all the keys for an object conforming to the NSKeyValueCoding protocol?
Something along the lines of [object getPropertyKeys] that would return an NSArray of NSString ...
9
votes
4answers
1k views
Does Scala have introspection capable of something similar to Python's dir()?
Yes, I know it's considered lazy by the non-Pythonistas. The reason I ask is that documentation is still woefully lacking in many Scala libraries (e.g. Scala-dbc, but that's not all I'm looking at), ...
8
votes
4answers
2k views
Print all local variables accessible to the current scope in Lua
I know how to print "all" global variables using the following code
for k,v in pairs(_G) do
print("Global key", k, "value", v)
end
So my question is how to do that for all variables that are ...
10
votes
7answers
2k views
Python code to get current function into a variable?
How can I get a variable that contains the currently executing function in Python? I don't want the function's name. I know I can use inspect.stack to get the current function name. I want the actual ...
9
votes
2answers
2k views
How do I list all instance variables of a class in Objective-C?
If I have a class, how can I list all its instance variable names?
eg:
@interface MyClass : NSObject {
int myInt;
NSString* myString;
NSMutableArray* myArray;
}
I would like to get ...
9
votes
5answers
5k views
Checking for member existence in Python
I regularly want to check if an object has a member or not. An example is the creation of a singleton in a function. For that purpose, you can use hasattr like this:
class Foo(object):
...
12
votes
3answers
2k views
C# “is” operator - is that reflection?
A colleague asked me an interesting question today - is the C# keyword/operator "is" considered reflection?
object tmp = "a string";
if(tmp is String)
{
}
How is this operator implemented behind ...
6
votes
3answers
295 views
getting the class path or name space of a class in python even if it is nested
I'm currently writing a serialization module in Python that can serialize user defined classes. in order to do this I need to get the full name space of the object and write it to a file. I can then ...
4
votes
8answers
439 views
Is there a good way of setting C/C++ member variables from string representations? (introspection-lite)
I've got a struct with some members that I want to be able to get and set from a string. Given that C++ doesn't have any introspection I figure I need some creative solution with macros, the ...
3
votes
6answers
448 views
How can I determine at runtime whether there is a catch block for a particular C++ exception class?
On Linux, I would like to be able to determine whether a catch block for a particular class of exception (or a superclass of that class) is currently in scope (ignoring catch all blocks).
In ...
1
vote
1answer
586 views
Finding out which functions are available from a class instance in python?
How do you dynamically find out which functions have been defined from an instance of a class?
For example:
class A(object):
def methodA(self, intA=1):
pass
def methodB(self, strB):
...
9
votes
1answer
7k views
Java introspection and reflection
Can any one explain the use of Java reflection and introspection? When we need to use both?
5
votes
2answers
962 views
Spy++ for PowerBuilder applications
I'm trying to write a tool which lets me inspect the state of a PowerBuilder-based application. What I'm thinking of is something like Spy++ (or, even nicer, 'Snoop' as it exists for .NET ...
4
votes
2answers
150 views
Is there a high-level profiling module for Python?
I want to profile my Python code. I am well-aware of cProfile, and I use it, but it's too low-level. (For example, there isn't even a straightforward way to catch the return value from the function ...
3
votes
2answers
240 views
Compare the Content, Not the Results, of Procs
Using Ruby 1.9.2
Problem
Compare the content, not the results, of two procs. I understand the results can't be tested because of the halting problem but that's OK; I don't want to test the results ...
0
votes
1answer
97 views
Using Introspection To Find An Object's Methods, Then Filtering
I have a class in my Python module that frobs widgets. It has several ways to do this, but I don't know ahead of time which ones, if any, will actually work, and I might figure out new ways to frob ...
9
votes
7answers
624 views
Introspection to get decorator names on a method?
I am trying to figure out how to get the names of all decorators on a method. I can already get the method name and docstring, but cannot figure out how to get a list of decorators.
6
votes
5answers
581 views
Java: How to find if a method is overridden from base class?
How to find out if a method is overridden by child classes?
For example,
public class Test {
static public class B {
public String m() {return "From B";};
}
static public class B1 extends B {
...
5
votes
3answers
483 views
How do I get the filepath for a class in Python?
Given a class C in Python, how can I determine which file the class was defined in? I need something that can work from either the class C, or from an instance off C.
The reason I am doing this, is ...
3
votes
1answer
178 views
Displaying nested swing component names/classes at runtime
Does anyone know of existing functionality to visualize the current swing component heirachy of a window at runtime?
I am hoping for something equivalent to how firebug lets you inspect the DOM - ...
2
votes
4answers
83 views
Printing names of variables passed to a function
In some circumstances, I want to print debug-style output like this:
# module test.py
def f()
a = 5
b = 8
debug(a, b) # line 18
I want the debug function to print the following:
debug info ...
2
votes
1answer
110 views
AS3 knowing how many arguments a function takes
Is there a way to know how many arguments an instance of Function can take in Flash? It would also be very useful to know if these arguments are optional or not.
For example :
public function foo() ...
2
votes
2answers
239 views
In Objective C, how to find out the return type of a method via reflection?
@interface Foo : NSObject {
}
- (Bar)bar;
At runtime, given [Foo class], how do we find out the return type of all methods Foo has?
I have been studying the Objective-C runtime API for a while ...
2
votes
2answers
286 views
Can one access the template parameter outside of a template without a typedef?
A simple example:
template<typename _X> // this template parameter should be usable outside!
struct Small {
typedef _X X; // this is tedious!
X foo;
};
template<typename SomeSmall>
...
2
votes
3answers
494 views
How would you determine where each property and method of a Python class is defined?
Given an instance of some class in Python, it would be useful to be able to determine which line of source code defined each method and property (e.g. to implement [1]). For example, given a module ...
1
vote
2answers
100 views
Find out a method's name in Groovy
Just out of curiosity: Is there a way in Groovy to find out the name of the called method?
def myMethod() {
println "This method is called method " + methodName
}
This, in ...
1
vote
4answers
2k views
Call private methods and private properties from outside a class in PHP
I want to access private methods and variables from outside the classes in very rare specific cases.
I've seen that this is not be possible although introspection is used.
The specific case is the ...
1
vote
4answers
1k views
Looping over a Python / IronPython Object Methods
What is the proper way to loop over a Python object's methods and call them?
Given the object:
class SomeTest():
def something1(self):
print "something 1"
def something2(self):
print ...
0
votes
1answer
82 views
Groovy, get enclosing function's name?
I'm using Groovy 1.8.4, trying to get the name of the enclosing function...
def myFunction() {
println functionName??
}
I've tried delegate, this, owner, Groovy complains no such objects found.
...
0
votes
4answers
145 views
How to get value of abstract “const” property using reflection?
I've got a class defined like this:
public abstract class Uniform<T>
{
public abstract string GlslType { get; }
...
}
And then a subclass defined like this:
public class UniformInt : ...
0
votes
3answers
496 views
How to find hidden properties/methods in Javascript objects?
I would like to automatically determine all of the properties (including the
hidden ones) in a given Javascript object, via a generalization of this
function:
function keys(obj) {
var ll = [];
...
-2
votes
4answers
185 views
Pass a string containing a function name and its arguments to another function.
I would like to pass a string to a function in C in which the function will parse out a function name, the arguments for the function, and its datatypes, and then call the function for me. What is the ...
13
votes
3answers
4k views
Python: How to get the caller's method name in the called method?
Python: How to get the caller's method name in the called method?
Assume I have 2 methods:
def method1(self):
...
a = A.method2()
def method2(self):
...
If I don't want to do any ...