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?

link|improve this question

79% accept rate
What prevents you from calling memory management functions indirectly, through function pointers? You can make them point to the suitable functions at run time if you want to. – Alex Jan 5 at 9:37
@Alex: The memory management routines of the core library are hidden to the outside world. Memory is allocated/deallocated when a function in the API is called. Hmmm, now theres an idea. Maybe, I can change the existing functions to variadic ones that check which mem funcs to use .. defaulting to std funcs if not specified. That's a heck of a lot of work though, with almost 1k functions, I'd rather not go down this path (at least not in the short term). – Homunculus Reticulli Jan 5 at 9:55
@Homunculus Reticulli even with 1k functions, it's just a search & replace (i.e. you replace all your calloc/malloc/realloc calls with e.g. my_calloc/my_malloc , you declare my_calloc etc. as a function pointer. Your library have to detect if it's running inside postgres, and initialize the pointers accordingly. – nos Jan 5 at 15:03
@nos: this definitely sounds like a more practical solution. Could you elaborate a little more on this part: "Your library have to detect if it's running inside postgres, and initialize the pointers accordingly."? I'm not sure I understand what you mean (specifically, how the library would detect if its running inside postgres) - a snippet would be useful to clarify the mechanism you describe. – Homunculus Reticulli Jan 5 at 15:44
Maybe the simplest way would be, on entry through the postgresql extension API, push the postgresql allocation routines into the pointers, and then on exit restore the original values. At least you don't have to deal with multiple threads so can just do this globally. – araqnid Jan 5 at 16:06
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.