User PatrickvL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T20:51:16Z http://stackoverflow.com/feeds/user/12170 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1528311/can-i-generate-a-rsm-file-myself-for-the-delphi-debugger-to-use 5 Can I generate a .RSM file myself for the Delphi Debugger to use? PatrickvL 2009-10-06T21:55:36Z 2009-11-04T23:32:27Z <p>I wish to debug executables for which I have no code, using the Delphi Debugger. </p> <p>WinDBG and other debuggers are no option in this case, as the given executables all call into my DLL, for which I <em>do</em> have code, obviously. My ultimate goal is, to see a stack-trace right down into the functions of the running executable.</p> <p>I do have symbol-information for these executables, so I was hoping I could write my own .RSM files for this purpose. Will this work? Will the Delphi debugger pick up any .RSM file that it can find? And would that mean that other debug-information should be left out?</p> <p>Do note that there are lots of executables that I need to debug, and for all of them I detect the symbols inside them myself, using a moderately advanced function-detection algorithm. So my main problem mainly is how to write .RSM files. For this I have to know the structure of the .RSM file-format. Is there documentation or example code available somewhere that shows me how to create such a file?</p> <p>Any help is appreciated!</p> <p>PS: Might you be wondering why I'm doing all this : It's all related to <a href="http://sourceforge.net/projects/dxbx/" rel="nofollow">Dxbx</a> - an open-source Xbox1 emulator. See sourceforce for details. New members are welcome!</p> http://stackoverflow.com/questions/1587777/what-kinds-of-operator-overloads-does-delphi-support 3 What kinds of operator overloads does Delphi support? PatrickvL 2009-10-19T09:42:25Z 2009-10-20T08:13:23Z <p>I wonder what sort of operator overloads are possible (and with what version of Delphi)? Thanks to <a href="http://hallvards.blogspot.com/2007/03/dn4dp5-redefining-operators.html" rel="nofollow">Hallvard's great write-up on operator overloading</a>, I know of :</p> <ul> <li>Add(Left, Right: Type): Type (for the '+' operator) </li> <li>Subtract(Left, Right: Type): Type (for the '-' operator)</li> <li>Multiply(Left, Right: Type): Type (for the '*' operator)</li> <li>Divide(Left, Right: Type): Type (for the '/' operator)</li> <li>Implicit(aValue: Type): AnotherType and</li> <li>Implicit(aValue: AnotherType): Type (for implicit assignments : a := b)</li> <li>Explicit(aValue: Type): AnotherType and</li> <li>Explicit(aValue: AnotherType): Type (for explicit assignmetns of 'casts' : a := Type(b)</li> </ul> <p>However, what I don't know are the names for the '=', '&lt;=', '&lt;', '&lt;>', '>' and '>=' operators. Do these exist, and from what Delphi version can I use these? </p> <p>PS: I still use Delphi 2009 at the moment, so I would have another strong upgrade-argument if 2010 offers these ;-)</p> http://stackoverflow.com/questions/819482/what-standard-does-bde-use-for-sch-schema-files 2 What standard does BDE use for .sch schema files? PatrickvL 2009-05-04T09:42:27Z 2009-10-19T11:36:25Z <p>I was wondering - is there a standard (like a RFC) for the .sch schema file format the BDE uses?</p> <p>The format is described <a href="http://wall.riscom.net/books/delphi/del%5Ftis/TI2844.html" rel="nofollow">here</a> and <a href="http://www.href.com/pub/source/D1AsciiDriver.txt" rel="nofollow">here</a>. It seems based on <a href="http://msdn.microsoft.com/en-us/library/ms709353.aspx" rel="nofollow">this Microsoft format</a>, but it's not quite the same.</p> <h2>Example 1 - VARYING format file </h2> <p>CUSTOMER.SCH:</p> <pre><code>[CUSTOMER] Filetype=VARYING Delimiter=" Separator=, CharSet=ascii Field1=Customer No,Float,20,04,00 Field2=Name,Char,30,00,20 Field3=Phone,Char,15,00,145 Field4=First Contact,Date,11,00,160 </code></pre> <p>CUSTOMER.TXT:</p> <pre><code>1221.0000,"Kauai Dive Shoppe","808-555-0269",04/03/1994 1231.0000,"Unisco","809-555-3915",02/28/1994 1351.0000,"Sight Diver","357-6-876708",04/12/1994 1354.0000,"Cayman Divers World Unlimited","809-555-8576",04/17/1994 1356.0000,"Tom Sawyer Diving Centre","809-555-7281",04/20/1994 </code></pre> <h2>Example 2 - FIXED format file</h2> <p>CUSTOMER.SCH:</p> <pre><code>[CUSTOMER] Filetype=Fixed CharSet=ascii Field1=Customer No,Float,20,04,00 Field2=Name,Char,30,00,20 Field3=Phone,Char,15,00,145 Field4=First Contact,Date,08,00,160 </code></pre> <p>CUSTOMER.TXT:</p> <pre><code> 1221.0000Kauai Dive Shoppe 808-555-0269 04/03/94 1231.0000Unisco 809-555-3915 02/28/94 1351.0000Sight Diver 357-6-876708 04/12/94 1354.0000Cayman Divers World Unlimited 809-555-8576 04/17/94 1356.0000Tom Sawyer Diving Centre 809-555-7281 04/20/94 </code></pre> <p>I'm especially interested in the possible argument-values for 'Filetype', 'Delimiter', 'Separator' and 'CharSet'. I've searched the internet using various terms ('RFC', 'schema', 'filetype', 'standard', etc), but came up blank... </p> <p>Things I would like to know specifically :</p> <ul> <li>What encoding(s) can be used for the .sch file itself? (This is relevant for correctly interpreting the fieldnames and other configurable characters.)</li> <li>How should I specify non-printable Separator and Delimiter characters, for example an Ansi control-character like "Unit Separator" ($1F) or even a simple "Tab" ($09)? (Given the age of the format I think I should use Caret notation, but it'd just like to be sure.)</li> <li>How can I specify to not-use a Delimiter? Should I specifiy an empty value, or leave the setting out altogether?</li> </ul> <p>TIA</p> <p>PS: Note, I'm not using the BDE itself - it's just these schema files that I have to generate and read correctly.</p> http://stackoverflow.com/questions/1587777/what-kinds-of-operator-overloads-does-delphi-support/1587785#1587785 4 Answer by PatrickvL for What kinds of operator overloads does Delphi support? PatrickvL 2009-10-19T09:43:53Z 2009-10-19T09:43:53Z <p>Actually, I found the answer to this myself, but kept the question as I can imagine people will search for this information regularly on stackoverflow;</p> <p>The official description on operator overloaders can be found here : <a href="http://docwiki.embarcadero.com/RADStudio/en/Operator%5FOverloading" rel="nofollow">http://docwiki.embarcadero.com/RADStudio/en/Operator%5FOverloading</a></p> <p>Mainly, the ones I was looking for are named:</p> <ul> <li>Equal, for '=' comparison : Equal(a: type; b: type) : Boolean;</li> <li>NotEqual, for '&lt;>' comparison : NotEqual(a: type; b: type): Boolean;</li> <li>GreaterThan, for '>' comparison : GreaterThan(a: type; b: type) Boolean;</li> <li>GreaterThanOrEqual, for '>=' comparison : GreaterThanOrEqual(a: type; b: type): resultType;</li> <li>LessThan, for '&lt;' comparison : LessThan(a: type; b: type): resultType;</li> <li>LessThanOrEqual, for '&lt;=' comparison : LessThanOrEqual(a: type; b: type): resultType;</li> </ul> http://stackoverflow.com/questions/1421445/data-storage-with-awe-memory-via-collections-lists-other-containers/1534469#1534469 1 Answer by PatrickvL for Data Storage with AWE Memory via collections / lists / other containers PatrickvL 2009-10-07T21:57:28Z 2009-10-07T21:57:28Z <p>I'm going to be a complete dork, and tell you that I've made something even more advanced than what you're describing.... at work. So it's all closed source I'm afraid. Never saw anything like this anywhere. We combine VM, AWE, MMF and (soon) 32&lt;>64 bit IPC into one big, mean data-processing machine, addressing up to 64 GB of memory, while processing hundreds of datasets, tens of GBs <em>each</em>.</p> <p>But I can give you a few tips : AWE view-swapping is rather slow, because it forcibly pauses all running threads during the swap. Therefor, choose your window-sizes wisely (the smaller, the faster the swap - but call-overhead is lower with larger sizes ofcourse). We've settled with AWE view-sizes equal to the Windows default page-size (4 KB), but only because random-access performs best that way. Lineair data-access could run faster with bigger view-sizes. </p> <p>Each view can map to any part of the allocated AWE memory, so one thing that can help is mapping only those pages into a view that need to be accessed - and try to save on unnessecary view-swaps (a priority-queue comes to mind). </p> <p>Also, there should be a registration-mechanism somewhere in your design that handles the linkage between a view and the AWE memory behind this. And this better be thread-safe!</p> <p>As for general usage : No, this doesn't fit in with regular Delphi classes. You should switch over to another concept altogether - and base your data-structures on that.</p> <p>Anyway, good luck mate! You're going to need it... ;-)</p> http://stackoverflow.com/questions/467391/what-is-the-best-way-to-stop-an-application-being-copied-and-used-without-the-own/1445134#1445134 0 Answer by PatrickvL for What is the best way to stop an application being copied and used without the owner’s permission? PatrickvL 2009-09-18T15:04:47Z 2009-09-18T15:04:47Z <p>There's another thing I haven't seen mentioned yet : You could add loads of settings to the applications' configuration file, and start with ridiculous defaults. Then do the installation &amp; configuration personally, so no-one but you is able to figure out how everything should be set. This can be a mayor put-down for people that are just trying out if a copy is enough. (Be sure to add settings that depend on all sorts of system-settings, like OS-version related DLL-versions that should be loaded, etc). Not very user-friendly tho ;-)</p> http://stackoverflow.com/questions/1103706/how-to-detect-specific-delphi-builds 1 How to detect specific Delphi builds? PatrickvL 2009-07-09T12:58:24Z 2009-07-09T15:20:15Z <p>This is related to <a href="http://stackoverflow.com/questions/750801/complete-list-of-defines-for-delphi-versions">another Delphi-version question</a> but still different;</p> <p>I'm looking for a way to detect the service-pack (or build number) of the Delphi compiler that's compiling my code. The <a href="https://jcl.svn.sourceforge.net/svnroot/jcl/trunk/jcl/source/include/jedi.inc" rel="nofollow">jedi.inc</a> is nice, but it doesn't tell me the exact version. (I can't use the SUPPORTS_* defines in there either, as those are version-related too)</p> <p>I need this, because some bugs are present in older versions (in this case, it's a <a href="http://qc.codegear.com/wc/qcmain.aspx?d=68123" rel="nofollow">_ValLong bug in Delphi 2009</a>) that's fixed in a later service-pack (Delphi 2009 service pack 3 in this case).</p> <p>Currently I have all kinds of checks in my code, like this :</p> <blockquote> <p>{$IFDEF BUG_QC_68123}</p> </blockquote> <p>But I can't just say this in my main include file :</p> <pre><code>{$IFDEF DELPHI2009_UP} {$DEFINE BUG_QC_68123} {$ENDIF} </code></pre> <p>...As this would miss the fact that D2009SP3 and later don't have this bug anymore.</p> <p>Any ideas?</p> <p>PS: This will probably also apply to older (and newer) versions of Delphi, so any library- and/or component-vendor will have an interest in this too, I presume.</p> http://stackoverflow.com/questions/1005010/most-efficient-unicode-hash-function-for-delphi-2009/1024842#1024842 3 Answer by PatrickvL for Most Efficient Unicode Hash Function for Delphi 2009 PatrickvL 2009-06-21T22:01:39Z 2009-06-21T22:01:39Z <p>We held a nice little contest a while back, improving on a hash called "<a href="http://en.wikipedia.org/wiki/MurmurHash" rel="nofollow">MurmurHash</a>"; Quoting Wikipedia :</p> <blockquote> <p>It is noted for being exceptionally fast, often two to four times faster than comparable algorithms such as FNV, Jenkins' lookup3 and Hsieh's SuperFastHash, with excellent distribution, avalanche behavior and overall collision resistance.</p> </blockquote> <p>You can download the submissions for that contest <a href="https://forums.embarcadero.com/thread.jspa?messageID=99863&amp;#99863" rel="nofollow">here</a>.</p> <p>One thing we learned was, that sometimes optimizations don't improve results on every CPU. My contribution was tweaked to run good on AMD, but performed not-so-good on Intel. The other way around happened too (Intel optimizations running sub-optimal on AMD).</p> <p>So, as Talljoe said : measure your optimizations, as they might actually be detrimental to your performance!</p> <p>As a side-note: I don't agree with Lee; Delphi is a nice compiler and all, but sometimes I see it generating code that just isn't optimal (even when compiling with all optimizations turned on). For example, I regularly see it clearing registers that had already been cleared just two or three statements before. Or EAX is put into EBX, only to have it shifted and put back into EAX. That sort of thing. I'm just guessing here, but hand-optimizing that sort of code will surely help in tight spots.</p> <p>Above all though; First analyze your bottleneck, then see if a better algorithm or datastructure can be used, then try to optimize the pascal code (like: reduce memory-allocations, avoid reference counting, finalization, try/finally, try/except blocks, etc), and then, only as a final resort, optimize the assembly code.</p> http://stackoverflow.com/questions/1021666/how-do-you-set-the-result-value/1024594#1024594 1 Answer by PatrickvL for How do you set the Result value? PatrickvL 2009-06-21T19:34:52Z 2009-06-21T19:34:52Z <p>I like to avoid unnecessary assignments, so I tend to use either</p> <pre><code>if eval then begin // yada yada Result := True end else Result := False; </code></pre> <p>or, when there's no surrounding code, this :</p> <pre><code>Result := eval; </code></pre> <p>One other thing to keep in mind though, is that branching in time-critical code can have a negative impact on performance. In some situations, updating values multiple times can be faster, if it can be combined with branch-prevention. Here's an example :</p> <pre><code>for i := 0 to Length(aArray) - 1 do if Assigned(aArray[i]) then Inc(AssignedCounter); </code></pre> <p>This code could run faster if written like this :</p> <pre><code>for i := 0 to Length(aArray) - 1 do Inc(AssignedCounter, Ord(Assigned(aArray[i]))); </code></pre> http://stackoverflow.com/questions/1024515/delphi-is-it-necessary-to-convert-string-to-widestring/1024572#1024572 4 Answer by PatrickvL for Delphi: Is it necessary to convert string to WideString? PatrickvL 2009-06-21T19:22:10Z 2009-06-21T19:22:10Z <p>There might be an ANSI variant for your function to (I haven't checked). Most Wide API's are available as an ANSI version too, just change the W suffix to an A, and you're set. Windows does the back-and-forth conversion transparantly for you in that case.</p> <p>PS: Here's an article describing the lack of StrCmpLogicalA : <a href="http://blogs.msdn.com/joshpoley/archive/2008/04/28/strcmplogicala.aspx" rel="nofollow">http://blogs.msdn.com/joshpoley/archive/2008/04/28/strcmplogicala.aspx</a></p> http://stackoverflow.com/questions/997795/how-are-the-basic-delphi-types-related-to-each-other 4 How are the basic Delphi types related to each other? PatrickvL 2009-06-15T19:05:02Z 2009-06-21T17:09:15Z <p>Delphi has long supported a few basic numeric types and I was wondering how they are related to each other.</p> <p>In Delphi 2007 I found these declarations (some are conflicting, some are mere aliasses) :</p> <p>Types.pas:</p> <pre><code>DWORD = LongWord; Largeint = Int64; </code></pre> <p>getmem.inc:</p> <pre><code>DWORD = Integer; </code></pre> <p>Windows.pas:</p> <pre><code>DWORD = Types.DWORD; SHORT = Smallint; UINT = LongWord; ULONG = Cardinal; LONGLONG = Int64; TLargeInteger = Int64; ULONGLONG = UInt64; </code></pre> <p>This leads me into thinking the base signed numeric types are SmallInt, Integer and Int64. Unsigned, there's Byte, WORD and UInt64. But what is the difference between Cardinal and LongWord? (By the way, what's the original and intended casing for these types?)</p> <p>And is there a type for signed 8 bit integers (Int8)?</p> <pre><code>// Int8 = ?unknown?; UInt8 = Byte; Int16 = SmallInt; UInt16 = Word; Int32 = Integer; UInt32 = LongWord; // Int64 already exists // UInt64 already exists </code></pre> <p>Lastly, how should I define Int and UInt, especially with regard to C/C++ compatibility and a future switch to other platforms (possibly also 64 bit)? (A related question is, of course, how will the various numeric types be defined in 64-bit Delphi?)</p> http://stackoverflow.com/questions/985893/what-are-sparse-voxel-octrees/994926#994926 0 Answer by PatrickvL for what are sparse voxel octrees? PatrickvL 2009-06-15T07:50:41Z 2009-06-15T07:50:41Z <p>I'm interested in the details too. The most interesting aspect of sparse voxel octrees is the way pointers are ommited somehow, resulting in an astonishing compact datastructure; I read somewhere each voxel takes about 2 or 3 bits on average. That's mighty compact, enabling huge environments to be modelled with unique color&amp;geometry for every square inch of the terrain (or other model).</p> <p>So IMHO the real question is : What datastructure does idTech6 use for "sparse voxel octrees" to reach these data-densities?</p> http://stackoverflow.com/questions/528201/does-delphi-s-region-directive-support-a-default-folded-attribute 0 Does Delphi 's REGION directive support a default 'folded' attribute? PatrickvL 2009-02-09T13:49:25Z 2009-06-06T12:01:35Z <p>I can't seem to find the option to make Delphi collapse a {$REGION}...{$ENDREGION}-block by default (by which I mean : directly after opening a file). Is it actually possible? </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/72983/which-logging-library-is-better 6 Which logging library is better? PatrickvL 2008-09-16T14:34:25Z 2009-04-02T08:59:45Z <p>I was wondering; which logging libraries for Delphi do you prefer?</p> <ul> <li><a href="http://www.raize.com/devtools/codesite/" rel="nofollow">CodeSite</a></li> <li><a href="http://www.gurock.com/products/smartinspect/" rel="nofollow">SmartInspect</a></li> <li><a href="http://log4delphi.sourceforge.net/" rel="nofollow">Log4Delphi</a></li> <li><a href="http://tracetool.sourceforge.net/" rel="nofollow">TraceFormat</a></li> </ul> <p>Please try to add a reasoning why you prefer one over the other if you've used more than one.</p> <p>I'll add suggestions to this question to keep things readable.</p> http://stackoverflow.com/questions/282019/how-to-simulate-bit-fields-in-delphi-records 10 How to simulate bit-fields in Delphi records? PatrickvL 2008-11-11T20:17:53Z 2009-01-20T13:00:37Z <p>I would like to declare a record in Delphi that contains the same layout as it has in C.</p> <p>For those interested : This record is part of a union in the Windows OS's LDT_ENTRY record. (I need to use this record in Delphi because I'm working on an Xbox emulator in Delphi - see project Dxbx on sourceforge).</p> <p>Anyway, the record in question is defined as:</p> <pre><code> struct { DWORD BaseMid : 8; DWORD Type : 5; DWORD Dpl : 2; DWORD Pres : 1; DWORD LimitHi : 4; DWORD Sys : 1; DWORD Reserved_0 : 1; DWORD Default_Big : 1; DWORD Granularity : 1; DWORD BaseHi : 8; } Bits; </code></pre> <p>As far as I know, there are no bit-fields possible in Delphi. I did try this:</p> <pre><code> Bits = record BaseMid: Byte; // 8 bits _Type: 0..31; // 5 bits Dpl: 0..3; // 2 bits Pres: Boolean; // 1 bit LimitHi: 0..15; // 4 bits Sys: Boolean; // 1 bit Reserved_0: Boolean; // 1 bit Default_Big: Boolean; // 1 bit Granularity: Boolean; // 1 bit BaseHi: Byte; // 8 bits end; </code></pre> <p>But alas: it's size becomes 10 bytes, instead of the expected 4. I would like to know how I should declare the record, so that I get a record with the same layout, the same size, and the same members. Preferrably without loads of getter/setters.</p> <p>TIA.</p> http://stackoverflow.com/questions/282019/how-to-simulate-bit-fields-in-delphi-records/282385#282385 8 Answer by PatrickvL for How to simulate bit-fields in Delphi records? PatrickvL 2008-11-11T22:39:52Z 2009-01-20T13:00:37Z <p>Thanks everyone!</p> <p>Based on this information, I reduced this to :</p> <pre><code>RBits = record public BaseMid: BYTE; private Flags: WORD; function GetBits(const aIndex: Integer): Integer; procedure SetBits(const aIndex: Integer; const aValue: Integer); public BaseHi: BYTE; property _Type: Integer index $0005 read GetBits write SetBits; // 5 bits at offset 0 property Dpl: Integer index $0502 read GetBits write SetBits; // 2 bits at offset 5 property Pres: Integer index $0701 read GetBits write SetBits; // 1 bit at offset 7 property LimitHi: Integer index $0804 read GetBits write SetBits; // 4 bits at offset 8 property Sys: Integer index $0C01 read GetBits write SetBits; // 1 bit at offset 12 property Reserved_0: Integer index $0D01 read GetBits write SetBits; // 1 bit at offset 13 property Default_Big: Integer index $0E01 read GetBits write SetBits; // 1 bit at offset 14 property Granularity: Integer index $0F01 read GetBits write SetBits; // 1 bit at offset 15 end; </code></pre> <p>The index is encoded as follows : <code>(BitOffset shl 8) + NrBits</code>. Where 1&lt;=NrBits&lt;=32 and 0&lt;=BitOffset&lt;=31</p> <p>Now, I can get and set these bits as follows :</p> <pre><code>{$OPTIMIZATION ON} {$OVERFLOWCHECKS OFF} function RBits.GetBits(const aIndex: Integer): Integer; var Offset: Integer; NrBits: Integer; Mask: Integer; begin NrBits := aIndex and $FF; Offset := aIndex shr 8; Mask := ((1 shl NrBits) - 1); Result := (Flags shr Offset) and Mask; end; procedure RBits.SetBits(const aIndex: Integer; const aValue: Integer); var Offset: Integer; NrBits: Integer; Mask: Integer; begin NrBits := aIndex and $FF; Offset := aIndex shr 8; Mask := ((1 shl NrBits) - 1); Assert(aValue &lt;= Mask); Flags := (Flags and (not (Mask shl Offset))) or (aValue shl Offset); end; </code></pre> <p>Pretty nifty, don't you think?!?!</p> <p>PS: Rudy Velthuis now included a revised version of this in his excellent <a href="http://rvelthuis.de/articles/articles-convert.html#propertyindex" rel="nofollow">"Pitfalls of converting"-article</a>. </p> http://stackoverflow.com/questions/416049/exe-resource-and-code-reduction/417193#417193 3 Answer by PatrickvL for EXE, Resource and Code Reduction PatrickvL 2009-01-06T16:24:55Z 2009-01-06T16:24:55Z <p>A nice trick to reduce executable size (actually, PE-image size, as this applies to DLL's too), when <a href="http://en.wikipedia.org/wiki/Relocation_(computer_science)" rel="nofollow">relocation</a> is not an issue : </p> <p>Leave the relocation-info out! </p> <p>In Delphi, you could do it like this :</p> <pre><code>// Remove relocation table (generates smaller executables) : // (See http://hallvards.blogspot.com/2006/09/hack12-create-smaller-exe-files.html) {$SetPEFlags 1} // 1 = Windows.IMAGE_FILE_RELOCS_STRIPPED </code></pre> <p>Cheers!</p> http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/417151#417151 0 Answer by PatrickvL for How do I compress multiple files into a single archive with Delphi PatrickvL 2009-01-06T16:16:31Z 2009-01-06T16:16:31Z <p>I'm surprised no-one has mentioned JclCompression yet - it's part of the well-known Jedi Code Library (JCL). Here's a view of the unit itself : <a href="http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup" rel="nofollow">http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup</a></p> <p>Note, it's compatible with 7-zip DLL version 4.64 - newer versions might not be backwards-compatible...</p> http://stackoverflow.com/questions/354940/should-class-helpers-be-used-in-developing-new-code/355274#355274 0 Answer by PatrickvL for Should Class Helpers be used in developing new code? PatrickvL 2008-12-10T06:45:44Z 2008-12-10T06:45:44Z <p>I find myself using them more and more as a design construct.</p> <p>Situations in which I use them :</p> <ul> <li>In a client/server setup, I extend shared base-classes with class helpers to provide server- or client-only functionality.</li> <li>To complement VCL/RTL classes (and other third party code) with handy tooling functions.</li> <li>To work around differences when classes don't share the same inheritance tree (using helpers makes it possible to have have generic Count and Items properties, for example).</li> </ul> <p>In fact, I wish Delphi would accept multiple helpers for the same base class - I've even filed a request for this if I'm remembering correctly.</p> http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work 0 'Exports' naming convention - how does it work? PatrickvL 2008-11-20T22:16:27Z 2008-12-08T19:16:40Z <p>What rules apply to the name that ends up in the exports section of an PE (Portable Executable)? Roughly, I see names starting with an '_' underscore, a '?' question mark or an '@' at-sign. What do those mean, and what about the rest of the name?</p> <p>Also - How can I reverse the naming convention into something more usable?</p> http://stackoverflow.com/questions/335104/is-there-a-program-to-decompile-delphi/336402#336402 1 Answer by PatrickvL for Is there a program to decompile Delphi? PatrickvL 2008-12-03T07:16:32Z 2008-12-03T07:16:32Z <p>Here's a list : <a href="http://delphi.about.com/od/devutilities/a/decompiling_3.htm" rel="nofollow">http://delphi.about.com/od/devutilities/a/decompiling_3.htm</a> (and this page mentions some more : <a href="http://www.program-transformation.org/Transform/DelphiDecompilers" rel="nofollow">http://www.program-transformation.org/Transform/DelphiDecompilers</a> )</p> <p>I've used DeDe on occasion, but it's not really all that powerfull, and it's not up-to-date with current Delphi versions (latest version it supports is Delphi 7 I believe)</p> http://stackoverflow.com/questions/332948/why-is-charinset-faster-than-case-statement/333502#333502 7 Answer by PatrickvL for Why is CharInSet faster than Case statement? PatrickvL 2008-12-02T09:55:53Z 2008-12-02T09:55:53Z <p>Barry, I'd like to point out that your benchmark does not reflect the actual performance of the various methods, because the structure of the implementations differ. Instead, all methods should use a "while True do" construct, to better reflect the impact of the differing ways to do a char-in-set check.</p> <p>Here a replacement for the test-methods (P2 is unchanged, P1 and P3 now use the "while True do" construct) :</p> <pre><code>procedure P1; var cp: PChar; begin cp := PChar(SampleString); while True do if CharInSet(cp^, [#0, ';', '.']) then Break else Inc(cp); end; procedure P2; var cp: PChar; begin cp := PChar(SampleString); while True do case cp^ of '.', #0, ';': Break; else Inc(cp); end; end; procedure P3; var cp: PChar; begin cp := PChar(SampleString); while True do if AnsiChar(cp^) in [#0, ';', '.'] then Break else Inc(cp); end; </code></pre> <p>My workstation gives :</p> <pre><code>CharInSet: 0.099 seconds case stmt: 0.043 seconds set test: 0.043 seconds </code></pre> <p>Which better matches the expected results. To me, it seems using the 'case in' construct doesn't really help. I'm sorry Marco!</p> http://stackoverflow.com/questions/324748/how-can-i-reserve-memory-for-pointer-to-an-array-in-delphi/325251#325251 1 Answer by PatrickvL for How can I reserve memory for pointer to an array in Delphi? PatrickvL 2008-11-28T07:58:02Z 2008-11-28T07:58:02Z <p>Also note that In Delphi variables of a dynamic array type are stored as a pointer (in DotNet-speak you would call this a reference-type).</p> <p>Unless you cast this variable to a pointer, the compiler won't let you do the allocation yourself. You should use SetLength() like lassevk mentioned already.</p> <p>With a multi-dimensional array (like TData), you could set both dimensions in one go, by setting all dimension with one call to SetLength(). This results in a cube-like structure (each dimension has equal length). But it's also possible to give each index within a dimension a different length to it's next dimension. With two dimensions, this is sometimes called a 'jagged' array.</p> <p>To do this, you would write it out like this :</p> <pre><code>SetLength(Data, SizeOfFirstDimension); for i = 0 to SizeOfFirstDimension - 1 do SetLength(Data[i], SizeOfSecondDimensionPerIndex(i)); </code></pre> <p>In this example, I use a function called 'SizeOfSecondDimensionPerIndex' to determine the size of each array in the 2nd dimension, but you could determine this size any way you want.</p> <p>On a side-note, I would advise you to use the 'R'-prefix for record-type definitions. I know this not in any of the major coding-style guides, but if you look at 'P'-prefixes for pointers, 'I'-prefixes for interfaces, 'F'-prefixes for class-fields, 'a'-prefixes for arguments, 'C'-prefixes for constants, 'S'-prefixes for resourcestring's, you can follow this logic and use an 'R'-prefix for records. I know this has helped me to get a better grasp of my code!</p> <p>Good luck!</p> http://stackoverflow.com/questions/264256/what-is-the-best-mime-type-and-extension-to-use-when-exporting-tab-delimited/316623#316623 1 Answer by PatrickvL for What is the best mime-type and extension to use when exporting tab delimited? PatrickvL 2008-11-25T07:52:14Z 2008-11-25T07:52:14Z <p>For tab-delimited files, <a href="http://www.rfc-editor.org/rfc/rfc4180.txt" rel="nofollow">http://www.rfc-editor.org/rfc/rfc4180.txt</a> mentions 'text/tab-delimited-values'.</p> <p>That format is (sparsely) described at <a href="http://www.iana.org/assignments/media-types/text/tab-separated-values" rel="nofollow">http://www.iana.org/assignments/media-types/text/tab-separated-values</a>.</p> <p>More info can be found at : <a href="http://www.cs.tut.fi/~jkorpela/TSV.html" rel="nofollow">http://www.cs.tut.fi/~jkorpela/TSV.html</a></p> <p>I hope this helps?</p> http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work/315639#315639 0 Answer by PatrickvL for 'Exports' naming convention - how does it work? PatrickvL 2008-11-24T21:55:01Z 2008-11-24T21:55:01Z <p>One other thing : Jcl contains yet another very usefull function to decode these symbols. You can find it in JclPeImage; It's called PeUnmangleName - which is an extension of the UndecorateSymbolNameA/W WinAPI.</p> http://stackoverflow.com/questions/307056/exports-naming-convention-how-does-it-work/307074#307074 0 Answer by PatrickvL for 'Exports' naming convention - how does it work? PatrickvL 2008-11-20T22:20:32Z 2008-11-20T22:20:32Z <p>I should have looked a little longer before asking this - as I just found an answer to this:</p> <p>It's called 'name mangling', and here's a link explaning a bit about it : <a href="http://en.wikipedia.org/wiki/Name_mangling" rel="nofollow">http://en.wikipedia.org/wiki/Name_mangling</a></p> <p>My apologies for bothering you; Cheers!</p> http://stackoverflow.com/questions/303515/should-gexperts-functionality-be-incorporated-into-delphi/303574#303574 1 Answer by PatrickvL for Should GExperts Functionality be Incorporated into Delphi? PatrickvL 2008-11-19T22:13:16Z 2008-11-19T22:19:36Z <p>My number one GExpert is Grep Search.</p> <p>Close second is the Procedure List window.</p> <p>Also very handy are the various keyboard shortcuts, and the toolbar embedded in the editor - I have a few buttons on there; like CPU-view, Project Manager and the selection-tools as a dropdown (like sort selection).</p> <p>Sometimes I use the Clipboard History window.</p> <p>And even more rarely the ASCII windows.</p> <p>Everything else I don't touch really.</p> <p>I know the procedure-list could also be found in the structure-pane of Delphi 2009, but somehow the fact that I can press Ctrl+G to get a window with quick filtering and preview capabilities is more productive for me.</p> <p>Same thing for grep - the GExperts' version is way more powerfull than the standard Delphi search function.</p> <p>If these two (and maybe the clipboard history) where embedded in standard Delphi, I probably wouldn't install GExperts anymore.</p> <p>But on the other hand : I do like the fact that these solutions are available as open source - this allowed me for example to add section-filtering to the grep-search, which otherwise wouldn't have been possible for me...</p> http://stackoverflow.com/questions/298373/how-can-a-function-with-varargs-retrieve-the-contents-of-the-stack 5 How can a function with 'varargs' retrieve the contents of the stack? PatrickvL 2008-11-18T10:26:24Z 2008-11-19T15:47:14Z <p>Normally, in Delphi one would declare a function with a variable number of arguments using the 'array of const' method. However, for compatibility with code written in C, there's an much-unknown 'varargs' directive that can be added to a function declaration (I learned this while reading Rudy's excellent '<a href="http://rvelthuis.de/articles/articles-convert.html#varargs" rel="nofollow">Pitfalls of convering</a>' document).</p> <p>As an example, one could have a function in C, declared like this :</p> <pre><code>void printf(const char *fmt, ...) </code></pre> <p>In Delphi, this would become :</p> <pre><code>procedure printf(const fmt: PChar); varargs; </code></pre> <p>My question is : How can I get to the contents of the stack when implementing a method which is defined with the 'varargs' directive?</p> <p>I would expect that some tooling for this exists, like Dephi translations of the va_start(), va_arg() and va_end() functions, but I can't find this anywhere.</p> <p>Please help!</p> <p>PS: Please don't drift off in discussions about the 'why' or the 'array of const' alternative - I need this to write C-like patches for functions inside Xbox games (see the Delphi Xbox emulator project 'Dxbx' on sourceforge for details).</p> http://stackoverflow.com/questions/292717/techniques-for-writing-critical-text-data/293711#293711 0 Answer by PatrickvL for Techniques for writing critical text data PatrickvL 2008-11-16T09:03:57Z 2008-11-16T09:42:45Z <p>I think what you're looking for is the Win32 <a href="http://msdn.microsoft.com/en-us/library/aa363858(VS.85).aspx" rel="nofollow">CreateFile</a> API, with these flags:</p> <p>FILE_FLAG_WRITE_THROUGH : Write operations will not go through any intermediate cache, they will go directly to disk.</p> <p>FILE_FLAG_NO_BUFFERING : The file or device is being opened with no system caching for data reads and writes. This flag does not affect hard disk caching or memory mapped files. There are strict requirements for successfully working with files opened with CreateFile using the FILE_FLAG_NO_BUFFERING flag, for details see File Buffering.</p> http://stackoverflow.com/questions/286628/hooking-a-stacktrace-in-delphi-2009/286749#286749 2 Answer by PatrickvL for Hooking a Stacktrace in Delphi 2009 PatrickvL 2008-11-13T10:27:12Z 2008-11-13T10:27:12Z <p>No, I haven't used them yet (currently using madExcept for that, and also did some experiments with JclDebug) - but thanks for the tip!</p> http://stackoverflow.com/questions/265018/unicode-console-application-in-delphi-2009/278204#278204 Comment by PatrickvL on Unicode Console Application in Delphi 2009 PatrickvL 2009-11-17T23:13:58Z 2009-11-17T23:13:58Z Maybe you didn't notice, but this is exactly the article I meant - the one that my collegue Marjan Venema wrote (if you look closely, my name <i>does</i> appear in there a few times). Anyway, thanks for adding the link - I forget those things sometimes. And yes, it rather reads like an odyssey indeed! http://stackoverflow.com/questions/1528311/can-i-generate-a-rsm-file-myself-for-the-delphi-debugger-to-use/1677413#1677413 Comment by PatrickvL on Can I generate a .RSM file myself for the Delphi Debugger to use? PatrickvL 2009-11-06T08:06:06Z 2009-11-06T08:06:06Z I assume this is as close to an answer as I'll ever get ;-) Thanks for your attention. http://stackoverflow.com/questions/1528311/can-i-generate-a-rsm-file-myself-for-the-delphi-debugger-to-use Comment by PatrickvL on Can I generate a .RSM file myself for the Delphi Debugger to use? PatrickvL 2009-10-30T08:25:20Z 2009-10-30T08:25:20Z @Robert Love : I have the symbols in memory (just a list of addresses with names, really) - I just need to write them out somehow, in the hope the debugger loads em back in. All I want is to see my detected symbols appear in the Delphi stacktrace window. Does the .RSM format change between Delphi versions? In that case, my order of preference is : D2007, D2010, D2009, D2006, D2005, D7, D5. http://stackoverflow.com/questions/1528311/can-i-generate-a-rsm-file-myself-for-the-delphi-debugger-to-use/1636135#1636135 Comment by PatrickvL on Can I generate a .RSM file myself for the Delphi Debugger to use? PatrickvL 2009-10-29T10:02:22Z 2009-10-29T10:02:22Z Thanks for googling this up - I found that myself too. The thing is, I want to know how I can write such a .RSM file myself, what format it has, etc. It seems a bit of reverse-engineering is in order, I'm afraid.... http://stackoverflow.com/questions/1587777/what-kinds-of-operator-overloads-does-delphi-support/1588225#1588225 Comment by PatrickvL on What kinds of operator overloads does Delphi support? PatrickvL 2009-10-19T13:56:37Z 2009-10-19T13:56:37Z Thanks - now that you mention it, I've seen your slides before. All in all a good overview. It's a pity that the Delphi-community has to document this; I would have expected an even more thorough piece of documentation from CodeGear/Embarcadero instead. http://stackoverflow.com/questions/1021666/how-do-you-set-the-result-value/1024594#1024594 Comment by PatrickvL on How do you set the Result value? PatrickvL 2009-06-24T06:01:27Z 2009-06-24T06:01:27Z @Smasher : Delphi generates different code for the above examples. The version without an &quot;if&quot; prevents branching, which is something that can help performance in some situations. And indeed: This applies to time-critical code only. Normal code should be 'optimized' for the human reader/editor ;-) http://stackoverflow.com/questions/997795/how-are-the-basic-delphi-types-related-to-each-other/997990#997990 Comment by PatrickvL on How are the basic Delphi types related to each other? PatrickvL 2009-06-15T21:50:47Z 2009-06-15T21:50:47Z Thanks for mentioning LLP64, which led me to this article : <a href="http://en.wikipedia.org/wiki/64-bit#Specific_data_models" rel="nofollow">en.wikipedia.org/wiki/64-bit#Specific_data_models/&hellip;</a> Amazing how much stuff one can forget... ;-) http://stackoverflow.com/questions/991049/how-to-quickly-count-the-number-of-neighboring-voxels Comment by PatrickvL on How to quickly count the number of neighboring voxels? PatrickvL 2009-06-15T08:02:45Z 2009-06-15T08:02:45Z You should probably add some information about ordering of the elements in the filledVoxels array. Without this information, answering this question can only be based on guesswork. http://stackoverflow.com/questions/819482/what-standard-does-bde-use-for-sch-schema-files/822016#822016 Comment by PatrickvL on What standard does BDE use for .sch schema files? PatrickvL 2009-05-05T13:46:13Z 2009-05-05T13:46:13Z I added more specific questions in the above text. http://stackoverflow.com/questions/819482/what-standard-does-bde-use-for-sch-schema-files/819938#819938 Comment by PatrickvL on What standard does BDE use for .sch schema files? PatrickvL 2009-05-05T13:46:06Z 2009-05-05T13:46:06Z I saw no mention of a Filetype value &quot;Delimited&quot; in the BDE32.hlp (only &quot;FIXED&quot; and &quot;VARYING&quot;) - do you have a source for this? http://stackoverflow.com/questions/819482/what-standard-does-bde-use-for-sch-schema-files/822016#822016 Comment by PatrickvL on What standard does BDE use for .sch schema files? PatrickvL 2009-05-05T07:12:01Z 2009-05-05T07:12:01Z Thanks, your reference to the &quot;Language drivers&quot; topic anwers my question on the &quot;CharSet&quot; setting. I can't find much details on specifying the other settings tho... http://stackoverflow.com/questions/298373/how-can-a-function-with-varargs-retrieve-the-contents-of-the-stack/298603#298603 Comment by PatrickvL on How can a function with 'varargs' retrieve the contents of the stack? PatrickvL 2008-11-21T07:58:52Z 2008-11-21T07:58:52Z This looks great! I was surprised to see there's indeed no need to use assembly for getting to the ESP register contents. Thanks for this - great example too! http://stackoverflow.com/questions/282019/how-to-simulate-bit-fields-in-delphi-records/282385#282385 Comment by PatrickvL on How to simulate bit-fields in Delphi records? PatrickvL 2008-11-12T22:28:16Z 2008-11-12T22:28:16Z Thanks for the compliment. I did make a few mistakes in the code, which I've fixed now, Cheers! http://stackoverflow.com/questions/280462/lesser-known-language-constructs-of-object-pascal-delphi/280608#280608 Comment by PatrickvL on Lesser known language constructs of Object Pascal (Delphi) PatrickvL 2008-11-11T11:15:25Z 2008-11-11T11:15:25Z That's a nice one! http://stackoverflow.com/questions/280462/lesser-known-language-constructs-of-object-pascal-delphi/280465#280465 Comment by PatrickvL on Lesser known language constructs of Object Pascal (Delphi) PatrickvL 2008-11-11T10:25:27Z 2008-11-11T10:25:27Z Iirc, the deprecated message was already scheduled to work in Delphi 2005... Pity it took so long, but it's nice to have it now.