active questions tagged postsharp - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T14:49:30Zhttp://stackoverflow.com/feeds/tag/postsharphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1754296/how-to-convert-an-exception-to-another-one-using-postsharp0How to convert an exception to another one using PostSharp?remio2009-11-18T07:54:39Z2009-11-18T19:59:45Z
<p>I would like to automagically add the following code around the body of some methods:</p>
<pre><code>try
{
// method body
}
catch (Exception e)
{
throw new MyException("Some appropriate message", e);
}
</code></pre>
<p>I am working with PostSharp 1.0 and this is what I've done at the moment:</p>
<pre><code>public override void OnException(MethodExecutionEventArgs eventArgs)
{
throw new MyException("Some appropriate message", eventArgs.Exception);
}
</code></pre>
<p>My problem is that I can see the PostSharp <code>OnException</code> call in the stack.<br/>
What would be the good practice to avoid this and get the same call stack as implementing by hand the exception handler?</p>
http://stackoverflow.com/questions/1752526/how-to-get-this-really-fast0How to get this really fast?Jan2009-11-17T23:09:17Z2009-11-18T07:48:45Z
<p>I have a framework that allows users to do queries to a specific datasource (the Football Manager 2010 ingame database, for those of you interested).</p>
<p>In this framework, I have two different modes wherein my framework can run: realtime and cached mode. I want users who use this framework to be able to switch by just calling a different constructor (e.g. <code>new Context(Mode.Cached)</code>). That should be the only switch a user should make, so he can still have all the same Linq calls, but just use Cached mode when his application fits better. Clear.</p>
<p>I had decided that using PostSharp should be my best choice because:</p>
<ul>
<li>Create an aspect on every property (that's already been decorated by an attribute)</li>
<li>In that aspect, check whether we are in <code>Cached</code> or <code>Realtime</code> mode</li>
<li>Return the value either from memory or from cache</li>
</ul>
<p>Well that works. BUT! Speed is not good enough. When doing the following on 90.000 objects:</p>
<pre><code>foreach (Player p in fm.Players)
{
int ca = (short)ProcessManager.ReadFromBuffer(p.OriginalBytes, PlayerOffsets.Ca, typeof(Int16));
}
</code></pre>
<p>It takes only 63 ms. (ReadFromBuffer is a highly optimized function which takes <code>byte[], int, Type</code> and returns <code>object</code>), 63 ms is very reasonable considering the large amounts of objects.</p>
<p><strong>But!</strong> In PostSharp, I implemented quite the same using this:</p>
<pre><code> public override void OnInvocation(MethodInvocationEventArgs eventArgs)
{
if (eventArgs.Method.Name.StartsWith("~get_"))
{
if (Global.DatabaseMode == DatabaseModeEnum.Cached)
{
byte[] buffer = ((BaseObject)eventArgs.Instance).OriginalBytes;
eventArgs.ReturnValue =
ProcessManager.ReadFromBuffer(buffer, this.Offset, eventArgs.Method.ReturnType);
}
</code></pre>
<p>Now I call this using</p>
<pre><code>foreach (Player p in fm.Players)
{
int ca = p.CA;
}
</code></pre>
<p>And it takes <em>782 ms</em>, more than 10 times as much!</p>
<p>I created the aspect as:</p>
<pre><code>[Serializable]
[MulticastAttributeUsage(MulticastTargets.Method, PersistMetaData = true)]
internal class FMEntityAttribute : OnMethodInvocationAspect
{
public FMEntityAttribute(int offset, int additionalStringOffset)
{
this.Offset = offset;
this.AdditionalStringOffset = additionalStringOffset;
}
//blah blah AOP code
}
</code></pre>
<p>And the property is decorated like</p>
<pre><code> [FMEntityAttribute(PlayerOffsets.Ca)]
public Int16 CA { get; set; }
</code></pre>
<p>How can I get this to perform well?!</p>
http://stackoverflow.com/questions/1733391/reduce-postsharp-compile-time-overhead1Reduce PostSharp compile time overheadJason2009-11-14T05:37:10Z2009-11-17T17:16:37Z
<p>We recently introduced <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a> into our code base and the compile time of our ASP.NET MVC project has doubled to quadrupled. We have about 3 MVC projects and approximately 8 class library projects in our solution.</p>
<p>Obviously there will be overhead associated with PostSharp since it is <a href="http://www.postsharp.org/aop-net/compiletime-weaving" rel="nofollow">modifying the MSIL code</a>. But a 2x to 4x overhead is quite an overhead. </p>
<p>Is this typical with PostSharp?</p>
http://stackoverflow.com/questions/1720812/deploy-multiple-projects-using-postsharp-on-a-target-machine-without-the-postshar1Deploy multiple projects using PostSharp on a target machine without the PostSharp MSIEl Bauldo2009-11-12T08:46:26Z2009-11-12T09:35:52Z
<p>We have several projects hanging off of a solution, a website and some services. Each will utilise PostSharp but as we do not want to install PostSharp on the target machine using the MSI we can deploy the relevant suite of PostSharp dependencies as detailed in this blogpost by Scott Wojan.</p>
<p><a href="http://geekswithblogs.net/wojan/archive/2009/01/14/128673.aspx" rel="nofollow">http://geekswithblogs.net/wojan/archive/2009/01/14/128673.aspx</a></p>
<p>This example is fine for a single project.</p>
<p>The question is, how to go about only deploying one set of dependencies to the target machine and have each project reference them from different directories?</p>
http://stackoverflow.com/questions/1716040/preprocessing-c-detecting-methods2Preprocessing C# - Detecting MethodsKazar2009-11-11T15:43:28Z2009-11-11T22:02:33Z
<p>Hey,</p>
<p>I require the ability to preprocess a number of C# files as a prebuild step for a project, detect the start of methods, and insert generated code at the start of the method, before any existing code. I am, however, having a problem detecting the opening of a method. I initially tried a regular expression to match, but ended up with far too many false positives. </p>
<p>I would use reflection, but the MethodInfo class does not reference the point in the original source.</p>
<p><strong>EDIT</strong>: What I am really trying to do here is to support pre-conditions on methods, that pre-condition code being determined by attributes on the method. My initial thought being that I could look for the beginning of the method, and then insert generated code for handling the pre-conditions.</p>
<p>Is there a better way to do this? I am open to creating a Visual Studio Addin if need be.</p>
<p>This is a .NET 2.0 project.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1713873/null-reference-exception-on-methodexecutioneventargs-method-using-postsharp-with0Null reference exception on MethodExecutionEventArgs.Method using PostSharp with multiple web service projectsStewart Roberts2009-11-11T08:45:25Z2009-11-11T20:18:08Z
<p>HI,</p>
<p>I'm using PostSharp to log entry and exit to every method in my Application assembly. This assembly is strongly named, versioned and registered in the GAC.</p>
<p>It is then shared by 2 web service projects hosted in separate Virtual Directories inside IIS. When the OnEntry/OnExit method of the interceptor is invoked by WebServiceProject1 it works fine, however when they are then invoked by WebServiceProject2, the MethodExecutionEventArgs.Method value passed into the interceptor seems to be null and I get a NullReferenceException.</p>
<p>If you restart IIS and invoke the web service projects in the order WebServiceProject2, WebServiceProject1 then again the first one to invoke works, and the other throws a NullReferenceException in the same way. The code is shown below:</p>
<pre><code>[Serializable]
[Log(AttributeExclude = true)]
[AttributeUsage(AttributeTargets.All)]
public sealed class LogAttribute : OnMethodBoundaryAspect
{
public override void OnEntry(MethodExecutionEventArgs eventArgs)
{
IoC.Resolve<ILogger>().WriteMethodEntry(eventArgs.Method, eventArgs.GetReadOnlyArgumentArray());
}
public override void OnExit(MethodExecutionEventArgs eventArgs)
{
IoC.Resolve<ILogger>().WriteMethodExit(eventArgs.Method, eventArgs.ReturnValue);
}
}
</code></pre>
<p>Interestingly, if I remove the assembly from the GAC and make the webservice projects run off the \bin subdirectory copy, it works fine. I don't want to do this however as another part of the application relies on the assemblies being in the GAC, and I don't want lots of different versions of the same DLL in different places.</p>
<p>It is similar to the issue described here : <a href="http://generatedbyatool.net/content/post/2009/07/27/PostSharp-Bug-or-How-To-Recycle-Your-Own-App-Pool.aspx" rel="nofollow">http://generatedbyatool.net/content/post/2009/07/27/PostSharp-Bug-or-How-To-Recycle-Your-Own-App-Pool.aspx</a> but there are obvious differences.</p>
<p>Anyone got any ideas or advice? I'm going to try to build a standalone application to prove this today.</p>
<p>Stoo</p>
http://stackoverflow.com/questions/1680272/use-aop-in-c-to-detect-if-return-value-is-used0Use AOP in C# to detect if return value is usedqueen32009-11-05T12:32:23Z2009-11-05T13:19:20Z
<p>This is related to my other <a href="http://stackoverflow.com/questions/1679727/how-to-remember-to-use-return-value">question</a>, but this time very specific. Is it possible, using AOP (PostSharp in particular) to detect if function's return value was used? For example</p>
<pre><code>var x = y.func(); // used
y.func(); // not used
</code></pre>
<p>Note that detection should be performed for this particular call, not for the function in general.</p>
<p>I never used AOP/PostSharp so even if I don't find answer in PostSharp's docs I can't be sure it's not there. I do not insist on PostSharp, though; I'm OK to use any library as long as it can do the job.</p>
http://stackoverflow.com/questions/1673702/using-reflection-and-postsharp-alternatively0Using Reflection and PostSharp alternatively !Anil Bisnoi2009-11-04T13:21:54Z2009-11-04T13:21:54Z
<p>Is there a Code sample that uses PostSharp actively but can also use System.Reflecttion.Emit alternatively to get field value and load into LocalVariableSymbol of PostSharp ?</p>
<p>eg.</p>
<p>in PS Weavingcontext.InstructionWriter.EmitInstructionField(Opcodenumber.Ldsfld, Ifld);
in Reflection code sample to get the current context and emit the above to the IL Assembly</p>
http://stackoverflow.com/questions/1602803/what-are-the-functional-differences-between-aspectj-and-postsharp1What are the functional differences between AspectJ and PostSharp?LBushkin2009-10-21T18:46:41Z2009-10-22T07:51:38Z
<p>Does anyone know what AOP features are different between AspectJ and PostSharp (yes I know they are for different languages and platforms)?</p>
<p>I'm trying to understand what kind of things AspectJ would allow that PostSharp would not, and vice versa.</p>
http://stackoverflow.com/questions/1604861/hiding-inherited-named-parameters-on-attributes-c-3-51Hiding inherited named parameters on attributes C# (3.5)Courtney2009-10-22T03:22:53Z2009-10-22T04:20:36Z
<p>Hi all,</p>
<p>I am using PostSharp to add some compile time logic to my attributes - in once case <code>[IndexedCategory ("CatName", CatIndex)]</code>. The trouble comes comes in because <code>IndexedCategory</code> derives from <code>CompoundAspect</code> - which has a reasonable number of named params. </p>
<p>Is there any way which I can prevent these from being accessed / shown by intellisence?</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1541697/refactoring-nasty-legacy-systems-via-aop-or-other-automated-means1Refactoring nasty legacy systems via AOP or other automated means?Andrew Matthews2009-10-09T03:49:50Z2009-10-21T23:45:02Z
<p>I've recently been playing around with PostSharp, and it brought to mind a problem I faced a few years back: A client's developer had produced a web application, but they had not given a lot of thought to how they managed state information - storing it (don't ask me why) <em>statically</em> on the Application instance in IIS. Needless to say the system didn't scale and was deeply flawed and unstable. But it was a big and very complex system and thus the cost of redeveloping it was prohibitive. My brief at the time was to try to refactor the code-base to impose proper decoupling between the components.</p>
<p>At the time I tried to using some kind of abstraction mechanism to allow me to intercept all calls to the static resource and redirect them to a component that would properly manage the state data. The problem was there was about 1000 complex references to be redirected (and I didn't have a lot of time to do it in) Manual coding (even with R#) proved to be just too time consuming - we scrapped the code base and rewrote it properly. it took over a year to rewrite.</p>
<p>What I wonder now is - had I had access to an assembly rewriter and/or Aspect oriented programming system (such as a PostSharp) could I have easily automated the refactoring process of finding the direct references and converted them to interface references that could be redirected automatically and supplied by factories.</p>
<p>Has anyone out there used PostSharp or similar systems to rehabilitate pathological legacy systems? How successful were the projects? Did you find after the fact that the effort was worth it? Would you do it again?</p>
<p><strong>UPDATE</strong>:
See <a href="http://aabs.wordpress.com/2009/10/22/can-aop-help-fix-bad-architectures/" rel="nofollow">this</a> blog post for more discussion.</p>
http://stackoverflow.com/questions/1592432/net-conditional-compiler-symbols-and-unit-test-libraries0.NET Conditional Compiler Symbols and Unit Test LibrariesZac2009-10-20T04:26:08Z2009-10-20T07:30:39Z
<p>My team has a set of unit test libraries that run against our application code - unfortunately they are throwing (unexpected) exceptions. The reason for this is that our logging code is being called and the objects aren't setup. The logging code is executed via a method attribute we have setup using PostSharp (which get called before and after the method body executes). The attribute should not be called.</p>
<p>Here's where PostSharp helps us out: it looks for a Conditional Compiler Directive (SKIPPOSTSHARP) which tells it not to execute. In other words, if we define the directive while the unit tests are being executed then we are able to test the desired code independently of the logging aspect - successfully avoiding unnecessary dependencies and complicated mocking code along the way. </p>
<p>This is Great! Except for one catch... A Conditional Compiler Directive defined for our test project is not going to be defined for the project that is being tested - meaning that our code under test still uses the attribute and our tests all fail. </p>
<p>Is it possible to have a compiler directive defined across a whole solution only when running unit tests? Even if we're not applying it to the whole solution, can a directive be applied to a specific project only when we're running unit tests (this would work equally as well)?</p>
<p>I'd also be interested in seeing opinions about this approach (we're trying to achieve seperation and scalability via the AOP code but there does appear to be a few extra hoops for us to jump through as we progress).</p>
<p>NOTE: I'm not talking integration testing here just unit testing. We only want to test the specific unit and we don't care whether the logging code works or not - that gets tested by other unit tests (which work fine).</p>
http://stackoverflow.com/questions/1587715/system-accessviolationexception-with-dynamic-proxy-generation0System.AccessViolationException with Dynamic Proxy GenerationSimon Farrow2009-10-19T09:24:49Z2009-10-19T09:24:49Z
<p>We are using PostSharp to inject caching functionality, we are only seeing this issue when we are using it. When we use Spring the issue seems to go away.</p>
<p>Any help would be appreciated as this, the issue is very difficult to replicate. I've included the stack trace below:</p>
<p>Attempted to read or write protected memory. This is often an indication that other memory is corrupt. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. at System.Diagnostics.SymbolStore.SymWriter.CloseMethod() at System.Reflection.Emit.MethodBuilder.CreateMethodBodyHelper(ILGenerator il) at System.Reflection.Emit.TypeBuilder.CreateTypeNoLock() at System.Reflection.Emit.TypeBuilder.CreateType() at Castle.DynamicProxy.Generators.Emitters.AbstractTypeEmitter.BuildType() at Castle.DynamicProxy.Generators.ClassProxyGenerator.GenerateCode(Type[] interfaces, ProxyGenerationOptions options) at Castle.DynamicProxy.DefaultProxyBuilder.CreateClassProxy(Type theClass, Type[] interfaces, ProxyGenerationOptions options) at Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type targetType, Type[] interfaces, ProxyGenerationOptions options, Object[] constructorArgs, IInterceptor[] interceptors) at Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type targetType, Type[] interfaces, IInterceptor[] interceptors) at NHibernate.Proxy.Poco.Castle.CastleProxyFactory.GetProxy(Object id, ISessionImplementor session)</p>
http://stackoverflow.com/questions/1567028/how-do-i-create-a-pointcut-to-intercept-all-methods-in-a-class-with-postsharp0How do I create a pointcut to intercept all methods in a class with PostSharp?MACSkeptic2009-10-14T15:20:04Z2009-10-15T16:01:22Z
<p>I've tried using AttributeTargetTypes, but it just won't work. What am I missing?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1572783/has-anybody-used-any-aop-products-under-mono0Has anybody used any AOP products under Mono?kmontgom2009-10-15T14:36:01Z2009-10-15T15:59:09Z
<p>I'm looking into using PostSharp on one of my projects. The complicating factor is that I need PostSharp to work on both Windows x64 and Linux x64/Mono.</p>
<p>According to the available info for PostSharp, you can compile on Windows/.NET and run under both .NET and Mono.</p>
<p>The question is this: can I perform PostSharp builds on Linux/Mono?</p>
http://stackoverflow.com/questions/1567233/how-to-use-postsharp-with-moq0How to use PostSharp with MOQ?MACSkeptic2009-10-14T15:52:14Z2009-10-14T15:52:14Z
<p>Hello!</p>
<p>We are trying to use PostSharp, more specifically the OnMethodInvocationAspect, to intercept the methods of a class.</p>
<p>The code runs fine, but when testing it with MOQ, it seems to be messing up with my mocks.</p>
<p>If I remove the aspects, all tests succeed. But, if I turn the aspects back on, the expectations on the MOQ mocks are not met.</p>
<p>Here is a snippet taken from one of our unit tests:</p>
<pre><code>this.sgtrMock.Setup(r => r.RetrieveCurrentTaxes()).Returns(new[] {tax1, tax2});
this.service.LoadServiceTaxes();
this.sgtrMock.Verify(r => r.RetrieveCurrentTaxes(), Times.Once());
</code></pre>
<p>Any ideas about what can be happening? </p>
http://stackoverflow.com/questions/1557761/whats-the-difference-between-postsharp-and-castle-dynamic-proxy0Whats the difference between PostSharp and Castle Dynamic Proxy?jfar2009-10-13T01:03:28Z2009-10-13T13:59:46Z
<p>Just wondering what the main differences are between these libraries, how they differ in features and functionality.</p>
<p>Hoping for more information than I could find with a Google query...</p>
http://stackoverflow.com/questions/417163/anyone-with-postsharp-experience-in-production4Anyone with Postsharp experience in production?Perpetualcoder2009-01-06T16:17:38Z2009-10-09T17:20:56Z
<p>Does anyone out there has used <a href="http://www.postsharp.org/" rel="nofollow">Postsharp</a> AOP framework in production environment? Are there any pitfalls? In order to do some logging etc, can Postsharp be used in conjunction with log4net ?</p>
<p>Any tutorials on using Postsharp with Web Apps and/or log4net will be highly appreciated.</p>
<p>Thanks In Advance.</p>
http://stackoverflow.com/questions/1539582/postsharp-custom-attributes-are-removed-when-using-onmethodinvocationaspect0PostSharp: Custom attributes are removed when using OnMethodInvocationAspectJan2009-10-08T18:17:14Z2009-10-08T18:28:25Z
<p>I've got some aspect like this:</p>
<pre><code>public class MyAttribute : OnMethodInvocationAspect
{
public int Offset { get; internal set; }
public MyAttribute(int offset)
{
this.Offset = offset;
}
public override void OnInvocation(MethodInvocationEventArgs eventArgs)
{
//do some stuff
}
}
</code></pre>
<p>Now I'm having my class, and I add my attribute to it:</p>
<pre><code>class MyClass
{
[MyAttribute(0x10)]
public int MyProp { get; set; }
}
</code></pre>
<p>Works all fine. Yet now I want to use reflection to get my offset; when I do</p>
<pre><code>typeof(MyClass).GetProperty("MyProp").GetCustomAttributes(true);
</code></pre>
<p>It returns nothing. How can I access my original Offset value (the property on my attribute)?</p>
http://stackoverflow.com/questions/1517206/code-generation-based-on-method-attributes1Code Generation based on method AttributesYannick M.2009-10-04T19:44:14Z2009-10-07T22:36:26Z
<p>I was reading through some articles on Caching and Memoization and how to implement it easily using delegates and generics. The syntax was pretty straightforward, and it is surprisingly easy to implement, but I just feel due to the repetitive nature it should be possible to generate code based on an Attribute, instead of having to write the same plumbing code over and over.</p>
<p>Let's say we start off with the default example:</p>
<pre><code>class Foo
{
public int Fibonacci(int n)
{
return n > 1 ? Fibonacci(n-1) + Fibonacci(n-2) : n;
}
}
</code></pre>
<p>And then to memoize this:</p>
<pre><code>// Let's say we have a utility class somewhere with the following extension method:
// public static Func<TResult> Memoize<TResult>(this Func<TResult> f)
class Foo
{
public Func<int,int> Fibonacci = fib;
public Foo()
{
Fibonacci = Fibonacci.Memoize();
}
public int fib(int n)
{
return n > 1 ? Fibonacci(n-1) + Fibonacci(n-2) : n;
}
}
</code></pre>
<p>I thought, wouldn't it be simpler to just make a code generator that spits out this code, once it finds a tagged method that matches one of the Memoize extension methods. So in stead of writing this plumbing code, I could just add an attribute:</p>
<pre><code>class Foo
{
[Memoize]
public int Fibonacci(int n)
{
return n > 1 ? Fibonacci(n-1) + Fibonacci(n-2) : n;
}
}
</code></pre>
<p>Honestly, I know this is looking more like compiler sugar that should be converted by a preprocessor than actual code generation but my question is:</p>
<ol>
<li>What do you think is the best way to find the methods in a c# source file that have a given attribute, parsing out the parametertypes and returntype, and generating a delegate that matches this fingerprint</li>
<li>What would be the best way to integrate this into the build process, without actually overwriting my code. Is it possible to do some preprocessing on the source files before passing it on to the compiler?</li>
</ol>
<p>Thanks for any and all ideas.</p>
<p><strong>Update</strong>:</p>
<p>I have looked into the Postsharp library as Shay had suggested, and it seemed very suited for the job on non time-critical applications like Transaction Management, Tracing or Security.</p>
<p>However when using it in a time-critical context it proved a LOT slower than the delegate. One million iterations of the Fibonacci example with each implementation resulted in a 80x slower runtime. (0.012ms postsharp vs 0.00015ms delegate per call)</p>
<p>But honestly the result is completely acceptable in the context in which I intend to use it. Thanks for the responses!</p>
<p><strong>Update2</strong>:</p>
<p>Apparently the author of Postsharp is working hard on a <a href="http://www.postsharp.org/blog/introducing-postsharp-20-2-amazing-runtime-performance-enhancements" rel="nofollow">release 2.0</a> which will include, among other things, performance improvements in produced code, and compile time. </p>
http://stackoverflow.com/questions/1465506/aspect-oriented-programming-what-do-you-use-postsharp-for3Aspect Oriented Programming: What do you use PostSharp for?Sosh2009-09-23T11:50:10Z2009-10-03T10:19:01Z
<p>Hi,</p>
<p>I would like to ask users of the AOP framework Postsharp, what specifically are you using the framework for?</p>
<p>Also, I know it's use has a big negative impact on build times, but how about runtime performace? Is there much of a hit?</p>
<p>Thanks,</p>
<p>S</p>
http://stackoverflow.com/questions/1502745/why-use-a-post-compiler2Why use a post compiler?Robert MacLean2009-10-01T08:52:53Z2009-10-02T06:45:57Z
<p>I am battling to understand why a post compiler, like <a href="http://www.postsharp.org" rel="nofollow">PostSharp</a>, should ever be needed?</p>
<p>My understanding is that it just inserts code where attributed in the original code, so why doesn't the developer just do that code writing themselves? </p>
<p>I expect that someone will say it's easier to write since you can use attributes on methods and then not clutter them up boilerplate code, but that can be done using DI or reflection and a touch of forethought without a post compiler. I know that since I have said reflection, the performance elephant will now enter - but I do not care about the relative performance here, when the absolute performance for most scenarios is trivial (sub millisecond to millisecond).</p>
http://stackoverflow.com/questions/1426158/adding-aspect-to-an-abstract-method0Adding aspect to an abstract method?skevar72009-09-15T09:37:21Z2009-09-15T11:04:33Z
<p>PostSharp gives this error:</p>
<blockquote>
<p>PostSharp: Cannot apply an
OnMethodInvocation aspect (...) with
target-site weaving on the abstract or
external method "...". Consider
excluding the aspect from this method
or use call-site weaving.</p>
</blockquote>
<p>Suggested call-site weaving is not an appropriate solution for me. Is there any way to add pre/post processing for the abstract method?</p>
http://stackoverflow.com/questions/1418130/postsharp-onmethodboundaryaspect-doesnt-get-called0PostSharp: OnMethodBoundaryAspect doesn't get calledMato2009-09-13T16:23:32Z2009-09-13T20:13:40Z
<p>Hi</p>
<p>I'm using PostSharp to apply a CompoundAspect to a ActiveRecord class (from CastleProject). The code looks like this:</p>
<pre><code>public override void ProvideAspects(object targetElement, LaosReflectionAspectCollection collection)
{
Type targetType = (Type)targetElement;
RevertibleSubAspect revertible = new RevertibleSubAspect();
revertible.Cascade = this.Cascade;
collection.AddAspect(targetType, revertible);
//This isn't working
MethodInfo saveMethod = targetType.GetMethod("Save");
collection.AddAspect(saveMethod, new CommitOnSaveSubAspect());
foreach (PropertyInfo property in targetType.GetProperties())
{
if((this.Only != null && this.Only.IndexOf(property.Name) == -1) ||
(this.Except != null && this.Except.IndexOf(property.Name) > -1))
{
continue;
}
if (property.DeclaringType == targetType && property.CanWrite)
{
MethodInfo method = property.GetSetMethod();
if (method != null && !method.IsStatic)
{
collection.AddAspect(method, new TrackInitialPropertyValuesSubAspect());
}
}
}
}
</code></pre>
<p>Everything works fine, except the CommitOnSaveSubAspect which is a OnMethodBoundaryAspect. The OnSuccess method never gets called when the Save method is invoked. I have already tried moving the code to OnEntry and OnExit but same situation here.</p>
<p>The CommitOnSaveSubAspect class looks like this:</p>
<pre><code>[Serializable]
class CommitOnSaveSubAspect : OnMethodBoundaryAspect
{
public override void OnSuccess(MethodExecutionEventArgs eventArgs)
{
((IRevertible)eventArgs.Instance).Commit();
}
}
</code></pre>
<p><strong>Am I applying the aspect the wrong way?</strong></p>
http://stackoverflow.com/questions/915105/postsharp-and-log4net-and-log4postsharp0Postsharp and log4net and log4postsharpFadeproof2009-05-27T10:52:45Z2009-09-10T00:00:01Z
<p>I stumbled upon log4postsharp <a href="http://code.google.com/p/postsharp-user-plugins/wiki/Log4PostSharp" rel="nofollow">site</a> which is a great tool that uses postsharp for injecting log4net statements into your code at compile time.</p>
<p>The current version of log4postsharp uses Postsharp 1.0 which has some limitations. Does anyone know if there is somewhere a compiled version of log4postsharp that uses Postsharp 1.5 available?</p>
http://stackoverflow.com/questions/1392130/postsharp-and-debugging-problems1PostSharp and debugging problems?skevar72009-09-08T05:24:58Z2009-09-08T06:11:26Z
<p>I've made a very simple aspect, and found a problem when debugging it (see code). I set a breakpoint on the method exit, and it hits inside "entry" method actually. PostSharp 1.5, Visual Studio 2008 SP1<br />
Is this a known bug, are there any workarounds?</p>
<pre><code>class Program
{
[MyAspect]
static void Main(string[] args)
{
Console.WriteLine("body");
} // setting breakpoint here
}
[Serializable]
class MyAspect : OnMethodBoundaryAspect
{
public override void OnEntry(MethodExecutionEventArgs eventArgs)
{ // hits here actually! (debug mode)
Console.WriteLine("entry"); // hits here actually! (release mode)
}
public override void OnExit(MethodExecutionEventArgs eventArgs)
{
Console.WriteLine("exit");
}
}
</code></pre>
http://stackoverflow.com/questions/1382922/mono-cecil-vs-postsharp-core-vs-microsoft-cci-for-implementing-aop-framework1Mono Cecil vs. PostSharp Core vs. Microsoft CCI for implementing AOP frameworkHermann2009-09-05T09:58:49Z2009-09-07T06:51:41Z
<p>Which is the better in terms of capabilities, easy of use, documentation, samples, community/support, VS integration, known implementations, long-term viability, and build speed to implement a custom AOP framework?</p>
<p>I'll start with what I know (I have only tried PostSharp to so far):</p>
<ul>
<li><strong>Microsoft Common Compiler
Instrastruture (CCI)</strong>: I've read that
is used for FxCop, ILMerge, Spec# and
Code Contracts. It seems to be very low level <a href="http://www.jasonbock.net/JB/Default.aspx?blog=entry.3dc8f8f4b5564b3380ce6e21bc56449c" rel="nofollow">as it does not even take care of correcting offsets for branch codes that are borken when IL is modified with it</a>.</li>
<li><strong>PostSharp</strong> is 5 years old, has many
capabilities for AOP (e.g. abstracts
some things you would need to have to
do manually with IL away), source
code available, developed/supported
by only one guy but he is planning on
making this a business, has
documentation but could be better,
builds take about twice as long, very
little samples on how to inject IL
and version 2.0 will be released soon
which promises to be much improved.</li>
<li><strong>Mono Cecil</strong>: Written by one guy, part
of the Mono suite and there is a
plug-in for Reflector called Reflexil
that uses Mono Cecil.</li>
</ul>
http://stackoverflow.com/questions/1346280/any-experience-of-using-postsharp-with-resharper0Any experience of using PostSharp with ReSharperIan Ringrose2009-08-28T10:53:31Z2009-08-28T11:00:59Z
<p>Has anyone used PostSharp with ReSharper, if so what problems should I expect?</p>
http://stackoverflow.com/questions/1327846/onexit-is-not-entering-via-postsharp-in-asp-net-project0OnExit is not entering via PostSharp in asp.net project.mark smith2009-08-25T12:02:29Z2009-08-25T12:12:04Z
<p>Hi there,</p>
<p>I have setup PostSharp and it appears to be working but i don't get it entering OnExit (i have logged setup to ensure it is working) ...</p>
<p>Its a bit tricky to configure with asp.net - or is it just me ... I am using the 1.5 new version</p>
<p>I basically have the following in my web.config and i had to add the SearchPath otherwise it can't find my assemblies</p>
<pre><code> <postsharp directory="C:\Program Files\PostSharp 1.5" trace="true">
<parameters>
<!--<add name="parameter-name" value="parameter-value"/>-->
</parameters>
<searchPath>
<!-- Always add the binary folder to the search path. -->
<add name="bin" value="~\bin"/>
</searchPath>
</postsharp>
</code></pre>
<p>I have set tracing on but what is strange to me is that it appears to build to the temp directory, maybe this is my issue, i am unsure .. hence i do F5 ... Is it possible to name the Output directory and output file?? As you can see it is editing a DLL in the temp dir so IIS is no longer in control so it doesn't execute it ???</p>
<p>Confused! :-)</p>
<p><hr /></p>
<p>C:\Program Files\PostSharp 1.5\postsharp.exe "/P:Output=C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\mysitemvc-1.2\c2087140\8ac2dc93\postsharp\App_Web_04ae3ewy.dll" "/P:IntermediateDirectory=C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\mysitemvc-1.2\c2087140\8ac2dc93\postsharp " /P:CleanIntermediate=False /P:ReferenceDirectory=. /P:SignAssembly=False /P:PrivateKeyLocation= /P:ResolvedReferences= "/P:SearchPath=C:\Source Code\Visual Studio 2008\Projects\mysitemvc\mysitemvc\bin," /V /SkipAutoUpdate "C:\Program Files\PostSharp 1.5\Default.psproj" "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\mysitemvc-1.2\c2087140\8ac2dc93\before-postsharp\App_Web_04ae3ewy.dll"</p>
<p>PostSharp 1.5 [1.5.6.627] - Copyright (c) Gael Fraiteur, 2005-2009.</p>
<p>info PS0035: C:\Windows\Microsoft.NET\Framework\v2.0.50727\ilasm.exe "C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\mysitemvc-1.2\c2087140\8ac2dc93\postsharp\App_Web_04ae3ewy.il" /QUIET /DLL /PDB "/RESOURCE=C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\mysitemvc-1.2\c2087140\8ac2dc93\postsharp\App_Web_04ae3ewy.res" "/OUTPUT=C:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\mysitemvc-1.2\c2087140\8ac2dc93\postsharp\App_Web_04ae3ewy.dll" /SUBSYSTEM=3 /FLAGS=1 /BASE=18481152 /STACK=1048576 /ALIGNMENT=512 /MDV=v2.0.50727 </p>
http://stackoverflow.com/questions/1311918/using-postsharp-to-retry-method-on-exception1Using PostSharp to retry method on Exceptiontheburningmonk2009-08-21T13:23:39Z2009-08-21T16:29:29Z
<p>Hi,</p>
<p>For one of my DAL modules I have lots of duplicated plumbing in the shape of:</p>
<pre><code>while (retry)
{
...
try
{
...do something
retry = false;
}
catch (SqlException sqlEx)
{
// Retry only if -2 = Connection Time Out or 1205 = Deadlock
if (sqlEx.Number == -2 || sqlEx.Number == 1205)
{
..retry if attempt < max
}
..log and rethrow exception
}
}
</code></pre>
<p>and having discovered PostSharp recently I'm attempting to replace these plumbing code with an attribute.</p>
<p>My original plan was to:
- extend OnMethodInvocationAspect and remember the method invocation event args during method invocation
- implement IOnExceptionAspect and implement OnException to check exception type and if retry is required use the method invocation event args object from the original call, i.e.:</p>
<pre><code>[Serializable]
public sealed class RetryAttribute : OnMethodInvocationAspect, IOnExceptionAspect
{
[NonSerialized]
private MethodInvocationEventArgs m_initialInvocationEventArgs = null;
public override void OnInvocation(MethodInvocationEventArgs eventArgs)
{
if (m_initialInvocationEventArgs == null)
m_initialInvocationEventArgs = eventArgs;
base.OnInvocation(eventArgs);
}
public void OnException(MethodExecutionEventArgs eventArgs)
{
// check if retry is necessary
m_initialInvocationEventArgs.Proceed();
}
}
</code></pre>
<p>but the OnInvocation method is not fired anymore once I've added IOnExceptionAspect..</p>
<p>Does anyone know what I need to do here? Or perhaps there's more suitable aspect I should use?</p>
<p>Thanks,</p>