1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
|
<chapter id="aspectjlanguage" xreflabel="The AspectJ Language">
<title>The AspectJ Language</title>
<sect1>
<title>Introduction</title>
<para>The previous chapter, <xref linkend="gettingstarted"/>, was a brief
overview of the AspectJ language. You should read this chapter to
understand AspectJ's syntax and semantics. It covers the same material as
the previous chapter, but more completely and in much more detail.
</para>
<para>We will start out by looking at an example aspect that we'll build
out of a pointcut, an introduction, and two pieces of advice. This
example aspect will gives us something concrete to talk about.</para>
</sect1>
<sect1 id="AnatomyOfAnAspect">
<title>The Anatomy of an Aspect</title>
<para>
This lesson explains the parts of AspectJ's aspects. By reading this
lesson you will have an overview of what's in an aspect and you will be
exposed to the new terminology introduced by AspectJ.
</para>
<sect2>
<title>An Example Aspect</title>
<para>
Here's an example of an aspect definition in AspectJ:
</para>
<programlisting><![CDATA[
1 aspect FaultHandler {
2
3 private boolean Server.disabled = false;
4
5 private void reportFault() {
6 System.out.println("Failure! Please fix it.");
7 }
8
9 public static void fixServer(Server s) {
10 s.disabled = false;
11 }
12
13 pointcut services(Server s): target(s) && call(public * *(..));
14
15 before(Server s): services(s) {
16 if (s.disabled) throw new DisabledException();
17 }
18
19 after(Server s) throwing (FaultException e): services(s) {
20 s.disabled = true;
21 reportFault();
22 }
23 }
]]></programlisting>
<para>
The <literal>FaultHandler</literal> consists of one variable introduced
onto <literal>Server</literal> (line 03), two methods (lines 05-07
and 09-11), one pointcut (line 13), and two pieces of advice (lines
15-17 and 19-22).
</para>
<para>
This covers the basics of what aspects can contain. In general, aspects
consist of an association with other program entities, ordinary
variables and methods, pointcuts, introductions, and advice, where
advice may be before, after or around advice. The remainder of this
lesson focuses on those crosscut-related constructs.
</para>
</sect2>
<sect2>
<title>Pointcuts</title>
<para>
AspectJ's pointcuts define collections of events, i.e. interesting
points in the execution of a program. These events, or points in the
execution, can be method or constructor invocations and executions,
handling of exceptions, field assignments and accesses, etc. Take, for
example, the pointcut declaration in line 13:
</para>
<programlisting><![CDATA[
pointcut services(Server s): target(s) && call(public * *(..))
]]></programlisting>
<para>
This pointcut, named <literal>services</literal>, picks out those points
in the execution of the program when instances of the
<literal>Server</literal> class have their public methods called.
</para>
<para>
The idea behind this pointcut in the <literal>FaultHandler</literal>
aspect is that fault-handling-related behavior must be triggered on the
calls to public methods. For example, the server may be unable to
proceed with the request because of some fault. The calls of those
methods are, therefore, interesting events for this aspect, in the
sense that certain fault-related things will happen when these events
occur.
</para>
<para>
Part of the context in which the events occur is exposed by the formal
parameters of the pointcut. In this case, that consists of objects of
type server. That formal parameter is then being used on the right
hand side of the declaration in order to identify which events the
pointcut refers to. In this case, a pointcut picking out join points
where a Server is the target of some operation (target(s)) is being
composed (<literal><![CDATA[&&]]></literal>, meaning and) with a
pointcut picking out call join points (call(...)). The calls are
identified by signatures that can include wild cards. In this case,
there are wild cards in the return type position (first *), in the name
position (second *) and in the argument list position (..); the only
concrete information is given by the qualifier public.
</para>
<sect3>
<title>What else?</title>
<para>
Pointcuts define arbitrarily large sets of points in the execution
of a program. But they use only a finite number of
<emphasis>kinds</emphasis> of points. Those kinds of points
correspond to some of the most important concepts in Java. Here is
an incomplete list: method invocation, method execution, exception
handling, instantiation, constructor execution. Each of these has a
specific syntax that you will learn about in other parts of this
guide.
</para>
</sect3>
</sect2>
<sect2>
<title>Advice</title>
<para>
Advice defines pieces of aspect implementation that execute at join
points picked out by a pointcut. For example, the advice in lines 15-17
specifies that the following piece of code
</para>
<programlisting><![CDATA[
{
if (s.disabled) throw new DisabledException();
}
]]></programlisting>
<para>
is executed when instances of the Server class have their public
methods called, as specified by the pointcut services. More
specifically, it runs when those calls are made, just before the
corresponding methods are executed.
</para>
<para>
The advice in lines 19-22 defines another piece of implementation
that is executed on the same pointcut:
</para>
<programlisting><![CDATA[
{
s.disabled = true;
reportFault();
}
]]></programlisting>
<para>
But this second method executes whenever those operations throw
exception of type <literal>FaultException</literal>.
</para>
<sect3>
<title>What else?</title>
<para>
There are two other variations of after advice: upon successful
return and upon return, either successful or with an exception.
There is also a third kind of advice called around. You will see
those in other parts of this guide.
</para>
</sect3>
</sect2>
</sect1>
<sect1>
<title>Join Points and Pointcuts</title>
<para>
Consider the following Java class:
</para>
<programlisting><![CDATA[
class Point {
private int x, y;
Point(int x, int y) { this.x = x; this.y = y; }
void setX(int x) { this.x = x; }
void setY(int y) { this.y = y; }
int getX() { return x; }
int getY() { return y; }
}
]]></programlisting>
<para>
In order to get an intuitive understanding of AspectJ's pointcuts, let's
go back to some of the basic principles of Java. Consider the following a
method declaration in class Point:
</para>
<programlisting><![CDATA[
void setX(int x) { this.x = x; }
]]></programlisting>
<para>
What this piece of program states is that when an object of type Point
has a method called setX with an integer as the argument called on it,
then the method body { this.x = x; } is executed. Similarly, the
constructor given in that class states that when an object of type Point
is instantiated through a constructor with two integers as arguments,
then the constructor body { this.x = x; this.y = y; } is executed.
</para>
<para>
One pattern that emerges from these descriptions is when something
happens, then something gets executed. In object-oriented programs, there
are several kinds of "things that happen" that are determined by the
language. We call these the join points of Java. Join points comprised
method calls, method executions, instantiations, constructor executions,
field references and handler executions. (See the quick reference for
complete listing.)
</para>
<para>
Pointcuts pick out these join points. For example, the pointcut
</para>
<programlisting><![CDATA[
pointcut setter(): target(Point) &&
(call(void setX(int)) ||
call(void setY(int)));
]]></programlisting>
<para>
describes the calls to <literal>setX(int)</literal> or
<literal>setY(int)</literal> methods of any instance of Point. Here's
another example:
</para>
<programlisting><![CDATA[
pointcut ioHandler(): within(MyClass) && handler(IOException);
]]></programlisting>
<para>
This pointcut picks out the join points at which exceptions of type
IOException are handled inside the code defined by class MyClass.
</para>
<para>
Pointcuts consist of a left-hand side and a right-hand side, separated by
a colon. The left-hand side defines the pointcut name and the pointcut
parameters (i.e. the data available when the events happen). The
right-hand side defines the events in the pointcut.
</para>
<para>
Pointcuts can then be used to define aspect code in advice, as we will
see later. But first let's see what types of events can be captured and
how they are described in AspectJ.
</para>
<sect2>
<title>Designators</title>
<para>
Here are examples of designators of
</para>
<glosslist>
<glossentry>
<glossterm>when a particular method body executes</glossterm>
<glossdef>
<para>
<literal>execution(void Point.setX(int))</literal>
</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm>when a method is called</glossterm>
<glossdef>
<para>
<literal>call(void Point.setX(int))</literal>
</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm>when an exception handler executes</glossterm>
<glossdef>
<para>
<literal>handler(ArrayOutOfBoundsException)</literal>
</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm>when the object currently executing
(i.e. <literal>this</literal>) is of type <literal>SomeType</literal></glossterm>
<glossdef>
<para>
<literal>this(SomeType)</literal>
</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm>when the target object is of type
<literal>SomeType</literal></glossterm>
<glossdef>
<para>
<literal>target(SomeType)</literal>
</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm>when the executing code belongs to
class <literal>MyClass</literal></glossterm>
<glossdef>
<para>
<literal>within(MyClass)</literal>
</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm>when the join point is in the control flow of a call to a
<literal>Test</literal>'s no-argument <literal>main</literal> method
</glossterm>
<glossdef>
<para>
<literal>cflow(void Test.main())</literal>
</para>
</glossdef>
</glossentry>
</glosslist>
<para>
Designators compose through the operations <literal>or</literal>
("<literal>||</literal>"), <literal>and</literal>
("<literal><![CDATA[&&]]></literal>") and <literal>not</literal>
("<literal>!</literal>").
</para>
<itemizedlist>
<listitem>
<para>
It is possible to use wildcards. So
<orderedlist>
<listitem>
<para>
<literal>execution(* *(..))</literal>
</para>
</listitem>
<listitem>
<para>
<literal>call(* set(..))</literal>
</para>
</listitem>
</orderedlist>
means (1) all the executions of methods with any return and
parameter types and (2) method calls of set methods with any
return and parameter types -- in case of overloading there may be
more than one; this designator picks out all of them.
</para>
</listitem>
<listitem>
<para>
You can select elements based on types. For example,
<orderedlist>
<listitem>
<para>
<literal>execution(int *())</literal>
</para>
</listitem>
<listitem>
<para>
<literal>call(* setY(long))</literal>
</para>
</listitem>
<listitem>
<para>
<literal>call(* Point.setY(int))</literal>
</para>
</listitem>
<listitem>
<para>
<literal>call(*.new(int, int))</literal>
</para>
</listitem>
</orderedlist>
means (1) all executions of methods with no parameters, returning
an <literal>int</literal> (2) the calls of
<literal>setY</literal> methods that take a
<literal>long</literal> as an argument, regardless of their return
type or defining type, (3) the calls of class
<literal>Point</literal>'s <literal>setY</literal> methods that
take an <literal>int</literal> as an argument, regardless of the
return type, and (4) the calls of all classes' constructors that
take two <literal>int</literal>s as arguments.
</para>
</listitem>
<listitem>
<para>
You can compose designators. For example,
<orderedlist>
<listitem>
<para>
<literal>target(Point) <![CDATA[&&]]> call(int *())</literal>
</para>
</listitem>
<listitem>
<para>
<literal>call(* *(..)) <![CDATA[&&]]> (within(Line) || within(Point))</literal>
</para>
</listitem>
<listitem>
<para>
<literal>within(*) <![CDATA[&&]]> execution(*.new(int))</literal>
</para>
</listitem>
<listitem>
<para>
<literal>this(*) <![CDATA[&&]]> !this(Point) <![CDATA[&&]]>
call(int *(..))</literal>
</para>
</listitem>
</orderedlist>
means (1) all calls to methods received by instances of class
<literal>Point</literal>, with no parameters, returning an
<literal>int</literal>, (2) calls to any method where the call is
made from the code in <literal>Point</literal>'s or
<literal>Line</literal>'s type declaration, (3) executions of
constructors of all classes, that take an <literal>int</literal> as
an argument, and
(4) all method calls of any method returning an
<literal>int</literal>, from all objects except
<literal>Point</literal> objects to any other objects.
</para>
</listitem>
<listitem>
<para>
You can select methods and constructors based on their modifiers
and on negations of modifiers. For example, you can say:
<orderedlist>
<listitem>
<para>
<literal>call(public * *(..))</literal>
</para>
</listitem>
<listitem>
<para>
<literal>execution(!static * *(..))</literal>
</para>
</listitem>
<listitem>
<para>
<literal> execution(public !static * *(..))</literal>
</para>
</listitem>
</orderedlist>
which means (1) all invocation of public methods, (2) all
executions of non-static methods, and (3) all signatures of
the public, non-static methods.
</para>
</listitem>
<listitem>
<para>
Designators can also deal with interfaces. For example, given the
interface </para>
<programlisting><![CDATA[
interface MyInterface { ... }]]></programlisting>
<para> the designator <literal>call(* MyInterface.*(..))</literal>
picks out the call join points for methods defined by the interface
<literal>MyInterface</literal> (or its superinterfaces).
</para>
</listitem>
</itemizedlist>
</sect2>
<sect2>
<title>call vs. execution</title>
<para>
When methods and constructors run, there are two interesting times
associated with them. That is when they are called, and when they
actually execute.
</para>
<para>
AspectJ exposes these times as call and execution join points,
respectively, and allows them to be picked out specifically by call and
execution pointcuts.
</para>
<para>
So what's the difference between these times? Well, there are a number
of differences:
</para>
<para>
Firstly, the lexical pointcut declarations <literal>within</literal>
and <literal>withincode</literal> match differently. At a call join
point, the enclosing text is that of the call site. This means that
This means that <literal>call(void m()) <![CDATA[&&]]> within(void m())</literal>
will only capture recursive calls, for example. At an execution join
point, however, the control is already executing the method.
</para>
<para>
Secondly, the call join point does not capture super calls to
non-static methods. This is because such super calls are different in
Java, since they don't behave via dynamic dispatch like other calls to
non-static methods.
</para>
<para>
The rule of thumb is that if you want to pick a join point that runs
when an actual piece of code runs, pick an execution, but if you want
to pick one that runs when a particular signature is called, pick a
call.
</para>
</sect2>
<sect2>
<title>Pointcut composition</title>
<para>Pointcuts are put together with the operators and (spelled
<literal>&&</literal>), or (spelled <literal>||</literal>), and
not (spelled <literal>!</literal>). This allows the creation of very
powerful pointcuts from the simple building blocks of primitive
pointcuts. This composition can be somewhat confusing when used with
primitive pointcuts like cflow and cflowbelow. Here's an example:
</para>
<para> <literal>cflow(<replaceable>P</replaceable>)</literal> picks out
the join points in the control flow of the join points picked out by
<replaceable>P</replaceable>. So, pictorially:
</para>
<programlisting>
P ---------------------
\
\ cflow of P
\
</programlisting>
<para>What does <literal>cflow(<replaceable>P</replaceable>) &&
cflow(<replaceable>Q</replaceable>)</literal> pick out? Well, it picks
out those join points that are in both the control flow of
<replaceable>P</replaceable> and in the control flow of
<replaceable>Q</replaceable>. So...
</para>
<programlisting>
P ---------------------
\
\ cflow of P
\
\
\
Q -------------\-------
\ \
\ cflow of Q \ cflow(P) && cflow(Q)
\ \
</programlisting>
<para>Note that <replaceable>P</replaceable> and <replaceable>Q</replaceable> might
not have any join points in common... but their control flows might have join
points in common.
</para>
<para>But what does <literal>cflow(<replaceable>P</replaceable>
&& <replaceable>Q</replaceable>)</literal> mean? Well, it means
the control flow of those join points that are both picked out by
<replaceable>P</replaceable> picked out by <replaceable>Q</replaceable>.
</para>
<programlisting>
P && Q -------------------
\
\ cflow of (P && Q)
\
</programlisting>
<para>and if there are <emphasis>no</emphasis> join points that are both picked by
<replaceable>P</replaceable> and picked out by <replaceable>Q</replaceable>,
then there's no chance that there are any join points in the control flow of
<literal>(<replaceable>P</replaceable> &&
<replaceable>Q</replaceable>)</literal>.
</para>
<para>Here's some code that expresses this.
</para>
<programlisting><![CDATA[
public class Test {
public static void main(String[] args) {
foo();
}
static void foo() {
goo();
}
static void goo() {
System.out.println("hi");
}
}
aspect A {
pointcut fooPC(): execution(void Test.foo());
pointcut gooPC(): execution(void Test.goo());
pointcut printPC(): call(void java.io.PrintStream.println(String));
before(): cflow(fooPC()) && cflow(gooPC()) && printPC() {
System.out.println("should occur");
}
before(): cflow(fooPC() && gooPC()) && printPC() {
System.out.println("should not occur");
}
}
]]></programlisting>
</sect2>
<sect2>
<title>Pointcut Parameters</title>
<para>
Consider, for example, the first pointcut you've seen here,
</para>
<programlisting><![CDATA[
pointcut setter(): target(Point) &&
(call(void setX(int)) ||
call(void setY(int)));
]]></programlisting>
<para>
As we've seen before, the right-hand side of the pointcut picks out the
calls to <literal>setX(int)</literal> or <literal>setY(int)</literal>
methods where the target is any object of type
<literal>Point</literal>. On the left-hand side, the pointcut is given
the name "setters" and no parameters. An empty parameter list means
that when those events happen no context is immediately available. But
consider this other version of the same pointcut:
</para>
<programlisting><![CDATA[
pointcut setter(Point p): target(p) &&
(call(void setX(int)) ||
call(void setY(int)));
]]></programlisting>
<para>
This version picks out exactly the same calls. But in this version, the
pointcut has one parameter of type <literal>Point</literal>. This means
that when the events described on the right-hand side happen, a
<literal>Point</literal> object, named by a parameter named "p", is
available. According to the right-hand side of the pointcut, that
<literal>Point</literal> object in the pointcut parameters is the
object that receives the calls.
</para>
<para>
Here's another example that illustrates the flexible mechanism for
defining pointcut parameters:
</para>
<programlisting><![CDATA[
pointcut testEquality(Point p): target(Point) &&
args(p) &&
call(boolean equals(Object));
]]></programlisting>
<para>
This pointcut also has a parameter of type <literal>Point</literal>.
Similarly to the "setters" pointcut, this means that when the events
described on the right-hand side happen, a <literal>Point</literal>
object, named by a parameter named "p", is available. But in this case,
looking at the right-hand side, we find that the object named in the
parameters is not the target <literal>Point</literal> object that receives the
call; it's the argument (of type Point) passed to the "equals" method on some other
target Point object. If we wanted access to both objects, then the pointcut
definition that would define target <literal>Point p1</literal>
and argument <literal>Point p2</literal> would be
</para>
<programlisting><![CDATA[
pointcut testEquality(Point p1, Point p2): target(p1) &&
args(p2) &&
call(boolean equals(Object));
]]></programlisting>
<para>
Let's look at another variation of the "setters" pointcut:
</para>
<programlisting><![CDATA[
pointcut setter(Point p, int newval): target(p) &&
args(newval) &&
(call(void setX(int)) ||
call(void setY(int)));
]]></programlisting>
<para>
In this case, a <literal>Point</literal> object and an integer value
are available when the calls happen. Looking at the events definition
on the right-hand side, we find that the <literal>Point</literal>
object is the object receiving the call, and the integer
value is the argument of the method .
</para>
<para>
The definition of pointcut parameters is relatively flexible. The most
important rule is that when each of those events defined in the
right-hand side happen, all the pointcut parameters must be bound to
some value. So, for example, the following pointcut definition will
result in a compilation error:
</para>
<programlisting><![CDATA[
pointcut xcut(Point p1, Point p2):
(target(p1) && call(void setX(int))) ||
(target(p2) && call(void setY(int)));
]]></programlisting>
<para>
The right-hand side establishes that this pointcut picks out the call
join points consisting of the <literal>setX(int)</literal> method
called on a point object, or the <literal>setY(int)</literal> method
called on a point object. This is fine. The problem is that the
parameters definition tries to get access to two point objects. But
when <literal>setX(int)</literal> is called on a point object, there is
no other point object to grab! So in that case, the parameter
<literal>p2</literal> is unbound, and hence, the compilation error.
</para>
</sect2>
<sect2>
<title>Example: <literal>HandleLiveness</literal></title>
<para>
The example below consists of two object classes (plus an exception
class) and one aspect. Handle objects delegate their public, non-static
operations to their <literal>Partner</literal> objects. The aspect
<literal>HandleLiveness</literal> ensures that, before the delegations,
the partner exists and is alive, or else it throws an exception.</para>
<programlisting><![CDATA[
class Handle {
Partner partner = new Partner();
public void foo() { partner.foo(); }
public void bar(int x) { partner.bar(x); }
public static void main(String[] args) {
Handle h1 = new Handle();
h1.foo();
h1.bar(2);
}
}
class Partner {
boolean isAlive() { return true; }
void foo() { System.out.println("foo"); }
void bar(int x) { System.out.println("bar " + x); }
}
aspect HandleLiveness {
before(Handle handle): target(handle) && call(public * *(..)) {
if ( handle.partner == null || !handle.partner.isAlive() ) {
throw new DeadPartnerException();
}
}
}
class DeadPartnerException extends RuntimeException {}
]]></programlisting>
</sect2>
</sect1>
<sect1>
<title>Advice</title>
<para>
Advice defines pieces of aspect implementation that execute at
well-defined points in the execution of the program. Those points can be
given either by named pointcuts (like the ones you've seen above) or by
anonymous pointcuts. Here is an example of an advice on a named pointcut:
</para>
<programlisting><![CDATA[
pointcut setter(Point p1, int newval): target(p1) && args(newval)
(call(void setX(int) ||
call(void setY(int)));
before(Point p1, int newval): setter(p1, newval) {
System.out.println("About to set something in " + p1 +
" to the new value " + newval);
}
]]></programlisting>
<para>
And here is exactly the same example, but using an anonymous
pointcut:
</para>
<programlisting><![CDATA[
before(Point p1, int newval): target(p1) && args(newval)
(call(void setX(int)) ||
call(void setY(int))) {
System.out.println("About to set something in " + p1 +
" to the new value " + newval);
}
]]></programlisting>
<para>
Here are examples of the different advice:
</para>
<programlisting><![CDATA[
before(Point p, int x): target(p) && args(x) && call(void setX(int)) {
if (!p.assertX(x)) return;
}
]]></programlisting>
<para>
This before advice runs just before the execution of the actions
associated with the events in the (anonymous) pointcut.
</para>
<programlisting><![CDATA[
after(Point p, int x): target(p) && args(x) && call(void setX(int)) {
if (!p.assertX(x)) throw new PostConditionViolation();
}
]]></programlisting>
<para>
This after advice runs just after each join point picked out by the
(anonymous) pointcut, regardless of whether it returns normally or throws
an exception.
</para>
<programlisting><![CDATA[
after(Point p) returning(int x): target(p) && call(int getX()) {
System.out.println("Returning int value " + x + " for p = " + p);
}
]]></programlisting>
<para>
This after returning advice runs just after each join point picked out by
the (anonymous) pointcut, but only if it returns normally. The return
value can be accessed, and is named <literal>x</literal> here. After the
advice runs, the return value is returned.
</para>
<programlisting><![CDATA[
after() throwing(Exception e): target(Point) && call(void setX(int)) {
System.out.println(e);
}
]]></programlisting>
<para>
This after throwing advice runs just after each join point picked out by
the (anonymous) pointcut, but only when it throws an exception of type
<literal>Exception</literal>. Here the exception value can be accessed
with the name <literal>e</literal>. The advice re-raises the exception
after it's done.
</para>
<programlisting><![CDATA[
void around(Point p, int x): target(p)
&& args(x)
&& call(void setX(int)) {
if (p.assertX(x)) proceed(p, x);
p.releaseResources();
}
]]></programlisting>
<para>
This around advice traps the execution of the join point; it runs
<emphasis>instead</emphasis> of the join point. The original action
associated with the join point can be invoked through the special
<literal>proceed</literal> call.
</para>
</sect1>
<sect1>
<title>Introduction</title>
<para>
Introduction declarations add whole new elements in the given types, and
so change the type hierarchy. Here are examples of introduction
declarations:
</para>
<programlisting><![CDATA[
private boolean Server.disabled = false;
]]></programlisting>
<para>
This privately introduces a field named <literal>disabled</literal> in
<literal>Server</literal> and initializes it to
<literal>false</literal>. Because it is declared
<literal>private</literal>, only code defined in the aspect can access
the field.
</para>
<programlisting><![CDATA[
public int Point.getX() { return x; }
]]></programlisting>
<para>
This publicly introduces a method named <literal>getX</literal> in
<literal>Point</literal>; the method returns an <literal>int</literal>,
it has no arguments, and its body is return <literal>x</literal>.
Because it is defined publically, any code can call it.
</para>
<programlisting><![CDATA[
public Point.new(int x, int y) { this.x = x; this.y = y; }
]]></programlisting>
<para>
This publicly introduces a constructor in Point; the constructor has
two arguments of type int, and its body is this.x = x; this.y = y;
</para>
<programlisting><![CDATA[
public int Point.x = 0;
]]></programlisting>
<para>
This publicly introduces a field named x of type int in Point; the
field is initialized to 0.
</para>
<programlisting><![CDATA[
declare parents: Point implements Comparable;
]]></programlisting>
<para>
This declares that the <literal>Point</literal> class now implements the
<literal>Comparable</literal> interface. Of course, this will be an error
unless <literal>Point</literal> defines the methods of
<literal>Comparable</literal>.
</para>
<programlisting><![CDATA[
declare parents: Point extends GeometricObject;
]]></programlisting>
<para>
This declares that the <literal>Point</literal> class now extends the
<literal>GeometricObject</literal> class.
</para>
<para>
An aspect can introduce several elements in at the same time. For
example, the following declaration
</para>
<programlisting><![CDATA[
public String Point.name;
public void Point.setName(String name) { this.name = name; }
]]></programlisting>
<para>
publicly introduces both a field and a method into class
<literal>Point</literal>. Note that the identifier "name" in the body of
the method is bound to the "name" field in <literal>Point</literal>, even
if the aspect defined another field called "name".
</para>
<para>
One declaration can introduce several elements in several classes as
well. For example,
</para>
<programlisting><![CDATA[
public String (Point || Line || Square).getName() { return name; }
]]></programlisting>
<para>
publicly introduces three methods, one in <literal>Point</literal>,
another in Line and another in <literal>Square</literal>. The three
methods have the same name (getName), no parameters, return a String, and
have the same body (return name;). The purpose of introducing several
elements in one single declaration is that their bodies are the same. The
introduction is an error if any of <literal>Point</literal>,
<literal>Line</literal>, or <literal>Square</literal> do not have a
"name" field.
</para>
<para>
An aspect can introduce fields and methods (even with bodies) onto
interfaces as well as classes.
</para>
<sect2>
<title>Introduction Scope</title>
<para>
AspectJ allows private and package-protected (default) introduction in
addition to public introduction. Private introduction means private in
relation to the aspect, not necessarily the target type. So, if an
aspect makes a private introduction of a field on a type
</para>
<programlisting><![CDATA[
private int Foo.x;
]]></programlisting>
<para>
Then code in the aspect can refer to Foo's x field, but nobody else
can. Similarly, if an aspect makes a package-protected
introduction,
</para>
<programlisting><![CDATA[
int Foo.x;
]]></programlisting>
<para>
then everything in the aspect's package (which may not be Foo's
package) can access x.
</para>
</sect2>
<sect2>
<title>Example: <literal>PointAssertions</literal></title>
<para>
The example below consists of one class and one aspect. The aspect
introduces all implementation that is related with assertions of the
class. It privately introduces two methods in the class Point, namely
assertX and assertY. It also advises the two set methods of Point with
before declarations that assert the validity of the given values. The
introductions are made privately because other parts of the program
have no business accessing the assert methods. Only the code inside of
the aspect can call those methods.
</para>
<programlisting><![CDATA[
class Point {
int x, y;
public void setX(int x) { this.x = x; }
public void setY(int y) { this.y = y; }
public static void main(String[] args) {
Point p = new Point();
p.setX(3); p.setY(333);
}
}
aspect PointAssertions {
private boolean Point.assertX(int x) {
return (x <= 100 && x >= 0);
}
private boolean Point.assertY(int y) {
return (y <= 100 && y >= 0);
}
before(Point p, int x): target(p) && args(x) && call(void setX(int)) {
if (!p.assertX(x)) {
System.out.println("Illegal value for x"); return;
}
}
before(Point p, int y): target(p) && args(y) && call(void setY(int)) {
if (!p.assertY(y)) {
System.out.println("Illegal value for y"); return;
}
}
}
]]></programlisting>
</sect2>
</sect1>
<!-- ================================================== -->
<sect1>
<title>Reflection</title>
<para>
AspectJ provides a special reference variable, thisJoinPoint, that
contains reflective information about the current join point for the
advice to use. The thisJoinPoint variable can only be used in the context
of advice, just like this can only be used in the context of non-static
methods and variable initializers. In advice, thisJoinPoint is an object
of type JoinPoint.
</para>
<para>
One way to use it is simply to print it out. Like all Java objects,
thisJoinPoint has a toString() method that makes quick-and-dirty tracing
easy.
</para>
<programlisting><![CDATA[
class TraceNonStaticMethods {
before(Point p): target(p) && call(* *(..)) {
System.out.println("Entering " + thisJoinPoint + " in " + p);
}
}
]]></programlisting>
<para>
The type of thisJoinPoint includes a rich reflective class hierarchy of
signatures, and can be used to access both static and dynamic information
about join points. If, however, only the static information about the
join point (such as the Signature) is desired, a lightweight join-point
object is available from the thisJoinPointStaticPart special variable.
This object is the same object you would get from
</para>
<programlisting><![CDATA[
thisJoinPoint.getStaticPart()
]]></programlisting>
<para>
The static part of a join point does not include dynamic information,
such as the arguments, which can be accessed with
</para>
<programlisting><![CDATA[
thisJoinPoint.getArgs()
]]></programlisting>
<para>
But it has the performance benefit that repeated execution of the code
containing <literal>thisJoinPointStaticPart</literal> (through, for
example, separate method calls) will not result in repeated construction
of the reflective object.
</para>
<para>It is always the case that
</para>
<programlisting><![CDATA[
thisJoinPointStaticPart == thisJoinPoint.getStaticPart()
thisJoinPoint.getKind() == thisJoinPointStaticPart.getKind()
thisJoinPoint.getSignature() == thisJoinPointStaticPart.getSignature()
thisJoinPoint.getSourceLocation() == thisJoinPointStaticPart.getSourceLocation()
]]></programlisting>
<para>
One more reflective variable is available:
<literal>thisEnclosingJoinPointStaticPart</literal>. This, like
<literal>thisJoinPointStaticPart</literal>, only holds the static part of
a join point, but it is not the current but the enclosing join point.
So, for example, it is possible to print out the calling source location
(if available) with
</para>
<programlisting><![CDATA[
before() : execution (* *(..)) {
System.err.println(thisEnclosingJoinPointStaticPart.getSourceLocation())
}
]]></programlisting>
</sect1>
</chapter>
<!-- Local variables: -->
<!-- fill-column: 79 -->
<!-- compile-command: "ant -quiet prog-html" -->
<!-- sgml-local-ecat-files: progguide.ced -->
<!-- sgml-parent-document:("progguide.xml" "book" "chapter") -->
<!-- End: -->
|