vote up 3 vote down star

HI, Any good resources to wrap my head around Aspect Oriented Programming?

PS:- I need to understand AO programming not the libraries or frameworks available for .NET or C# :)

flag

Seems to me like a dupe for stackoverflow.com/questions/325558/… – Ngu Soon Hui Oct 5 at 7:35

3 Answers

vote up 7 vote down check

Just to get your head around it: It is the ability to hook events such as: creation of objects, setting of properties, etc, and attach general functions to them, that will be populated with relevant context.

Because C# doesn't have an inbuilt facility for this, you need a framework, like PostSharp, to do 'bytecode weaving' (i.e. just writing code to actually make the calls, directly to your classes) to simulate it.

link|flag
2  
On a side note, postsharp.org has a great explanation of what it is and it's uses. – RCIX Sep 13 at 5:22
Yes postsharp is good thing (also have good site!) – TheVillageIdiot Sep 13 at 17:35
vote up 1 vote down

Aspect oriented programming is just a special case of program transformation. You specify a code pattern/replacement and a code region in which the pattern is of interest, and ask a tool to find the code pattern in that region and replace it.

Most "aspect oriented" tools limit the code patterns to be found to be function calls, and the code changes to be inserted code blocks before/after the function calls. That's really limiting. Program transformation allows arbitrary replacement both at the point where the pattern is found, and at arbitrary other points. Also, aspect oriented tools tend to be language specific.

A fully general program transformation tool is the DMS Software Reengineering Toolkit. In practice, it can do anything any aspect oriented tool can do (the aspect guys hate the idea that there's something more general). It can also handle a wide range of predefined langauges (C, C++, Java, COBOL, ECMAScript, PHP, VHDL, Verilog, ...) ; and it has the ability to easily (in a technical sense) define arbitrary other languages to be manipulated.

link|flag
+1 for DMS Software Reengineering Toolkit, +1 for Aspect Guys.... oh sorry I can up-vote only once. – TheVillageIdiot Oct 5 at 5:00
vote up 1 vote down

Aspect Oriented Programming means having a meta level where yo can define logging or security/access control features to interweave with your code instead of implementing these feature very time in your code. So instead of beeing one-dimensional, you have to program two-dimensional.

I know this may sound very esotheric but it is easy once you understood it.

AOP often works with proxy classes which intercept calls and do things in the background.

link|flag

Your Answer

Get an OpenID
or

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