1
vote
3answers
23 views
Automatically populate all properties of an Objective C instance with a dictionary
I have a class with properties that I would like to set values from a dictionary.
In other words, I would like to automate this:
objectInstace.val1 = [dict objectForKey:@"val1"]; …
2
votes
3answers
92 views
Is there a straightforward way to find 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 def …
1
vote
4answers
95 views
How to determine the Java byte code version of the current class programatically?
I have a situation where the deployment platform is Java 5 and the development happens with Eclipse under Java 6 where we have established a procedure of having a new workspace cre …
3
votes
8answers
192 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 …
2
votes
4answers
147 views
How do I get the string representation of a variable in python?
I have a variable x in python. How can i find the string 'x' from the variable. Here is my attempt:
def var(v,c):
for key in c.keys():
if c[key] == v:
return key
def …
0
votes
1answer
95 views
What is the issubclass equivalent of isinstance in python?
Given an object, how do I tell if it's a class, and a subclass of a given class Foo?
e.g.
class Bar(Foo):
pass
isinstance(Bar(), Foo) # => True
issubclass(Bar, Foo) # < …
4
votes
2answers
179 views
Python logging using a decorator
This is the first example we meet when we face with decorators. But I'm not able to realize what exactly I would like.
A simple decorator named LOG. It should work like this:
@LO …
0
votes
3answers
63 views
Ruby: Get list of different properties between objects
Helo,
I am pretty new to Ruby (using 1.8.6) and need to know whether the following functionality is available automatically and if not, which would be the best method to implement …
1
vote
3answers
120 views
Object Reflection
Does anyone have any references for building a full Object/Class reflection system in C++ ?
Ive seen some crazy macro / template solutions however ive never found a system which …
0
votes
2answers
83 views
Introspect postgresql 8.3 to find foreign keys
I'm trying to introspect a postgres 8.3 database to retrieve details of its
foreign keys. Imagine I have the following schema:
CREATE TABLE "a" (
"id" SERIAL PRIMARY KEY
);
CRE …
0
votes
1answer
55 views
Generating SWIG bindings with CMake
How would I generate automatic bindings for a C project that is built using CMake?
I want to generate bindings for Python, Java, .NET, PHP, Perl, TCL, Ruby and Octave automaticall …
0
votes
8answers
181 views
How can I get the name of an object in Python?
Is there any way to get the name of an object in Python? For instance:
my_list = [x, y, z] # x, y, z have been previously defined
for bla in my_list:
print "handling object …
0
votes
3answers
212 views
Can Python determine the class of a object accessing a method
Is there anyway to do something like this:
class A:
def foo(self):
if isinstance(caller, B):
print "B can't call methods in A"
else:
prin …
0
votes
5answers
151 views
Python object inspector ?
Hi,
besides from using a completely integrated IDE with debugger for python (like with Eclipse), is there any little tool for achieving this:
when running a program, i want to b …
0
votes
1answer
82 views
Runtime Object Inspector for iPhone?
I'd like to be able to add a runtime object inspector to my iPhone app, mostly for debugging purposes.
This would let me do something like:
[inspector addObject:someObject];
a …
