Link to home
Start Free TrialLog in
Avatar of raghava_dg
raghava_dg

asked on

converting C struct to XML tags .

Frnds ,

I have below reqrmnt .

I need to convert a C struct into xml tags .
Ex

suppose if i have a struct

struct emp {

name char[10],
sal     float
};

I need to create a string like "<name>name from struct</name> <sal> sal from struct</sal>"  .

Here prob is my struct is dynamic . it may contain any number of elements in it .  So I need to know the struct element name and the datatype dynamically . Do you guys have any idia abt how to go ahead ? If its through C++ also its OK for me .

Pls give ur valuable suggestions .

Thanks in adv
Raghava.
Avatar of drnick
drnick

you got a serious problem.
the c compiler removes every variable/type names and info.
you cannot determine a structs elements at runtime.
so you cannot do what you wanted.
if you want to do it like that, you need another dynamic list, which contains the type and name (and maybe adress-offset) information for your struct.
like  
 struct {
  char *name;
  int datatype;
  int addr_ofs;
} info;

#define DATATYPE_CHAR 0
#define DATATYPE_INT 1
#define DATATYPE_BOOL 2
...

then a list of this will do, but you'll need a complicated decoding routine.

another way would be the usage of classes.
you could do one base class with the virtual method to_xml_string which returns a string.
then you could derive classes for every structure you need.
the derived classes could contain the data fields as members you require and you would
let them have an individual to_xml_string routine each.
this would be way more easy to programm, but it is not dynamical anymore, since you gotta
know all possible structures at compile time.

if you need additional hints to any of these suggestions, let me know.


Avatar of raghava_dg

ASKER

thanks drnick ,

yes C approch is complicated and in C++ i can't dynamically convert .
as u said looks like  I got into serious trouble .....:)) . any other suggestions welcome . :))
hm, what is the main thing you want to achieve?
maybe we can find a way around the dynamic-struct-thing
I want to write a utility which will accept a C structure and convert it to xml file as explained above.If same can be achived in c++ that should also be fine.
ASKER CERTIFIED SOLUTION
Avatar of drnick
drnick

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial