a teacher I have is having us use the following preprocessor macro in implementing a linked queue in C. The idea is you make your queue generic by having it hold no data, then you have a wrapper struct elsewhere which holds the node in the queue, and the piece of data belonging to it.
The macro below takes in a node from the queue (i.e. node), the type of the wrapper struct (i.e. struct Wrapper), and name of the queue node element of the Wrapper (i.e. qnode (Wrapper has an element called qnode)).
Then the macro returns the struct Wrapper that the node passed in is contained in.
so a call would look like this:
queue_entry(node, struct Wrapper, qnode)
This is EXTREMELY COOL in my eyes, and it works fine, (seeing as how my teacher wrote it, it'd better!). But I was hoping someone could explain to me how it actually works? Because I'm at a loss for what is actually going on behind the scenes.
The Macro
#define queue_entry(NODE, STRUCT, MEMBER) \
((STRUCT *)((uint8_t*)(NODE) - offsetof(STRUCT, MEMBER)))
ALL_CAPS. – Keith Thompson Dec 2 '12 at 3:08