Package: DebugProfilingAspect
DebugProfilingAspect
name | instruction | branch | complexity | line | method | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
DebugProfilingAspect() |
|
|
|
|
|
||||||||||||||||||||
advice(ProceedingJoinPoint) |
|
|
|
|
|
||||||||||||||||||||
aspectOf() |
|
|
|
|
|
||||||||||||||||||||
getAnnotation(ProceedingJoinPoint, Class) |
|
|
|
|
|
||||||||||||||||||||
hasAspect() |
|
|
|
|
|
||||||||||||||||||||
static {...} |
|
|
|
|
|
Coverage
1:•/*
2: * *************************************************************************************************************************************************************
3: *
4: * NorthernWind - lightweight CMS
5: * http://tidalwave.it/projects/northernwind
6: *
7: * Copyright (C) 2011 - 2025 Tidalwave s.a.s. (http://tidalwave.it)
8: *
9: * *************************************************************************************************************************************************************
10: *
11: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
12: * You may obtain a copy of the License at
13: *
14: * http://www.apache.org/licenses/LICENSE-2.0
15: *
16: * 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
17: * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
18: *
19: * *************************************************************************************************************************************************************
20: *
21: * git clone https://bitbucket.org/tidalwave/northernwind-src
22: * git clone https://github.com/tidalwave-it/northernwind-src
23: *
24: * *************************************************************************************************************************************************************
25: */
26: package it.tidalwave.northernwind.aspect;
27:
28: import java.lang.annotation.Annotation;
29: import javax.annotation.Nonnull;
30: import org.aspectj.lang.ProceedingJoinPoint;
31: import org.aspectj.lang.annotation.Around;
32: import org.aspectj.lang.annotation.Aspect;
33: import org.aspectj.lang.reflect.MethodSignature;
34: import org.springframework.beans.factory.annotation.Configurable;
35: import lombok.extern.slf4j.Slf4j;
36:
37: /***************************************************************************************************************************************************************
38: *
39: * @author Fabrizio Giudici
40: *
41: **************************************************************************************************************************************************************/
42: @Configurable @Aspect @Slf4j
43:•public class DebugProfilingAspect
44: {
45: // @Around("execution(@it.tidalwave.northernwind.aspect.DebugProfiling * *(..))") FIXME: requires aspectj plugin 1.5
46: @Around("execution(* it.tidalwave.northernwind.frontend.media.impl.EmbeddedMediaMetadataProvider.getMetadataString(..))")
47: public Object advice (@Nonnull final ProceedingJoinPoint pjp)
48: throws Throwable
49: {
50: log.debug("getMetadataString({})", pjp.getArgs());
51: final var time = System.currentTimeMillis();
52:
53: final var result = pjp.proceed();
54:
55:• if (log.isDebugEnabled())
56: {
57: final var annotation = getAnnotation(pjp, DebugProfiling.class);
58: log.debug(">>>> {} in {} msec", annotation.message(), System.currentTimeMillis() - time);
59: }
60:
61: return result;
62: }
63:
64: // See http://stackoverflow.com/questions/2559255/spring-aop-how-to-get-the-annotations-of-the-adviced-method
65: @Nonnull
66: private static <T extends Annotation> T getAnnotation (@Nonnull final ProceedingJoinPoint pjp,
67: @Nonnull final Class<T> annotationClass)
68: throws NoSuchMethodException
69: {
70: final var methodSignature = (MethodSignature)pjp.getSignature();
71: var method = methodSignature.getMethod();
72:
73:• if (method.getDeclaringClass().isInterface()) // FIXME && annotation inheritance -- FIXME also ancestor class
74: {
75: final var methodName = pjp.getSignature().getName();
76: method = pjp.getTarget().getClass().getDeclaredMethod(methodName, method.getParameterTypes());
77: }
78:
79: return method.getAnnotation(annotationClass);
80: }
81: }