Aspect-Oriented Programming
Explain the term Aspect-Oriented Programming in detail?
Expert
Aspect-Oriented Programming: Detection of certain program properties may involve instrumenting many entities such as classes and methods that are spread across the entire program—for example, detecting whether every connection open() call is followed by a connection close() call, or whether for all the classes that extend (or inherit from) a given base class the initialize() method is invoked within its constructor. A problem with detecting such properties is the amount of manual effort that is required to instrument the program.Manual instrumentation of the code to verify such properties is difficult and error-prone. Also, the instrumentation has to be done all over again for newer versions of the software.
Aspect-oriented programming (AOP) alleviates these problems by treating the instrumentation for such properties as a cross-cutting concern.
AOP languages such as AspectJ and AspectC++ support expressions that can encapsulate such concerns in special classes called aspects. An aspect can change the behavior of the program by applying additional behavior called advice at various join points in a program. You can specify a query that detects whether a given join point matches. Such a query is called a pointcut. An aspect can also make structural changes to other classes, such as adding members or parents.
For example, the following aspect specification can be used to check whether there are an equal number of calls to the fopen() and fclose() methods when the program ends. A model checker can capture the exception raised by the assertion violation when “counter > 0”.
Many AOP languages support method executions and field references as join points. The developer can write a pointcut to match, for example, all field-set operations on specific fields, and code to run when the field is actually set. Some languages also support extensions of specific classes with new method definitions. AOP languages vary based on the join points they expose, the language they use to specify the join points, the operations permitted at the join points, and the structural enhancements that can be expressed.
We used AOP, and in particular AspectC++, for code instrumentation in order to check many of the properties in our SAFM case study (Figure shown below). We analyzed several versions of the software, and the ease of instrumentation that the AOP techniques provided saved a lot of time and effort.
Define struct: A struct is a special C data type which encapsulates other pieces of data into a single cohesive unit. Similar to an object, however built into C.
DFS and BFS Tradeoffs: In general, DFS will have lower memory (space) complexity than BFS since only the information about the states and transitions on the current path needs to be stored. This contrasts with BFS, where all the states and transitions
Normal 0 false false
Operating System Design Fall 2010 Project Organizational, Structural, Logical and Execution Relationships Between Important System Components in Linux Kernel
MER Arbiter: JPL’s Mars Exploration Rover (MER) software is multithreaded software that must deal with shared resources. The arbiter module prevents potential conflicts between resource requests, and enforces priorities. It was the subject
What do you mean by the term Bio-Technology?
Analysis of Layered Model A) Components organized hierarchically B) In this model of data communication every layer provides certain set of functions which other layers can call
18,76,764
1926808 Asked
3,689
Active Tutors
1441521
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!