The title may not be very clear so its perhaps best to explain what I'm trying to do.
I have a (C) shared library which is used by several of my applications. I now want to use the functions in my shared library in PostgreSQL, so I am writing an extension library for PostgreSQL (v8.4).
To prevent duplicity of code (following the DRY philosophy), I want the extension library to be simply a thin API around the core shared library I described above. Therein lies the issue.
In my core library, I make MANY calls to memory mgmt funcs (mostly calloc and realloc). PostgreSQL on the other hand, has its own memory management funcs like palloc, pfree etc.
Ideally, I want the PG extension lib to call into the core lib. When PG calls are executing, I want the core library to be using the postgresql mem functions, and when my other applications are invoking functions, I want the core library to be using the standard C mem functions.
I don't know if this is possible (it would certainly save me having to duplicate the entire existing code for the core library). I think adding some defines in the header file of the core library like so:
#ifdef BUILDING_PG_XTLIB
#define calloc palloc0
#define realloc prealloc
#define free pfree
#endif
and then recompiling the core library. However upon later reflection, I realize that this solves the problem at compile time, not run time (unless I'm mistaken) - so I've run out of ideas on how to tackle this problem.
Can this be done?. If so, how?