[go: nahoru, domu]

Jump to content

AspectC++: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
No edit summary
Line 32: Line 32:
</code>
</code>
</blockquote>
</blockquote>
returns the name of the method (that matched %Iter::Reset) that is about to be called.
returns the name of the method (that matched <code>%Iter::Reset</code>) that is about to be called.


The joinpoint API also provides compile-time type information that can be used within an
The joinpoint API also provides compile-time type information that can be used within an

Revision as of 05:27, 19 September 2007

AspectC++ is an aspect-oriented extension of C and C++ languages. It is based on source-to-source translation, translating AspectC++ source code to C++. It is available under the GNU GPL, though some extensions specific to Microsoft Windows are only available through pure-systems GmbH.

Aspect-oriented programming allows modularizing cross-cutting concerns in a single module, an aspect. Aspects can modify existing classes, but most commonly they provide 'advice' that runs before, after, or around existing functionality.

For example, if we want to trace all calls to an API call, rather than inserting 'cerr' or print statements in many places, we can create a single aspect that will accomplish this:

aspect Tracer
{ 
   advice call("% %Iter::Reset(...)") : before()
   {
      cerr << "about to call Iter::Reset for " << JoinPoint::signature() << endl;
   }
};

The Tracer aspect above will print out a message before any call to %Iter::Reset. The '%Iter' syntax means that it will match all classes that end in Iter.

Each 'matched' location in the source code is called a joinpoint -- the advice is joined to (or advises) that code. AspectC++ provides a joinpoint API to provide and access to information about the joinpoint. For example, the function:

   JoinPoint::signature()

returns the name of the method (that matched %Iter::Reset) that is about to be called.

The joinpoint API also provides compile-time type information that can be used within an aspect to access the type or the value of the arguments and the return type and return value of a method or function.

In addition to the documentation and tutorials at the AspectC++ website (external link below), you can also find articles on Aspect-oriented programming and AspectC++ at past AOSD conferences [1].