Problem with with Delphi 2009 and copying memory - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T22:23:22Zhttp://stackoverflow.com/feeds/question/619902http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/619902/problem-with-with-delphi-2009-and-copying-memory1Problem with with Delphi 2009 and copying memoryHarriv2009-03-06T18:24:05Z2009-03-07T18:02:47Z
<p>I'm testing <a href="http://sourceforge.net/projects/delphimodbus" rel="nofollow">DelphiModbus library</a> on Delphi 2009 and don't get quite the results I want. I think the problem lies with the following line on IdModbusClient.pas:</p>
<pre><code>Move(Buffer, ReceiveBuffer, iSize);
</code></pre>
<p>It looks like ReceiveBuffer is set to some garbage.</p>
<p>Buffer is defined as TIdBytes (from Indy components)</p>
<p>ReceiveBuffer is defined as TCommsBuffer:</p>
<pre><code> TModBusFunction = Byte;
TModBusDataBuffer = array[0..256] of Byte;
TCommsBuffer = packed record
TransactionID: Word;
ProtocolID: Word;
RecLength: Word;
UnitID: Byte;
FunctionCode: TModBusFunction;
MBPData: TModBusDataBuffer;
Spare: Byte;
end; { TCommsBuffer }
</code></pre>
<p>And iSize is of course the size of the Buffer in bytes.</p>
<p>I wonder if this has anything to do with unicode conversion?</p>
http://stackoverflow.com/questions/619902/problem-with-with-delphi-2009-and-copying-memory/619959#6199590Answer by Ken White for Problem with with Delphi 2009 and copying memoryKen White2009-03-06T18:42:11Z2009-03-06T23:38:36Z<p><strike>It looks to me like you're missing a couple of pointer dereferences, and therefore corrupting memory addresses. </p>
<p>If I'm not mistaken, the Move() call should be:</p>
<p>
Move(Buffer^, ReceiveBuffer^, iSize);
</strike></p>
<p>I've removed my totally worthless post content (leaving it for posterity and to give someone a good laugh).</p>
<p>I don't see anything that would be affected by Unicode at all. I'm going to edit the tags to include Delphi (without the 2009), as some of the CodeGear Delphi developers are currently posting there. Perhaps one of them can see what's happening.</p>
<p>I made up a contrived example (actually a pretty useless one):</p>
<pre><code>uses
IdGlobal;
type
TModBusFunction = Byte;
TModBusDataBuffer = array[0..256] of Byte;
TCommsBuffer=packed record
TransactionID: Word;
ProtocolID: Word;
RecLength: Word;
UnitID: Byte;
FunctionCode: TModBusFunction;
MBPData: TModBusDataBuffer;
Spare: Byte;
end;
procedure TForm1.FormShow(Sender: TObject);
var
Buffer: TIdBytes;
ReceiveBuffer: TCommsBuffer;
//iSize: Word;
begin
FillChar(ReceiveBuffer, SizeOf(ReceiveBuffer), 0);
ReceiveBuffer.TransactionID := 1;
ReceiveBuffer.ProtocolID := 2;
ReceiveBuffer.RecLength := 3;
ReceiveBuffer.UnitID := 4;
ReceiveBuffer.FunctionCode := 5;
FillChar(ReceiveBuffer.MBPData[0], SizeOf(ReceiveBuffer.MBPData), 6);
ReceiveBuffer.Spare := 7;
SetLength(Buffer, SizeOf(ReceiveBuffer));
Move(ReceiveBuffer, Buffer, SizeOf(ReceiveBuffer));
Move(Buffer, ReceiveBuffer, SizeOf(ReceiveBuffer));
ReceiveBuffer.UnitID := 8;
end;
</code></pre>
<p>I then set a breakpoint on the last line before the end, and ran it. When the breakpoint was hit, I looked at the contents of ReceiveBuffer using ToolTip Evaluation, and everything looked perfectly fine. I could see all of the proper values, including the ReceiveBuffer.Spare being 7. I then single stepped, and looked at ReceiveBuffer.UnitID; it in fact had a value of 8. </p>
<p>However, pressing F9 to continue running (expecting to be able to just close the form and end the application), I ended up in the CPU window and got a message from Vista that the application wasn't responding. I was just outside ntdll.DebugBreakPoint, IIRC, and single stepping brought me into ntdll.RtlReportException. I'm not quite sure what's happening, but it ain't good. Still looking.</p>
<p>Edit2: I ran it again, with the same results. However, this time I noticed before I used Ctrl+F2 to terminate the app that Vista was giving me a popup tooltray window indicating that "Project1.exe has been closed" and mentioning DEP (which I have enabled in hardware on this machine). </p>
http://stackoverflow.com/questions/619902/problem-with-with-delphi-2009-and-copying-memory/622224#6222244Answer by Rob Kennedy for Problem with with Delphi 2009 and copying memoryRob Kennedy2009-03-07T18:02:47Z2009-03-07T18:02:47Z<p>Indy's <code>TIdBytes</code> type is a dynamic array, defined in <em>IdGlobal.pas</em>:</p>
<pre><code>type
TIdBytes = array of Byte;
</code></pre>
<p>You can't pass a variable of that type directly to <code>Move</code> and expect it to work because it will only copy the four-byte <em>reference</em> stored in that variable. (And if you told it to copy more than four bytes, then it will proceed to copy whatever else resides in memory after that variable — who knows what.) Given these declarations:</p>
<pre><code>var
Buffer: TIdBytes;
ReceiveBuffer: TCommsBuffer;
</code></pre>
<p>The way to call <code>Move</code> on those variables is like this:</p>
<pre><code>if Length(Buffer) > 0 then
Move(Buffer[0], ReceiveBuffer, iSize);
</code></pre>
<p>It works like that because <code>Move</code>'s parameters are <a href="http://www.cs.wisc.edu/~rkennedy/untyped" rel="nofollow"><em>untyped</em></a>, so you need to pass the <em>value</em> that you want to copy, not a pointer or reference to the value. The compiler handles the referencing by itself.</p>
<p>The code is a little weird because it <em>looks like</em> you're just copying one byte out of <code>Buffer</code>, but don't let it bother you too much. It's a Delphi idiom; it's just the way it works.</p>
<p>Also, this has nothing to do with Delphi 2009; it's worked this way ever since Delphi 4, when dynamic arrays were introduced. And <code>Move</code> has been this way forever.</p>