vote up 0 vote down star

I need to write a DLL (using Delphi) which is dynamically loaded into delphi applications and makes RTTI queries (typical operation is to obtain string values for control properties). The classic problem is that passing strings (and objects) between application and DLL is problematic due to different memory managers used in both (this might lead to memory issues, e.g. DLL's memory manager would try to free the memory allocated by Application's memory manager).

Is there a way to set DLL's memory manager to application's memory manager in a way that would not depend on delphi version? Any thoughts?

flag
1  
Even if there is such a way you will have different problems later on, like for example with the the layout of Ansi strings that changed from Delphi 2007 to Delphi 2009. – mghie Aug 30 at 6:04
And the field that has been added to tobject in D2009 might also cause problems. – Marco van de Voort Aug 30 at 9:24
What is AUT's memory manager? I can't find any references to it on Google. – dangph Aug 31 at 15:59
AUT == Application under test? – mghie Aug 31 at 16:15
correct, edited in main question – Andrey Sep 1 at 5:38

3 Answers

vote up 5 vote down

Use the same memory manager for your application and your DLLs.

For recent version of Delphi that includes the new FastMM memory manager, use SimpleShareMem as the 1st unit in both your application and the DLL projects.

Or download the full FastMM4 from SourceForge, set the Flags in FastMM4Options.Inc (ShareMM, ShareMMIfLibrary, AttemptToUseSharedMM) and put FastMM4 as the 1st unit in both the application and the DLLs projects.

link|flag
2  
sorry, but you've answered some other question, not mine ;) – Andrey Aug 31 at 14:41
vote up 1 vote down

Another approach, would be to use COM. It would not be specific to a version of Delphi, but would require you to create and implement a com interface in your main application which provided the necessary services to your DLL. After you loaded your DLL you would then pass the interface reference to the DLL and use it instead. The other advantage of this approach is that any language that can create DLL files and use com interfaces would be able to act as a plugin. Of course Delphi would be the tool of choice, mainly because it makes both requirements painless.

I am not sure what RTTI calls your making from your DLL, but the best place for those are inside your application to avoid any problems in translation that can occur between Delphi versions when there is a compiler mismatch between dll and executable.

link|flag
vote up 0 vote down

Here's a nice article that has some recommendations:

http://www.codexterity.com/memmgr.htm

I also found this:

http://sourceforge.net/projects/fastmm/

I haven't tried either of the libraries they recommend. It might get you version independence, it might not. If you're wanting to distribute the DLL and support different Delphi versions, that might be problematic. One option would be to compile a version for several of the major releases.

Note: It's unclear when FastSharemem was last updated; it may be obsolete.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.