Aspect-oriented Programming - Join Point Models

Join Point Models

The advice-related component of an aspect-oriented language defines a join point model (JPM). A JPM defines three things:

  1. When the advice can run. These are called join points because they are points in a running program where additional behavior can be usefully joined. A join point needs to be addressable and understandable by an ordinary programmer to be useful. It should also be stable across inconsequential program changes in order for an aspect to be stable across such changes. Many AOP implementations support method executions and field references as join points.
  2. A way to specify (or quantify) join points, called pointcuts. Pointcuts determine whether a given join point matches. Most useful pointcut languages use a syntax like the base language (for example, AspectJ uses Java signatures) and allow reuse through naming and combination.
  3. A means of specifying code to run at a join point. AspectJ calls this advice, and can run it before, after, and around join points. Some implementations also support things like defining a method in an aspect on another class.

Join-point models can be compared based on the join points exposed, how join points are specified, the operations permitted at the join points, and the structural enhancements that can be expressed.

Read more about this topic:  Aspect-oriented Programming

Famous quotes containing the words join, point and/or models:

    ‘Twas mercy brought me from my Pagan land,
    Taught my benighted soul to understand
    That there’s a God, that there’s a Saviour too:
    Once I redemption neither sought nor knew.
    Some view our sable race with scornful eye,
    “Their color is a diabolic die.”
    Remember, Christians, Negroes, black as Cain,
    May be refin’d, and join th’ angelic train.
    Phillis Wheatley (c. 1753–1784)

    How oft when men are at the point of death
    Have they been merry! which their keepers call
    A lightning before death: O, how may I
    Call this a lightning? O my love! my wife!
    Death, that hath sucked the honey of thy breath,
    Hath had no power yet upon thy beauty:
    Thou art not conquered; beauty’s ensign yet
    Is crimson in thy lips and in thy cheeks,
    And death’s pale flag is not advanced there.
    William Shakespeare (1564–1616)

    Friends broaden our horizons. They serve as new models with whom we can identify. They allow us to be ourselves—and accept us that way. They enhance our self-esteem because they think we’re okay, because we matter to them. And because they matter to us—for various reasons, at various levels of intensity—they enrich the quality of our emotional life.
    Judith Viorst (20th century)