Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 80547 invoked from network); 15 Nov 2006 11:09:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Nov 2006 11:09:14 -0000 Received: (qmail 57342 invoked by uid 500); 15 Nov 2006 11:09:24 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 57314 invoked by uid 500); 15 Nov 2006 11:09:24 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 57303 invoked by uid 99); 15 Nov 2006 11:09:24 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Nov 2006 03:09:24 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8E04071432D for ; Wed, 15 Nov 2006 03:07:38 -0800 (PST) Message-ID: <937921.1163588858579.JavaMail.jira@brutus> Date: Wed, 15 Nov 2006 03:07:38 -0800 (PST) From: "Sian January (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Updated: (HARMONY-2195) How to use aspects for tracing In-Reply-To: <124277.1163588857158.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ http://issues.apache.org/jira/browse/HARMONY-2195?page=all ] Sian January updated HARMONY-2195: ---------------------------------- Attachment: buildxmlpatch.txt Patch attached for build.xml in the math module > How to use aspects for tracing > ------------------------------ > > Key: HARMONY-2195 > URL: http://issues.apache.org/jira/browse/HARMONY-2195 > Project: Harmony > Issue Type: Improvement > Components: Classlib > Reporter: Sian January > Priority: Trivial > Attachments: buildxmlpatch.txt > > > I'm creating this JIRA to store information and related files for how to use AspectJ for tracing in the class libraries. Instructions below for adding tracing to the math module: > 1. Download AspectJ from http://www.eclipse.org/aspectj/downloads.php > 2. Copy aspectjrt.jar to /depends/jars/aspectj/ > 3. Copy aspectjtools.jar and aspectjrt.jar to ANT_HOME/lib and if using Eclipse add both of these to your ant runtime configuration (Window > Preferences > Ant > Runtime > Add...) > 4. Edit build file to use iajc* instead of javac and include aspect class files (or apply the buildxmlpatch.txt to build.xml in the math module) > 5. Write a tracing aspect (or copy the one attached to modules\math\src\main\java\org\apache\harmony\tracing) > 6. Re-build the module > 7. Make sure to add aspectjrt.jar to the runtime classpath of whatever program you are running. > * - iajc isn't incremental like javac in ant, it will always do a total rebuild. Also if you switch from using iajc back to javac you will need to do a clean before you do a rebuild. > Please also note that it's not possible to use this kind of tracing for any classes that are depended on by the AspectJ runtime or there will be errors initializing the classes because of circular dependencies. However I think most modules apart from luni should be safe. Also it's important to not trace methods that are called (directly or indirectly) by your tracing methods otherwise you will end up in an endless loop. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira