/* * Copyright 2014 NAVER Corp. * * 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 com.navercorp.pinpoint.bootstrap.interceptor; import com.navercorp.pinpoint.bootstrap.context.MethodDescriptor; import com.navercorp.pinpoint.bootstrap.context.SpanRecorder; import com.navercorp.pinpoint.bootstrap.context.Trace; import com.navercorp.pinpoint.bootstrap.context.TraceContext; import com.navercorp.pinpoint.bootstrap.logging.PLogger; import com.navercorp.pinpoint.bootstrap.logging.PLoggerFactory; /** * @author emeroad * @author jaehong.kim */ public abstract class SpanSimpleAroundInterceptor implements AroundInterceptor { protected final PLogger logger; protected final boolean isDebug; protected final MethodDescriptor methodDescriptor; protected final TraceContext traceContext; protected SpanSimpleAroundInterceptor(TraceContext traceContext, MethodDescriptor methodDescriptor, Class<? extends SpanSimpleAroundInterceptor> childClazz) { this.traceContext = traceContext; this.methodDescriptor = methodDescriptor; this.logger = PLoggerFactory.getLogger(childClazz); this.isDebug = logger.isDebugEnabled(); } @Override public void before(Object target, Object[] args) { if (isDebug) { logger.beforeInterceptor(target, args); } try { final Trace trace = createTrace(target, args); if (trace == null) { return; } // TODO STATDISABLE this logic was added to disable statistics tracing if (!trace.canSampled()) { return; } // ------------------------------------------------------ final SpanRecorder recorder = trace.getSpanRecorder(); doInBeforeTrace(recorder, target, args); } catch (Throwable th) { if (logger.isWarnEnabled()) { logger.warn("BEFORE. Caused:{}", th.getMessage(), th); } } } protected abstract void doInBeforeTrace(final SpanRecorder recorder, Object target, final Object[] args); protected abstract Trace createTrace(final Object target, final Object[] args); @Override public void after(Object target, Object[] args, Object result, Throwable throwable) { if (isDebug) { logger.afterInterceptor(target, args, result, throwable); } final Trace trace = traceContext.currentRawTraceObject(); if (trace == null) { return; } // TODO STATDISABLE this logic was added to disable statistics tracing if (!trace.canSampled()) { traceContext.removeTraceObject(); return; } // ------------------------------------------------------ try { final SpanRecorder recorder = trace.getSpanRecorder(); doInAfterTrace(recorder, target, args, result, throwable); } catch (Throwable th) { if (logger.isWarnEnabled()) { logger.warn("AFTER. Caused:{}", th.getMessage(), th); } } finally { traceContext.removeTraceObject(); deleteTrace(trace, target, args, result, throwable); } } protected abstract void doInAfterTrace(final SpanRecorder recorder, final Object target, final Object[] args, final Object result, Throwable throwable); protected void deleteTrace(final Trace trace, final Object target, final Object[] args, final Object result, Throwable throwable) { trace.close(); } }