I need to access a strict protected property, because I need to create a validation (based in the value of this property) to avoid a bug. (I don't have the source code of the third party class which has this property) only I have the definition of the class (interface) and the dcu (so I can't change the property visibility). The question is Exist a way to access a strict protected property? (I really read the Hallvard Vassbotn Blog, but I don't find anthing about this particular topic.)

link|improve this question

You probably can use raw memory access to read the backing field of this property. No idea if there is a robuster solution. – CodeInChaos Nov 30 '11 at 17:13
Looks like class helpers for the win. – Warren P Nov 30 '11 at 19:20
feedback

2 Answers

up vote 9 down vote accepted

This class helper example compiles fine :

type
  TMyOrgClass = class
  strict private
    FMyPrivateProp: Integer;
  strict protected
    property MyPrivateProp: Integer read FMyPrivateProp;
  end;

  TMyClassHelper = class helper for TMyOrgClass
  private
    function GetMyPublicProp: Integer;
  public
    property MyPublicProp: Integer read GetMyPublicProp;
  end;

function TMyClassHelper.GetMyPublicProp: Integer;
begin
  Result:= Self.FMyPrivateProp;  // Access the org class with Self
end;

Some more information about class helpers can be found here : should-class-helpers-be-used-in-developing-new-code

link|improve this answer
Does this work when class helper declared in a different unit? And the questions talks about strict protected members, properties to be precise. – David Heffernan Nov 30 '11 at 18:15
@DavidHeffernan, ok I revised the code to reflect the strict protected properties. And yes, it works when declared in separate units. – LU RD Nov 30 '11 at 18:29
Very good. I have to confess to never having used class helpers. – David Heffernan Nov 30 '11 at 18:33
3  
+1 I used this "hack" many times. – RRUZ Nov 30 '11 at 19:17
feedback

You can use a variant of the standard protected hack.

Unit 1

type
  TTest = class
  strict private
    FProp: Integer;
  strict protected
    property Prop: Integer read FProp;
  end;

Unit 2

type
  THackedTest = class(TTest)
  strict private
    function GetProp: Integer;
  public
    property Prop: Integer read GetProp;
  end;

function THackedTest.GetProp: Integer;
begin
  Result := inherited Prop;
end;

Unit 3

var
  T: TTest;

....

THackedTest(T).Prop;

Strict protected only allows you to access the member from the defining class, and subclasses. So you have to actually implement a method on the cracking class, make it public, and use that method as the route into the target strict protected member.

link|improve this answer
The usual warning provisions include this one; When someone modifies the upstream class, such as when you move to a new delphi version, say, and the VCL sources change, your Cracker class gets upgraded to become (perhaps) a Crasher class. – Warren P Nov 30 '11 at 19:18
@WarrenP No that's not the case. If the cracker is ever a crasher, then using the upstream class untainted causes the same crash, – David Heffernan Nov 30 '11 at 19:19
1  
I like this solution better than the class helper solution since it doesn't have the limitations that class helpers have. – Jens Mühlenhoff Nov 30 '11 at 19:55
2  
@WarrenP: This solution is quite safe, since the inherited class shares the memory layout of the original class. THackedTest doesn't add any variables or virtual methods. – Jens Mühlenhoff Nov 30 '11 at 19:57
Okay. Well, then this could be a game saver. It works in Delphi 7, too, whereas the class helper one doesn't. +1. – Warren P Nov 30 '11 at 21:39
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.