I have a struct which looks somewhat like this:
struct Data
{
int a;
float b;
char *c;
int (*read)(struct Data *data, int arg1);
int (*write)(struct Data *data, int arg1, int arg2);
int (*update)(struct Data *data, int arg1, int arg2, int arg3);
int (*erase)(struct Data *data, int arg1);
/* ... */
}
The ...
means that there is bunch of other function pointers smiliar to above (that is, they all return an int and take pointer to Data as first argument, but other arguments may differ).
Let's say there are 20 function pointers total. In a special function DataInit()
, I assign functions to them, like this:
Data->read = readA;
Data->write = writeA;
/* readA() and writeA() are functions defined elsewhere in the code, with argument lists same as corresponding function pointers */
Now I have to do the same for another object of type Data, which differs in a way that it's "read-only"; it basically means that from those 20 function pointers 15 has to be assigned such that after invoking them they should return error code NOT_SUPPORTED.
The rest stay the same (for example, readA()
is assigned to function pointer (*read
) like above).
I was wondering if there's a way to do it without implementing a function for each pointer (for example, updateB()
that takes three arguments and its body is just return NOT_SUPPORTED
). Unfortunately, I cannot just set them to NULL
.
I was thinking about preprocessor macros but it's black magic to me, honestly.
I don't know whether my suggestion is legal or not, but I want to suggest this:
And there might be no problem if your compiler uses cdecl calling convention, where the number of argument doesn't affect on the caller.