I just learned of X-Macros. What real-world uses of X-Macros have you seen? When are they the right tool for the job?
|
|
I discovered X-macros a couple of years ago when I started making use of function pointers in my code. I am an embedded programmer and I use state machines frequently. Often I would write code like this:
The problem was that I considered it very error prone to have to maintain the ordering of my function pointer table such that it matched the ordering of my enumeration of states. A friend of mine introduced me to X-macros and it was like a light-bulb went off in my head. Seriously, where have you been all my life x-macros! So now I define the following table:
And I can use it as follows:
and
as a bonus, I can also have the pre-processor build my function prototypes as follows:
Another usage is to declare and initialize registers
My favourite usage however is when it comes to communication handlers First I create a comms table, containing each command name and code:
I have both the uppercase and lowercase names in the table, because the upper case will be used for enums and the lowercase for function names. Then I also define structs for each command to define what each command looks like:
Likewise I define structs for each command response:
Then I can define my command code enumeration:
I can define my command length enumeration:
I can define my response length enumeration:
I can determine how many commands there are as follows:
NOTE: I never actually instantiate the offset_struct_t, I just use it as a way for the compiler to generate for me my number of commands definition. Note then I can generate my table of function pointers as follows:
And my function prototypes:
Now lastly for the coolest use ever, I can have the compiler calculate how big my transmit buffer should be.
Again this union is like my offset struct, it is not instantiated, instead I can use the sizeof operator to declare my transmit buffer size.
Now my transmit buffer tx_buf is the optimal size and as I add commands to this comms handler, my buffer will always be the optimal size. Cool! One other use is to create offset tables: Since memory is often a constraint on embedded systems, I don't want to use 512 bytes for my jump table (2 bytes per pointer X 256 possible commands) when it is a sparse array. Instead I will have a table of 8bit offsets for each possible command. This offset is then used to index into my actual jump table which now only needs to be NUM_COMMANDS * sizeof(pointer). In my case with 10 commands defined. My jump table is 20bytes long and I have an offset table that is 256 bytes long, which is a total of 276bytes instead of 512bytes. I then call my functions like so:
instead of
I can create an offset table like so:
where offsetof is a standard library macro defined in "stddef.h" As a side benefit, there is a very easy way to determine if a command code is supported or not:
This is also why in my COMMAND_TABLE I reserved command byte 0. I can create one function called "process_reserved()" which will be called if any invalid command byte is used to index into my offset table. |
|||||||||||||
|
|
X-Macros are essentially parameterized templates. So they are the right tool for the job if you need several similar things in several guises. They allow you to create an abstract form and instantiate it according to different rules. I use X-macros to output enum values as strings. And since encountering it, I strongly prefer this form which takes a "user" macro to apply to each element. Multiple file inclusion is just far more painful to work with.
I'm also using them for function dispatch based on object type. Again by hijacking the same macro I used to create the enum values.
Using the macro guarantees that all my array indices will match the associated enum values, because they construct their various forms using the bare tokens from the macro definition (the TYPES macro).
Using X-macros this way actually helps the compiler to give helpful error messages. I omitted the evalarray function from the above because it would distract from my point. But if you attempt to compile the above code (commenting-out the other function calls, and providing a dummy typedef for context, of course), the compiler would complain about a missing function. For each new type I add, I am reminded to add a handler when I recompile this module. So the X-macro helps to guarantee that parallel structures remain intact even as the project grows. Edit: This answer has raised my reputation 50%. So here's a little more. This example shows the packing of arbitrary code fragments into the X-"record". I eventually abandoned this branch of the project and did not use this strategy in later designs (and not for want of trying). It became unweildy, somehow. Indeed the macro is named X6 because at one point there were 6 arguments, but I got tired of changing the macro name.
One big problem was the printf format strings. While it looks cool, it's just hocus pocus. Since it's only used in one function, overuse of the macro actually separated information that should be together; and it makes the function unreadable by itself. The obfuscation is doubly unfortunate in a debugging function like this one.
So don't get carried away. Like I did. |
||||
|
|
|
In the |
|||
|
|