How can I "pack" and "write" a struct to a file using C so that:
struct a {
uint64_t a;
char* b;
uint16_t c;
} a;
a b;
b.a = 3;
b.b = "Hello";
b.c = 4;
gets written to the file as
00 00 00 00 00 00 00 03 48 65 6c 6c 6f 00 00 04
|
feedback
|
|
In C, you'll have to code a function to do this for you. You can't just blat the structure out to disk because And, as if that wasn't enough, you should output the length of the string as well so you know how many bytes to read back. You'll be looking for something like:
| |||||
feedback
|
|
you must write your own way to serialize this data; the compiler won't hand you a built-in way to deal with the string. There are serialization libraries out there but I don't know any for straight C. But, consider using a more structured method for serializing data, such as json or xml. Even an INI file is better than raw binary dump. Reasons for this are:
| |||||||
feedback
|
|
Will the following help?
Usage:
| ||||
|
feedback
|
|
You can safely pack your structure into byte array, if you will not use pointers in it and will explicitly define packing alignment. For example (gcc):
struct a {
long a;
char b[256];
short c;
} __attribute__((__packed__));
int size = sizeof(a);
void* buffer = malloc(size);
memcpy(buffer, (void*)a, size);
| |||
feedback
|
.aand.cto fixed-bit types. – Delan Azabani Aug 11 '10 at 9:18append_*functions for each type you want to support. – Agnel Kurian Aug 11 '10 at 9:28