From c89830fe880f329b6289be06314684edc094012c Mon Sep 17 00:00:00 2001 From: Andy Clement Date: Fri, 8 Feb 2019 15:13:07 -0800 Subject: [PATCH] tidyup --- .gitignore | 6 + .../java/org/aspectj/ajde/IconRegistry.java | 12 +- build/installer-resources/properties.txt | 7 - build/pom.xml | 144 ++- .../org/aspectj/resources}/aspectjBanner.gif | Bin .../org/aspectj/resources/configure-auto.html | 17 + .../org/aspectj/resources/configure-hand.html | 21 + .../org/aspectj/resources}/contents.txt | 0 .../org/aspectj/resources/finish.html | 28 + .../org/aspectj/resources/install-finish.html | 12 + .../org/aspectj/resources/install-start.html | 13 + .../org/aspectj/resources/intro.html | 25 + .../org/aspectj/resources/location.html | 11 + .../org/aspectj/resources/properties.txt | 7 + description | 1 - docs/.classpath | 5 - docs/build.xml | 7 +- installer/aspectjinstaller-assembly.xml | 49 + installer/pom.xml | 65 ++ java5/.project | 11 - lib/jdiff/jdiff/text/FileLine.class | Bin 0 -> 989 bytes lib/jdiff/jdiff/util/Diff$change.class | Bin 0 -> 613 bytes lib/jdiff/jdiff/util/Diff$file_data.class | Bin 0 -> 3897 bytes lib/jdiff/jdiff/util/Diff.class | Bin 0 -> 5792 bytes lib/jdiff/jdiff/util/DiffNormalOutput.class | Bin 0 -> 1898 bytes lib/jdiff/jdiff/util/DiffOutput.class | Bin 0 -> 2042 bytes lib/jdiff/jdiffReadme.txt | 2 + lib/jdiff/src/jf | 4 + lib/jdiff/src/text/FileLine.java | 64 ++ lib/jdiff/src/util/Diff.java | 848 ++++++++++++++++++ lib/jdiff/src/util/DiffNormalOutput.java | 84 ++ lib/jdiff/src/util/DiffOutput.java | 95 ++ loadtime/pom.xml | 175 ++-- .../org/aspectj/weaver/loadtime/Agent.java | 2 +- .../weaver/loadtime/JRockitAgentTest.java | 5 + pom.xml | 209 +++-- run-all-junit-tests/pom.xml | 468 +++++----- testing/pom.xml | 12 + testing/src/main/java/Empty.java | 1 + tests/ajcTests.xml | 30 +- tests/pom.xml | 246 ++--- tests/test.ser | Bin 33 -> 0 bytes 42 files changed, 2162 insertions(+), 524 deletions(-) delete mode 100644 build/installer-resources/properties.txt rename build/{installer-resources => src/main/resources/$installer$/org/aspectj/resources}/aspectjBanner.gif (100%) create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/configure-auto.html create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/configure-hand.html rename build/{installer-resources => src/main/resources/$installer$/org/aspectj/resources}/contents.txt (100%) create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/finish.html create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/install-finish.html create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/install-start.html create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/intro.html create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/location.html create mode 100644 build/src/main/resources/$installer$/org/aspectj/resources/properties.txt delete mode 100644 description delete mode 100644 docs/.classpath create mode 100644 installer/aspectjinstaller-assembly.xml create mode 100644 installer/pom.xml delete mode 100644 java5/.project create mode 100644 lib/jdiff/jdiff/text/FileLine.class create mode 100644 lib/jdiff/jdiff/util/Diff$change.class create mode 100644 lib/jdiff/jdiff/util/Diff$file_data.class create mode 100644 lib/jdiff/jdiff/util/Diff.class create mode 100644 lib/jdiff/jdiff/util/DiffNormalOutput.class create mode 100644 lib/jdiff/jdiff/util/DiffOutput.class create mode 100644 lib/jdiff/jdiffReadme.txt create mode 100644 lib/jdiff/src/jf create mode 100644 lib/jdiff/src/text/FileLine.java create mode 100644 lib/jdiff/src/util/Diff.java create mode 100644 lib/jdiff/src/util/DiffNormalOutput.java create mode 100644 lib/jdiff/src/util/DiffOutput.java create mode 100644 testing/src/main/java/Empty.java delete mode 100644 tests/test.ser diff --git a/.gitignore b/.gitignore index 8aefe0104..a3344aa9f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,8 @@ */bin +.vscode +.DS_Store aj-build/ +target/ +.classpath +.project +.settings diff --git a/ajde/src/main/java/org/aspectj/ajde/IconRegistry.java b/ajde/src/main/java/org/aspectj/ajde/IconRegistry.java index 4cdec89f2..c5a2202ec 100644 --- a/ajde/src/main/java/org/aspectj/ajde/IconRegistry.java +++ b/ajde/src/main/java/org/aspectj/ajde/IconRegistry.java @@ -14,6 +14,8 @@ package org.aspectj.ajde; +import java.net.URL; + import javax.swing.*; import org.aspectj.ajde.ui.*; @@ -149,10 +151,16 @@ public class IconRegistry extends AbstractIconRegistry { } protected AbstractIcon createIcon(String path) { - return new AbstractIcon(new ImageIcon(ClassLoader.getSystemResource(path))); + URL resource = IconRegistry.class.getClassLoader().getResource(path); + if (resource == null) { + throw new IllegalStateException("Unable to find icon resource: "+path); + } + return new AbstractIcon(new ImageIcon(resource)); +// return new AbstractIcon(new ImageIcon(ClassLoader.getSystemResource(path))); } protected Icon makeIcon(String iconPath) { - return new ImageIcon(ClassLoader.getSystemResource(RESOURCE_PATH + iconPath)); + return new ImageIcon(IconRegistry.class.getClassLoader().getResource(RESOURCE_PATH + iconPath)); +// return new ImageIcon(ClassLoader.getSystemResource(RESOURCE_PATH + iconPath)); } } diff --git a/build/installer-resources/properties.txt b/build/installer-resources/properties.txt deleted file mode 100644 index f2ee1b595..000000000 --- a/build/installer-resources/properties.txt +++ /dev/null @@ -1,7 +0,0 @@ -installer.main.class: @installer.main.class@ -installer.basedir: aspectj@build.version.majorminor@ -build.version.long: @build.version.long@ -build.version.short: @build.version.short@ -build.date: @build.date@ -build.time: @build.time@ -copyright.allRights.from1998: @copyright.allRights.from1998@ diff --git a/build/pom.xml b/build/pom.xml index 5dcf70b71..0099d02a0 100644 --- a/build/pom.xml +++ b/build/pom.xml @@ -1,33 +1,125 @@ - 4.0.0 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + 4.0.0 - - org.aspectj - aspectj-parent - 1.9.3.BUILD-SNAPSHOT - .. - + + org.aspectj + aspectj-parent + 1.9.3.BUILD-SNAPSHOT + .. + - build - jar - build + build + jar + build - - - org.aspectj - testing-util - ${project.version} - + + + org.aspectj + testing-util + ${project.version} + - - ant - ant - 1.0 - system - ${project.basedir}/../lib/ant/lib/ant.jar - - + + ant + ant + 1.0 + system + ${project.basedir}/../lib/ant/lib/ant.jar + + + + + + + org.codehaus.mojo + build-helper-maven-plugin + 1.9.1 + + + build.date + + timestamp-property + + + build.date + E MMM d, YYYY + Europe/Zurich + + America/Los_Angeles + + + + build.time + + timestamp-property + + + build.time + E MMM d, YYYY 'at' HH:MM:SS z + America/Los_Angeles + + + + + year + + timestamp-property + + + build.year + YYYY + America/Los_Angeles + + + + + + + + + src/main/resources + true + + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + + org.codehaus.mojo + + + build-helper-maven-plugin + + + [1.9.1,) + + + + timestamp-property + + + + + + + + + + + + + + diff --git a/build/installer-resources/aspectjBanner.gif b/build/src/main/resources/$installer$/org/aspectj/resources/aspectjBanner.gif similarity index 100% rename from build/installer-resources/aspectjBanner.gif rename to build/src/main/resources/$installer$/org/aspectj/resources/aspectjBanner.gif diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/configure-auto.html b/build/src/main/resources/$installer$/org/aspectj/resources/configure-auto.html new file mode 100644 index 000000000..6da643ef5 --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/configure-auto.html @@ -0,0 +1,17 @@ + + + +auto configure + + + + +

The installer has successfully found the path to your Java home (J2SE 1.4 or greater). +This path will be used as the default Java location when generating +script files for launching the AspectJ compiler and core tools. Unless +you know that this path is wrong, we suggest that you press +Next to continue.

+ + + + diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/configure-hand.html b/build/src/main/resources/$installer$/org/aspectj/resources/configure-hand.html new file mode 100644 index 000000000..888db63df --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/configure-hand.html @@ -0,0 +1,21 @@ + + + +configure + + + + +

The installer cannot find the path to your Java home (J2SE 1.4 or greater). +Please try to find this directory on your path now. It will probably look +something like jdk1.4.1. If you can't find this +directory now, you may continue with the install, but you will have +to either edit your launch scripts by hand or to set the JAVA_HOME +environment variable to point to the right location. +

+ +

Press Next when ready to continue.

+ + + + diff --git a/build/installer-resources/contents.txt b/build/src/main/resources/$installer$/org/aspectj/resources/contents.txt similarity index 100% rename from build/installer-resources/contents.txt rename to build/src/main/resources/$installer$/org/aspectj/resources/contents.txt diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/finish.html b/build/src/main/resources/$installer$/org/aspectj/resources/finish.html new file mode 100644 index 000000000..204deb550 --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/finish.html @@ -0,0 +1,28 @@ + + + +finish + + + + +

The automatic installation process is complete. +We recommend you complete the installation as follows:

+
    +
  1. Add ${installer.output.aspectjrt} + to your CLASSPATH. + This small .jar file contains classes required by any + program compiled with the ajc compiler. +
  2. +
  3. Modify your PATH to include + ${installer.output.dir.bin}. + This will make it easier to run ajc and ajbrowser. +
  4. +
+ +

These steps are described in more detail in +${installer.output.readme}.

+ + + + diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/install-finish.html b/build/src/main/resources/$installer$/org/aspectj/resources/install-finish.html new file mode 100644 index 000000000..14281a0bf --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/install-finish.html @@ -0,0 +1,12 @@ + + + + +

 

+ +

The automatic installation process is complete.  Press Next for +some important final instructions.

+ + + + diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/install-start.html b/build/src/main/resources/$installer$/org/aspectj/resources/install-start.html new file mode 100644 index 000000000..b375c68aa --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/install-start.html @@ -0,0 +1,13 @@ + + + + +

 

+ +

Now installing to ${installer.output.dir}...

+ +

Press Cancel to interrupt the installation.

+ + + + diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/intro.html b/build/src/main/resources/$installer$/org/aspectj/resources/intro.html new file mode 100644 index 000000000..b29bb9484 --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/intro.html @@ -0,0 +1,25 @@ + + + +

Installer for AspectJ 9 Development KitTM

+ +

Version ${build.version.long} built on ${build.date}

+

This installs the complete AspectJ 9 Development Kit (AJDK) distribution, with +the compiler, aspect libraries, structure browser, ant tasks, +documentation, and examples. +This distribution is covered by the Eclipse Public License (see + http://www.eclipse.org/legal/epl-v10.html). +

+For IDE integrations or source code, see the project home page at +http://eclipse.org/aspectj

+ + +

${copyright.allRights.from1998}

+

+ +

Press Next to continue. At any time you may press Cancel +to exit the installation process.

+ + + + diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/location.html b/build/src/main/resources/$installer$/org/aspectj/resources/location.html new file mode 100644 index 000000000..0398ce4a5 --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/location.html @@ -0,0 +1,11 @@ + + + + +

Please select a directory into which to install AspectJ.

+

Press Install to begin the installation process + to this directory.

+ + + + diff --git a/build/src/main/resources/$installer$/org/aspectj/resources/properties.txt b/build/src/main/resources/$installer$/org/aspectj/resources/properties.txt new file mode 100644 index 000000000..f3abaf4f4 --- /dev/null +++ b/build/src/main/resources/$installer$/org/aspectj/resources/properties.txt @@ -0,0 +1,7 @@ +installer.main.class: $installer$.org.aspectj.ToolsInstaller +installer.basedir: aspectj${build.version.majorminor} +build.version.long: ${project.version} +build.version.short: ${project.version} +build.date: ${build.date} +build.time: ${build.time} +copyright.allRights.from1998: Copyright (c) 1998-2001 Xerox Corporation, 2002 Palo Alto Research Center, Incorporated, 2003-${build.year} Contributors. All rights reserved. diff --git a/description b/description deleted file mode 100644 index f58083e11..000000000 --- a/description +++ /dev/null @@ -1 +0,0 @@ -Main AspectJ modules (for matcher/weaver/etc) diff --git a/docs/.classpath b/docs/.classpath deleted file mode 100644 index 6b2a02da9..000000000 --- a/docs/.classpath +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/docs/build.xml b/docs/build.xml index 8b7c8812c..0ab8c562d 100644 --- a/docs/build.xml +++ b/docs/build.xml @@ -56,7 +56,7 @@ + + + aspectjinstaller + + jar + + false + + + + ../build/target/classes + . + + org/** + + + + ../aj-build/dist/docs + files + + + + ../runtime/target/site/apidocs + files/doc/runtime-apidocs + + + + + + ../aspectjrt/target/aspectjrt-${project.version}.jar + files/lib + aspectjrt.jar + + + ../aspectjweaver/target/aspectjweaver-${project.version}.jar + files/lib + aspectjweaver.jar + + + ../aspectjtools/target/aspectjtools-${project.version}.jar + files/lib + aspectjtools.jar + + + + + diff --git a/installer/pom.xml b/installer/pom.xml new file mode 100644 index 000000000..61c94c054 --- /dev/null +++ b/installer/pom.xml @@ -0,0 +1,65 @@ + + + 4.0.0 + + + org.aspectj + aspectj-parent + 1.9.3.BUILD-SNAPSHOT + + + installer + pom + AspectJ Intaller + + + + org.aspectj + run-all-junit-tests + ${project.version} + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + test-jar + + + + + + + maven-assembly-plugin + + + aspectjinstaller-assembly + package + + single + + + aspectj-${project.version} + false + + + $installer$.org.aspectj.Main + + + + aspectjinstaller-assembly.xml + + + + + + + + diff --git a/java5/.project b/java5/.project deleted file mode 100644 index 5d08fe544..000000000 --- a/java5/.project +++ /dev/null @@ -1,11 +0,0 @@ - - - java5 - - - - - - - - diff --git a/lib/jdiff/jdiff/text/FileLine.class b/lib/jdiff/jdiff/text/FileLine.class new file mode 100644 index 0000000000000000000000000000000000000000..18015ba26de2b5e16825fa48ad5664d051b95a23 GIT binary patch literal 989 zcma)3%Wl(95IxtAyl|5?Z4=&Y3Z#i$@P>d;Q8!44N)cTYRf3)4xXF!zEm8-;uk-_0 zWdRZ?5(@+?Bt8l;bM2-4x4#oP-C;j=2ii>aVLv9 z`|T_m0=Z};douKf0_FC=d+WJFFYLL8@koZfU4gvsg;6Md{!sKizaMm;c_;lRQ8y3} z`vRHAGL-S2z;^YQCWFnZy2hJ;scM?`ewjU>lu(un)=L}0x= z=*r_`HxAy#?o&AoxSIs7^n&;xogq;zu-0fUGSjU6nR30+WbMJ5u{UJ!dF=d z3a$z)UtA)g6d=X4y17Eaj~d-I2hhzmCZd8}nrVNA_K_YM z7(Anrbp>c8A5uWUOQ8&F+*e>gm70xH6m9bQ8O$jR&P---MWx9>7CQv#&cRk^u(Z$= z_C3LB)Z4P14=|01^An~%aeg3k$`2-Sz9U0UmFMC!WG_f7v{B$bk+x{R4`}3vsN<0$ euOtMsCADx3*NI->#{aEmZ*B&2Hp5Ld@x~u;Evat+ literal 0 HcmV?d00001 diff --git a/lib/jdiff/jdiff/util/Diff$change.class b/lib/jdiff/jdiff/util/Diff$change.class new file mode 100644 index 0000000000000000000000000000000000000000..97de44bf8f3d36d3f7299e246d949a9fa8cb0627 GIT binary patch literal 613 zcmZ`#%Wl(95IvLFaU4w3rVkqWNPvP`OKr*;)J+jmqzD$E?w#b8-e4TbarhE`qzkJO z3qGJ<1AT}c;>;~81eScx%)K*b&YjC&U%#P>eLQQRj*SojHWjuMwiP-G-2jgRJP~-Q z%{~fhqq8LYU<6S=%S?WpCbOBD3DyUbu{}NQ%?q3MUNPFaD|{iS+iYg?!i)vd7X)LI z8khN$G=~Dm&#C>=X0|vIbawmv{-?NiLN~|LF-o;>^-xb(+#cN=c+~!2ccX;vxp

uCXFFXv-}+@)K*U vIl9xt1Luh9x&}A7tGl3*o~gg8i`22_qIGuoyl*qB;34jj8|)1D(gwocK|gMw literal 0 HcmV?d00001 diff --git a/lib/jdiff/jdiff/util/Diff$file_data.class b/lib/jdiff/jdiff/util/Diff$file_data.class new file mode 100644 index 0000000000000000000000000000000000000000..883d1bfeecc113a40b5556e4c92a33a25a6befdd GIT binary patch literal 3897 zcmaJ^eQ;D)760A)-rKjk*^rR%fRu#qk0hH9O3F463Y4!B2*g4PlF%lb-IwIyW<&Rb z@=?D!v1M}^vsZKqm4&{3Sx8UE0jO4aF%GhKi8y-k9E z{*imnJ$v??dw#!j&fUEE@oN{Mp&p+NU^+gjmOX0e45ABrmGoec%R_4ER!fgsqH5_4 z&?Kfz;%c$g(ig-G^an8j$HYG6<5NLQMM7x?m6S9wWMaR-l-_J#pPjPf-3cdYrv*f- zfX{w7>m1-gcJWk{O~##cESiejah_6kl%{d}pt3GY4o!YI?jjT$h$j2#vM&+sS57+V zGBe<$7cLc;+O{w5^z}7nGftv$1Em&$z|KR-%z&M7Vgg1iVMkK}T6N7X0e$^Y+!iQl zb|pX zj=pfhmiGv{d9NSJCNm6OUE^l&>bhf|QaA!L3TRN5?8~N|WdC^Lv#bA)dzFsp)fFGXqB*&{TW&n?N1FIaMI3DGMaE>B-1ugHwT@hGnl16vk-?LuA(lpT42>J zX|;58&u{Y%tS>9b1*lAd6;kF;Sf?thj0gGg|HBd zLhR*+5F)rcgwd>a?Hdbq7qzmv@DiYBsTiIbxhb2$ZP z05DOisG?M+xZz%^2yl0Dz#WPPcPE?N%M_sySm5gXTuCR-iz&5mMhou6wY6s;jGhbn zS;$wZkXXVs$Q{x^NcvFCbI3DB4eEG;Dv5%l1JLOTsHPw7JoF2}Htn7q%ECMwl?{6v z^q%%%DJoT%(fnV-uh7JBq&$Kb0CkHI_#|F+t?a|oywo~srw^FW$D^P#Fs1 zdm_H)@*ipuGl!-M-7*_SK!ZhLS8j;-E&m9L>Mc|6$f3mYTgHp<^JsJoo5C_HNAo|g zp9F3TnT5O?hHOSat{`|TnMey}$~6RWE#`3#%XPR@Zo~??39ICN*eEw+i)_UXxdnUV zRy@Sd`{gz_@x5Lm6Nx)$cEL6f#|jth0D7>J5NIetr(1nG@35OyR6!DF;(n~6pVRxj%pEKRYcEW zR@l;;3P@3+op0DDhIL`-gyb(dObHL`c}v$ihJD8aC{P_bX@pq z4wk1LDTMR6!F=vFiYFYOuCfe0-n064{^LzI_$Mlp{^La3^B*U`UONB7|F9;iDn~!= zoNS`&WE=7U*57V6Zzrb8F4o>&%$8Bso{c549}RMV_2;nu_ObqK)?X5vL%{98UJLh^Z0B2S14c~UHvr$nQCK`fWw6wUHmVztbPd*yMlRlX#4 z$d^Tzd_^SWt71rgPaKk`#pCjTb!0Zbo->wtKIQF z5og?<;Lj8Ba-mO5@g2ARH7pcg#9G$B4o9rRy_5{h6Hj0rB_B@XBdn)n;+VJt8z}kl zjF{$jQGgx8C$=!!-k=ALN$e5J7o29qs zIN;Af>MTaxD@HcXPim{qV#*|+wJI<9Q}THUro7C-_y)OrlQZNk^7l5@Q`aWn!Ts`G z7l*sN8;#?D9pgBlZ5#(|akE$5exHko&Kx#Tc3&T%F<&1wM{3WZq&9pOT5a9Mvk>lM zbRl>a#)K4_kc!>h*Vors`m!;UzK*FYjSAy3=DV67VCo(Zfbe;gb+w;E`530{<~a4V z6~-8>cDHTnE{^6eOs2n#uL|UQ9HqbDD19Fl@>f_Oe~o(iTQtclSSx?W^8G#H@(P8r`Rgz6O2P0!~4%&Fr| zildeu;X@QD;%v)te%@p{lK+4PK`UtaPQU{&(BL8#Y&eO{Dhfkjjc3qona2^d0+x9K zb(UYrMV9{r<}z+@I4D?Tlmf#6;mtl?Fqi)d1Grbt<@ZjaetC;N;1bJUHF70>jGdJH*oDW@K`Fo=!nWHGK|Y#~;Q{K3 W=zAA=mV7+J+=Fb0>HMd*7Wfb1@CnTT literal 0 HcmV?d00001 diff --git a/lib/jdiff/jdiff/util/Diff.class b/lib/jdiff/jdiff/util/Diff.class new file mode 100644 index 0000000000000000000000000000000000000000..083f3c59b71ee9af62bbd55d637a06211fcbb3fc GIT binary patch literal 5792 zcmb7IdvIJ;8ULMo@4k|ocg}9oO-e&snr@o3l=gysK(&B`mIf_W+9KIab~o9w*$vrE zNh$@z%2ygGapBT>(G#DEd()>oEnsqIe$nU~dIl zF`?G>shRx>98lyz1)fmgs~${x@HGKnJdup`MkCpXfZ3f&#YR>qBbiJrBjD~IjHCu) z zL|=lKdqpCZ$eu4SznwcHTO$jTy!pbOzAdr-?DEr0&EG&NtJ6^`SF<*eime+R>WhtB z5$Q{ErhaX@Ka$)K8A&L*Fll556I8D5!_HO>0uk1BuTf!JiCWc6jJJh&MY4Iqn+NZ$SR)TQ?BRZ5w*@N}nWJ z(-@j9!nr0sp|~3C%sDYgm8h>P@T7^wSY+ZH1r{oBwgOAk zX-gG2Pl0b>*u){Va4|kDaAr9dyOYV-KqUFek%7^nSSowbSbuCdn@BSx>n<7^&W_K@ zjP@~nMq{b|m^$w%6EVb14B}}MTNL;vIt2VDYvTA+?RZ8pQ|-g*_-EB^wkYx%Bu$JV z$xJ_KFN3dqKc`kO1lqe*SgttLC#T8q)26lBZWcnVH=a~=uW}?7VI)OkV=BHSWtVEy z`s@gEV!7Hh^OQ4>t9pu|x^FZdkB!8l#S}WjPPLPxrdVpfC){-4l$u3#~v9x95v-{d!)V+AEI z!*aqEq>jP^gX6l;G_;U01rgGxpeta6Tra{k1-BwR$Kc)A@zR2q!qf1r3mt)5KL*#v zP)Fx9lR(jiO)s$N!}fVA2}3*&j8B87`S3|p<03TRGYE1-g{>y0amOrNNGUpThPR`KC&LqF07f^jQn}1UXfAUTRxR@oRxk4g zr4hA!Ev-?jB1ll#qG(fAT2=g2OVg_1uU1w{Giuzh8y;g4hHlk0D^WGFG92t_R`P14 z8E)w@toljly45JFr0*d74p*)!FRQ{vRO^|9J69!SwXE1*TC64=Hp0$gbzW9m4U;%h zkl(;3U^t}vPm}YgDIPguq7wqk323dOm^9t%Ugu6@EZBRYjT*>EV=@DaJI_UG4dFBK0sn{qXISwju#>ut?zgsfGX7guXZQ}e=VZC=(Y z)u&1aI;uO?r6G!{??;7fQi}UzGktZ6>iL{MFJB&NlTTr zFUq&I--C1LI%>aw`cxml+|p%E(7xK%{&?MM_UA8^^>z6ELGh+++%4WL z+H+Ty=d5PKYMR7sUZzSiZlYbps);p36|ooYNmS*Uglu9k85o;ZxX@jyD}Yt70@Qjj}l2+*Wc^dCF?m zPf#*^yprJ)mE315**Jk2$Dg9qWGa=_q&LqyRn1(znEY@qOOD3U1hE5s#8Yr1&GJ0V z!g?*5FoK!LU^cR7$0+;zRu;1BSi-iU2iId0wzF~G$hLPgciuvdTX8%8?!+CqA3N{_ z?!wn_H@oRQ_z~{I&p7)g9>m*t2=C%y{0Y189v;EpuuD{7j|kvVF$0f@v+xyhIrfT8 zm=IsU-C_Vwh!nmmZsteCE%>^)3r~s(91;iclz0-~6yL>R@e@2Net{$6*O(H&!E@sG zm==G;^Wra<)+%vSlQ^a|;RS6DUewm%Wo-k#t!>0pT0efQU5B4)+wiKk9j|LS{9L;e zztEn=8`_`oruG5e*8YQc^ZxuChW(05ru_{&H^NmV;o>(n<^nc+>Hmy1g>c7QC&eh|PzKapk!A6+Ue~HapZN#q_ zC0B7y()SsBfta6>unkue3*bdepqE$^qvd{ti8YJY8Bg{OdNk|opnt#U>=4gmpRz3ARiiG>MswX-G?T_c}|phD!cwq>If*Js3>>YHi9Z-4tAP4E~MvfoU|o912Qr ztMp1&bQ;Ye>20xbC9b*r?75mggJ^>;&V-NSY{BOpvv&c zJg<06uzZZ4T7Y%XBd&&5^dca_v~uLQH9~_Q32kq$hmNZmg1S%PT#WPd)nFqOhL-K#?BdaP7%| za15;*87V&LmfooJNME#L8Z*~&2e~-OFrMVJYhQk%&;@1&&vZD>t z(|+XG(}wAWHjJ~gsd~xSWF1m*vXEUYOU%tr&p~!F6(?&LF|M0%-L&jZTJ|0+5f9*8@enQ&yKtGuUW(Sl_cu`WB7UBZg$Shkz?bS!%r zzwI5%3VLN*!Lk+f1Ct96@`LS+P%&6%O`*yrRGB1EU0i4@26kK69bOq~d7)y8rLHt- zgr`vB%$g_8)`s+w3>#CD+f>ODN&e}a3&tG0D#IeHeXOO4svI%$O^wA%HI zIE~S_9XD`PAF>O%qH2_?=;BZ*f!y}wd|RMXfn0n>tm67j{DC6AR1#q^?3D;Jw2?A4 mDcgLkB=ZDG8lQUV$@pbH2-VlO#?+aso+|ub;JKI&-+uw10jAdg literal 0 HcmV?d00001 diff --git a/lib/jdiff/jdiff/util/DiffNormalOutput.class b/lib/jdiff/jdiff/util/DiffNormalOutput.class new file mode 100644 index 0000000000000000000000000000000000000000..6f9f8ef7ac275acfbe3bccd675b1bfcd9897a567 GIT binary patch literal 1898 zcmaJ?%~Km?82`Qb*xjT{!O*3Y4+TM+gg{DFYK2lIv=R-VP+PIKc1bp{blJqsMm>0R zJbLod-kfo!GdiQwkx3n$@zR5iGxjg>>ec#tcT>n93X|vSeZKbhJn!!BfB*CgqL_rA z!~kAN;uK~Rcph^Jsuz-&$3>~WD#>e-EJ#w2&Wn;&z5@I81uL7hQM%Xr(##D`KE6>`9(@AHE-8+ zR-1mk>CXxXQ=s>Vf;`z2IQFq;`__8dv+KSJ_Mnuv*(hu3Mc1{wf@3xs7RwB#57!wF zJ!fU-N+ZZ1(Endve7fzXds`rR>65Zm_wAb7P;pHl5p=K=oT(Mdv3yxh6a`e-v6LS(B>v$4&Hv>b4IG8F+WoQg#;&YV^-1ac0c zCm3b8xohDTDd|G7C==-6wv;TN^%$C_xj-I-u)TEP)g?2oTXoYj{Tkg;9d{>$m8}|F z#r+%Aw#pLmDksl&!i|!bNZ|Alz8%r+`xvaSS+83zpDK4mNTwsEbG+*K$&dx*6VKPWZ8B4D}* z6UCV%N#2Vz`^|Ke9^5ZIh%6>pE`omKC`I`81!A;Jk@CXP!Y0Hw)Dk>-G_eQe0*N|5 zbQjw2UBvEF(`I6%iJ7>R`BQGiDl>{S@ux~f&GzJsn4z?gluZv0{fJ{N=+YWD)V7r; zT`e3Rx`R<8Hly7`Z#LCUV~?SoZQ-fUG+}6l^7Z3ChwosVUL!Kq&q!@NKyT_q3r3j0 zXrYg3=rn4?+i6bnsJ}Cf$}|VK-NZ>g-4rp)6SHZ48_p898BY2faeJBAoag@>3b=q( zep@zhk*}8pzE}#VVG*B_e~u-5!7ca}%lIBEXwmZ_`5#ydu&**R5!}cAQGhrX4Zq5; PH$bkT;OFukoJQgw9xRx| literal 0 HcmV?d00001 diff --git a/lib/jdiff/jdiff/util/DiffOutput.class b/lib/jdiff/jdiff/util/DiffOutput.class new file mode 100644 index 0000000000000000000000000000000000000000..f26fc35763577091da17da040fc6f8ffbd5a3101 GIT binary patch literal 2042 zcma)7T~k|C6kR7=a!Ck~P@t9%wMyF%kWjTsrN!E`)z}n}R4C%tB{_l1gd}rwqx8K$ z!6%=c@r4&V0v$W!5Aa7hu6<8T(oCEYCTE|s&(2zFf83kD{{G`n^x+*GL@|at1NbD0 zyU0Xv0rza&kMQsyihg`5p3h{-%JR95hfxgTjx0I(>Lb~4S;Kl18~8$Yn>O+`9xL>h z+_GL$xUic$bbfHsWv8;AUf(;^1%IV^dtG6u>{fJM*BsCBtDeGWM{wTv+{!+K`>G9J zA#SeRYI@sqeeLlge9Nu4{;I-UvIk2K*W8wZm8llB!bpzHYmK8l?LBt(%Jhupss*RK z<#?`~n@-C=aO(;ebB9H@R7y8|x17Gm-Fm~XH6#<|@UurPb?wv1gp=Jug*DD=VeH6t zycrl&rkSjS4*n?l9d12a%c;M3-t(r~OV zH37Pc7ED&ysnv9)sIc(ASWMZ7Ip9|fufkZer<&n^8)cfq;Rq&6A1KWjA7RaomXUt(hbEdI00!H$g%EXO3U906LJ5!0A~!s|R8^VCOsHFXY^8V$Wb z-zlurOZ4wNNBA7}DF#yWr--B$P7(c$ks-XnbrNB&*ZA!uhA>Cu6yC%m&hLq>Q!Q1lG$wPcMQD5;LbT>^Jf@ZIKwav zy%xchange objects which form an + edit script. The objects compared are traditionally lines + of text from two files. Comparison options such as "ignore + whitespace" are implemented by modifying the equals + and hashcode methods for the objects compared. +

+ The basic algorithm is described in:
+ "An O(ND) Difference Algorithm and its Variations", Eugene Myers, + Algorithmica Vol. 1 No. 2, 1986, p 251. +

+ This class outputs different results from GNU diff 1.15 on some + inputs. Our results are actually better (smaller change list, smaller + total size of changes), but it would be nice to know why. Perhaps + there is a memory overwrite bug in GNU diff 1.15. + + @author Stuart D. Gathman, translated from GNU diff 1.15 + Copyright (C) 2000 Business Management Systems, Inc. +

+ This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. +

+ This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. +

+ You should have received a copy of the + GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + */ + +public class Diff +{ + + /** Prepare to find differences between two arrays. Each element of + the arrays is translated to an "equivalence number" based on + the result of equals. The original Object arrays + are no longer needed for computing the differences. They will + be needed again later to print the results of the comparison as + an edit script, if desired. + */ + public Diff(Object[] a,Object[] b) + { + Hashtable h = new Hashtable(a.length + b.length); + filevec[0] = new file_data(a,h); + filevec[1] = new file_data(b,h); + } + + /** 1 more than the maximum equivalence value used for this or its + sibling file. */ + private int equiv_max = 1; + + /** When set to true, the comparison uses a heuristic to speed it up. + With this heuristic, for files with a constant small density + of changes, the algorithm is linear in the file size. */ + public boolean heuristic = false; + + /** When set to true, the algorithm returns a guarranteed minimal + set of changes. This makes things slower, sometimes much slower. */ + public boolean no_discards = false; + + private int[] xvec, yvec; /* Vectors being compared. */ + private int[] fdiag; /* Vector, indexed by diagonal, containing + the X coordinate of the point furthest + along the given diagonal in the forward + search of the edit matrix. */ + private int[] bdiag; /* Vector, indexed by diagonal, containing + the X coordinate of the point furthest + along the given diagonal in the backward + search of the edit matrix. */ + private int fdiagoff, bdiagoff; + private final file_data[] filevec = new file_data[2]; + private int cost; + + /** Find the midpoint of the shortest edit script for a specified + portion of the two files. + + We scan from the beginnings of the files, and simultaneously from the ends, + doing a breadth-first search through the space of edit-sequence. + When the two searches meet, we have found the midpoint of the shortest + edit sequence. + + The value returned is the number of the diagonal on which the midpoint lies. + The diagonal number equals the number of inserted lines minus the number + of deleted lines (counting only lines before the midpoint). + The edit cost is stored into COST; this is the total number of + lines inserted or deleted (counting only lines before the midpoint). + + This function assumes that the first lines of the specified portions + of the two files do not match, and likewise that the last lines do not + match. The caller must trim matching lines from the beginning and end + of the portions it is going to specify. + + Note that if we return the "wrong" diagonal value, or if + the value of bdiag at that diagonal is "wrong", + the worst this can do is cause suboptimal diff output. + It cannot cause incorrect diff output. */ + + private int diag (int xoff, int xlim, int yoff, int ylim) + { + final int[] fd = fdiag; // Give the compiler a chance. + final int[] bd = bdiag; // Additional help for the compiler. + final int[] xv = xvec; // Still more help for the compiler. + final int[] yv = yvec; // And more and more . . . + final int dmin = xoff - ylim; // Minimum valid diagonal. + final int dmax = xlim - yoff; // Maximum valid diagonal. + final int fmid = xoff - yoff; // Center diagonal of top-down search. + final int bmid = xlim - ylim; // Center diagonal of bottom-up search. + int fmin = fmid, fmax = fmid; // Limits of top-down search. + int bmin = bmid, bmax = bmid; // Limits of bottom-up search. + /* True if southeast corner is on an odd + diagonal with respect to the northwest. */ + final boolean odd = (fmid - bmid & 1) != 0; + + fd[fdiagoff + fmid] = xoff; + bd[bdiagoff + bmid] = xlim; + + for (int c = 1;; ++c) + { + int d; /* Active diagonal. */ + boolean big_snake = false; + + /* Extend the top-down search by an edit step in each diagonal. */ + if (fmin > dmin) + fd[fdiagoff + --fmin - 1] = -1; + else + ++fmin; + if (fmax < dmax) + fd[fdiagoff + ++fmax + 1] = -1; + else + --fmax; + for (d = fmax; d >= fmin; d -= 2) + { + int x, y, oldx, tlo = fd[fdiagoff + d - 1], thi = fd[fdiagoff + d + 1]; + + if (tlo >= thi) + x = tlo + 1; + else + x = thi; + oldx = x; + y = x - d; + while (x < xlim && y < ylim && xv[x] == yv[y]) { + ++x; ++y; + } + if (x - oldx > 20) + big_snake = true; + fd[fdiagoff + d] = x; + if (odd && bmin <= d && d <= bmax && bd[bdiagoff + d] <= fd[fdiagoff + d]) + { + cost = 2 * c - 1; + return d; + } + } + + /* Similar extend the bottom-up search. */ + if (bmin > dmin) + bd[bdiagoff + --bmin - 1] = Integer.MAX_VALUE; + else + ++bmin; + if (bmax < dmax) + bd[bdiagoff + ++bmax + 1] = Integer.MAX_VALUE; + else + --bmax; + for (d = bmax; d >= bmin; d -= 2) + { + int x, y, oldx, tlo = bd[bdiagoff + d - 1], thi = bd[bdiagoff + d + 1]; + + if (tlo < thi) + x = tlo; + else + x = thi - 1; + oldx = x; + y = x - d; + while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1]) { + --x; --y; + } + if (oldx - x > 20) + big_snake = true; + bd[bdiagoff + d] = x; + if (!odd && fmin <= d && d <= fmax && bd[bdiagoff + d] <= fd[fdiagoff + d]) + { + cost = 2 * c; + return d; + } + } + + /* Heuristic: check occasionally for a diagonal that has made + lots of progress compared with the edit distance. + If we have any such, find the one that has made the most + progress and return it as if it had succeeded. + + With this heuristic, for files with a constant small density + of changes, the algorithm is linear in the file size. */ + + if (c > 200 && big_snake && heuristic) + { + int best = 0; + int bestpos = -1; + + for (d = fmax; d >= fmin; d -= 2) + { + int dd = d - fmid; + if ((fd[fdiagoff + d] - xoff)*2 - dd > 12 * (c + (dd > 0 ? dd : -dd))) + { + if (fd[fdiagoff + d] * 2 - dd > best + && fd[fdiagoff + d] - xoff > 20 + && fd[fdiagoff + d] - d - yoff > 20) + { + int k; + int x = fd[fdiagoff + d]; + + /* We have a good enough best diagonal; + now insist that it end with a significant snake. */ + for (k = 1; k <= 20; k++) + if (xvec[x - k] != yvec[x - d - k]) + break; + + if (k == 21) + { + best = fd[fdiagoff + d] * 2 - dd; + bestpos = d; + } + } + } + } + if (best > 0) + { + cost = 2 * c - 1; + return bestpos; + } + + best = 0; + for (d = bmax; d >= bmin; d -= 2) + { + int dd = d - bmid; + if ((xlim - bd[bdiagoff + d])*2 + dd > 12 * (c + (dd > 0 ? dd : -dd))) + { + if ((xlim - bd[bdiagoff + d]) * 2 + dd > best + && xlim - bd[bdiagoff + d] > 20 + && ylim - (bd[bdiagoff + d] - d) > 20) + { + /* We have a good enough best diagonal; + now insist that it end with a significant snake. */ + int k; + int x = bd[bdiagoff + d]; + + for (k = 0; k < 20; k++) + if (xvec[x + k] != yvec[x - d + k]) + break; + if (k == 20) + { + best = (xlim - bd[bdiagoff + d]) * 2 + dd; + bestpos = d; + } + } + } + } + if (best > 0) + { + cost = 2 * c - 1; + return bestpos; + } + } + } + } + + /** Compare in detail contiguous subsequences of the two files + which are known, as a whole, to match each other. + + The results are recorded in the vectors filevec[N].changed_flag, by + storing a 1 in the element for each line that is an insertion or deletion. + + The subsequence of file 0 is [XOFF, XLIM) and likewise for file 1. + + Note that XLIM, YLIM are exclusive bounds. + All line numbers are origin-0 and discarded lines are not counted. */ + + private void compareseq (int xoff, int xlim, int yoff, int ylim) { + /* Slide down the bottom initial diagonal. */ + while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff]) { + ++xoff; ++yoff; + } + /* Slide up the top initial diagonal. */ + while (xlim > xoff && ylim > yoff && xvec[xlim - 1] == yvec[ylim - 1]) { + --xlim; --ylim; + } + + /* Handle simple cases. */ + if (xoff == xlim) + while (yoff < ylim) + filevec[1].changed_flag[1+filevec[1].realindexes[yoff++]] = true; + else if (yoff == ylim) + while (xoff < xlim) + filevec[0].changed_flag[1+filevec[0].realindexes[xoff++]] = true; + else + { + /* Find a point of correspondence in the middle of the files. */ + + int d = diag (xoff, xlim, yoff, ylim); + int c = cost; + int f = fdiag[fdiagoff + d]; + int b = bdiag[bdiagoff + d]; + + if (c == 1) + { + /* This should be impossible, because it implies that + one of the two subsequences is empty, + and that case was handled above without calling `diag'. + Let's verify that this is true. */ + throw new IllegalArgumentException("Empty subsequence"); + } + else + { + /* Use that point to split this problem into two subproblems. */ + compareseq (xoff, b, yoff, b - d); + /* This used to use f instead of b, + but that is incorrect! + It is not necessarily the case that diagonal d + has a snake from b to f. */ + compareseq (b, xlim, b - d, ylim); + } + } + } + + /** Discard lines from one file that have no matches in the other file. + */ + + private void discard_confusing_lines() { + filevec[0].discard_confusing_lines(filevec[1]); + filevec[1].discard_confusing_lines(filevec[0]); + } + + private boolean inhibit = false; + + /** Adjust inserts/deletes of blank lines to join changes + as much as possible. + */ + + private void shift_boundaries() { + if (inhibit) + return; + filevec[0].shift_boundaries(filevec[1]); + filevec[1].shift_boundaries(filevec[0]); + } + + /** Scan the tables of which lines are inserted and deleted, + producing an edit script in reverse order. */ + + private change build_reverse_script() { + change script = null; + final boolean[] changed0 = filevec[0].changed_flag; + final boolean[] changed1 = filevec[1].changed_flag; + final int len0 = filevec[0].buffered_lines; + final int len1 = filevec[1].buffered_lines; + + /* Note that changedN[len0] does exist, and contains 0. */ + + int i0 = 0, i1 = 0; + + while (i0 < len0 || i1 < len1) + { + if (changed0[1+i0] || changed1[1+i1]) + { + int line0 = i0, line1 = i1; + + /* Find # lines changed here in each file. */ + while (changed0[1+i0]) ++i0; + while (changed1[1+i1]) ++i1; + + /* Record this change. */ + script = new change(line0, line1, i0 - line0, i1 - line1, script); + } + + /* We have reached lines in the two files that match each other. */ + i0++; i1++; + } + + return script; + } + + /** Scan the tables of which lines are inserted and deleted, + producing an edit script in forward order. */ + + private change build_script() { + change script = null; + final boolean[] changed0 = filevec[0].changed_flag; + final boolean[] changed1 = filevec[1].changed_flag; + final int len0 = filevec[0].buffered_lines; + final int len1 = filevec[1].buffered_lines; + int i0 = len0, i1 = len1; + + /* Note that changedN[-1] does exist, and contains 0. */ + + while (i0 >= 0 || i1 >= 0) + { + if (changed0[i0] || changed1[i1]) + { + int line0 = i0, line1 = i1; + + /* Find # lines changed here in each file. */ + while (changed0[i0]) --i0; + while (changed1[i1]) --i1; + + /* Record this change. */ + script = new change(i0, i1, line0 - i0, line1 - i1, script); + } + + /* We have reached lines in the two files that match each other. */ + i0--; i1--; + } + + return script; + } + + /* Report the differences of two files. DEPTH is the current directory + depth. */ + public change diff_2(final boolean reverse) { + + /* Some lines are obviously insertions or deletions + because they don't match anything. Detect them now, + and avoid even thinking about them in the main comparison algorithm. */ + + discard_confusing_lines (); + + /* Now do the main comparison algorithm, considering just the + undiscarded lines. */ + + xvec = filevec[0].undiscarded; + yvec = filevec[1].undiscarded; + + int diags = + filevec[0].nondiscarded_lines + filevec[1].nondiscarded_lines + 3; + fdiag = new int[diags]; + fdiagoff = filevec[1].nondiscarded_lines + 1; + bdiag = new int[diags]; + bdiagoff = filevec[1].nondiscarded_lines + 1; + + compareseq (0, filevec[0].nondiscarded_lines, + 0, filevec[1].nondiscarded_lines); + fdiag = null; + bdiag = null; + + /* Modify the results slightly to make them prettier + in cases where that can validly be done. */ + + shift_boundaries (); + + /* Get the results of comparison in the form of a chain + of `struct change's -- an edit script. */ + + if (reverse) + return build_reverse_script(); + else + return build_script(); + } + + /** The result of comparison is an "edit script": a chain of change objects. + Each change represents one place where some lines are deleted + and some are inserted. + + LINE0 and LINE1 are the first affected lines in the two files (origin 0). + DELETED is the number of lines deleted here from file 0. + INSERTED is the number of lines inserted here in file 1. + + If DELETED is 0 then LINE0 is the number of the line before + which the insertion was done; vice versa for INSERTED and LINE1. */ + + public static class change { + /** Previous or next edit command. */ + public change link; + /** # lines of file 1 changed here. */ + public final int inserted; + /** # lines of file 0 changed here. */ + public final int deleted; + /** Line number of 1st deleted line. */ + public final int line0; + /** Line number of 1st inserted line. */ + public final int line1; + + /** Cons an additional entry onto the front of an edit script OLD. + LINE0 and LINE1 are the first affected lines in the two files (origin 0). + DELETED is the number of lines deleted here from file 0. + INSERTED is the number of lines inserted here in file 1. + + If DELETED is 0 then LINE0 is the number of the line before + which the insertion was done; vice versa for INSERTED and LINE1. */ + change(int line0, int line1, int deleted, int inserted, change old) { + this.line0 = line0; + this.line1 = line1; + this.inserted = inserted; + this.deleted = deleted; + this.link = old; + //System.err.println(line0+","+line1+","+inserted+","+deleted); + } + } + + /** Data on one input file being compared. + */ + + class file_data { + + /** Allocate changed array for the results of comparison. */ + void clear() { + /* Allocate a flag for each line of each file, saying whether that line + is an insertion or deletion. + Allocate an extra element, always zero, at each end of each vector. + */ + changed_flag = new boolean[buffered_lines + 2]; + } + + /** Return equiv_count[I] as the number of lines in this file + that fall in equivalence class I. + @return the array of equivalence class counts. + */ + int[] equivCount() { + int[] equiv_count = new int[equiv_max]; + for (int i = 0; i < buffered_lines; ++i) + ++equiv_count[equivs[i]]; + return equiv_count; + } + + /** Discard lines that have no matches in another file. + + A line which is discarded will not be considered by the actual + comparison algorithm; it will be as if that line were not in the file. + The file's `realindexes' table maps virtual line numbers + (which don't count the discarded lines) into real line numbers; + this is how the actual comparison algorithm produces results + that are comprehensible when the discarded lines are counted. +

+ When we discard a line, we also mark it as a deletion or insertion + so that it will be printed in the output. + @param f the other file + */ + void discard_confusing_lines(file_data f) { + clear(); + /* Set up table of which lines are going to be discarded. */ + final byte[] discarded = discardable(f.equivCount()); + + /* Don't really discard the provisional lines except when they occur + in a run of discardables, with nonprovisionals at the beginning + and end. */ + filterDiscards(discarded); + + /* Actually discard the lines. */ + discard(discarded); + } + + /** Mark to be discarded each line that matches no line of another file. + If a line matches many lines, mark it as provisionally discardable. + @see equivCount() + @param counts The count of each equivalence number for the other file. + @return 0=nondiscardable, 1=discardable or 2=provisionally discardable + for each line + */ + + private byte[] discardable(final int[] counts) { + final int end = buffered_lines; + final byte[] discards = new byte[end]; + final int[] equivs = this.equivs; + int many = 5; + int tem = end / 64; + + /* Multiply MANY by approximate square root of number of lines. + That is the threshold for provisionally discardable lines. */ + while ((tem = tem >> 2) > 0) + many *= 2; + + for (int i = 0; i < end; i++) + { + int nmatch; + if (equivs[i] == 0) + continue; + nmatch = counts[equivs[i]]; + if (nmatch == 0) + discards[i] = 1; + else if (nmatch > many) + discards[i] = 2; + } + return discards; + } + + /** Don't really discard the provisional lines except when they occur + in a run of discardables, with nonprovisionals at the beginning + and end. */ + + private void filterDiscards(final byte[] discards) { + final int end = buffered_lines; + + for (int i = 0; i < end; i++) + { + /* Cancel provisional discards not in middle of run of discards. */ + if (discards[i] == 2) + discards[i] = 0; + else if (discards[i] != 0) + { + /* We have found a nonprovisional discard. */ + int j; + int length; + int provisional = 0; + + /* Find end of this run of discardable lines. + Count how many are provisionally discardable. */ + for (j = i; j < end; j++) + { + if (discards[j] == 0) + break; + if (discards[j] == 2) + ++provisional; + } + + /* Cancel provisional discards at end, and shrink the run. */ + while (j > i && discards[j - 1] == 2) { + discards[--j] = 0; --provisional; + } + + /* Now we have the length of a run of discardable lines + whose first and last are not provisional. */ + length = j - i; + + /* If 1/4 of the lines in the run are provisional, + cancel discarding of all provisional lines in the run. */ + if (provisional * 4 > length) + { + while (j > i) + if (discards[--j] == 2) + discards[j] = 0; + } + else + { + int consec; + int minimum = 1; + int tem = length / 4; + + /* MINIMUM is approximate square root of LENGTH/4. + A subrun of two or more provisionals can stand + when LENGTH is at least 16. + A subrun of 4 or more can stand when LENGTH >= 64. */ + while ((tem = tem >> 2) > 0) + minimum *= 2; + minimum++; + + /* Cancel any subrun of MINIMUM or more provisionals + within the larger run. */ + for (j = 0, consec = 0; j < length; j++) + if (discards[i + j] != 2) + consec = 0; + else if (minimum == ++consec) + /* Back up to start of subrun, to cancel it all. */ + j -= consec; + else if (minimum < consec) + discards[i + j] = 0; + + /* Scan from beginning of run + until we find 3 or more nonprovisionals in a row + or until the first nonprovisional at least 8 lines in. + Until that point, cancel any provisionals. */ + for (j = 0, consec = 0; j < length; j++) + { + if (j >= 8 && discards[i + j] == 1) + break; + if (discards[i + j] == 2) { + consec = 0; discards[i + j] = 0; + } + else if (discards[i + j] == 0) + consec = 0; + else + consec++; + if (consec == 3) + break; + } + + /* I advances to the last line of the run. */ + i += length - 1; + + /* Same thing, from end. */ + for (j = 0, consec = 0; j < length; j++) + { + if (j >= 8 && discards[i - j] == 1) + break; + if (discards[i - j] == 2) { + consec = 0; discards[i - j] = 0; + } + else if (discards[i - j] == 0) + consec = 0; + else + consec++; + if (consec == 3) + break; + } + } + } + } + } + + /** Actually discard the lines. + @param discards flags lines to be discarded + */ + private void discard(final byte[] discards) { + final int end = buffered_lines; + int j = 0; + for (int i = 0; i < end; ++i) + if (no_discards || discards[i] == 0) + { + undiscarded[j] = equivs[i]; + realindexes[j++] = i; + } + else + changed_flag[1+i] = true; + nondiscarded_lines = j; + } + + file_data(Object[] data,Hashtable h) { + buffered_lines = data.length; + + equivs = new int[buffered_lines]; + undiscarded = new int[buffered_lines]; + realindexes = new int[buffered_lines]; + + for (int i = 0; i < data.length; ++i) { + Integer ir = (Integer)h.get(data[i]); + if (ir == null) + h.put(data[i],new Integer(equivs[i] = equiv_max++)); + else + equivs[i] = ir.intValue(); + } + } + + /** Adjust inserts/deletes of blank lines to join changes + as much as possible. + + We do something when a run of changed lines include a blank + line at one end and have an excluded blank line at the other. + We are free to choose which blank line is included. + `compareseq' always chooses the one at the beginning, + but usually it is cleaner to consider the following blank line + to be the "change". The only exception is if the preceding blank line + would join this change to other changes. + @param f the file being compared against + */ + + void shift_boundaries(file_data f) { + final boolean[] changed = changed_flag; + final boolean[] other_changed = f.changed_flag; + int i = 0; + int j = 0; + int i_end = buffered_lines; + int preceding = -1; + int other_preceding = -1; + + for (;;) + { + int start, end, other_start; + + /* Scan forwards to find beginning of another run of changes. + Also keep track of the corresponding point in the other file. */ + + while (i < i_end && !changed[1+i]) + { + while (other_changed[1+j++]) + /* Non-corresponding lines in the other file + will count as the preceding batch of changes. */ + other_preceding = j; + i++; + } + + if (i == i_end) + break; + + start = i; + other_start = j; + + for (;;) + { + /* Now find the end of this run of changes. */ + + while (i < i_end && changed[1+i]) i++; + end = i; + + /* If the first changed line matches the following unchanged one, + and this run does not follow right after a previous run, + and there are no lines deleted from the other file here, + then classify the first changed line as unchanged + and the following line as changed in its place. */ + + /* You might ask, how could this run follow right after another? + Only because the previous run was shifted here. */ + + if (end != i_end + && equivs[start] == equivs[end] + && !other_changed[1+j] + && end != i_end + && !((preceding >= 0 && start == preceding) + || (other_preceding >= 0 + && other_start == other_preceding))) + { + changed[1+end++] = true; + changed[1+start++] = false; + ++i; + /* Since one line-that-matches is now before this run + instead of after, we must advance in the other file + to keep in synch. */ + ++j; + } + else + break; + } + + preceding = i; + other_preceding = j; + } + } + + /** Number of elements (lines) in this file. */ + final int buffered_lines; + + /** Vector, indexed by line number, containing an equivalence code for + each line. It is this vector that is actually compared with that + of another file to generate differences. */ + private final int[] equivs; + + /** Vector, like the previous one except that + the elements for discarded lines have been squeezed out. */ + final int[] undiscarded; + + /** Vector mapping virtual line numbers (not counting discarded lines) + to real ones (counting those lines). Both are origin-0. */ + final int[] realindexes; + + /** Total number of nondiscarded lines. */ + int nondiscarded_lines; + + /** Array, indexed by real origin-1 line number, + containing true for a line that is an insertion or a deletion. + The results of comparison are stored here. */ + boolean[] changed_flag; + + } +} diff --git a/lib/jdiff/src/util/DiffNormalOutput.java b/lib/jdiff/src/util/DiffNormalOutput.java new file mode 100644 index 000000000..3ea03f450 --- /dev/null +++ b/lib/jdiff/src/util/DiffNormalOutput.java @@ -0,0 +1,84 @@ +/* + * DiffNormalOutput.java + * Copyright (c) 2001 Andre Kaplan + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + + +package jdiff.util; + +import java.io.IOException; + + +/** Print a change list in the standard diff format. */ +public class DiffNormalOutput extends DiffOutput { + public DiffNormalOutput(Object[] a, Object[] b) { + super(a, b); + } + + + public void writeScript(Diff.change script) throws IOException { + Diff.change hunk = script; + + for (; hunk != null; hunk = hunk.link) { + this.writeHunk(hunk); + } + + this.out.flush(); + } + + + /** Writes a hunk of a normal diff. */ + protected void writeHunk(Diff.change hunk) throws IOException { + int deletes = hunk.deleted; + int inserts = hunk.inserted; + + if (deletes == 0 && inserts == 0) { + return; + } + + // Determine range of line numbers involved in each file. + int first0 = hunk.line0; + int first1 = hunk.line1; + int last0 = hunk.line0 + hunk.deleted - 1; + int last1 = hunk.line1 + hunk.inserted - 1; + + // Write out the line number header for this hunk + this.writeNumberRange(',', first0, last0); + out.write(DiffOutput.changeLetter(inserts, deletes)); + this.writeNumberRange(',', first1, last1); + out.write(this.lineSeparator); + + // Write the lines that the first file has. + if (deletes != 0) { + for (int i = first0; i <= last0; i++) { + this.writeLine("< ", this.file0[i]); + } + } + + if (inserts != 0 && deletes != 0) { + out.write("---" + this.lineSeparator); + } + + // Write the lines that the second file has. + if (inserts != 0) { + for (int i = first1; i <= last1; i++) { + this.writeLine("> ", this.file1[i]); + } + } + } +} + diff --git a/lib/jdiff/src/util/DiffOutput.java b/lib/jdiff/src/util/DiffOutput.java new file mode 100644 index 000000000..06d058d4d --- /dev/null +++ b/lib/jdiff/src/util/DiffOutput.java @@ -0,0 +1,95 @@ +/* + * DiffOutput.java + * Copyright (c) 2001 Andre Kaplan + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + + +package jdiff.util; + +import java.io.IOException; +import java.io.Writer; +import java.io.OutputStreamWriter; + + + +/** A base class for printing edit scripts produced by Diff. */ +public abstract class DiffOutput { + /** Set to the lines of the files being compared. */ + protected Object[] file0; + protected Object[] file1; + + protected String lineSeparator; + protected Writer out; + + + protected DiffOutput(Object[] a,Object[] b) { + this.lineSeparator = System.getProperty("java.line.separator"); + this.out = new OutputStreamWriter(System.out); + this.file0 = a; + this.file1 = b; + } + + + public void setOut(Writer out) { + this.out = out; + } + + + public void setLineSeparator(String lineSeparator) { + this.lineSeparator = lineSeparator; + } + + + abstract public void writeScript(Diff.change script) throws IOException; + + + protected void writeLine(String prefix, Object line) throws IOException { + out.write(prefix + line.toString() + this.lineSeparator); + } + + + /** Write a pair of line numbers separated with sepChar. + If the two numbers are identical, print just one number. + + Args a and b are internal line numbers (ranging from 0) + We write the translated (real) line numbers ranging from 1). + */ + protected void writeNumberRange(char sepChar, int a, int b) throws IOException { + /* Note: we can have b < a in the case of a range of no lines. + In this case, we should write the line number before the range, + which is b. */ + if (++b > ++a) { + out.write(Integer.toString(a)); + out.write(sepChar); + out.write(Integer.toString(b)); + } else { + out.write(Integer.toString(b)); + } + } + + + public static char changeLetter(int inserts, int deletes) { + if (inserts == 0) { + return 'd'; + } else if (deletes == 0) { + return 'a'; + } else { + return 'c'; + } + } +} + diff --git a/loadtime/pom.xml b/loadtime/pom.xml index da12d06c4..f371698c7 100644 --- a/loadtime/pom.xml +++ b/loadtime/pom.xml @@ -1,80 +1,113 @@ - 4.0.0 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + 4.0.0 - - org.aspectj - aspectj-parent - 1.9.3.BUILD-SNAPSHOT - .. - + + org.aspectj + aspectj-parent + 1.9.3.BUILD-SNAPSHOT + .. + - loadtime - jar - loadtime + loadtime + jar + loadtime - + + + org.aspectj + asm + ${project.version} + + + org.aspectj + bridge + ${project.version} + + + org.aspectj + runtime + ${project.version} + + + org.aspectj + util + ${project.version} + + + org.aspectj + weaver + ${project.version} + + + org.aspectj + org.aspectj.matcher + ${project.version} + + + org.aspectj + testing-util + ${project.version} + + + org.aspectj + bcel-builder + ${project.version} + + + xml-apis + xml-apis + 1.0 + system + ${project.basedir}/../lib/ant/lib/xml-apis.jar + + + xercesImpl + xercesImpl + 1.0 + system + ${project.basedir}/../lib/ant/lib/xercesImpl.jar + + + jrockit + jrockit + 1.0 + system + ${project.basedir}/../lib/ext/jrockit/jrockit.jar + + - org.aspectj - asm - ${project.version} - - - org.aspectj - bridge - ${project.version} - - - org.aspectj - runtime - ${project.version} - - - org.aspectj - util - ${project.version} - - - org.aspectj - weaver - ${project.version} - - - org.aspectj - org.aspectj.matcher - ${project.version} - - - org.aspectj - testing-util - ${project.version} - - - org.aspectj - bcel-builder - ${project.version} - - - xml-apis - xml-apis - 1.0 - system - ${project.basedir}/../lib/ant/lib/xml-apis.jar - - - xercesImpl - xercesImpl - 1.0 - system - ${project.basedir}/../lib/ant/lib/xercesImpl.jar - - - jrockit - jrockit + ant + ant 1.0 system - ${project.basedir}/../lib/ext/jrockit/jrockit.jar + ${project.basedir}/../lib/ant/lib/ant.jar - + + + diff --git a/loadtime/src/main/java/org/aspectj/weaver/loadtime/Agent.java b/loadtime/src/main/java/org/aspectj/weaver/loadtime/Agent.java index eeca8aeef..6dbbf32db 100644 --- a/loadtime/src/main/java/org/aspectj/weaver/loadtime/Agent.java +++ b/loadtime/src/main/java/org/aspectj/weaver/loadtime/Agent.java @@ -37,7 +37,7 @@ public class Agent { * JSR-163 preMain Agent entry method * * @param options - * @param instrumentation + * @param instrumentation */ public static void premain(String options, Instrumentation instrumentation) { /* Handle duplicate agents */ diff --git a/loadtime/src/test/java/org/aspectj/weaver/loadtime/JRockitAgentTest.java b/loadtime/src/test/java/org/aspectj/weaver/loadtime/JRockitAgentTest.java index b13ebe421..9ed540d17 100644 --- a/loadtime/src/test/java/org/aspectj/weaver/loadtime/JRockitAgentTest.java +++ b/loadtime/src/test/java/org/aspectj/weaver/loadtime/JRockitAgentTest.java @@ -25,6 +25,7 @@ import java.util.jar.JarFile; import java.util.zip.ZipEntry; import org.aspectj.util.FileUtil; +import org.aspectj.util.LangUtil; import junit.framework.TestCase; @@ -53,6 +54,10 @@ public class JRockitAgentTest extends TestCase { } public void testJrockitRecursionProtection() { + if (LangUtil.is11VMOrGreater()) { + // Skip test, not castable to URLClassLoader + return; + } URLClassLoader thisLoader = (URLClassLoader) getClass().getClassLoader(); URL jrockit = FileUtil.getFileURL(new File("../lib/ext/jrockit/jrockit.jar")); URL[] urls = new URL[] {jrockit}; diff --git a/pom.xml b/pom.xml index 50e8e63b2..00b39a56e 100644 --- a/pom.xml +++ b/pom.xml @@ -1,90 +1,137 @@ - 4.0.0 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + 4.0.0 - - 1.9.3.BUILD-SNAPSHOT - UTF-8 - + + 1.9.3.BUILD-SNAPSHOT + UTF-8 + - org.aspectj - aspectj-parent - pom - 1.9.3.BUILD-SNAPSHOT - AspectJ Parent Project + org.aspectj + aspectj-parent + pom + 1.9.3.BUILD-SNAPSHOT + AspectJ Parent Project - - util - bridge - testing-util - org.aspectj.matcher - asm - testing-client - runtime - bcel-builder - weaver - loadtime - org.eclipse.jdt.core - org.aspectj.ajdt.core - ajde.core - ajde - ajdoc - taskdefs - testing - testing-drivers - tests - build - run-all-junit-tests - + + util + bridge + testing-util + org.aspectj.matcher + asm + testing-client + runtime + bcel-builder + weaver + loadtime + org.eclipse.jdt.core + org.aspectj.ajdt.core + ajde.core + ajde + ajdoc + taskdefs + testing + testing-drivers + tests + build + run-all-junit-tests + docs - - - - - org.apache.maven.plugins - maven-compiler-plugin - - 1.8 - 1.8 - - - - org.apache.maven.plugins - maven-surefire-plugin - - true - -**/*ModuleTests.java - - - - - - - - org.apache.maven.plugins - maven-jar-plugin - 2.2 - - - - test-jar - - - - - - + + aspectjrt + aspectjweaver + aspectjtools - - - junit - junit - 3.8.1 - test - - + + installer + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.8 + 1.8 + + + + org.apache.maven.plugins + maven-surefire-plugin + + true + + **/*ModuleTests.java + + + + + + + + org.apache.maven.plugins + maven-jar-plugin + + + false + + + + +test-jar + + test-jar + + + + + + + + + maven-clean-plugin + 3.1.0 + + + + . + +**/ajcore.*.txt + + + + false + + + aj-build + + false + + + + + + + + + + + + junit + junit + 3.8.1 + test + + diff --git a/run-all-junit-tests/pom.xml b/run-all-junit-tests/pom.xml index 0652458db..4bd5fd0c3 100644 --- a/run-all-junit-tests/pom.xml +++ b/run-all-junit-tests/pom.xml @@ -1,209 +1,275 @@ - 4.0.0 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + 4.0.0 - - org.aspectj - aspectj-parent - 1.9.3.BUILD-SNAPSHOT - .. - + + org.aspectj + aspectj-parent + 1.9.3.BUILD-SNAPSHOT + .. + - run-all-junit-tests - jar - run-all-junit-tests + run-all-junit-tests + jar + run-all-junit-tests - + + + org.aspectj + bcel-builder + ${project.version} + + + org.aspectj + util + ${project.version} + + + org.aspectj + util + ${project.version} + test-jar + + + org.aspectj + ajde + ${project.version} + test-jar + + + org.aspectj + ajde.core + ${project.version} + test-jar + + + org.aspectj + asm + ${project.version} + test-jar + + + org.aspectj + bridge + ${project.version} + test-jar + + + org.aspectj + loadtime + ${project.version} + test-jar + + + org.aspectj + runtime + ${project.version} + test-jar + + + org.aspectj + ajdoc + ${project.version} + test-jar + + + org.aspectj + weaver + ${project.version} + test-jar + + + org.aspectj + taskdefs + ${project.version} + test-jar + + + org.aspectj + testing-client + ${project.version} + test-jar + + + org.aspectj + testing-drivers + ${project.version} + test-jar + + + org.aspectj + testing-util + ${project.version} + test-jar + + + org.aspectj + org.aspectj.matcher + ${project.version} + test-jar + + + org.aspectj + build + ${project.version} + + + org.aspectj + build + ${project.version} + test-jar + - - org.aspectj - util - ${project.version} - - - org.aspectj - util - ${project.version} - test-jar - - - org.aspectj - ajde - ${project.version} - test-jar - - - org.aspectj - ajde.core - ${project.version} - test-jar - - - org.aspectj - asm - ${project.version} - test-jar - - - org.aspectj - bridge - ${project.version} - test-jar - - - org.aspectj - loadtime - ${project.version} - test-jar - - - org.aspectj - runtime - ${project.version} - test-jar - - - org.aspectj - ajdoc - ${project.version} - test-jar - - - org.aspectj - weaver - ${project.version} - test-jar - - - org.aspectj - taskdefs - ${project.version} - test-jar - - - org.aspectj - testing-client - ${project.version} - test-jar - - - org.aspectj - testing-drivers - ${project.version} - test-jar - - - org.aspectj - testing-util - ${project.version} - test-jar - - - org.aspectj - org.aspectj.matcher - ${project.version} - test-jar - - - org.aspectj - build - ${project.version} - test-jar - - - - org.aspectj - bridge - ${project.version} - - - org.aspectj - asm - ${project.version} - - - org.aspectj - runtime - ${project.version} - - - org.aspectj - taskdefs - ${project.version} - - - org.aspectj - testing - ${project.version} - - - org.aspectj - testing-client - ${project.version} - - - org.aspectj - testing-drivers - ${project.version} - - - org.aspectj - testing-util - ${project.version} - - - org.aspectj - weaver - ${project.version} - - - org.aspectj - tests - ${project.version} - test-jar - - - org.aspectj - org.aspectj.ajdt.core - ${project.version} - - - org.aspectj - org.eclipse.jdt.core - ${project.version} - - - org.aspectj - ajdoc - ${project.version} - - - org.aspectj - loadtime - ${project.version} - - - org.aspectj - ajde.core - ${project.version} - - - org.aspectj - org.aspectj.matcher - ${project.version} - - - org.aspectj - ajde - ${project.version} - - - org.aspectj - ajbrowser - ${project.version} - - + + org.aspectj + bridge + ${project.version} + + + org.aspectj + asm + ${project.version} + + + org.aspectj + runtime + ${project.version} + + + org.aspectj + taskdefs + ${project.version} + + + org.aspectj + testing + ${project.version} + + + org.aspectj + testing-client + ${project.version} + + + org.aspectj + testing-drivers + ${project.version} + + + org.aspectj + testing-util + ${project.version} + + + org.aspectj + weaver + ${project.version} + + + org.aspectj + tests + ${project.version} + test-jar + + + org.aspectj + org.aspectj.ajdt.core + ${project.version} + + + org.aspectj + org.aspectj.ajdt.core + ${project.version} + test-jar + + + org.aspectj + org.eclipse.jdt.core + ${project.version} + + + org.aspectj + ajdoc + ${project.version} + + + org.aspectj + loadtime + ${project.version} + + + org.aspectj + ajde.core + ${project.version} + + + org.aspectj + org.aspectj.matcher + ${project.version} + + + org.aspectj + ajde + ${project.version} + + + org.aspectj + ajbrowser + ${project.version} + + + + org.aspectj + testing + ${project.version} + test-jar + + + commons + commons + 1.0 + system + ${project.basedir}/../lib/commons/commons.jar + + + ant + ant + 1.0 + system + ${project.basedir}/../lib/ant/lib/ant.jar + + + + jrockit + jrockit + 1.0 + system + ${project.basedir}/../lib/ext/jrockit/jrockit.jar + + + jdiff + jdiff + 1.0 + system + ${project.basedir}/../lib/jdiff/jdiff.jar + + + ant + ant-launcher + 1.0 + system + ${project.basedir}/../lib/ant/lib/ant-launcher.jar + + + + + diff --git a/testing/pom.xml b/testing/pom.xml index d998c7d7d..eb546ebc6 100644 --- a/testing/pom.xml +++ b/testing/pom.xml @@ -30,6 +30,11 @@ ajde ${project.version} + + org.aspectj + runtime + ${project.version} + org.aspectj asm @@ -139,6 +144,13 @@ system ${project.basedir}/../lib/commons/commons.jar + + org.aspectj + org.eclipse.jdt.core + 1.0 + system + ${project.basedir}/../org.eclipse.jdt.core/jdtcore-for-aspectj.jar + diff --git a/testing/src/main/java/Empty.java b/testing/src/main/java/Empty.java new file mode 100644 index 000000000..9a9956e0e --- /dev/null +++ b/testing/src/main/java/Empty.java @@ -0,0 +1 @@ +public class Empty {} diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 11d052ad1..a898def3e 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -1,20 +1,20 @@ - - - - - + + + + + + - - - - - - - - - + + + + + + + + + ]>