-
Content Count
3701 -
Joined
-
Last visited
-
Days Won
185
Everything posted by David Heffernan
-
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.
-
Reading fields with different lenghts
David Heffernan replied to AndrewHoward's topic in Delphi IDE and APIs
If the fields are at known, fixed positions then you can read them directly. If not then you need to parse the data. -
IOTAProcess.ReadProcessMemory / .WriteProcessMemory
David Heffernan replied to dummzeuch's topic in Delphi IDE and APIs
Seems unlikely. The winapi functions return a BOOL and call SetLastError. HRESULT seems very implausible. -
IOTAProcess.ReadProcessMemory / .WriteProcessMemory
David Heffernan replied to dummzeuch's topic in Delphi IDE and APIs
That's called returning a value through a parameter. If you look at this function, what else could these integer return values hold? -
function reference feature for Delphi source code
David Heffernan replied to Nasreddine's topic in GExperts
By output I mean what is produced by the compiler. -
function reference feature for Delphi source code
David Heffernan replied to Nasreddine's topic in GExperts
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). -
function reference feature for Delphi source code
David Heffernan replied to Nasreddine's topic in GExperts
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. -
function reference feature for Delphi source code
David Heffernan replied to Nasreddine's topic in GExperts
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. -
function reference feature for Delphi source code
David Heffernan replied to Nasreddine's topic in GExperts
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. -
Common callback functions, or not?
David Heffernan replied to Mike Torrettinni's topic in RTL and Delphi Object Pascal
No. That makes no sense. Anonymous methods are just procedural types with variable capture. -
How would RAM be wasted?
-
You don't need to call Release in Delphi code. The compiler manages that for you.
-
Random unsigned 64 bit integers
David Heffernan replied to julkas's topic in Algorithms, Data Structures and Class Design
Absolutely not. Some UInt64 values can never be returned and the performance will be poor. -
Is the missing System.TStringHelper SetChars in Chars property on purpose ?
David Heffernan replied to Rollo62's topic in RTL and Delphi Object Pascal
What will it take for Delphi programmers to give up on the idea that strings and byte arrays are the same thing! -
Random unsigned 64 bit integers
David Heffernan replied to julkas's topic in Algorithms, Data Structures and Class Design
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. -
Is the missing System.TStringHelper SetChars in Chars property on purpose ?
David Heffernan replied to Rollo62's topic in RTL and Delphi Object Pascal
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 -
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.
-
Range checking in library code?
David Heffernan replied to Stefan Glienke's topic in Algorithms, Data Structures and Class Design
Conceptually a list class is the same as an array. For sure it has extra convenience functionality, but it is still a random access array. So my philosophy is that consistency is achieved by having lists match arrays. I'd have the range checks conditional on RANGECHECKS. Indeed that is how I do it in my personal collection library. -
IFileOperation recursion happens when set not to
David Heffernan replied to RTollison's topic in General Help
You have to enumerate all the files and copy them. Put these files into a double null terminated list. COM should not be initialised here. It needs to be initialised by the owner of the thread. -
What is the best way to split off a new project?
David Heffernan replied to Jud's topic in General Help
I have a unit with 53kloc (hangs head in shame) -
What is the best way to split off a new project?
David Heffernan replied to Jud's topic in General Help
This is a branch or a fork in your SCM system. If you aren't using SCM then that's your problem right there. Solve that problem first. -
Organizing enums
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Don't think so https://en.cppreference.com/w/cpp/language/enum -
Organizing enums
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
That's what scoped enums are meant for -
Organizing enums
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
This is exactly the issue that scoped enums solves already. -
Organizing enums
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
That's XE7. It seems to me to be folly to design your code based on an IDE tooling issue, and especially one which is soon to be resolved. Further, the issue at stake here, as always when coding, is far less about the experience when writing code, as the experience when reading code. It's not worth it to reduce the readability of your code to give a minor easing to your experience when entering the code.