How to create an aspect checking for null references on all methods in a class in postsharp - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T13:53:04Zhttp://stackoverflow.com/feeds/question/261151http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/261151/how-to-create-an-aspect-checking-for-null-references-on-all-methods-in-a-class-in0How to create an aspect checking for null references on all methods in a class in postsharpbovium2008-11-04T07:26:56Z2008-11-04T08:04:25Z
<p>How to create an aspect checking for null references on all methods in a class in postsharp.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test
{
[MethodParameterNullCheck]
internal class Class
{
public Class()
{
}
public void MethodA(int i, ClassA a, ClassB b)
{
//Some business logic
}
}
}
</code></pre>
<p>The aspect [MethodParameterNullCheck] should then unfold to the following code:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test
{
[MethodParameterNullCheck]
internal class Class
{
public Class()
{
}
public void MethodA(int i, ClassA a, ClassB b)
{
if (a == null) throw new ArgumentNullException("Class->MethodA: Argument a of ClassA is not allowed to be null.");
if (b == null) throw new ArgumentNullException("Class->MethodA: Argument b of ClassB is not allowed to be null.");
// Some Business Logic
}
}
}
</code></pre>
<p>I will appreciate if you can give me a sample implementation on this to get me startet on AOP with postsharp.</p>
http://stackoverflow.com/questions/261151/how-to-create-an-aspect-checking-for-null-references-on-all-methods-in-a-class-in/261209#2612091Answer by Marc Gravell for How to create an aspect checking for null references on all methods in a class in postsharpMarc Gravell2008-11-04T07:58:56Z2008-11-04T08:04:25Z<p>An alternative approach is an extension method:</p>
<pre><code>public static void ThrowIfNull<T>(this T obj, string parameterName) where T : class
{
if(obj == null) throw new ArgumentNullException(parameterName);
}
</code></pre>
<p>then call:</p>
<pre><code>foo.ThrowIfNull("foo");
bar.ThrowIfNull("bar");
</code></pre>
<p>The <code>T : class</code> pervents us accidentally boxing ints etc.</p>
<p>Re AOP; Jon Skeet has a sample for something similar <a href="http://msmvps.com/blogs/jon_skeet/archive/2008/03/27/postsharp-and-iterator-blocks-a-beautiful-combination.aspx" rel="nofollow">here</a> - but covering a single method/parameter.</p>
<p>Here's the aspect reproduced; note that this aspect covers only 1 argument at a time, and is method-specific, but in general I'd argue that this is perfectly reasonable... however, you could probably change it.</p>
<pre><code>using System;
using System.Reflection;
using PostSharp.Laos;
namespace IteratorBlocks
{
[Serializable]
class NullArgumentAspect : OnMethodBoundaryAspect
{
string name;
int position;
public NullArgumentAspect(string name)
{
this.name = name;
}
public override void CompileTimeInitialize(MethodBase method)
{
base.CompileTimeInitialize(method);
ParameterInfo[] parameters = method.GetParameters();
for (int index = 0; index < parameters.Length; index++)
{
if (parameters[index].Name == name)
{
position = index;
return;
}
}
throw new ArgumentException("No parameter with name " + name);
}
public override void OnEntry(MethodExecutionEventArgs eventArgs)
{
if (eventArgs.GetArguments()[position] == null)
{
throw new ArgumentNullException(name);
}
}
}
}
</code></pre>