Problem with Delphi 2009 and old-style object type - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:28:46Z http://stackoverflow.com/feeds/question/1013489 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type 2 Problem with Delphi 2009 and old-style object type Martin Binder 2009-06-18T15:48:31Z 2009-06-22T10:44:51Z <p>Hi, I've got a lot of older code that uses the old-style pascal object type that I'm trying to get working in Delphi 2009. It compiles, but there seems to be several problems dealing with virtual methods. It appears that this problem has already been reports on Quality Central:</p> <p><a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=71723" rel="nofollow">http://qc.embarcadero.com/wc/qcmain.aspx?d=71723</a></p> <p>I was hoping anyone who still uses these (PatrickvL maybe?) could respond with more information. We've got A LOT of code that uses objects and if this isn't going to get fixed, we're stuck. Thanks in advance!</p> http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1014512#1014512 4 Answer by Rob Kennedy for Problem with Delphi 2009 and old-style object type Rob Kennedy 2009-06-18T18:51:19Z 2009-06-18T18:51:19Z <p>If you're using virtual methods, then you're clearly accessing the objects by reference, not by value. That's how classes always work in Delphi, so switching to classes shouldn't be too hard.</p> <p>For any object types that <em>don't</em> have virtual methods, you should be able to turn them into records. Records are allowed to have methods now, as well as visibility specifiers. The don't support inheritance, though.</p> <p>Old-style objects have been deprecated since February 14, 1994, the release date of the first version of Delphi. They've been deteriorating ever since. You should have moved away from them years ago.</p> http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1014967#1014967 3 Answer by Despatcher for Problem with Delphi 2009 and old-style object type Despatcher 2009-06-18T20:18:15Z 2009-06-18T20:18:15Z <p>I must admit I had a couple of beers looking at this, just for the challenge :) You need some magic bytes. According to legend Old style objects ONLY create a space for the pointers if you use ANY virtual methods. No Virtual methods NO VMT. </p> <p>The VMT pointer is ALWAYS FIRST with new style objects because they all declare virtual methods. Seems Someone forgot that with old style objects the VMT can come later. so assuming its a just one pointer this makes it work on my D2009. I'm not into the guts of the compiler, a guy called Dave Jewell who used to write for PC pro could possibly confirm that this will be stable...</p> <pre><code>Type PObject1 = ^TObject1; TObject1 = Object Magic: Array[0..3] of Byte; //or integer or whatever I was playing with the size FCount : Integer; Constructor Init; Procedure Add; virtual; Procedure Deduct; virtual; end; Type PObject2 = ^TObject2; TObject2 = Object(TObject1) Constructor Init; end; </code></pre> <p>Then after construction these work:</p> <pre><code>. . . Object2^.Add; Object2^.Deduct; </code></pre> <p>and I get the appropriate console output</p> <p>I added an additional proc just to make sure that it worked for 2 virtuals :)</p> <p>Incidentally they work whether you put the ^ or not 2009 knows what you mean :(</p> <p>Lacking a proper fix from embracodeland You still may still have to alter each BASE object definition. Hopefully you could do it with find and insert/replace or Grep... Good luck.</p> http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1017654#1017654 2 Answer by Despatcher for Problem with Delphi 2009 and old-style object type Despatcher 2009-06-19T12:18:41Z 2009-06-19T12:18:41Z <p>Ok - Done that - I cannot get it to fail.... Is your D2009 Fully Patched? Project/Compiler Options?</p> <p>For absolute certainty and comparison here are my units:</p> <p>---------------Project File</p> <pre><code>program testD2009; {$APPTYPE CONSOLE} uses SysUtils, Object1U in 'Object1U.pas', Object2U in 'Object2U.pas'; Var Object1 : PObject1; Object2 : PObject2; begin try Object1 := New(PObject1,Init); Object1^.Add; Object1^.Deduct; Object2 := New(PObject2,Init); Object2^.Add; Object2^.Deduct; readln; except on E:Exception do Writeln(E.Classname, ': ', E.Message); end; end. </code></pre> <p>--------------Object1 unit</p> <pre><code>unit Object1U; interface uses SysUtils; Type PObject1 = ^TObject1; TObject1 = Object Magic: Array[0..3] of Byte; FCount : Integer; Constructor Init; Procedure Add; virtual; { removing virtual allows the program to run } Procedure Deduct; virtual; { removing virtual allows the program to run } end; implementation Procedure TObject1.Add; begin Writeln('Object1 Add'); end; procedure TObject1.Deduct; begin Writeln('Object1 Deduct'); end; Constructor TObject1.Init; begin inherited; FCount := 0; Writeln('TObject1 Init'); end; end. </code></pre> <p>----------------Object 2 unit</p> <pre><code>unit Object2U; interface uses Object1U; Type PObject2 = ^TObject2; TObject2 = Object(TObject1) Constructor Init; Procedure Add; virtual; { removing virtual allows the program to run } Procedure Deduct; virtual; { removing virtual allows the program to run } end; implementation procedure TObject2.Add; begin Writeln('Object2 Add'); inherited; end; procedure TObject2.Deduct; begin Writeln('Object2 Deduct'); inherited; end; Constructor TObject2.Init; begin Inherited Init; fCount := 1; Writeln('TObject2:Init'); end; end. </code></pre> <p>----------------Program Output:</p> <p>TObject1 Init Object1 Add Object1 Deduct TObject1 Init TObject2:Init Object2 Add Object1 Add Object2 Deduct Object1 Deduct</p> <p>Puzzled I am :). Cheers. Tim.</p> http://stackoverflow.com/questions/1013489/problem-with-delphi-2009-and-old-style-object-type/1026505#1026505 0 Answer by Martin Binder for Problem with Delphi 2009 and old-style object type Martin Binder 2009-06-22T10:44:51Z 2009-06-22T10:44:51Z <p>I sent an e-mail to our local representatives from Embarcadero in regards to this problem and referred them to the report on Quality Central. They basically told us to move all objects to classes, so I'm guessing they're not planning on fixing this...ever. I think we've pretty much accepted that this is the way we have to go if we want to move forward, so now we just have to schedule that work before we can proceed with our upgrade to Delphi 2009. </p> <p>Just wanted to thank everyone who tried to help, but I believe at this point it's a lost cause :-(</p>