com.codingapi.txlcn.tc.aspect.DTXInfo Maven / Gradle / Ivy
/*
* Copyright 2017-2019 CodingApi .
*
* 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.codingapi.txlcn.tc.aspect;
import com.codingapi.txlcn.tc.annotation.DTXPropagation;
import com.codingapi.txlcn.common.util.Transactions;
import lombok.AllArgsConstructor;
import lombok.Data;
import org.aopalliance.intercept.MethodInvocation;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.util.ConcurrentReferenceHashMap;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.Objects;
/**
* Description:
* Date: 19-1-11 下午1:21
*
* @author ujued
*/
@AllArgsConstructor
@Data
public class DTXInfo {
private static final Map dtxInfoCache = new ConcurrentReferenceHashMap<>();
private String transactionType;
private DTXPropagation transactionPropagation;
private TransactionInfo transactionInfo;
/**
* 用户实例对象的业务方法(包含注解信息)
*/
private Method businessMethod;
private String unitId;
private DTXInfo(Method method, Object[] args, Class> targetClass) {
this.transactionInfo = new TransactionInfo();
this.transactionInfo.setTargetClazz(targetClass);
this.transactionInfo.setArgumentValues(args);
this.transactionInfo.setMethod(method.getName());
this.transactionInfo.setMethodStr(method.toString());
this.transactionInfo.setParameterTypes(method.getParameterTypes());
this.businessMethod = method;
this.unitId = Transactions.unitId(method.toString());
}
private void reanalyseMethodArgs(Object[] args) {
this.transactionInfo.setArgumentValues(args);
}
public static DTXInfo getFromCache(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
String signature = proceedingJoinPoint.getSignature().toString();
String unitId = Transactions.unitId(signature);
DTXInfo dtxInfo = dtxInfoCache.get(unitId);
if (Objects.isNull(dtxInfo)) {
MethodSignature methodSignature = (MethodSignature) proceedingJoinPoint.getSignature();
Method method = methodSignature.getMethod();
Class> targetClass = proceedingJoinPoint.getTarget().getClass();
Method thisMethod = targetClass.getMethod(method.getName(), method.getParameterTypes());
dtxInfo = new DTXInfo(thisMethod, proceedingJoinPoint.getArgs(), targetClass);
dtxInfoCache.put(unitId, dtxInfo);
}
dtxInfo.reanalyseMethodArgs(proceedingJoinPoint.getArgs());
return dtxInfo;
}
public static DTXInfo getFromCache(MethodInvocation methodInvocation) {
String signature = methodInvocation.getMethod().toString();
String unitId = Transactions.unitId(signature);
DTXInfo dtxInfo = dtxInfoCache.get(unitId);
if (Objects.isNull(dtxInfo)) {
dtxInfo = new DTXInfo(methodInvocation.getMethod(),
methodInvocation.getArguments(), methodInvocation.getThis().getClass());
dtxInfoCache.put(unitId, dtxInfo);
}
dtxInfo.reanalyseMethodArgs(methodInvocation.getArguments());
return dtxInfo;
}
public static DTXInfo getFromCache(Method method, Object[] args, Class> targetClass) {
String signature = method.getName();
String unitId = Transactions.unitId(signature);
DTXInfo dtxInfo = dtxInfoCache.get(unitId);
if (Objects.isNull(dtxInfo)) {
dtxInfo = new DTXInfo(method, args, targetClass);
dtxInfoCache.put(unitId, dtxInfo);
}
dtxInfo.reanalyseMethodArgs(args);
return dtxInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy