Aspect weaver

This is a good article. Click here for more information.
Source: Wikipedia, the free encyclopedia.

Available inAspectC++, AspectJ
TypeAspect-oriented programming

An aspect weaver is a

classes
(representations of the structure of entities in the program), the weaver generates a woven class.

Aspect weavers take instructions known as

modularity
, keeping code in one place that would otherwise have been interspersed throughout various, unrelated classes.

Motivation

Many programming languages are already widely accepted and understood. However, there is no significant desire to create radically different programming languages to support the aspect-oriented programming paradigm due to business-related risks associated with adopting new technologies.[1] Use of an entirely new language relies on a business's ability to acquire new developers. Additionally, the existing code base of a business would need to be discarded. Finally, a business would need to acquire a new toolchain (suite of tools) for development, which is often expensive in both money and time.[2] Primary concerns about roadmaps for the adoption of new technologies include the need to train new developers and adapt existing processes to the new technology.[3]

To address these business concerns, an aspect weaver enables the use of widely adopted languages like

embedded systems while still retaining the benefits of aspect-oriented programming.[6]

Implementation

Aspect weavers operate by taking instructions specified by

functions. The advice specifies the exact location and functionality of the injected code.[7]

Through this weaving process, aspect weavers allow for code which otherwise would have been duplicated across classes. By eliminating this duplication, aspect weavers promote modularity of cross-cutting concerns.[8] Aspects define the implementation code which otherwise would have been duplicated and then use pointcuts and join points to define the advice. During weaving, the aspect weaver uses the pointcuts and join points, known as a pointcut designator, to identify the positions in candidate classes at which the implementation should be injected.[9] The implementation is then injected into the classes at the points identified, thus permitting the code to be executed at the appropriate times without relying on manual duplication by the programmer.[10]

aspect Logger {
    pointcut method() : execution(* *(..));
    before() : method() {
        System.out.println("Entering " + 
            thisJoinPoint.getSignature().toString());
    }
    after() : method() { 
        System.out.println("Leaving " + 
            thisJoinPoint.getSignature().toString());
    }
}
public class Foo {
    public void bar() {
        System.out.println("Executing Foo.bar()");
    }
    public void baz() {
        System.out.println("Executing Foo.baz()");
    }
}
A sample
class defined in the AspectJ programming language
public class Foo {
    public void bar() {
        System.out.println("Entering Foo.bar()");
        System.out.println("Executing Foo.bar()");
        System.out.println("Leaving Foo.bar()");
    }
    public void baz() {
        System.out.println("Entering Foo.baz()");
        System.out.println("Executing Foo.baz()");
        System.out.println("Leaving Foo.baz()");
    }
}
The woven class that results from executing an aspect weaver on the above sample

Weaving in AspectJ

In the

classes. Classes are defined using Java syntax. The weaving process consists of executing the aspect advice to produce only a set of generated classes that have the aspect implementation code woven into it.[11]

The example at right shows a potential implementation of an aspect which logs the entry and exit of all

methods. Without an aspect weaver, this feature would require duplication of code in the class for every method. Instead, the entry and exit code is defined solely within the aspect.[12]

The aspect weaver analyzes the advice specified by the pointcut in the aspect and uses that advice to distribute the implementation code into the defined class. The code differs slightly in each method due to slight variances in requirements for the method (as the method identifier has changed). The aspect weaver determines the appropriate code to generate in each situation as defined by the implementation advice and then injects it into methods matching the specified pointcut.[13]

Weaving to bytecode

Instead of generating a set of woven

classes together directly into bytecode, acting both as the aspect weaver and compiler.[14][15]
It is expected that the performance of aspect weavers which also perform the compilation process will require more computation time due to the weaving process involved. However, the bytecode weaving process produces more efficient runtime code than would usually be achieved through compiled woven source.

Run-time weaving

Developments in AspectJ have revealed the potential to incorporate

Java Virtual Machine, dynamic weaving of aspects at run-time has been shown to improve code performance by 26%.[17] While some implementations of just-in-time virtual machines implement this capability through a new virtual machine, some implementations can be designed to use features that already exist in current virtual machines.[18][19] The requirement of a new virtual machine is contrary to one of the original design goals of AspectJ.[5]

To accomplish just-in-time weaving, a change to the

breakpoints to halt execution at the pointcut, select an appropriate method, embed it into the application, and continue.[20] The use of breakpoints in this manner has been shown to reduce performance due to a very large number of context switches.[17]

Performance

Aspect weavers' performance, as well as the performance of the code that they produce, has been a subject of analysis. It is preferable that the improvement in modularity supplied by aspect weaving does not impact run-time performance. Aspect weavers are able to perform aspect-specific optimizations.

compile-time, some optimizations can only be performed by the aspect weaver. For example, AspectJ contains two similar but distinct keywords, thisJoinPoint, which contains information about this particular instance of woven code, and thisJoinPointStaticPart, which contains information common to all instances of code relevant to that set of advice. The optimization of replacing thisJoinPoint with the more efficient and static keyword thisJoinPointStaticPart can only be done by the aspect weaver. By performing this replacement, the woven program avoids the creation of a join point object on every execution.[14] Studies have shown that the unnecessary creation of join point objects in AspectJ can lead to a performance overhead of 5% at run-time, while performance degradation is only approximately 1% when this object is not created.[22]

Compile-time performance is generally worse in aspect weavers than their traditional compiler counterparts due to the additional work needed for locating methods which match the specified pointcuts. One study showed that the AspectJ compiler ajc is about 34% slower than the

Java 1.4 compiler.[23]

See also

References

  1. ^ Kiczales (October 2001), p.2
  2. ^ Kiczales (October 2001), p.7
  3. ^ Colyer (2003), p.6
  4. ^ Kiczales (October 2001), p.5
  5. ^ a b Kiczales (June 2001), p.3
  6. ^ Spinczyk (2002), p.1
  7. ^ Wand (2004), p.1
  8. ^ Wand (2004), p.7
  9. ^ Viega (November 2000), p.2
  10. ^ Spinczyk (October 2007), p.21
  11. ^ Wang (July 2007), p.4
  12. ^ Avgustinov (2007), p.2
  13. ^ Hilsdale (2004), pp.5–6
  14. ^ a b Hilsdale (2004), p.2
  15. ^ McEachen (2005), p.1
  16. ^ Popovici (2003), p.1
  17. ^ a b Sato (September 2003), p.17
  18. ^ Sato (September 2003), p.2
  19. ^ a b Papovici (2003), p.3
  20. ^ Sato (September 2003), p.11
  21. ^ Gal (2001), p.3
  22. ^ Colyer (2003), p.2
  23. ^ Hilsdale (2004), p.7

Bibliography

Further reading