Adding trace matching with free variables to AspectJ

  • Authors:
  • Chris Allan;Pavel Avgustinov;Aske Simon Christensen;Laurie Hendren;Sascha Kuzins;Ondřej Lhoták;Oege de Moor;Damien Sereni;Ganesh Sittampalam;Julian Tibble

  • Affiliations:
  • University of Oxford, United Kingdom;University of Oxford, United Kingdom;University of Aarhus, Denmark;McGill University, Montreal, Canada;University of Oxford, United Kingdom;McGill University, Montreal, Canada;University of Oxford, United Kingdom;University of Oxford, United Kingdom;University of Oxford, United Kingdom;University of Oxford, United Kingdom

  • Venue:
  • OOPSLA '05 Proceedings of the 20th annual ACM SIGPLAN conference on Object-oriented programming, systems, languages, and applications
  • Year:
  • 2005

Quantified Score

Hi-index 0.02

Visualization

Abstract

An aspect observes the execution of a base program; when certain actions occur, the aspect runs some extra code of its own. In the AspectJ language, the observations that an aspect can make are confined to the current action: it is not possible to directly observe the history of a computation.Recently, there have been several interesting proposals for new history-based language features, most notably by Douence et al. and by Walker and Viggers. In this paper, we present a new history-based language feature called tracematches that enables the programmer to trigger the execution of extra code by specifying a regular pattern of events in a computation trace. We have fully designed and implemented tracematches as a seamless extension of AspectJ.A key innovation in our tracematch approach is the introduction of free variables in the matching patterns. This enhancement enables a whole new class of applications in which events can be matched not only by the event kind, but also by the values associated with the free variables. We provide several examples of applications enabled by this feature.After introducing and motivating the idea of tracematches via examples, we present a detailed semantics of our language design, and we derive an implementation from that semantics. The implementation has been realised as an extension of the abc compiler for AspectJ.