Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
research:scope [2010/03/22 18:23] – etanter | research:scope [2011/01/07 13:35] (current) – ifiguero | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | As a general line of research, we are interested in permitting dynamic adaptation of programs, using different techniques. Associated to these means comes the issue of the **scope of adaptation**. We are therefore exploring different issues associated with scoping, in particular in aspect- and context-oriented programming. Below are the outcome of these explorations, | ||
+ | * Expressive means for scoping any kind of dynamic adaptation, called //scoping strategies// | ||
+ | * How to control aspect reentrancy at an appropriate level of abstraction, | ||
+ | * A generalization of thread-local values to any kind of ' | ||
+ | --------------- | ||
+ | |||
+ | ===== Composition of Dynamic Analysis Aspects ===== | ||
+ | |||
+ | Paper presented at the [[http:// | ||
+ | {{bib> | ||
+ | |||
+ | == Abstract == | ||
+ | |||
+ | Aspect-oriented programming provides a convenient high-level model to define several kinds of dynamic analyses, in particular thanks to recent advances in exhaustive weaving in core libraries. Casting dynamic analyses as aspects allows the use of a single weaving infrastructure to apply different analyses to the same base program, simultaneously. However, even if dynamic analysis as- pects are mutually independent, | ||
+ | |||
+ | |||
+ | ===== Execution Levels for Aspect-Oriented Programming ===== | ||
+ | |||
+ | **Best paper award** of the [[http:// | ||
+ | {{bib> | ||
+ | |||
+ | == Abstract == | ||
+ | |||
+ | In aspect-oriented programming languages, advice evaluation is usually considered as part of the base program evaluation. This is also the case for certain pointcuts, such as if pointcuts in AspectJ, or simply all pointcuts in higher-order aspect languages like AspectScheme. While viewing aspects as part of base level computation clearly distinguishes AOP from reflection, it also comes at a price: because aspects observe base level computation, | ||
+ | |||
+ | == Code & Executable Semantics== | ||
+ | |||
+ | The following artefacts are provided: | ||
+ | * the {{research: | ||
+ | * the implementation of {{research: | ||
+ | | ||
+ | All the code has been developed and tested under [[http:// | ||
+ | |||
+ | See also the [[http:// | ||
+ | |||
+ | Here are the {{: | ||
+ | |||
+ | ===== Higher-Order Aspects in Order ===== | ||
+ | |||
+ | Paper accepted at the Scheme and Functional Programming workshop 2009. | ||
+ | {{bib> | ||
+ | |||
+ | // | ||
+ | |||
+ | ------------------ | ||
+ | |||
+ | ===== Beyond Static and Dynamic Scope ===== | ||
+ | |||
+ | Paper presented at the [[http:// | ||
+ | {{bib> | ||
+ | |||
+ | == Abstract == | ||
+ | |||
+ | Traditional treatment of scoping in programming languages considers two | ||
+ | opposite semantics: static scoping, where the scope of a binding is a | ||
+ | block of program text, and dynamic scoping, where a binding is in | ||
+ | effect during the whole reduction of an expression to a value. | ||
+ | Static scoping and dynamic scoping are however but two points in the | ||
+ | design space of scoping mechanisms. | ||
+ | As a result, most proposed language mechanisms that rely on some | ||
+ | notion of scoping, such as variable bindings of course, but also more | ||
+ | exotic ones like aspects and mixin layers, adopt either one or the | ||
+ | other semantics. As it turns out, these two semantics are sometimes | ||
+ | too extreme, and a mixture of both is needed. To achieve this, | ||
+ | language designers and/or programmers have to resort to ad hoc | ||
+ | solutions. | ||
+ | We present a general scoping model that simply expresses static and | ||
+ | dynamic scoping, and that goes further by allowing fine-grained | ||
+ | exploration of the design space of scoping. The model, called scoping strategies, gives precise control over propagation and activation of language mechanisms. While we have already studied it | ||
+ | for aspects, we hereby show that the model is not restricted to | ||
+ | aspects, by treating in depth its application to the most standard | ||
+ | kind of adaptation: variable bindings. We also briefly discuss its | ||
+ | application to mixin layers, and program monitoring. | ||
+ | We believe that research in programming language constructs can | ||
+ | benefit from a more flexible notion of scoping that goes beyond the | ||
+ | static/ | ||
+ | |||
+ | == Code == | ||
+ | |||
+ | The code of the interpreter mentioned in the paper is available here. | ||
+ | |||
+ | * {{research: | ||
+ | |||
+ | All the code has been developed and tested under [[http:// | ||
+ | |||
+ | |||
+ | --------------- | ||
+ | |||
+ | ===== Expressive Scoping of Dynamically-Deployed Aspects ===== | ||
+ | |||
+ | Paper presented at the [[http:// | ||
+ | {{bib> | ||
+ | |||
+ | == Abstract == | ||
+ | |||
+ | Several aspect languages and frameworks have recognized the need for dynamic deployment of aspects. However, they do not provide sufficiently expressive means to precisely specify the scope of deployed aspects. As a result, programmers have to resort to unnecessarily complex pointcut definitions that hinder the reuse potential of aspects. | ||
+ | |||
+ | To address the issue of precise and expressive scoping of aspects at deployment time, we propose // | ||
+ | |||
+ | We discuss and illustrate the gain in expressiveness, | ||
+ | |||
+ | |||
+ | == Code == | ||
+ | |||
+ | The code of the interpreters described in the paper is available here. | ||
+ | |||
+ | * {{research: | ||
+ | * {{research: | ||
+ | * {{research: | ||
+ | |||
+ | All the code has been developed and tested under [[http:// | ||
+ | |||
+ | See also: the original [[http:// | ||
+ | |||
+ | ===== Expressive Scoping of Distributed Aspects ===== | ||
+ | |||
+ | Paper presented at the [[http:// | ||
+ | {{bib> | ||
+ | |||
+ | == Abstract == | ||
+ | |||
+ | Dynamic deployment of aspects brings greater flexibility and reuse potential, but requires proper means for scoping aspects. Scoping issues are particularly crucial in a distributed context: adequate treatment of distributed scoping is necessary to enable the propagation of aspect instances across host boundaries and to avoid inconsistencies due to unintentional spreading of data and computations in a distributed system. | ||
+ | |||
+ | We motivate the need for expressive scoping of dynamically-deployed distributed aspects by an analysis of the deficiencies of current approaches for distributed aspects. Extending recent work on deployment strategies for non-distributed aspects, we then introduce a set of high-level strategies for specifying locality of aspect propagation and activation, and illustrate the corresponding gain in expressiveness. We present the operational semantics of our proposal using Scheme interpreters, | ||
+ | directly applicable to the expressive scoping of distributed aspects. | ||
+ | |||
+ | == Code == | ||
+ | |||
+ | The code of the interpreter described in the paper is available {{research: | ||
+ | |||
+ | All the code has been developed and tested under [[http:// | ||
+ | |||
+ | ===== Controlling Aspect Reentrancy ===== | ||
+ | |||
+ | **Best paper award** of the [[http:// | ||
+ | Also appeared in the Journal of Universal Computer Science.\\ | ||
+ | {{bib> | ||
+ | |||
+ | == Abstract == | ||
+ | |||
+ | Aspect languages provide different mechanisms to control when an aspect should apply based on properties of the execution context. They however fail to explicitly identify and cleanly capture a property as basic as that of reentrancy. As a result, aspect developers have to resort to low-level and complex pointcut descriptions that are error prone and hamper | ||
+ | |||
+ | |||
+ | ===== Contextual Values ===== | ||
+ | |||
+ | Paper presented at the [[http:// | ||
+ | {{bib> | ||
+ | |||
+ | == Abstract == | ||
+ | |||
+ | Context-oriented programming proposes to treat execution context explicitly and to provide means for context-dependent adaptation at runtime. There are many mechanisms that can be used to make either variable bindings or application code adapt dynamically, | ||
+ | adaptations are potentially global. | ||
+ | |||
+ | We propose // | ||
+ | |||
+ | == Code == | ||
+ | |||
+ | The code of the definition of contextual values, as well as of Scheme interpreters for contextual values, is available here. | ||
+ | |||
+ | * {{research: | ||
+ | * {{research: | ||
+ | * {{research: | ||
+ | |||
+ | All the code has been developed and tested under [[http:// | ||
+ | |||
+ | ------------------ | ||
+ | // |