vote up 5 vote down star
2

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?

flag

11 Answers

vote up 2 vote down check

Security

  • Inject code that checks permissions and blocks access

Friendlier error msgs for asp.net webcontrols/webparts

Performance

  • Inject code that sets perf counters to get an overview of where your app is slow
link|flag
vote up 3 vote down

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:

link|flag
vote up 3 vote down

This blog article by Adrian Colyer is an attempt at explaining AOP without the buzzwords, including several examples that are not logging.

link|flag
vote up 2 vote down

Validation:

[NotNull]
public string Property1 { get; set; }

[Length(Min = 10, Max = 20)]
public string Property2 { get; set; }

[Regex(Expression = @"[abc]{2}")]
public string Property3 { get; set; }
link|flag
Where is de Aspect? But you could use some advice to read this "annotations" that come from a joinpoint provided by a pointcute like: * * save(..) Thus you can use a before advice to validate and proceed if so or throwing some fail conditions about the invalid state. – paulosuzart Nov 28 '08 at 12:37
It depends on where the validation is used and what kind of UI framework is used. I don't use the aspects on entities that needs to be validated, but more for "defensive coding". I do not use the validation of entities on a save method in a repository, but I validate somewhere in the UI. – Paco Nov 28 '08 at 19:50
vote up 1 vote down

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

link|flag
vote up 1 vote down

My photo album uses aspectj for three things:

  1. Implementing the observer "pattern" as a reusable piece of code.
  2. Destroying a session for a specific type of call.
  3. Setting dirty flags on DTOs when mutation occurs.

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.

link|flag
vote up 0 vote down

Security - checking that users have appropriate permissions prior to executing certain methods.

link|flag
vote up 0 vote down

Public invariant checking. Since PostSharp 1.5 will come with aspect inheritance, even through interfaces, it will give a lot of new opportunities.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Another classic example (like logging) is caching. But other examples are more interesting.

link|flag
vote up 0 vote down

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

    void foo()
    {
        int id = lib.create_undo_context();
        try
        {
            lib.performsomeaction();
            lib.performsomeaction();
            lib.performsomeaction();

        }
        finally
        {
            lib.destroy_undo_context(id);
        }
    }

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

    [Undo]
    void foo()
    {
        lib.performsomeaction();
        lib.performsomeaction();
        lib.performsomeaction();
    }

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.

link|flag

Your Answer

Get an OpenID
or

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