All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.weaver.tools.CommonsTrace Maven / Gradle / Ivy

Go to download

AspectJ tools most notably contains the AspectJ compiler (AJC). AJC applies aspects to Java classes during compilation, fully replacing Javac for plain Java classes and also compiling native AspectJ or annotation-based @AspectJ syntax. Furthermore, AJC can weave aspects into existing class files in a post-compile binary weaving step. This library is a superset of AspectJ weaver and hence also of AspectJ runtime.

There is a newer version: 1.9.22.1
Show newest version
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
 *
 * Contributors:
 *     Matthew Webster - initial implementation
 *******************************************************************************/
package org.aspectj.weaver.tools;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

public class CommonsTrace extends AbstractTrace {

	private Log log;
	private String className;

	public CommonsTrace (Class clazz) {
		super(clazz);
		this.log = LogFactory.getLog(clazz);
		this.className = tracedClass.getName();
	}

	public void enter(String methodName, Object thiz, Object[] args) {
		if (log.isDebugEnabled()) {
			log.debug(formatMessage(">", className, methodName, thiz, args));
		}
	}

	public void enter(String methodName, Object thiz) {
		if (log.isDebugEnabled()) {
			log.debug(formatMessage(">", className, methodName, thiz, null));
		}
	}

	public void exit(String methodName, Object ret) {
		if (log.isDebugEnabled()) {
			log.debug(formatMessage("<", className, methodName, ret, null));
		}
	}

	public void exit(String methodName, Throwable th) {
		if (log.isDebugEnabled()) {
			log.debug(formatMessage("<", className, methodName, th, null));
		}
	}

	public void exit(String methodName) {
		if (log.isDebugEnabled()) {
			log.debug(formatMessage("<", className, methodName, null, null));
		}
	}

	public void event(String methodName, Object thiz, Object[] args) {
		if (log.isDebugEnabled()) {
			log.debug(formatMessage("-", className, methodName, thiz, args));
		}
	}

	public void event(String methodName) {
		if (log.isDebugEnabled()) {
			log.debug(formatMessage("-", className, methodName, null, null));
		}
	}

	public boolean isTraceEnabled () {
		return log.isDebugEnabled();
	}

	public void setTraceEnabled (boolean b) {
	}

	public void debug (String message) {
		if (log.isDebugEnabled()) {
			log.debug(message);
		}
	}

	public void info(String message) {
		if (log.isInfoEnabled()) {
			log.info(message);
		}
	}

	public void warn (String message, Throwable th) {
		if (log.isWarnEnabled()) {
			log.warn(message,th);
		}
	}

	public void error (String message, Throwable th) {
		if (log.isErrorEnabled()) {
			log.error(message,th);
		}
	}

	public void fatal (String message, Throwable th) {
		if (log.isFatalEnabled()) {
			log.fatal(message,th);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy