Tagged Questions
0
votes
1answer
114 views
Calling a function or method by reflection in C/C++
I am just going through a problem that I haven't before in C/C++, and I have no idea how to solve it. Reflection. I need to call a function or method by a string that was given by the user. Not just ...
0
votes
1answer
73 views
What's the equivalent call() apply() of JavaScript in C? [closed]
In Java it is:
java.lang.reflect.Method
In JavaScript it is:
apply() ⟶ more like java.lang.reflect.Method
call() ⟶ more like function pointer in C
In C it is:
type (*varname)(Type1 ...
1
vote
2answers
188 views
Is there any major programming language that doesn't support any form of reflection? [closed]
Wikipedia defines reflection as follows:
In computer science, reflection is the process by which a computer
program can observe (do type introspection) and modify its own
structure and ...
1
vote
2answers
149 views
Name of a function in C++ or C [duplicate]
Possible Duplicate:
Is it ever possible to get the current (member) function name in C++?
If given a function int func(args)in C or C++ is there a way to get the name, or even signature, of ...
4
votes
4answers
280 views
Export program state to procfs?
Can I create any file mappings in procfs to reflect the internal state of my program?
For example,
main.c:
char *message;
...
Assume the pid is 1200, is it possible to create a transient file ...
3
votes
5answers
367 views
Get list of C structure members
Is it possible to get the list of members of a structure as a char ** ?
For example, something like this:
struct mystruct {
int x;
float y;
char *z;
};
/* ... */
char **members = ...
2
votes
3answers
125 views
Can I find what type does a variable belongs, in C?
I'm a novice in C, and since C does some implict changing at times, I often get confused. I'm getting confused in what type(like int,char) does the operation(+,-) returns. So in C, I want to know what ...
5
votes
4answers
287 views
Reflections for C language?
The question title might be misleading when read out of context. Let me first explain what I am trying to build.
I am building a script which will take 100s of very simple C programs written by my ...
1
vote
2answers
2k views
How to map a function name and line number by a memory address in C language?
how can you map back function name and line number with a memory address in GCC ?
i.e assuming a prototype in C language:
void func() {
// Get the address of caller , maybe this could be avoided
...
4
votes
1answer
734 views
C/C++ map binary data to struct members [closed]
Lets say, I have the following text file:
Listing 1:
Endianess=little
AddressModel=32
typedef struct{
int x;
int y;
float f;
double d;
} A;
...
1
vote
4answers
641 views
How to do Reflection in C
Simple question, I want to be able to print stack traces java style in c. I have the signal handlers set up and I get the stack trace addresses but I want to translate the addresses to the function ...
2
votes
4answers
453 views
How can you be DRY with a programming language that doesn't have Reflection? [closed]
Any programming language that does not have a suitable reflection mechanism I find seriously debilitating for rapidly changing problems.
It seems with certain languages its incredible hard or not ...
1
vote
1answer
1k views
Mapping C structure to an XML element
Suppose I have a structure in C or C++, such as:
struct ConfigurableElement {
int ID;
char* strName;
long prop1;
long prop2;
...
};
I would like to load/save it to/from the following ...
9
votes
8answers
717 views
C/C++: any way to get reflective enums?
I've encountered this situation so many times...
enum Fruit {
Apple,
Banana,
Pear,
Tomato
};
Now I have Fruit f; // banana and I want to go from f to the string "Banana"; or I have string ...
-1
votes
2answers
113 views
Changing value in memory through an SO in C
I'm writing a .SO that gets called by another program and I want to be able to flip a value in memory through a function in the .SO
What I have so far is :
int
axptrace( int numArguments, char* ...
5
votes
6answers
1k views
Reflection Support in C
I know it is not supported, but I am wondering if there are any tricks around it? Any tips?
Thank you
1
vote
4answers
1k views
C/C++ Reflection and JNI - A method for invoking native code which hasn't been written yet
I am implementing a piece of Java software that will hopefully allow for C libraries as plugins. In order to call these future functions, I need to somehow create a native function in Java from which ...
