Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
research:software:reflex:documentation:hooksets [2007/07/30 21:19] – admin | research:software:reflex:documentation:hooksets [2007/08/17 19:29] (current) – rtoledo | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Hooksets ====== | ||
+ | Hooksets allow us to select _where_ an aspect will apply. | ||
+ | |||
+ | In Reflex, Hookset is an interface that defines two highly-related to the Reflex internals methods. This is the reason why two implementations are provided: | ||
+ | * '' | ||
+ | * '' | ||
+ | |||
+ | ===== Execution Points ===== | ||
+ | |||
+ | Here, we have talked aboud " | ||
+ | |||
+ | * Message Send, represented by the '' | ||
+ | |||
+ | <code java> | ||
+ | object.hashCode() or string.substring(0, | ||
+ | </ | ||
+ | * Message reception, represented by the '' | ||
+ | |||
+ | <code java> | ||
+ | public int hashCode(){ | ||
+ | <all statements> | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | * Instantiation, | ||
+ | |||
+ | <code java> | ||
+ | new Object(); or new String(" | ||
+ | </ | ||
+ | |||
+ | * Creation, represented by the '' | ||
+ | |||
+ | <code java> | ||
+ | public String(){ | ||
+ | <all statements> | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | * Field access, represented by the '' | ||
+ | |||
+ | <code java> | ||
+ | System.out.println(this.x) or this.y = 228; | ||
+ | </ | ||
+ | |||
+ | * Cast, represented by the '' | ||
+ | <code java> | ||
+ | (Object) object; or (Appendable) string.replace(" | ||
+ | </ | ||
+ | |||
+ | With this stated, we can review the API of '' | ||
+ | <code java> | ||
+ | public PrimitiveHookset(Class aOperation, | ||
+ | ClassSelector aClassSelector, | ||
+ | OperationSelector aOperationSelector) | ||
+ | </ | ||
+ | As you can see, it takes the operation it must match and two additional parameters we have not seen yet: a '' | ||
+ | |||
+ | ===== Selectors ===== | ||
+ | |||
+ | ==== Class Selectors ==== | ||
+ | |||
+ | The existence of class selectors is to avoid examining all the classes of the system: they are asked to know if the class can contain execution points that can be matched by any '' | ||
+ | |||
+ | The '' | ||
+ | <code java> | ||
+ | public interface ClassSelector{ | ||
+ | public boolean accept(RClass aClass); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | And its unique method '' | ||
+ | |||
+ | ==== Operation Selectors ==== | ||
+ | |||
+ | If a class selector selects a class, Reflex will analyze that class and will reify all operations on it. Then for each of these operations, the operation selectori will be asked if the operation is of interest. If it returns true, the assosiated hookset is said to match to that operation in particular. | ||
+ | |||
+ | The '' | ||
+ | |||
+ | <code java> | ||
+ | public interface OperationSelector{ | ||
+ | public boolean accept(Operation aOp, RClass aClass); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Where its unique method '' | ||
+ | |||
+ | As you can see, the hookset matching mechanism in Reflex is pretty powerfull, and, at the same time, performant. | ||
+ | |||
+ | One of the things we intentionally skipped is the presence of all those **R*** classes (that are reifications of the different structures of the application). We will review them later in this {section]. |