Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
É. Tanter, “Execution levels for aspect-oriented programming,” Proceedings of the 9th International Conference on Aspect-Oriented Software Development, Rennes and Saint-Malo, France: ACM, 2010, pp. 37-48. DOI = http://portal.acm.org/citation.cfm?doid=1739230.1739236![]() Robin's ReviewProblem | ||||||||
Added: | ||||||||
> > | This paper focuses on a common pitfall in AOP languages built on pointcuts and advice: aspects whose pointcuts are matched in their own advice, leading to infinite loops or recursion in advice weavers or the code they produce. While identified as a fundamental issue in AOP, the recent addition of pointcuts that can invoke code themselves exacerbates the problem. The paper describes and critiques several common solutions to the problem, including using control-flow pointcuts to exclude advice execution and adding extra primitives to the language to hide execution join points from weaving. | |||||||
Contributions | ||||||||
Added: | ||||||||
> > | This paper claims to provide a solution to infinite regression in the form of "execution levels", wherein each instant in execution (base or advice) is associated with an unbounded number of discrete ordered levels. Advice is declared to only apply to the level immediately below the level it is defined at, and by default advice is declared at the level immediately above the code that declares it, with the net effect that advice normally does not advise other advice code. Shifting operators are provided to allow code to explicitly override this behaviour, in order to selectively restore the conflation of base and advice code for situations where this is the desired behaviour. The author provides an abstract description of this extension, and concrete semantics for an application of it to AspectScheme, an AOP language based on Scheme. | |||||||
Weaknesses | ||||||||
Added: | ||||||||
> > |
| |||||||
Questions | ||||||||
Added: | ||||||||
> > |
| |||||||
Belief | ||||||||
Added: | ||||||||
> > | I believe this paper does a good job of identifying a common difficulty with AOP languages, but misses the mark with its assessment of where the true issue lies. The idea of execution levels is reasonable and well-formed in of itself, but is not a convincing alternative to other solutions not considered in their evaluation, and in my opinion its downsides are worse than the current state of the art. | |||||||
Nick's ReviewProblem |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
É. Tanter, “Execution levels for aspect-oriented programming,” Proceedings of the 9th International Conference on Aspect-Oriented Software Development, Rennes and Saint-Malo, France: ACM, 2010, pp. 37-48. DOI = http://portal.acm.org/citation.cfm?doid=1739230.1739236![]() Robin's Review | ||||||||
Line: 22 to 22 | ||||||||
Weaknesses
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Questions
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
É. Tanter, “Execution levels for aspect-oriented programming,” Proceedings of the 9th International Conference on Aspect-Oriented Software Development, Rennes and Saint-Malo, France: ACM, 2010, pp. 37-48. DOI = http://portal.acm.org/citation.cfm?doid=1739230.1739236![]() Robin's Review | ||||||||
Line: 19 to 19 | ||||||||
The paper describes a problem with existing AOP implementations. Advice contains base level code -- i.e. code which may trigger pointcuts. Pointcuts were originally intended to be "meta" constructs, but, in practice, their definitions can also contain base level code. The consequence is the possibility of infinite regression through pointcut loops or advice loops. Existing workarounds rely on the cflow pointcut, which can disable advice based on the calling context. The creation of a "pointcut execution pointcut" would allow this workaround to apply to pointcut loops as well. However, this workaround cannot deal with the case of "around" advice. It also fails to handle variable aspect visibility within the same advice, and advice which delegates execution to another thread.
Contributions
| ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Weaknesses | ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Questions | ||||||||
Changed: | ||||||||
< < |
| |||||||
> > |
| |||||||
Belief | ||||||||
Changed: | ||||||||
< < | I think this is a useful paper. It lays out the problem clearly, and makes a convincing case that current workarounds are fundamentally flawed. The construct of execution level seems a pretty natural way of resolving the tension. Questions remain for me around the complexity of level shifting within a given advice, and the usability of the level-capturing lambda. | |||||||
> > | I think this is a useful, but flawed paper. It lays out the problem clearly, and makes a convincing case that current workarounds are not sufficient. On the surface, the construct of execution level seems a pretty natural way of resolving the tension. For practical purposes, however, it is not clear how much this improves on the "disable" primitive proposed for AspectML. | |||||||
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
É. Tanter, “Execution levels for aspect-oriented programming,” Proceedings of the 9th International Conference on Aspect-Oriented Software Development, Rennes and Saint-Malo, France: ACM, 2010, pp. 37-48. DOI = http://portal.acm.org/citation.cfm?doid=1739230.1739236![]() Robin's Review | ||||||||
Line: 16 to 16 | ||||||||
Nick's ReviewProblem | ||||||||
Changed: | ||||||||
< < | ||||||||
> > | The paper describes a problem with existing AOP implementations. Advice contains base level code -- i.e. code which may trigger pointcuts. Pointcuts were originally intended to be "meta" constructs, but, in practice, their definitions can also contain base level code. The consequence is the possibility of infinite regression through pointcut loops or advice loops. Existing workarounds rely on the cflow pointcut, which can disable advice based on the calling context. The creation of a "pointcut execution pointcut" would allow this workaround to apply to pointcut loops as well. However, this workaround cannot deal with the case of "around" advice. It also fails to handle variable aspect visibility within the same advice, and advice which delegates execution to another thread. | |||||||
Contributions | ||||||||
Changed: | ||||||||
< < | ||||||||
> > |
| |||||||
Weaknesses | ||||||||
Changed: | ||||||||
< < | ||||||||
> > |
| |||||||
Questions | ||||||||
Changed: | ||||||||
< < | ||||||||
> > |
| |||||||
Belief | ||||||||
Added: | ||||||||
> > | I think this is a useful paper. It lays out the problem clearly, and makes a convincing case that current workarounds are fundamentally flawed. The construct of execution level seems a pretty natural way of resolving the tension. Questions remain for me around the complexity of level shifting within a given advice, and the usability of the level-capturing lambda. | |||||||
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > | É. Tanter, “Execution levels for aspect-oriented programming,” Proceedings of the 9th International Conference on Aspect-Oriented Software Development, Rennes and Saint-Malo, France: ACM, 2010, pp. 37-48. DOI = http://portal.acm.org/citation.cfm?doid=1739230.1739236![]() Robin's ReviewProblemContributionsWeaknessesQuestionsBeliefNick's ReviewProblemContributionsWeaknessesQuestionsBelief |