vote up 1 vote down star

I am considering PostSharp (www.postsharp.org) at this time to write my own custom logging system (sitting on top of log4net) as part of my application. Do you think PostSharp qualifies in all these requirements?

This are my requirements:

  1. I want to be able to write custom "Aspects" that work on methods, properties, fields, class and at assembly levels.

  2. I want to be able to use the tool for .NET 2.0 projects as well as 3.5, specifically in WinForms and ASP.NET (MVC included) and WCF projects

  3. I don't want to be running a separate tool (exe) apart from my own software at client machines / deployment points.

Preferable: It is preferable that i would want to avoid even having to redistribute any of the tool's dlls. But the requirement to not re-distribute run-time dlls with apps may be a pushing requirements - so skip it.

  1. I want to extend this to mainly write my custom logging aspects for my applications.

  2. I will be redistributing my web applications and the windows forms apps. So i want to ensure the tool i am going to use is free of any kind of royalty payments or license fees, and also that it does not restrict me into one particular type of license. I am selling commercial licenses of my applications.

flag

14% accept rate
you may want to look at Log4PostSharp. If it is not sufficient you might be able to enhance it... – Stefan Egli Aug 11 at 14:46
Cool, so log4postsharp is extensible too? then i think it will be cool. – Try Aug 11 at 15:07
I don't know how extensible it is, but it is quite powerful. And if anything, you can extend it and submit back to Google Code. – Gael Fraiteur Aug 11 at 15:12
I also think it is quite powerful already, but if you need more you can have the source code and modify it (= enhance). – Stefan Egli Aug 11 at 18:05
Enhancing Log4PostSharp is not that easy as you might think. Typically i would want to enhance the LogAttribute class, but the enhancments need to be in CIL language not C#. So its out of equation for me :-) at least - i am not expert CIL guy. – Try Aug 12 at 15:49

2 Answers

vote up 0 vote down
  1. Yes.

  2. Yes. If you want to compile aspected code from ASP.NET, you will need to deploy PostSharp build-time components on the ASP.NET server. Not sure it's what you want given (3).

  3. If you develop your own custom aspect using PostSharp.Core, you do not need any dependency. If you use PostSharp Laos, you will need to redistribute PostSharp.Public.dll and PostSharp.Laod.dll.

  4. No problem.

  5. If you distribute compiled webs, there is no problem. If you distribute source code that needs to be enhanced by the weaver, you need to redistribute the whole PostSharp stuff. Possible, but not very sexy.

link|flag
Thanks Gael. As for 2: Do you mean that i should have those postsharp build components in build server that builds my app dlls, or you mean the final deployment web server / application server? As for 3: what i mean is that i will be writing my own custom aspects that will do some custom logic for writing the log (maybe finally using log4net for that purpose). Do you think i will be using the PostSharp.Core for that. I read in teh website that if i use that dll, i will have to pay for license fees. For 5: The websites will be deployed as dll files that run as apps. Then? – Try Aug 11 at 14:21
@2: On the server that builds the app. But with ASP.NET, you can put on the server source code that will be compiled by ASP.NET. I stronly recommend that you use no aspect in this source code. All aspected code should be compiled. So you don't have to deploy PostSharp on the final deployment server of the web site. So if you deploy only dlls + code that does not use PostSharp (like *.aspx typically), no problem. – Gael Fraiteur Aug 11 at 14:57
Thnx. Sure, i don't intend to "deploy" any source code files, it will only be compiled dlls + aspx + scripts etc. OK that means i don't ahve to re-distribute postshartp core dll. Thanks Gael. – Try Aug 11 at 15:02
@Gael: But would GPL not say that you need to publish your work under GPL if you link a GPL protected DLL (e.g. PostSharp.Laos.dll)? – Stefan Egli Aug 11 at 18:07
Oh goodness, Really, Stefan? Gael can you confirm this please. I will have to recommend my customers to come-off postsharp then!!! I was the one who got them into this stuff since it was cool. I better tell them soon before they build their applications using it heavily. The people i know are selling their software (procesed using PostSharp) commercially, and they cannot publish their applications under GPL. I am now panicking!!!!!! – SL3NewUser Aug 11 at 20:25
show 7 more comments
vote up 1 vote down

Have a look at Log4PostSharp before you start coding a custom aspect yourself using PostSharp.Core.

link|flag
Yep i did that a while back, but the impression i got from the web site (first page) was that it only has only one custom aspect, and that too only for methods. May be i will need to read more there. Do you think that project will be quite comprehensive for logging purposes. Of course it is tightly coupled to log4net too. – Try Aug 11 at 15:05
Only for methods? But what else than methods need to be logged? Property and event accessors are methods also. And logging field access if the way to performance hell... – Gael Fraiteur Aug 11 at 15:30
Yes agreed, but on the property bit, i thought since it is not a method at the time of writing the code (not by the complier) i thought maybe that tool won't support logging on properties. – Try Aug 11 at 15:37
I tried to checkout (readonly) from the svn location, but it is returning some error saysing "could not connect to server. Maybe this is not the place to ask this, but since its a post about getting log4postsharp, i thought i will post it anyway. – Try Aug 11 at 15:54
postsharp-user-plugins.googlecode.com/svn/trunk/… works for me. – Gael Fraiteur Aug 11 at 17:32
show 2 more comments

Your Answer

Get an OpenID
or

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