3
votes
8answers
181 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
134 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
79 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
163 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
55 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
110 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
64 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
8answers
175 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
1answer
40 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
3answers
189 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
141 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
77 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 …
0
votes
1answer
77 views
using soaplib to connect to remote SOAP server lacking definition
I am looking at the soaplib python module (it comes with standard ubuntu 9.04). I have used xmlrpclib extensively in the last years but now I am curious about soap. writing serve …
1
vote
3answers
104 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 be …
2
votes
4answers
99 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?
