Can anyone post an example of Aspect-oriented programming (AOP) that is not logging?
I've looked at several resources but all the examples are trivial logging. What is it useful for?
|
2
|
|
|
|
|
|
Security
Friendlier error msgs for asp.net webcontrols/webparts
Performance
|
||
|
|
|
|
One of the examples which was loaned straight from this Aspect Oriented Programming: Radical Research in Modularity, Youtube video was painting to a display. In the example you have a drawing program, which consists of points, shapes, etc and when changes to those objects occur you need to tell the display to update itself. Without handling it in an aspect you end up repeating yourself quite a bit. AOP, as I've understood it, was created for not repeating yourself for cross cutting concerns which might not have anything to do with business logic. With aspects you can modularize these concerns to aspects. One of the examples was logging but there are bunch of different things you might end up repeating. It has been evolving since and it's not any more about aspect-oriented programming but there's also aspect-oriented modelling. More information about aspect oriented programming can be found from these sources:
|
|||
|
|
|
|
This blog article by Adrian Colyer is an attempt at explaining AOP without the buzzwords, including several examples that are not logging. |
||
|
|
|
|
Validation:
|
||||
|
|
|
Design Pattern Implementation in Java and AspectJ (Hannemann and Kiczales): http://www.cs.ubc.ca/labs/spl/papers/2002/oopsla02-patterns.pdf The paper shows how some of the GoF design patterns can implemented in a better way in Java using AspectJ |
||
|
|
|
|
My photo album uses aspectj for three things:
The first, in particular was pretty much straight out of a google tech talk on AOP. It's about modularity in a different way than most people consider. Definitely recommend watching that if you're interested in how to use it for good. |
||
|
|
|
|
Security - checking that users have appropriate permissions prior to executing certain methods. |
||
|
|
|
|
Public invariant checking. Since PostSharp 1.5 will come with aspect inheritance, even through interfaces, it will give a lot of new opportunities. |
||
|
|
|
|
You cannot have multiple inheritance in Java. However by using AOP you can have "limited" multiple inheritance. Try to google this to see some examples. I also agree with Eyvid. Hannemann and Kiczales paper is great for learning the basics on design patterns and getting some great AOP examples. |
||
|
|
|
|
Another classic example (like logging) is caching. But other examples are more interesting. |
||
|
|
|
|
Undo - I am calling a third-party assembly that supports undo operations. It requires callers to create an undo context, call some methods in the assembly, adn then destroy the undo context. Contexts can be nested. Also, if a context is created but left in an undesirable state that requires an app restart. Normally to use undo I would write something like this
with PostSharp I define an attribute called [Undo] that creates the undo context when the method starts and destroys it when the method exits (even if an exception is thrown) - so the code looks like this
It's a little more complicated to implement this than I am showing because I have ensure that all undo contexts are cleaned up even in cases where there are nested Undo contexts - but you get the idea. |
||
|
|