hr.fer.zemris.vhdllab.service.aspect.LogAspect.java Source code

Java tutorial

Introduction

Here is the source code for hr.fer.zemris.vhdllab.service.aspect.LogAspect.java

Source

/*******************************************************************************
 * See the NOTICE file distributed with this work for additional information
 * regarding copyright ownership.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/
package hr.fer.zemris.vhdllab.service.aspect;

import java.util.Arrays;

import org.apache.log4j.Logger;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.core.annotation.Order;

@Aspect
@Order(1000)
public class LogAspect {

    private static final Logger LOG = Logger.getLogger(LogAspect.class);

    @Pointcut("execution(* hr.fer.zemris.vhdllab.service.WorkspaceService.*(..)) || "
            + "execution(* hr.fer.zemris.vhdllab.service.ClientLogService.*(..)) || "
            + "execution(* hr.fer.zemris.vhdllab.service.Simulator.*(..)) || "
            + "execution(* hr.fer.zemris.vhdllab.service.MetadataExtractionService.*(..))")
    public void services() {
    }

    @Around("services()")
    public Object logExecution(ProceedingJoinPoint pjp) throws Throwable {
        long start = 0;
        String callSignature = null;
        String arguments = null;
        if (LOG.isTraceEnabled()) {
            Signature signature = pjp.getSignature();
            callSignature = signature.getDeclaringType().getSimpleName() + "." + signature.getName();
            arguments = Arrays.toString(pjp.getArgs());
            LOG.trace("Entering " + callSignature + " with arguments: " + arguments);
            start = System.currentTimeMillis();
        }
        Object returnValue = pjp.proceed();
        if (LOG.isTraceEnabled()) {
            long end = System.currentTimeMillis();
            StringBuilder sb = new StringBuilder(1000);
            sb.append(callSignature);
            sb.append(" finished execution in ").append(end - start);
            sb.append(" ms for arguments: ").append(arguments);
            sb.append(" and returned: ").append(returnValue);
            LOG.trace(sb.toString());
        }
        return returnValue;
    }

}