All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.taketoday.aop.support.Pointcuts Maven / Gradle / Ivy

/*
 * Original Author -> Harry Yang ([email protected]) https://taketoday.cn
 * Copyright © TODAY & 2017 - 2021 All Rights Reserved.
 *
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see [http://www.gnu.org/licenses/]
 */

package cn.taketoday.aop.support;

import org.aopalliance.intercept.MethodInvocation;

import java.io.Serial;
import java.io.Serializable;
import java.lang.reflect.Method;

import cn.taketoday.aop.MethodMatcher;
import cn.taketoday.aop.Pointcut;
import cn.taketoday.aop.framework.DefaultMethodInvocation;
import cn.taketoday.lang.Assert;

/**
 * Pointcut constants for matching getters and setters,
 * and static methods useful for manipulating and evaluating pointcuts.
 *
 * 

These methods are particularly useful for composing pointcuts * using the union and intersection methods. * * @author Rod Johnson * @author Juergen Hoeller * @author TODAY 2021/2/1 18:23 * @since 3.0 */ public abstract class Pointcuts { /** Pointcut matching all bean property setters, in any class. */ public static final Pointcut SETTERS = SetterPointcut.INSTANCE; /** Pointcut matching all bean property getters, in any class. */ public static final Pointcut GETTERS = GetterPointcut.INSTANCE; /** * Match all methods that either (or both) of the given pointcuts matches. * * @param pc1 the first Pointcut * @param pc2 the second Pointcut * @return a distinct Pointcut that matches all methods that either * of the given Pointcuts matches */ public static Pointcut union(Pointcut pc1, Pointcut pc2) { return new ComposablePointcut(pc1).union(pc2); } /** * Match all methods that both the given pointcuts match. * * @param pc1 the first Pointcut * @param pc2 the second Pointcut * @return a distinct Pointcut that matches all methods that both * of the given Pointcuts match */ public static Pointcut intersection(Pointcut pc1, Pointcut pc2) { return new ComposablePointcut(pc1).intersection(pc2); } /** * Perform the least expensive check for a pointcut match. * * @param pointcut the pointcut to match * @param invocation runtime invocation contains the candidate method * and target class, arguments to the method * @return whether there's a runtime match */ public static boolean matches(Pointcut pointcut, MethodInvocation invocation) { Assert.notNull(pointcut, "Pointcut must not be null"); if (pointcut == Pointcut.TRUE) { return true; } final Class targetClass = AopUtils.getTargetClass(invocation); if (pointcut.getClassFilter().matches(targetClass)) { // Only check if it gets past first hurdle. MethodMatcher mm = pointcut.getMethodMatcher(); if (mm.matches(invocation.getMethod(), targetClass)) { // We may need additional runtime (argument) check. return (!mm.isRuntime() || mm.matches(invocation)); } } return false; } /** * Perform the least expensive check for a pointcut match. * * @param pointcut the pointcut to match * @param method the candidate method * @param targetClass the target class * @param args arguments to the method * @return whether there's a runtime match */ public static boolean matches(Pointcut pointcut, Method method, Class targetClass, Object... args) { Assert.notNull(pointcut, "Pointcut must not be null"); if (pointcut == Pointcut.TRUE) { return true; } if (pointcut.getClassFilter().matches(targetClass)) { // Only check if it gets past first hurdle. MethodMatcher mm = pointcut.getMethodMatcher(); if (mm.matches(method, targetClass)) { // We may need additional runtime (argument) check. return (!mm.isRuntime() || mm.matches(new DefaultMethodInvocation(null, method, targetClass, args))); } } return false; } /** * Pointcut implementation that matches bean property setters. */ static class SetterPointcut extends StaticMethodMatcherPointcut implements Serializable { @Serial private static final long serialVersionUID = 1L; public static final SetterPointcut INSTANCE = new SetterPointcut(); @Override public boolean matches(Method method, Class targetClass) { return method.getName().startsWith("set") && method.getParameterCount() == 1 && method.getReturnType() == Void.TYPE; } @Serial private Object readResolve() { return INSTANCE; } @Override public String toString() { return "Pointcuts.SETTERS"; } } /** * Pointcut implementation that matches bean property getters. */ static class GetterPointcut extends StaticMethodMatcherPointcut implements Serializable { @Serial private static final long serialVersionUID = 1L; public static final GetterPointcut INSTANCE = new GetterPointcut(); @Override public boolean matches(Method method, Class targetClass) { return (method.getName().startsWith("get") && method.getParameterCount() == 0); } @Serial private Object readResolve() { return INSTANCE; } @Override public String toString() { return "Pointcuts.GETTERS"; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy