vote up 3 vote down star

Omar Al Zabir is looking for "a simpler way to do AOP style coding".

He created a framework called AspectF, which is "a fluent and simple way to add Aspects to your code".

It is not true AOP, because it doesn't do any compile time or runtime weaving, but does it accomplish the same goals as AOP?

Here's an example of AspectF usage:

    public void InsertCustomerTheEasyWay(string firstName, string lastName, int age,
        Dictionary<string, string> attributes)
    {
        AspectF.Define
            .Log(Logger.Writer, "Inserting customer the easy way")
            .HowLong(Logger.Writer, "Starting customer insert", "Inserted customer in {1} seconds")
            .Retry()
            .Do(() =>
                {
                    CustomerData data = new CustomerData();
                    data.Insert(firstName, lastName, age, attributes);
                });
    }

Here are some posts by the author that further clarify the aim of AspectF:

According to the author, I gather that AspectF is not designed so much as an AOP replacement, but a way to achieve "separation of concern and keep code nice and clean".

Some thoughts/questions:

  • Any thoughts on using this style of coding as project grows?
  • Is it a scalable architecture?
  • performance concerns?
  • How does maintainability compare against a true AOP solution?
flag
This is highly subjective, I'd make this CW – Mauricio Scheffer Nov 2 at 17:18
2  
I don't want to be mean or rough, but the author of AspectF kind of missed the point of AOP. It's not AOP not because of technical choices, it's not AOP because the cross cutting concern is still entangled with business logic. Which is the precise issue AOP tries to solve. – Jb Evain Nov 2 at 17:38
Perhaps I've unfairly presented the famework. He indicates that one of the main goals of AspectF is "separation of concerns". You may want to check out the posts I've now included in the question to clarify the author's intent of what AspectF is actually trying to do... – Jon Schoning Nov 2 at 18:31
@Jon: I've read the posts and the codeproject article and I agree with Jb, this misses the point of AOP. – Mauricio Scheffer Nov 2 at 18:55

1 Answer

vote up 1 vote down check

I don't mean to bash the project, but IMHO this is abusing AOP. Aspects are not suitable for everything, and used like this it only hampers readability.

Moreover, I think this misses one of the main points of AOP, which is being able to add/remove/redefine aspects without touching the underlying code.

Aspects should be defined outside of the affected code in order to make them truly cross-cutting concerns. In AspectF's case, the aspects are embedded in the affected code, which violates SoC/SRP.

Performance-wise there is no penalty (or it's negligible) because there is no runtime IL manipulation, just as explained in the codeproject article. However, I've never had any perf problems with Castle DynamicProxy.

link|flag

Your Answer

Get an OpenID
or

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