User Barry Kelly - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T20:17:12Zhttp://stackoverflow.com/feeds/user/3712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1697470/c-connection-between-iformattable-iformatprovider-and-icustomformatter-and-wh/1697568#16975683Answer by Barry Kelly for C#: Connection between IFormattable, IFormatProvider and ICustomFormatter, and when to use whatBarry Kelly2009-11-08T19:10:51Z2009-11-08T19:33:49Z<ul>
<li><p><code>IFormattable</code> is an object which supports formats in <code>string.Format</code>, i.e. the <code>xxx</code> in <code>{0:xxx}</code>. <code>string.Format</code> will delegate to an object's <code>IFormattable.ToString</code> method if the object supports the interface.</p></li>
<li><p><code>IFormatProvider</code> is a source of configuration information that formatters use for things like culture-specific date and currency layout.</p></li>
<li><p>However, for situations like e.g. <code>DateTime</code>, where the instance you want to format already implements <code>IFormattable</code> yet you don't control the implementation (<code>DateTime</code> is supplied in the BCL, you can't replace it easily), there is a mechanism to prevent <code>string.Format</code> from simply using <code>IFormattable.ToString</code>. Instead, you implement <code>IFormatProvider</code>, and when asked for an <code>ICustomFormatter</code> implementation, return one. <code>string.Format</code> checks the provider for an <code>ICustomFormatter</code> before it delegates to the object's <code>IFormattable.Format</code>, which would in turn likely ask the <code>IFormatProvider</code> for culture-specific data like <code>CultureInfo</code>.</p></li>
</ul>
<p>Here is a program which shows what <code>string.Format</code> asks the <code>IFormatProvider</code> for, and how the flow of control goes:</p>
<pre><code>using System;
using System.Globalization;
class MyCustomObject : IFormattable
{
public string ToString(string format, IFormatProvider provider)
{
Console.WriteLine("ToString(\"{0}\", provider) called", format);
return "arbitrary value";
}
}
class MyFormatProvider : IFormatProvider
{
public object GetFormat(Type formatType)
{
Console.WriteLine("Asked for {0}", formatType);
return CultureInfo.CurrentCulture.GetFormat(formatType);
}
}
class App
{
static void Main()
{
Console.WriteLine(
string.Format(new MyFormatProvider(), "{0:foobar}",
new MyCustomObject()));
}
}
</code></pre>
<p>It prints this:</p>
<pre><code>Asked for System.ICustomFormatter
ToString("foobar", provider) called
arbitrary value
</code></pre>
<p>If the format provider is changed to return a custom formatter, it takes over:</p>
<pre><code>class MyFormatProvider : IFormatProvider
{
public object GetFormat(Type formatType)
{
Console.WriteLine("Asked for {0}", formatType);
if (formatType == typeof(ICustomFormatter))
return new MyCustomFormatter();
return CultureInfo.CurrentCulture.GetFormat(formatType);
}
}
class MyCustomFormatter : ICustomFormatter
{
public string Format(string format, object arg, IFormatProvider provider)
{
return string.Format("(format was \"{0}\")", format);
}
}
</code></pre>
<p>When run:</p>
<pre><code>Asked for System.ICustomFormatter
(format was "foobar")
</code></pre>
http://stackoverflow.com/questions/1697477/correct-pattern-for-multi-thread-synchronization-c/1697517#16975171Answer by Barry Kelly for Correct pattern for multi-thread synchronization? (C#)Barry Kelly2009-11-08T18:55:02Z2009-11-08T18:55:02Z<p>A general rule to follow is that you minimize the amount of time that you hold a lock, and you don't call code you don't own and control (such as an event, a virtual method, or a UI thread) while holding a lock.</p>
<p>So the timer should not call back into the UI while holding the lock. If it needs transactional access to the data under the lock (read, call UI, write), then it should probably be designed to roll back and/or retry.</p>
http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi/1695322#16953224Answer by Barry Kelly for Is There A Fast GetToken Routine For Delphi?Barry Kelly2009-11-08T03:54:15Z2009-11-08T14:57:47Z<p>It makes a big difference what "Delim" is expected to be. If it's expected to be a single character, you're far better off stepping through the string character by character, ideally through a PChar, and testing specifically.</p>
<p>If it's a long string, Boyer-Moore and similar searches have a set-up phase for skip tables, and the best way would be to build the tables once, and reuse them for each subsequent find. That means you need state between calls, and this function would be better off as a method on an object instead.</p>
<p>You might be interested in <a href="http://stackoverflow.com/questions/287789/what-is-the-fastest-way-to-parse-a-line-in-delphi/288195#288195">this answer I gave to a question some time before, about the fastest way to parse a line in Delphi.</a> (But I see that it is you that asked the question! Nevertheless, in solving your problem, I would hew to how I described parsing, <strong>not</strong> using PosEx like you are using, depending on what Delim normally looks like.)</p>
<p><hr></p>
<p><strong>UPDATE</strong>: OK, I spent about 40 minutes looking at this. If you know the delimiter is going to be a character, you're pretty much always better off with the second version (i.e. PChar scanning), but you have to pass <code>Delim</code> as a character. At the time of writing, you're converting the <code>PLine^</code> expression - of type Char - to a string for comparison with Delim. That will be very slow; even indexing into the string, with <code>Delim[1]</code> will also be somewhat slow.</p>
<p>However, depending on how large your lines are, and how many delimited pieces you want to pull out, you may be better off with a resumable approach, rather than skipping unwanted delimited pieces inside the tokenizing routine. If you call GetTok with successively increasing indexes, like you are currently doing in your mini benchmark, you'll end up with O(n*n) performance, where n is the number of delimited sections. That can be turned into O(n) if you save the state of the scan and restore it for the next iteration, or pack all extracted items into an array.</p>
<p>Here's a version that does all tokenization once, and returns an array. It needs to tokenize twice though, in order to know how large to make the array. On the other hand, only the second tokenization needs to extract the strings:</p>
<pre><code>// Do all tokenization up front.
function GetTok4(const Line: string; const Delim: Char): TArray<string>;
var
cp, start: PChar;
count: Integer;
begin
// Count sections
count := 1;
cp := PChar(Line);
start := cp;
while True do
begin
if cp^ <> #0 then
begin
if cp^ <> Delim then
Inc(cp)
else
begin
Inc(cp);
Inc(count);
end;
end
else
begin
Inc(count);
Break;
end;
end;
SetLength(Result, count);
cp := start;
count := 0;
while True do
begin
if cp^ <> #0 then
begin
if cp^ <> Delim then
Inc(cp)
else
begin
SetString(Result[count], start, cp - start);
Inc(cp);
Inc(count);
end;
end
else
begin
SetString(Result[count], start, cp - start);
Break;
end;
end;
end;
</code></pre>
<p>Here's the resumable approach. The loads and stores of the current position and delimiter character do have a cost, though:</p>
<pre><code>type
TTokenizer = record
private
FSource: string;
FCurrPos: PChar;
FDelim: Char;
public
procedure Reset(const ASource: string; ADelim: Char); inline;
function GetToken(out AResult: string): Boolean; inline;
end;
procedure TTokenizer.Reset(const ASource: string; ADelim: Char);
begin
FSource := ASource; // keep reference alive
FCurrPos := PChar(FSource);
FDelim := ADelim;
end;
function TTokenizer.GetToken(out AResult: string): Boolean;
var
cp, start: PChar;
delim: Char;
begin
// copy members to locals for better optimization
cp := FCurrPos;
delim := FDelim;
if cp^ = #0 then
begin
AResult := '';
Exit(False);
end;
start := cp;
while (cp^ <> #0) and (cp^ <> Delim) do
Inc(cp);
SetString(AResult, start, cp - start);
if cp^ = Delim then
Inc(cp);
FCurrPos := cp;
Result := True;
end;
</code></pre>
<p><a href="http://pastebin.com/f5a456f97" rel="nofollow">Here's the full program I used for benchmarking.</a></p>
<p>Here are the results:</p>
<pre><code>*** count=3, Length(src)=200
GetTok1: 595 ms
GetTok2: 547 ms
GetTok3: 2366 ms
GetTok4: 407 ms
GetTokBK: 226 ms
*** count=6, Length(src)=350
GetTok1: 1587 ms
GetTok2: 1502 ms
GetTok3: 6890 ms
GetTok4: 679 ms
GetTokBK: 334 ms
*** count=9, Length(src)=500
GetTok1: 3055 ms
GetTok2: 2912 ms
GetTok3: 13766 ms
GetTok4: 947 ms
GetTokBK: 446 ms
*** count=12, Length(src)=650
GetTok1: 4997 ms
GetTok2: 4803 ms
GetTok3: 23021 ms
GetTok4: 1213 ms
GetTokBK: 543 ms
*** count=15, Length(src)=800
GetTok1: 7417 ms
GetTok2: 7173 ms
GetTok3: 34644 ms
GetTok4: 1480 ms
GetTokBK: 653 ms
</code></pre>
<p>Depending on the characteristics of your data, whether the delimiter is likely to be a character or not, and how you work with it, different approaches may be faster.</p>
<p>(I made a mistake in my earlier program, I wasn't measuring the same operations for each style of routine. I updated the pastebin link and benchmark results.)</p>
http://stackoverflow.com/questions/1686940/abort-a-thread/1687228#16872286Answer by Barry Kelly for Abort a thread?Barry Kelly2009-11-06T12:18:41Z2009-11-06T17:19:59Z<p>Isolate the job into a separate process. Depending on how you communicate with the background job, this is probably the best way of guaranteeing that you can abort it cleanly.</p>
<p>For example, it's probably not a good ide to use shared memory for communication; use files or pipes, or a similar mechanism that doesn't break or stall when the other end gets killed. If you use named mutexes for cross-process synchronization, be aware that there is a particular error state for these synchronization primitives: WAIT_ABANDONED is returned by WaitForSingleObject and friends if a thread (or, implicitly, process's main thread) which last held the primitive was terminated without cleanly releasing it. Basically, this means you need to use a staged transactional approach to data transfer, so that you can ignore possibly inconsistent state that was being modified at the time of the termination.</p>
http://stackoverflow.com/questions/1296683/curiosity-why-does-expression-when-compiled-run-faster-than-a-minimal-dynam/1297074#129707416Answer by Barry Kelly for Curiosity: Why does Expression<...> when compiled run faster than a minimal DynamicMethod?Barry Kelly2009-08-18T23:17:34Z2009-11-06T15:00:52Z<p>The method created via <code>DynamicMethod</code> goes through two thunks, while the method created via <code>Expression<></code> doesn't go through any.</p>
<p>Here's how it works. Here's the calling sequence for invoking <code>fn(0, 1)</code> in the <code>Time</code> method (I hard-coded the arguments to 0 and 1 for ease of debugging):</p>
<pre><code>00cc032c 6a01 push 1 // 1 argument
00cc032e 8bcf mov ecx,edi
00cc0330 33d2 xor edx,edx // 0 argument
00cc0332 8b410c mov eax,dword ptr [ecx+0Ch]
00cc0335 8b4904 mov ecx,dword ptr [ecx+4]
00cc0338 ffd0 call eax // 1 arg on stack, two in edx, ecx
</code></pre>
<p>For the first invocation I investigated, <code>DynamicMethod</code>, the <code>call eax</code> line comes up like so:</p>
<pre><code>00cc0338 ffd0 call eax {003c2084}
0:000> !u 003c2084
Unmanaged code
003c2084 51 push ecx
003c2085 8bca mov ecx,edx
003c2087 8b542408 mov edx,dword ptr [esp+8]
003c208b 8b442404 mov eax,dword ptr [esp+4]
003c208f 89442408 mov dword ptr [esp+8],eax
003c2093 58 pop eax
003c2094 83c404 add esp,4
003c2097 83c010 add eax,10h
003c209a ff20 jmp dword ptr [eax]
</code></pre>
<p>This appears to be doing some stack swizzling to rearrange arguments. I speculate that it's owing to the difference between delegates that use the implicit 'this' argument and those that don't.</p>
<p>That jump at the end resolves like so:</p>
<pre><code>003c209a ff20 jmp dword ptr [eax] ds:0023:012f7edc=0098c098
0098c098 e963403500 jmp 00ce0100
</code></pre>
<p>The remainder of the code at 0098c098 looks like a JIT thunk, whose start got rewritten with a <code>jmp</code> after the JIT. It's only after this jump that we get to real code:</p>
<pre><code>0:000> !u eip
Normal JIT generated code
DynamicClass.TestMethod(Int32, Int32)
Begin 00ce0100, size 5
>>> 00ce0100 03ca add ecx,edx
00ce0102 8bc1 mov eax,ecx
00ce0104 c3 ret
</code></pre>
<p>The invocation sequence for the method created via <code>Expression<></code> is different - it's missing the stack swizzling code. Here it is, from the first jump via <code>eax</code>:</p>
<pre><code>00cc0338 ffd0 call eax {00ce00a8}
0:000> !u eip
Normal JIT generated code
DynamicClass.lambda_method(System.Runtime.CompilerServices.ExecutionScope, Int32, Int32)
Begin 00ce00a8, size b
>>> 00ce00a8 8b442404 mov eax,dword ptr [esp+4]
00ce00ac 03d0 add edx,eax
00ce00ae 8bc2 mov eax,edx
00ce00b0 c20400 ret 4
</code></pre>
<p>Now, how did things get like this?</p>
<ol>
<li>Stack swizzling wasn't necessary (the implicit first argument from the delegate is actually used, i.e. not like a delegate bound to a static method)</li>
<li>The JIT must have been forced by LINQ compilation logic so that the delegate held the real destination address rather than a fake one.</li>
</ol>
<p>I don't know how the LINQ forced the JIT, but I do know how to force a JIT myself - by calling the function at least once. UPDATE: I found another way to force a JIT: use the <code>restrictedSkipVisibility</code> argumetn to the constructor and pass <code>true</code>. So, here's modified code that eliminates stack swizzling by using the implicit 'this' parameter, and uses the alternate constructor to pre-compile so that the bound address is the real address, rather than the thunk:</p>
<pre><code>using System;
using System.Linq.Expressions;
using System.Reflection.Emit;
using System.Diagnostics;
namespace Sandbox
{
public class Program
{
public static void Main(String[] args)
{
DynamicMethod method = new DynamicMethod("TestMethod",
typeof(Int32), new Type[] { typeof(object), typeof(Int32),
typeof(Int32) }, true);
var il = method.GetILGenerator();
il.Emit(OpCodes.Ldarg_1);
il.Emit(OpCodes.Ldarg_2);
il.Emit(OpCodes.Add);
il.Emit(OpCodes.Ret);
Func<Int32, Int32, Int32> f1 =
(Func<Int32, Int32, Int32>)method.CreateDelegate(
typeof(Func<Int32, Int32, Int32>), null);
Func<Int32, Int32, Int32> f2 = (Int32 a, Int32 b) => a + b;
Func<Int32, Int32, Int32> f3 = Sum;
Expression<Func<Int32, Int32, Int32>> f4x = (a, b) => a + b;
Func<Int32, Int32, Int32> f4 = f4x.Compile();
for (Int32 pass = 1; pass <= 2; pass++)
{
// Pass 1 just runs all the code without writing out anything
// to avoid JIT overhead influencing the results
Time(f1, "DynamicMethod", pass);
Time(f2, "Lambda", pass);
Time(f3, "Method", pass);
Time(f4, "Expression", pass);
}
}
private static void Time(Func<Int32, Int32, Int32> fn,
String name, Int32 pass)
{
Stopwatch sw = new Stopwatch();
sw.Start();
for (Int32 index = 0; index <= 100000000; index++)
{
Int32 result = fn(index, 1);
}
sw.Stop();
if (pass == 2)
Console.WriteLine(name + ": " + sw.ElapsedMilliseconds + " ms");
}
private static Int32 Sum(Int32 a, Int32 b)
{
return a + b;
}
}
}
</code></pre>
<p>Here's the runtimes on my system:</p>
<pre><code>DynamicMethod: 312 ms
Lambda: 417 ms
Method: 417 ms
Expression: 312 ms
</code></pre>
<p><strong>UPDATED TO ADD</strong>:</p>
<p>I tried running this code on my new system, which is an Core i7 920 running Windows 7 x64 with .NET 4 beta 2 installed (mscoree.dll ver. 4.0.30902), and the results are, well, variable.</p>
<pre><code>csc 3.5, /platform:x86, runtime v2.0.50727 (via .config)
Run #1
DynamicMethod: 214 ms
Lambda: 571 ms
Method: 570 ms
Expression: 249 ms
Run #2
DynamicMethod: 463 ms
Lambda: 392 ms
Method: 392 ms
Expression: 463 ms
Run #3
DynamicMethod: 463 ms
Lambda: 570 ms
Method: 570 ms
Expression: 463 ms
</code></pre>
<p>Perhaps this is Intel SpeedStep affecting results, or possibly Turbo Boost. In any case, it's very annoying.</p>
<pre><code>csc 3.5, /platform:x64, runtime v2.0.50727 (via .config)
DynamicMethod: 428 ms
Lambda: 392 ms
Method: 392 ms
Expression: 428 ms
csc 3.5, /platform:x64, runtime v4
DynamicMethod: 428 ms
Lambda: 356 ms
Method: 356 ms
Expression: 428 ms
csc 4, /platform:x64, runtime v4
DynamicMethod: 428 ms
Lambda: 356 ms
Method: 356 ms
Expression: 428 ms
csc 4, /platform:x86, runtime v4
DynamicMethod: 463 ms
Lambda: 570 ms
Method: 570 ms
Expression: 463 ms
csc 3.5, /platform:x86, runtime v4
DynamicMethod: 214 ms
Lambda: 570 ms
Method: 571 ms
Expression: 249 ms
</code></pre>
<p>Many of these results will be accidents of timing, whatever it is that is causing the random speedups in the C# 3.5 / runtime v2.0 scenario. I'll have to reboot to see if SpeedStep or Turbo Boost is responsible for these effects.</p>
http://stackoverflow.com/questions/1668645/rtti-can-i-get-a-type-by-name/1671145#16711453Answer by Barry Kelly for RTTI: Can I Get a Type by Name?Barry Kelly2009-11-04T01:06:02Z2009-11-04T01:06:02Z<p>The new RTTI unit in Delphi 2010 has a way of retrieving types declared in the interface section of units. For any given type, represented by a <code>TRttiType</code> instance, the <code>TRttiType.QualifiedName</code> property returns a name that can be used with <code>TRttiContext.FindType</code> later to retrieve the type. The qualified name is the full unit name (including namespaces, if they exist), followed by a '.', followed by the full type name (including outer types if it nested).</p>
<p>So, you could retrieve a representation of the Integer type (in the form of a <code>TRttiType</code>) with <code>context.FindType('System.Integer')</code>.</p>
<p>But this mechanism can't be used to retrieve instantiations of generic types that weren't instantiated at compile time; instantiation at runtime requires runtime code generation.</p>
http://stackoverflow.com/questions/1652378/can-i-have-unnamed-dynamic-array-types-as-var-parameters/1652583#16525839Answer by Barry Kelly for Can I Have Unnamed Dynamic Array Types as Var ParametersBarry Kelly2009-10-30T22:07:52Z2009-10-30T22:07:52Z<p>Pascal, and by extension Delphi, uses name equivalence rather than structural equivalence for array types, including dynamic arrays. Variables declared with a type that doesn't have a name, like this:</p>
<pre><code>var
x: array of Integer;
</code></pre>
<p>... end up using an anonymous name that isn't equivalent to any other type's name. That's why you get the error. The error can be useful; for example, consider an array of <code>Kilometers</code> vs an array of <code>Kilograms</code> - but it's often the case that declaring a name for every distinct type is inconvenient.</p>
<p>To get around this issue, and staying within the safe type system (so avoiding untyped parameters, as skamradt suggests), I recommend using the same name for every particular array shape. You can do this to a reasonably large degree by using the <code>TArray<T></code> type declared in the System unit. So, instead of working with <code>array of Integer</code>, use <code>TArray<Integer></code>.</p>
<p><code>TArray<T></code> is declared like this:</p>
<pre><code>type
TArray<T> = array of T;
</code></pre>
<p>... so it can supply a name for arbitrary dynamic arrays.</p>
http://stackoverflow.com/questions/1600012/shuffle-text-file-delphi-source-or-anything-else/1603056#16030561Answer by Barry Kelly for Shuffle Text File Delphi Source or anything elseBarry Kelly2009-10-21T19:28:16Z2009-10-21T19:28:16Z<p>I asked a question before about creating a shuffled range - rather than generating a list of numbers and then shuffling them, I wanted a function that was able to iteratively return a list of shuffled numbers, without the O(n) memory cost:</p>
<p><a href="http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling">http://stackoverflow.com/questions/464476/generating-shuffled-range-using-a-prng-rather-than-shuffling</a></p>
<p>If you create some kind of index for your file on disk, then you can create a shuffled version without paying the memory cost, which can be important for very large files. For an index, I suggest something simple, like a flat stream of the positions (as 32 or 64-bit integers) of every line start. That way, to extract the Nth line out of the text file, you can simply seek in the index stream to N*4 (or N*8 for 64-bit indexes) to discover the offset of the line start, and then seek to that position in the text file stream and read out a line.</p>
<p>Using this approach, you can shuffle extremely large files, without paying the in-memory cost. Of course, shuffling will mean extracting lines at random from the source file, which will not be as efficient as in-memory sorting unless the file is very small (fits in cache almost on first access) or very large (in which case memory thrashing will be worse than random seeks), or perhaps if you're not using a mechanical hard drive (e.g. SSD).</p>
<p>For your situation, 10K is really not a large number. Something in the region of 10 million lines, perhaps getting into several gigabytes of text (depending on line length of course), will be far more challenging, and that's where this approach (or something similar) would be necessary in 32-bit.</p>
http://stackoverflow.com/questions/1583828/how-can-i-get-embarcadero-quality-central-to-do-something-about-my-bug-report/1583900#15839004Answer by Barry Kelly for How Can I Get Embarcadero Quality Central To Do Something About My Bug ReportBarry Kelly2009-10-18T03:18:39Z2009-10-18T03:18:39Z<p>The bug is marked "High" in the internal database. There are two higher priority settings for bugs - Must Fix (roughly, should be fixed for next release) and WUpdate (should be fixed for next update) - so it appears that in the judgement of the QA folks for the VCL, there are higher priority bugs.</p>
<p>Even though I'm an employee, I'm on the development side, so I generally don't deal with customer service requests directly. Probably the best way of raising the bug's priority is having lots of people vote on it, and generally convincing the product area community beta tester leads to include it in their highest priority bug lists.</p>
http://stackoverflow.com/questions/1530170/what-errors-exceptions-trigger-windows-error-reporting/1531044#15310442Answer by Barry Kelly for What errors / exceptions trigger Windows Error Reporting?Barry Kelly2009-10-07T11:26:26Z2009-10-07T11:26:26Z<p>Most exceptions are <em>not</em> silently ignored when running outside the debugger. They are normally caught by the event loop in VCL applications, or fall through to the main begin/end in console applications, etc. The default aciton of the VCL event loop is to display a dialog containing the message associated with the exception.</p>
<p>It's if the exception escapes the application, either by reaching the main begin/end without being caught, or not being caught by the event loop, that the Windows error reporting steps in - functionally, it is an exception handler just like any other except at the very base of the stack.</p>
http://stackoverflow.com/questions/1515832/delphi-delphi-prism-how-to-use-array-of-records/1515932#15159324Answer by Barry Kelly for Delphi -> Delphi prism, how to use array of records?Barry Kelly2009-10-04T08:38:15Z2009-10-04T08:38:15Z<ul>
<li>You didn't specify exactly what "didn't work". You should include the error in questions like this.</li>
<li>Arrays are reference types, and they start out with the value <code>nil</code>. They need to be initialized before elements can be accessed.</li>
</ul>
<p>You can do this with the <code>new</code> operator:</p>
<pre><code>rapport.Categories = new TRapportCategorie[10]; // 0..9
</code></pre>
<ul>
<li>Arrays are quite a low-level type. Usually it's better to work with <code>List<T></code> instead.</li>
</ul>
<p>So you'd declare:</p>
<pre><code>Categories: List<TRapportCategorie>;
</code></pre>
<ul>
<li>But lists also need initializing, using the <code>new</code> operator. Also, modifying the return value of the indexer on a list containing a value type will be modifying a copy, not the original, which leads to the next point.</li>
<li>Records are usually not the best data type for representing data, as they are not reference types; it's very easy to end up modifying a copy of the data, rather than the original data. It's usually best to use classes instead, where you can put all the initialization code (such as allocating the array or list) in the constructor.</li>
</ul>
http://stackoverflow.com/questions/1482311/how-to-patch-a-method-in-classes-pas/1482376#148237614Answer by Barry Kelly for How to patch a method in Classes.pasBarry Kelly2009-09-26T23:12:30Z2009-09-26T23:12:30Z<p>Modifying the implementation side of Classes.pas will not require recompiling everything. Delphi figures out if a unit needs to be recompiled by an algorithm that looks roughly like this:</p>
<ul>
<li>If DCU found:
<ul>
<li>Is DCU format out of date (old version of compiler)? If so, need source to recompile or compile-time error.</li>
<li>Is the source on the path? If so, if it's newer than the DCU, recompile</li>
<li>For each used unit:
<ul>
<li>Repeat analysis when loading</li>
<li>For each used symbol ("import": type, variable, routine, initialized constant etc.) from that unit:
<ul>
<li>Is <strong>symbol version</strong> of import different to symbol found in used unit? If so, recompile needed.</li>
</ul></li>
</ul></li>
</ul></li>
<li>If DCU is not found, source will need to be found and compiled, otherwise compile-time error</li>
</ul>
<p>The important concept is that of <strong>symbol version</strong>. When saving a DCU, Delphi calculates a hash based on the <strong>interface declaration</strong> of the symbol and associates it with the symbol. Other units that use the symbol also store the symbol version. In this way, link-time conflicts caused by stale symbols are avoided, unlike most C linkers.</p>
<p>The upshot of this is that you should be able to add Classes.pas to your project and modify its <strong>implementation</strong> section almost to your heart's content, and still be able to <strong>statically</strong> link with the rest of the RTL and VCL and third-party libraries, even those provided in object format only.</p>
<p>Things to be careful of:</p>
<ul>
<li>Inlined routines; the body of inlined routines are part of the symbol version</li>
<li>Generics; the implementation side of generic types and methods are part of the respective symbol versions</li>
</ul>
http://stackoverflow.com/questions/1420562/why-do-i-get-type-has-no-typeinfo-error-with-an-enum-type/1420649#142064910Answer by Barry Kelly for Why do I get "type has no typeinfo" error with an enum typeBarry Kelly2009-09-14T10:00:47Z2009-09-14T10:00:47Z<p>Discontiguous enumerations and enumerations which don't start at zero don't have typeinfo. For typeinfo to be implemented, it would need to be in a different format from the existing tkEnumeration, owing to backward compatibility issues.</p>
<p>I considered implementing a tkDiscontiguousEnumeration (or possibly better named member) for Delphi 2010, but the benefit seemed small considering their relative scarcity and the difficulties in enumeration - how do you encode the ranges efficiently? Some encodings are better for some scenarios, worse for others.</p>
http://stackoverflow.com/questions/1385967/how-can-i-assign-an-interface-variable-to-a-variable-of-type-rtti-tvalue/1386137#13861375Answer by Barry Kelly for How can I assign an interface variable to a variable of type Rtti.TValueBarry Kelly2009-09-06T17:02:43Z2009-09-06T17:02:43Z<p>This is a working version of the program:</p>
<pre><code>program Project1;
uses
Classes, SysUtils, Rtti;
var
list : IInterfaceList;
value : TValue;
begin
// all these assignments works
value := 1;
value := 'Hello';
value := TObject.Create;
// but nothing of these assignments works
list := TInterfaceList.Create;
value := TValue.From(list);
end.
</code></pre>
http://stackoverflow.com/questions/1366905/best-net-library-for-trees/1366939#13669390Answer by Barry Kelly for Best .NET library for treesBarry Kelly2009-09-02T10:36:36Z2009-09-02T10:36:36Z<p>Trees are so easy to write, and specific requirements relatively diverse, that I'm not sure that a "tree library" would be very useful. Why don't you write your own?</p>
http://stackoverflow.com/questions/1361071/what-is-the-difference-between-lib-and-obj-files-visual-studio-c/1361074#136107413Answer by Barry Kelly for What is the difference between .LIB and .OBJ files? (Visual Studio C++)Barry Kelly2009-09-01T07:38:54Z2009-09-01T07:38:54Z<p>A .LIB file is a collection of .OBJ files concatenated together with an index. There should be no difference in how the linker treats either.</p>
http://stackoverflow.com/questions/1359533/dynamic-compilation-for-performance/1359597#13595970Answer by Barry Kelly for Dynamic compilation for performanceBarry Kelly2009-08-31T21:56:26Z2009-08-31T21:56:26Z<p>IMHO <code>Reflection.Emit</code>, in particular <code>DynamicMethod</code>, <strong>is</strong> an appropriate solution to your problem, and is perfectly maintainable even for quite inexperienced programmers so long as you stick to simple invocation logic. If you can boil it down to straight instance method calls with no arguments, the IL code is extremely straight-forward.</p>
<p>Rather than having to encode the if-statements in the generated code, you should conditionally compile the statements in the code generator - i.e. put the if-statements in the code generator - and thereafter there's no need to rely on runtime optimization away of certain routines.</p>
<p>Using a <code>DynamicMethod</code> to create a method that looks somewhat like this:</p>
<pre><code>DoValue1RelatedStuff();
DoValue3RelatedStuff();
DoValue7RelatedStuff();
// ...
</code></pre>
<p>i.e. where the unrelated stuff has already been omitted by the code generator should be efficient enough, having eliminated the tests, <strong>if</strong> the tests are indeed a source of much wasted time in practice (strongly depends on how high N is and how complex <code>DoValueXRelatedStuff()</code> is).</p>
http://stackoverflow.com/questions/1358920/bash-measure-disk-space-of-certain-file-types-in-aggregate/1358954#13589544Answer by Barry Kelly for bash: Measure disk space of certain file types in aggregateBarry Kelly2009-08-31T19:10:56Z2009-08-31T19:10:56Z<p><code>find folder1 folder2 -iname '*.txt' -print0 | du --files0-from - -c -s | tail -1</code></p>
http://stackoverflow.com/questions/1358680/c-command-line-parser-that-is-gpl-compatible/1358715#13587154Answer by Barry Kelly for C# Command Line Parser that is GPL-compatibleBarry Kelly2009-08-31T18:21:55Z2009-08-31T18:21:55Z<p><a href="http://www.ndesk.org/Options" rel="nofollow">Jonathan Pryor's Options library</a> is <a href="http://en.wikipedia.org/wiki/MIT_License" rel="nofollow">MIT/X11-licensed</a>, which is GPL compatible. It's being shipped with Mono 2.2 as Mono.Options:</p>
<p><a href="http://tirania.org/blog/archive/2008/Oct-14.html" rel="nofollow">http://tirania.org/blog/archive/2008/Oct-14.html</a></p>
http://stackoverflow.com/questions/1354893/space-efficient-in-memory-structure-for-sorted-text-supporting-prefix-searches7Space-efficient in-memory structure for sorted text supporting prefix searchesBarry Kelly2009-08-30T21:03:12Z2009-08-31T17:30:11Z
<p>I have a problem: I need space-efficient lookup of file-system data based of file path prefix. Prefix searching of sorted text, in other words. Use a trie, you say, and I thought the same thing. Trouble is, tries are not space-efficient enough, not without other tricks.</p>
<p>I have a fair amount of data:</p>
<ul>
<li>about 450M in a plain-text Unix-format listing on disk</li>
<li>about 8 million lines</li>
<li>gzip default compresses to 31M</li>
<li>bzip2 default compresses to 21M</li>
</ul>
<p>I don't want to be eating anywhere close to 450M in memory. At this point I'd be happy to be using somewhere around 100M, since there's lots of redundancy in the form of prefixes.</p>
<p>I'm using C# for this job, and a straightforward implementation of a trie will still require one leaf node for every line in the file. Given that every leaf node will require some kind of reference to the final chunk of text (32 bits, say an index into an array of string data to minimize string duplication), and CLR object overhead is 8 bytes (verified using windbg / SOS), <strong>I'll be spending >96,000,000 bytes</strong> in structural overhead with no text storage at all.</p>
<p>Let's look at some of the statistical attributes of the data. When stuffed in a trie:</p>
<ul>
<li>total unique "chunks" of text about 1.1 million</li>
<li>total unique chunks about 16M on disk in a text file</li>
<li>average chunk length is 5.5 characters, max 136</li>
<li>when not taking into account duplicates, about 52 million characters total in chunks</li>
<li>Internal trie nodes average about 6.5 children with a max of 44</li>
<li>about 1.8M interior nodes.</li>
</ul>
<p>Excess rates of leaf creation is about 15%, excess interior node creation is 22% - by excess creation, I mean leaves and interior nodes created during trie construction but not in the final trie as a proportion of the final number of nodes of each type.</p>
<p>Here's a heap analysis from SOS, indicating where the most memory is getting used:</p>
<pre><code> [MT ]--[Count]----[ Size]-[Class ]
03563150 11 1584 System.Collections.Hashtable+bucket[]
03561630 24 4636 System.Char[]
03563470 8 6000 System.Byte[]
00193558 425 74788 Free
00984ac8 14457 462624 MiniList`1+<GetEnumerator>d__0[[StringTrie+Node]]
03562b9c 6 11573372 System.Int32[]
*009835a0 1456066 23297056 StringTrie+InteriorNode
035576dc 1 46292000 Dictionary`2+Entry[[String],[Int32]][]
*035341d0 1456085 69730164 System.Object[]
*03560a00 1747257 80435032 System.String
*00983a54 8052746 96632952 StringTrie+LeafNode
</code></pre>
<p>The <code>Dictionary<string,int></code> is being used to map string chunks to indexes into a <code>List<string></code>, and can be discarded after trie construction, though GC doesn't seem to be removing it (a couple of explicit collections were done before this dump) - <code>!gcroot</code> in SOS doesn't indicate any roots, but I anticipate that a later GC would free it.</p>
<p><code>MiniList<T></code> is a replacement for <code>List<T></code> using a precisely-sized (i.e. linear growth, <code>O(n^2)</code> addition performance) <code>T[]</code> to avoid space wastage; it's a value type and is used by <code>InteriorNode</code> to track children. This <code>T[]</code> is added to the <code>System.Object[]</code> pile.</p>
<p>So, if I tot up the "interesting" items (marked with <code>*</code>), I get about 270M, which is better than raw text on disk, but still not close enough to my goal. I figured that .NET object overhead was too much, and created a new "slim" trie, using just value-type arrays to store data:</p>
<pre><code>class SlimTrie
{
byte[] _stringData; // UTF8-encoded, 7-bit-encoded-length prefixed string data
// indexed by _interiorChildIndex[n].._interiorChildIndex[n]+_interiorChildCount[n]
// Indexes interior_node_index if negative (bitwise complement),
// leaf_node_group if positive.
int[] _interiorChildren;
// The interior_node_index group - all arrays use same index.
byte[] _interiorChildCount;
int[] _interiorChildIndex; // indexes _interiorChildren
int[] _interiorChunk; // indexes _stringData
// The leaf_node_index group.
int[] _leafNodes; // indexes _stringData
// ...
}
</code></pre>
<p>This structure has brought down the amount of data to 139M, and is still an efficiently traversable trie for read-only operations. And because it's so simple, I can trivially save it to disk and restore it to avoid the cost of recreating the trie every time.</p>
<p>So, any suggestions for more efficient structures for prefix search than trie? Alternative approaches I should consider?</p>
http://stackoverflow.com/questions/1354275/marshaling-a-byte-array-to-a-c-structure/1354358#13543581Answer by Barry Kelly for Marshaling a Byte array to a C# structure.Barry Kelly2009-08-30T17:17:32Z2009-08-30T17:17:32Z<p>Explicit struct layout and <code>FieldOffsetAttribute</code> apply not just to marshalling, but also to the runtime layout that the CLR uses. This is particularly important if you use <code>struct</code> type definitions in unsafe code, or make other assumptions based on overlapping data (i.e. effectively creating C-style <code>union</code> types).</p>
<p>As a side-effect of conflating these two uses of explicit field layout, layouts that would violate the CLR type system are forbidden: overlapping object references can permit construction of object references to arbitrary data in the running process, while misaligned object references affect the kind of optimizations the GC implementation can use.</p>
<p>I believe you'll need to fall back to using fixed byte arrays for the string data, and decode it yourself using the <code>Encoding</code> class. For example:</p>
<pre><code>[FieldOffset(0x03)]
public fixed byte OemName[8]
</code></pre>
<p><code>fixed</code> fields require unsafe context, and need to be either copied out one element at a time, or treated as e.g. <code>byte*</code> in unsafe code.</p>
<p>Another approach would be to use manual memory allocation (either <code>Marhsal.AllocHGlobal</code> or <code>byte[]</code>) and treat the data as a blob, possibly read out of using a <code>BinaryReader</code>.</p>
http://stackoverflow.com/questions/199627/converting-c-source-to-c18Converting C source to C++Barry Kelly2008-10-14T00:51:43Z2009-08-29T15:12:36Z
<p>How would you go about converting a reasonably large (>300K), fairly mature C codebase to C++?</p>
<p>The kind of C I have in mind is split into files roughly corresponding to modules (i.e. less granular than a typical OO class-based decomposition), using internal linkage in lieu private functions and data, and external linkage for public functions and data. Global variables are used extensively for communication between the modules. There is a very extensive integration test suite available, but no unit (i.e. module) level tests.</p>
<p>I have in mind a general strategy:</p>
<ol>
<li>Compile everything in C++'s C subset and get that working.</li>
<li>Convert modules into huge classes, so that all the cross-references are scoped by a class name, but leaving all functions and data as static members, and get that working.</li>
<li>Convert huge classes into instances with appropriate constructors and initialized cross-references; replace static member accesses with indirect accesses as appropriate; and get that working.</li>
<li>Now, approach the project as an ill-factored OO application, and write unit tests where dependencies are tractable, and decompose into separate classes where they are not; the goal here would be to move from one working program to another at each transformation.</li>
</ol>
<p>Obviously, this would be quite a bit of work. Are there any case studies / war stories out there on this kind of translation? Alternative strategies? Other useful advice?</p>
<p>Note 1: the program is a compiler, and probably millions of other programs rely on its behaviour not changing, so wholesale rewriting is pretty much not an option.</p>
<p>Note 2: the source is nearly 20 years old, and has perhaps 30% code churn (lines modified + added / previous total lines) per year. It is heavily maintained and extended, in other words. Thus, one of the goals would be to increase mantainability.</p>
<p>[For the sake of the question, assume that translation into <strong>C++</strong> is mandatory, and that leaving it in C is <strong>not</strong> an option. The point of adding this condition is to weed out the "leave it in C" answers.]</p>
http://stackoverflow.com/questions/1346807/how-does-stat-command-calculate-the-blocks-of-a-file/1346859#13468593Answer by Barry Kelly for How does stat command calculate the blocks of a file?Barry Kelly2009-08-28T13:04:23Z2009-08-29T10:09:23Z<p>The <code>stat</code> command-line tool uses the <code>stat</code> / <code>fstat</code> etc. functions, which return data in the <code>stat</code> structure. The <code>st_blocks</code> member of the <code>stat</code> structure returns:</p>
<blockquote>
<p>The total number of physical blocks of size 512 bytes actually allocated on disk. This field is not defined for block special or character special files.</p>
</blockquote>
<p>So for your "Email" example, with a size of 965 and block-count of 8, it is indicating that 8*512=4096 bytes are physically allocated on disk. The reason it's not 2 is that the file system on disk does not allocate space in units of 512, it evidently allocates them in units of 4096. (And the unit of allocation may vary depending on file size and filesystem sophistication. E.g. ZFS supports different units of allocation.)</p>
<p>Similarly, for wxPython example, it indicates that 7056*512 bytes, or 3612672 bytes are physically allocated on disk. You get the idea.</p>
<p>The IO block size is "a hint as to the 'best' unit size for I/O operations" - it's usually the unit of allocation on the physical disk. Don't get confused between the IO block and the block that <code>stat</code> uses to indicate physical size; the blocks for physical size are always 512 bytes.</p>
<p>Update based on comment:</p>
<p>Like I said, <code>st_blocks</code> is how the OS indicates how much space is used by the file on disk. The actual units of allocation on disk are the choice of the file system. For example, ZFS can have allocation blocks of variable size, <em>even in the same file</em>, because of the way it allocates blocks: files start out having a small block size, and block sizes keeps on increasing until it reaches a particular point. If the file is later truncated, it will probably keep the old block size. So based on the history of the file, it can have multiple possible block sizes. So given a file size it is not always obvious why it has a particular physical size.</p>
<p>Concrete example: on my Solaris box, with a ZFS file system, I can create a very short file:</p>
<pre><code>$ echo foo > test
$ stat test
Size: 4 Blocks: 2 IO Block: 512 regular file
(irrelevant details omitted)
</code></pre>
<p>OK, small file, 2 blocks, physical disk usage is 1024 for this file.</p>
<pre><code>$ dd if=/dev/zero of=test2 bs=8192 count=4
$ stat test2
Size: 32768 Blocks: 65 IO Block: 32768 regular file
</code></pre>
<p>OK, now we see physical disk usage of 32.5K, and an IO block size of 32K. I then copied it to <code>test3</code> and truncated this <code>test3</code> file in an editor:</p>
<pre><code>$ cp test2 test3
$ joe -hex test3
$ stat test3
Size: 4 Blocks: 65 IO Block: 32768 regular file
</code></pre>
<p>Well now, here's a file with 4 bytes in it - just like <code>test</code> - but it's using 32.5K physically on the disk, because of the way the ZFS file system allocates space. Block sizes increase as the file gets larger, but they don't decrease when the file gets smaller. (And yes, this can lead to substantial wasted space depending on the kinds of files and file operations you do on ZFS, which is why it allows you to set the maximum block size on a per-filesystem basis, and change it dynamically.)</p>
<p>Hopefully you should now appreciate that there isn't necessarily a simple relationship between file size and physical disk usage. Even in the above it's not clear why 32.5K bytes are needed to store a file that's exactly 32K in size - it appears that ZFS generally needs an extra 512 bytes for extra storage of its own. Perhaps it's using that storage for checksums, reference counts, transaction state - file system bookkeeping. By including these extras in the indicated physical file size, it seems like ZFS is trying not to mislead the user as to the physical costs of the file. That doesn't mean it's trivial to reverse-engineer the calculation without knowing intimate details about the underlying file system implementation.</p>
http://stackoverflow.com/questions/1350679/c-for-web-development/1350695#13506954Answer by Barry Kelly for C++ for Web DevelopmentBarry Kelly2009-08-29T06:51:32Z2009-08-29T06:51:32Z<p>The smart-ass answer: almost all web development is done in C or C++. It's just that C or C++ is a layer in the stack, and not the topmost layer. .NET, Java, Ruby, Python, PHP - all the most prominent runtime execution engines for these languages are written in C or C++.</p>
http://stackoverflow.com/questions/1348476/boolean-expressions-optimizations-in-java/1348497#13484977Answer by Barry Kelly for Boolean expressions optimizations in JavaBarry Kelly2009-08-28T17:55:44Z2009-08-28T17:55:44Z<p>Because <code>expensiveComputation()</code> may have side-effects.</p>
<p>Since Java doesn't aim to be a functionally pure language, it doesn't inhibit programmers from writing methods that have side-effects. Thus there probably isn't a lot of value in the compiler analyzing for functional purity. And then, optimizations like you posit are unlikely to be very valuable in practice, as <code>expensiveComputation()</code> would usually be required to executed anyway, to get the side effects.</p>
<p>Of course, for a programmer, it's easy to put the <code>b</code> first if they expect it to be false and explicitly want to avoid the expensive computation.</p>
http://stackoverflow.com/questions/1345478/how-to-detect-the-amount-of-stack-space-available-to-my-program/1345545#13455456Answer by Barry Kelly for How to detect the amount of stack space available to my program?Barry Kelly2009-08-28T07:30:15Z2009-08-28T07:30:15Z<p>I don't know of any way of figuring out the stack size directly using the API if you don't have access to the <code>CreateThread</code> call or, if it's the main thread, looking into the EXE's default thread size in the PE header.</p>
<p>In your situation, I would allocate on the heap to be safe, even though a 10K array of small data is unlikely to max out the stack in non-recursive scenarios.</p>
<p>However, you can probe for the stack limit, if done carefully. The stack gets committed in 4K pages as you touch them (via <strong>guard pages</strong>) until you hit the limit, whereupon Windows will throw a stack overflow exception. There is still one page of stack left when the exception gets dispatched, so that the exception dispatching logic itself (including filter functions) can execute - but Windows throws the exception <strong>because it couldn't allocate another guard page</strong>. That means that the next stack overflow, or probe, will not result in a stack overflow exception, but an <strong>access violation</strong>. So to make probing work reliably (and in particular, repeatably) you need to decommit the memory allocated by the probing and reinstate a guard page.</p>
<p><a href="http://support.microsoft.com/kb/315937" rel="nofollow">This article on KB describes how to decommit stack memory and reinstate the guard page.</a> It probes using recursion and 10,000-byte increments; the compiler by default implements its own stack probing for stack allocations of locals >4KB, so that the stack growth mechanism works correctly.</p>
http://stackoverflow.com/questions/1345404/convert-string-to-integer-recursively/1345476#13454762Answer by Barry Kelly for Convert string to integer recursively?Barry Kelly2009-08-28T07:06:21Z2009-08-28T07:06:21Z<p>Sure, it's easy enough, but you need to write two functions, one with an accumulator, like this:</p>
<pre><code>int str2int_rec(char *c, int accum)
{
if (!c || !*c || !isdigit(*c))
return accum;
return str2int_rec(c + 1, accum * 10 + (*c - '0'));
}
int str2int(char *c)
{
return str2int_rec(c, 0);
}
</code></pre>
http://stackoverflow.com/questions/1340263/what-is-the-fastest-way-to-find-all-the-file-with-the-same-inode/1340295#13402950Answer by Barry Kelly for What is the fastest way to find all the file with the same inode?Barry Kelly2009-08-27T10:52:59Z2009-08-27T10:52:59Z<p>Here's a way:</p>
<ul>
<li>Use <code>find -printf "%i:\t%p</code> or similar to create a listing of all files prefixed by inode, and output to a temporary file</li>
<li>Extract the first field - the inode with ':' appended - and sort to bring duplicates together and then restrict to duplicates, using <code>cut -f 1 | sort | uniq -d</code>, and output that to a second temporary file</li>
<li>Use <code>fgrep -f</code> to load the second file as a list of strings to search and search the first temporary file.</li>
</ul>
<p>(When I wrote this, I interpreted the question as finding all files which had duplicate inodes. Of course, one could use the output of the first half of this as a kind of index, from inode to path, much like how locate works.)</p>
<p>On my own machine, I use these kinds of files a lot, and keep them sorted. I also have a text indexer application which can then apply binary search to quickly find all lines that have a common prefix. Such a tool ends up being quite useful for jobs like this.</p>
http://stackoverflow.com/questions/1339029/what-happens-behind-the-scenes-when-you-set-an-int32-equal-to-an-int16/1339053#13390535Answer by Barry Kelly for What happens behind the scenes when you set an Int32 equal to an Int16?Barry Kelly2009-08-27T05:38:23Z2009-08-27T05:38:23Z<p>Something like this:</p>
<pre><code>IL_0001: /* 1F | 32 */ ldc.i4.s 50
IL_0003: /* 0B | */ stloc.1
IL_0004: /* 07 | */ ldloc.1
IL_0005: /* 0A | */ stloc.0
</code></pre>
<p>At a lower level, it depends on the machine architecture and optimization level. Code like this specifically, that has no effect, will probably just be omitted altogether. Otherwise, it'll be simple code, perhaps like this:</p>
<pre><code>movsx eax, word ptr [ebp+12]
mov [ebp+8], eax
</code></pre>
<p><code>movsx</code> is the x86 instruction which preserves the sign of a shorter number when it's being loaded into a larger destination; basically, it looks at the most significant bit of the smaller source and copies it into the remaining bits when it's extending the number.</p>
http://stackoverflow.com/questions/1338913/c-equivalent-of-exceptioncontinueexecution-with-exception-filter/1338961#13389612Answer by Barry Kelly for C# equivalent of "EXCEPTION_CONTINUE_EXECUTION" with exception filter Barry Kelly2009-08-27T05:08:43Z2009-08-27T05:08:43Z<p>The CLR supports exception filters of two-pass exception dispatch via the <code>filter</code> / <code>endfilter</code> IL clause, but the low-level instructions that directly implement it are not supported by the C# compiler.</p>
<p>Also, the only two return values from the clause that are supported are 0 and 1, which refer to <code>exception_continue_search</code> and <code>exception_execute_handler</code> respectively. So, resumption of execution at the point of the exception is not an option.</p>
http://stackoverflow.com/questions/1697360/how-to-syntax-highlight-in-a-richtextbox-c/1697587#1697587Comment by Barry Kelly on How to Syntax Highlight in a RichTextBox [C#]?Barry Kelly2009-11-08T19:31:58Z2009-11-08T19:31:58ZSyntax highlighting, for a text renderer designed to call you back or iteratively receive text before rendering, is actually pretty trivial: it's just a lexical analysis that classifies the text according to its token type. But RTF and other rich editors are not designed this way, with separation between model data and its presentation.http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi/1694082#1694082Comment by Barry Kelly on Is There A Fast GetToken Routine For Delphi?Barry Kelly2009-11-08T15:03:16Z2009-11-08T15:03:16ZOops, that comment was in the wrong box.http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphiComment by Barry Kelly on Is There A Fast GetToken Routine For Delphi?Barry Kelly2009-11-08T14:48:22Z2009-11-08T14:48:22ZI updated my answer. End result: it depends. If your delimiter is likely to be more than one character, your original routine isn't too bad, though it may be possible to make faster using Boyer-Moore. If it is a single character, then PChar scanning will beat it. BTW, if speed is very important and your data source is not UTF-16, then you will be faster with AnsiString and PAnsiChar as well.http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphi/1694082#1694082Comment by Barry Kelly on Is There A Fast GetToken Routine For Delphi?Barry Kelly2009-11-08T14:47:33Z2009-11-08T14:47:33ZI updated my answer. End result: it depends. If your delimiter is likely to be more than one character, your original routine isn't too bad, though it may be possible to make faster using Boyer-Moore. If it <i>is</i> a single character, then PChar scanning will beat it. BTW, if speed is very important and your data source is not UTF-16, then you will be faster with AnsiString and PAnsiChar as well.http://stackoverflow.com/questions/1694001/is-there-a-fast-gettoken-routine-for-delphiComment by Barry Kelly on Is There A Fast GetToken Routine For Delphi?Barry Kelly2009-11-08T13:48:48Z2009-11-08T13:48:48ZYou are converting PChar pointer to a string each time. Either compare with Delim[1], or change the Delim argument to a Char.http://stackoverflow.com/questions/1686940/abort-a-thread/1687228#1687228Comment by Barry Kelly on Abort a thread?Barry Kelly2009-11-06T17:21:57Z2009-11-06T17:21:57ZRob, good point, I removed it. mghie - you can't interrupt a thread, so it has to be in another process. That means you can't use anonymous methods. If you need to interrupt arbitrary code reliably, the code needs to be in a different process, so it's an approach that has architectural ramifications.http://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree/321686#321686Comment by Barry Kelly on How do I set a field value in an C# Expression tree?Barry Kelly2009-10-27T21:07:21Z2009-10-27T21:07:21Zchakrit - it's faster.http://stackoverflow.com/questions/243408/why-do-i-get-a-security-warning-in-visual-studio-2008-when-creating-a-project/1140183#1140183Comment by Barry Kelly on Why do I get a security warning in visual studio 2008 when creating a project?Barry Kelly2009-10-25T21:37:20Z2009-10-25T21:37:20ZVery bizarre. I've been getting this security warning error, <i>and</i> hanging when closing projects, and creating a Startup folder in All Users seems to have fixed both.http://stackoverflow.com/questions/1583828/how-can-i-get-embarcadero-quality-central-to-do-something-about-my-bug-reportComment by Barry Kelly on How Can I Get Embarcadero Quality Central To Do Something About My Bug ReportBarry Kelly2009-10-18T03:33:20Z2009-10-18T03:33:20ZNSD - I'd suggest a customer support incident - if this fault is costing the customer money, it ought to get a fix. But because I don't know the mechanics of how support incidents work, I can't make promises.http://stackoverflow.com/questions/1369191/what-is-the-compiler-version-for-delphi-2010/1373264#1373264Comment by Barry Kelly on What is the compiler version for Delphi 2010?Barry Kelly2009-10-15T22:36:55Z2009-10-15T22:36:55ZThe thing between 2006 and 2007 is that the compiler in 2007 used the same DCU format, so people's components would still work.http://stackoverflow.com/questions/1524776/premature-string-destruction-and-how-to-avoid-it/1524833#1524833Comment by Barry Kelly on Premature string destruction and how to avoid it?Barry Kelly2009-10-06T11:46:28Z2009-10-06T11:46:28Zsmasher - you have the right idea. Capturing variables extends their lifetime. If you don't capture the string, but do capture a pointer to the contents of the string, the string will get freed from out underneath you. So you either capture the string with a do-nothing procedure - such as "procedure Use(const X); begin end;" - or you leave the typecast up to the last minute, or do it in the body of the anonymous method.http://stackoverflow.com/questions/1524776/premature-string-destruction-and-how-to-avoid-it/1524833#1524833Comment by Barry Kelly on Premature string destruction and how to avoid it?Barry Kelly2009-10-06T11:44:20Z2009-10-06T11:44:20Zwcoenen - yes you can depend on such details, otherwise Delphi code would break quite severely - there's a lot of code that typecasts strings to PChar for API calls, relying on the string not going away, even though it isn't used subsequently.http://stackoverflow.com/questions/326159/best-reason-not-to-hire-a-phd/326165#326165Comment by Barry Kelly on Best reason not to hire a PhD?Barry Kelly2009-10-03T03:35:58Z2009-10-03T03:35:58ZBobbyShaftoe - Good devs don't copy and paste code either - they're the ones who write the code in the first place. The risk with a PhD is that they'll go too deep into a problem, and try too hard to get to get the purest, best representation of it, that they'll lose sight of the fact that the problem needs to be fixed <i>now</i>, not in a year, or two years, or three.http://stackoverflow.com/questions/1482311/how-to-patch-a-method-in-classes-pasComment by Barry Kelly on How to patch a method in Classes.pasBarry Kelly2009-09-26T23:14:13Z2009-09-26T23:14:13ZDFMs are processed as UTF8, to my knowledge.http://stackoverflow.com/questions/1482311/how-to-patch-a-method-in-classes-pas/1482337#1482337Comment by Barry Kelly on How to patch a method in Classes.pasBarry Kelly2009-09-26T23:13:34Z2009-09-26T23:13:34ZAlastair - you're mistaken about the requirement that "the whole thing has to be recompiled". If you're only changing the implementation side, and in a minor way, and you're statically linking the final executable (i.e. no packages), you don't need to this.