TraceFeignAspect.java

/*
 * Copyright 2013-2021 the original author or authors.
 *
 * 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
 *
 *      https://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 org.springframework.cloud.sleuth.instrument.web.client.feign;

import java.io.IOException;

import feign.Client;
import feign.Request;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;

import org.springframework.beans.factory.BeanFactory;

/**
 * Aspect for Feign clients so that you can autowire your custom components.
 *
 * @author Marcin Grzejszczak
 * @since 1.1.2
 */
@Aspect
public class TraceFeignAspect {

	private static final Log log = LogFactory.getLog(TraceFeignAspect.class);

	private final BeanFactory beanFactory;

	public TraceFeignAspect(BeanFactory beanFactory) {
		this.beanFactory = beanFactory;
	}

	@Around("execution (* feign.Client.*(..)) && !within(is(FinalType))")
	public Object feignClientWasCalled(final ProceedingJoinPoint pjp) throws Throwable {
		Object bean = pjp.getTarget();
		Object wrappedBean = new TraceFeignObjectWrapper(this.beanFactory).wrap(bean);
		if (log.isDebugEnabled()) {
			log.debug("Executing feign client via TraceFeignAspect");
		}
		if (bean != wrappedBean) {
			return executeTraceFeignClient(wrappedBean, pjp);
		}
		return pjp.proceed();
	}

	Object executeTraceFeignClient(Object bean, ProceedingJoinPoint pjp) throws IOException {
		Object[] args = pjp.getArgs();
		Request request = (Request) args[0];
		Request.Options options = (Request.Options) args[1];
		return ((Client) bean).execute(request, options);
	}

}