How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T00:39:07Z http://stackoverflow.com/feeds/question/290997 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav 1 How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? François http://stackoverflow.com/users/9842 2008-11-14T18:47:38Z 2008-11-21T12:00:11Z <p>We have the TAncestor class which has a virtual method GetFile.<br /> We will have some TDescendant = class(TAncestor) which may override GetFile.<br /> We want to insure that in such a case those overriden methods do not call inherited in their implementation.<br /> But if they don't implement GetFile and just use the one from TAncestor, it's fine.<br /> Is there a (simple) way to do this? </p> <p>to make it clearer:<br /> - yes, doc clearly says 'do not use inherited in your descendant class'<br /> - I have no control of what others will code when overriding and don't rely on them reading the doc<br /> - I cannot restrict the execution to the exact class TAncestor as it is legit for descendant to use it if they don't provide their own implementation<br /> - I cannot make it abstract because it needs to have a default implementation<br /> - I want to enforce this with a way of detecting in the base class that the code is called through a descendant overridden implementation<br /> - Looking at the stack seems overkill but is my 1st idea so far</p> http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/291046#291046 1 Answer by Steve for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? Steve http://stackoverflow.com/users/22712 2008-11-14T19:04:44Z 2008-11-14T19:04:44Z <p>When you implement the ancestor, override the method, but don't call inherited inside the method.</p> <pre><code>procedure TDescentdent.GetFile; begin //do not call inherited //Do something new end; </code></pre> http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/291048#291048 1 Answer by Jamie for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? Jamie http://stackoverflow.com/users/922 2008-11-14T19:05:25Z 2008-11-14T19:37:47Z <p>Could make TAncestor.GetFile abtract so it has to be overriden but provide a helper method for people who don't want to implement it themselves?</p> <p>Also, do you not have control over who is overriding this method? e.g. is it used by people external to your team?</p> <pre><code>procedure TDescentdent.GetFile; begin FileUtils.GetFile end; </code></pre> <p>Edit: Steve is of course right if you have control over the descendant code</p> http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/291093#291093 0 Answer by Gabe Moothart for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? Gabe Moothart http://stackoverflow.com/users/13356 2008-11-14T19:25:31Z 2008-11-14T19:25:31Z <p>I do not think you really want to do this, but in any case it doesn't sound like you're using inheritance properly.</p> <p>If you really need to do something like this, maybe you could use the <a href="http://en.wikipedia.org/wiki/Strategy_pattern" rel="nofollow">strategy pattern</a> instead? Extract GetFile into its own class hierarchy, with an abstract class (say, TAbstractFileUtils) that defines the contract, and concrete subclasses that implement it (including your default TDefaultFileUtils). The constructor could take an instance of TAbstractFileUtils. This means the caller (or a factory method) is responsible for providing the correct implementation.</p> <p>This won't prevent others from subclassing TDefaultFileUtils and calling the inherited GetFile, but that is just not how inheritance works anyway.</p> http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/291095#291095 1 Answer by Fabricio Araujo for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? Fabricio Araujo http://stackoverflow.com/users/10300 2008-11-14T19:25:57Z 2008-11-14T19:25:57Z <p>If the descendants are under your control, just override the method and not use the <strong>inherited</strong> keyword. Else, that's not much that can be done - it's up to the people overriding the GetFile method to use it's inherited method or not. Except, maybe, the Jamie's idea.</p> http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/291112#291112 4 Answer by Rob Kennedy for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? Rob Kennedy http://stackoverflow.com/users/33732 2008-11-14T19:32:14Z 2008-11-14T19:40:10Z <p>No. There is no way to force code outside your control to <em>not</em> call something that is otherwise perfectly accessible. The best you can do is strongly discourage the practice in the documentation for the class.</p> <p>What are the consequences if a descendant calls the inherited method? If it means the program stops working, then so be it. The programmer who writes the descendant class will test the code, notice that it doesn't work, and then consult the documentation for the method to ensure that he's using it correctly (at which time he'll learn he isn't).</p> <p>You could take another approach. Instead of making the function virtual, and having descendants override it, provide a protected method-pointer property.</p> <pre><code>type TGetFileImpl = procedure of object; TAncestor = class private FGetFile: TGetFileImpl; protected property GetFileImpl: TGetFileImpl write FGetFile write FGetFile; public procedure GetFile; // not virtual. end; TDescendant = class(TAncestor) private procedure SpecializedGetFile; public constructor Create; end; procedure TAncestor.GetFile; begin if Assigned(GetFileImpl) then GetFileImpl else begin // Do default implementation instead end; end; constructor TDescendant.Create; begin GetFileImpl := SpecializedGetFile; end; </code></pre> <p>The base class provides a method pointer that descendants can assign to indicate they want their own special handling. If the descendant provides a value for that property, then the base class's <code>GetFile</code> method will use it. Otherwise, it will use the standard implementation. Define <code>TGetFileImpl</code> to match whatever the signature of <code>GetFile</code> will be.</p> http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/291576#291576 0 Answer by François for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? François http://stackoverflow.com/users/9842 2008-11-14T21:58:28Z 2008-11-14T21:58:28Z <p>Well, having to clarify the question gave me a solution:</p> <pre><code>type TForm1 = class(TForm) btnGoodDescendant: TButton; btnBadDescendant: TButton; btnSimpleDescendant: TButton; procedure btnGoodDescendantClick(Sender: TObject); procedure btnBadDescendantClick(Sender: TObject); procedure btnSimpleDescendantClick(Sender: TObject); private { Private declarations } public { Public declarations } end; TAncestor = class public procedure GetFile; virtual; end; TBadDescendant = class(TAncestor) public procedure GetFile; override; end; TGoodDescendant = class(TAncestor) public procedure GetFile; override; end; TDescendant = class(TAncestor) public end; var Form1: TForm1; implementation {$R *.dfm} procedure TAncestor.GetFile; type TGetFileImpl = procedure of object; var BaseGetFile, GetFileImpl: TGetFileImpl; ClassAncestor: TClass; begin // detecting call through inherited... GetFileImpl := GetFile; // method actually called ClassAncestor := ClassType; while (ClassAncestor &lt;&gt; nil) and (ClassAncestor &lt;&gt; TAncestor) do ClassAncestor := ClassAncestor.ClassParent; if ClassAncestor = nil then raise Exception.Create('no ancestor???'); BaseGetFile := TAncestor(@ClassAncestor).GetFile; // TAncestor code // if we are here, we should be directly using TAncestor code, not // not calling inherited from a derived class // thus the actual code should be exactly TAncestor code. if TMethod(GetFileImpl).Code &lt;&gt; TMethod(BaseGetFile).Code then raise Exception.Create('You must not call inherited!'); // this is the Ancestor work code here ShowMessage('Ancestor code for GetFile'); end; { TBadDescendant } procedure TBadDescendant.GetFile; begin inherited; ShowMessage('TBadDescendant code for GetFile'); end; { TGoodDescendant } procedure TGoodDescendant.GetFile; begin ShowMessage('TGoodDescendant code for GetFile'); end; procedure TForm1.btnGoodDescendantClick(Sender: TObject); begin with TGoodDescendant.Create do GetFile; end; procedure TForm1.btnBadDescendantClick(Sender: TObject); begin with TBadDescendant.Create do GetFile; end; procedure TForm1.btnSimpleDescendantClick(Sender: TObject); begin with TDescendant.Create do GetFile; end; </code></pre> http://stackoverflow.com/questions/290997/how-to-force-a-descendant-class-to-either-use-directly-the-ancestor-method-or-hav/308563#308563 0 Answer by Kcats for How to force a Descendant class to either use directly the Ancestor method or have a new implementation not calling inherited? Kcats http://stackoverflow.com/users/22602 2008-11-21T12:00:11Z 2008-11-21T12:00:11Z <p>Of course, no solution is perfect, for example:</p> <pre><code>procedure TBadDescendant.GetFile; var AncestorImpl : procedure(This : TObject); ThisClass : TClass; begin AncestorImpl := @TAncestor.GetFile; ThisClass := ClassType; PPointer(Self)^ := TAncestor; AncestorImpl(Self); PPointer(Self)^ := ThisClass; ShowMessage('TBadDescendant code for GetFile'); end; </code></pre> <p>This will work if GetFile does not call other virtual methods and you don't care about concurrency.</p>