Jump to content

David Heffernan

Members
  • Content Count

    3527
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by David Heffernan

  1. David Heffernan

    Accessing the memory of a Python List

    As I read the documentation, I think you are right. Well done. On the home straight now. As I said, this is fundamentally a numpy issue. No doubt a numpy expert would have been aware of this.
  2. David Heffernan

    Accessing the memory of a Python List

    No. Python buffer API gives you access to the internal buffer of Python objects. Pass that to Delphi and have your delphi code populate it.
  3. David Heffernan

    Accessing the memory of a Python List

    It seems odd to me that you won't use the solution that I outlined above which is known to work. But if you won't entertain that then you are probably asking in the wrong place. Because what you are asking is really a numpy question. I'd ask the question on SO and tag it python and numpy. Doesn't matter at all that the array is from Delphi. It's just an array of double.
  4. David Heffernan

    Accessing the memory of a Python List

    You want to do more than this don't you. You want to use numpy methods with this shared data. Is that correct?
  5. David Heffernan

    Accessing the memory of a Python List

    What @fjames wants to do in Python is to use numpy without copying data between Delphi and Python. Are you aware of a way to do this with numpy that I have missed?
  6. David Heffernan

    Accessing the memory of a Python List

    I don't think there's an easy way to get numpy to use your raw array memory. My initial suggestion, I suspect, is the only tractable way to do this without copying.
  7. David Heffernan

    Reading fields with different lenghts

    Beyond the compilation error which is just a typo, pointless to zeroise the record and then write over those zeros.
  8. David Heffernan

    Accessing the memory of a Python List

    Something can't be both a Delphi array and a numpy array. You should do what in said. Work with a numpy array's buffer. You'll access that as a pointer in Delphi. Use pointer math.
  9. David Heffernan

    Accessing the memory of a Python List

    If you want to work with numpy, and minimise copying, then you create a numpy ndarray array object and use the buffer protocol to gain access to the object's internal buffer. Do all your work in Delphi using that internal buffer.
  10. David Heffernan

    Reading fields with different lenghts

    If the fields are at known, fixed positions then you can read them directly. If not then you need to parse the data.
  11. David Heffernan

    IOTAProcess.ReadProcessMemory / .WriteProcessMemory

    Seems unlikely. The winapi functions return a BOOL and call SetLastError. HRESULT seems very implausible.
  12. David Heffernan

    IOTAProcess.ReadProcessMemory / .WriteProcessMemory

    That's called returning a value through a parameter. If you look at this function, what else could these integer return values hold?
  13. David Heffernan

    function reference feature for Delphi source code

    By output I mean what is produced by the compiler.
  14. David Heffernan

    function reference feature for Delphi source code

    I don't think so. I think that you don't seem to understand the requirement. You certainly can't achieve the functionality shown in the original post from a native executable file (like the ones that Delphi produce).
  15. David Heffernan

    function reference feature for Delphi source code

    A map file doesn't list functions calls. You can't map the graph of function calls from a map file. Parsing isn't enough. You also need to interpret the tokens that the parser emits, using the syntax of the language. For sure you need a parser. But it's not enough. You need more.
  16. David Heffernan

    function reference feature for Delphi source code

    No. You need way more than a map file to find all the incoming references to a function. This won't tell you the information either.
  17. David Heffernan

    function reference feature for Delphi source code

    grep is useless for this purpose. This functionality in VS works because the tooling is able to compile the code and understand all the references from the output of that compilation. A naive text match using grep will give nothing whatsoever of value.
  18. David Heffernan

    Common callback functions, or not?

    No. That makes no sense. Anonymous methods are just procedural types with variable capture.
  19. David Heffernan

    Using the New Edge browser control

    How would RAM be wasted?
  20. David Heffernan

    IPropertyStore

    You don't need to call Release in Delphi code. The compiler manages that for you.
  21. Absolutely not. Some UInt64 values can never be returned and the performance will be poor.
  22. What will it take for Delphi programmers to give up on the idea that strings and byte arrays are the same thing!
  23. Random returns 32 bits of randomness, why only use 16 of them? In other words, can't you do this with two calls to Random rather than four. Furthermore, Random is a pretty low grade PRNG. Depending on what you intend to use this for, you may want to use a better PRNG.
  24. These helpers are often just copied from .net, and .net strings are immutable. Here is the .net property: https://docs.microsoft.com/en-us/dotnet/api/system.string.chars?view=netcore-3.1
  25. David Heffernan

    Call a D7 dll from C#

    What calling convention is the function? If it is register then that is a problem. Make sure it is stdcall. A websearch for pinvoke will tell you how to call this function.
×