Results 1 to 5 of 5

Thread: Delphi AnsiString memory handling

  1. #1
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Delphi AnsiString memory handling

    I think I've got Delphi module development working with thinBasic strings. As you know thinBasic uses OLE32 strings while Delphi has many different string types but not OLE32 strings. Delphi AnsiStrings are the one that more a re closed to OLE32 but they differ in 4 bytes (number of reference count).

    I need a confirmation I'm not able to find on the web, maybe too technical.

    Anyhow, this is the problem:
    Delphi AnsiStrings are in reality e pointer (p) to a DWord (pDW) that stores a pointer to a memory buffer (buff).
    Buff than contains 2 DWORDs followed by the real string. The 2 DWORDs numbers are used for storing real string len plus number of reference to the string (number of pointers pointing to the same string)

    I managed the whoole process in this way and it seems working fine both for getting and receiving string in/out from Delphi modules. And with strings of any len.

    I would like to find a confirmation on some technical paper from Borland or from other sources.
    If anyone have somethink, please let me know.

    Thanks a lot
    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  2. #2
    thinBasic MVPs kryton9's Avatar
    Join Date
    Nov 2006
    Location
    Naples, Florida & Duluth, Georgia
    Age
    67
    Posts
    3,869
    Rep Power
    404

    Re: Delphi AnsiString memory handling

    Eros, I don't know if you saw my other posts, but by checking some options on the compiler and linker, Both Petr and I got our code to work with strings. Their pchar is the way from all I read that Borland handles ole32 strings. I think that info is on the coding monkeys thinbasic thread. if you need the link, I can look it up, don't have it off hand.
    Acer Notebook: Win 10 Home 64 Bit, Core i7-4702MQ @ 2.2Ghz, 12 GB RAM, nVidia GTX 760M and Intel HD 4600
    Raspberry Pi 3: Raspbian OS use for Home Samba Server and Test HTTP Server

  3. #3
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: Delphi AnsiString memory handling

    Yes I saw it but pChar solve just 50% of the problem, the returning string.

    In original Delphy code made by Petr there is no parsing of script strings and no string manipulation inside Delphi function. It was just returning a constant string.

    I worked on parsing string from script developing a new special thinCore.dll exported function called thinBasic_ParseString_Delphi able to pass from script to Delphi modules any string, dynamic I mean.

    I'm now working on returning strings, again dynamic and not pChar (that is NULL terminated) but I thing I will give up on that because to do that Delphi needs to be dependant from an external module.

    Ciao
    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  4. #4
    thinBasic author ErosOlmi's Avatar
    Join Date
    Sep 2004
    Location
    Milan - Italy
    Age
    57
    Posts
    8,777
    Rep Power
    10

    Re: Delphi AnsiString memory handling

    Also, there is no need to include debug info from the linker. If including debug info solve some GPF problems there is for sure a problem to solve. Including debug info in compiler programs completelly mess the applications introducing a lot of compiled code just to be able to handle a debugger session.

    In my experiment Delphi dll is about 22Kb and not 186Kb as with debug info inside. But it is not just a matter of size (that is not a big problem). I want to understand which is the best road to go.

    Thanks a lot
    Eros
    www.thinbasic.com | www.thinbasic.com/community/ | help.thinbasic.com
    Windows 10 Pro for Workstations 64bit - 32 GB - Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz - NVIDIA Quadro RTX 3000

  5. #5
    thinBasic MVPs kryton9's Avatar
    Join Date
    Nov 2006
    Location
    Naples, Florida & Duluth, Georgia
    Age
    67
    Posts
    3,869
    Rep Power
    404

    Re: Delphi AnsiString memory handling

    Well this all beyond my knowledge, I just know that by trying every option I got it to work, but I didn't care for all the debug info in there as it made the files bigger and from what I read, code with debug info is a lot slower than optimized code with debug info off.

    I don't know how you know all of this stuff. I try to read up on it, but it is very confusing. Good luck!!
    Acer Notebook: Win 10 Home 64 Bit, Core i7-4702MQ @ 2.2Ghz, 12 GB RAM, nVidia GTX 760M and Intel HD 4600
    Raspberry Pi 3: Raspbian OS use for Home Samba Server and Test HTTP Server

Similar Threads

  1. Delphi resources
    By Michael Hartlef in forum Turbo Delphi language SDK development
    Replies: 4
    Last Post: 16-12-2006, 21:45
  2. Delphi SDK Download
    By Petr Schreiber in forum Turbo Delphi language SDK development
    Replies: 1
    Last Post: 15-02-2006, 11:37

Members who have read this thread: 0

There are no members to list at the moment.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •