org.yx.http.start.WebAnnotationResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sumk Show documentation
Show all versions of sumk Show documentation
A quick developing framewort for internet company
/**
* Copyright (C) 2016 - 2030 youtongluan.
*
* 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 org.yx.http.start;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.function.Predicate;
import org.yx.annotation.http.Web;
import org.yx.asm.ArgPojos;
import org.yx.asm.AsmUtils;
import org.yx.asm.MethodParamInfo;
import org.yx.bean.IOC;
import org.yx.common.matcher.BooleanMatcher;
import org.yx.common.matcher.Matchers;
import org.yx.conf.AppInfo;
import org.yx.http.act.HttpActionNode;
import org.yx.http.act.HttpActions;
import org.yx.log.Logs;
import org.yx.util.StringUtil;
import org.yx.validate.ParamFactory;
public final class WebAnnotationResolver {
private Predicate exclude = BooleanMatcher.FALSE;
private List rawNames(Method m, Web web) {
String name = web.value();
if (name == null || name.isEmpty()) {
return Collections.singletonList(m.getName());
}
List list = new ArrayList(1);
String[] names = StringUtil.toLatin(name).split(",");
for (String raw : names) {
if (raw != null && (raw = raw.trim()).length() > 0) {
list.add(raw);
}
}
return list.size() > 0 ? list : Collections.singletonList(m.getName());
}
public WebAnnotationResolver() {
String patterns = AppInfo.get("sumk.http.exclude", null);
if (patterns != null) {
this.exclude = Matchers.createWildcardMatcher(patterns, 1);
Logs.http().debug("web exclude:{}", this.exclude);
}
}
public void resolve(Object bean) throws Exception {
Class> clz = IOC.getTargetClassOfBean(bean);
if (exclude.test(clz.getName())) {
return;
}
Method[] methods = clz.getDeclaredMethods();
List httpMethods = new ArrayList<>();
for (final Method m : methods) {
if (AsmUtils.isFilted(m.getName())) {
continue;
}
if (!m.isAnnotationPresent(Web.class)) {
continue;
}
if (AsmUtils.notPublicOnly(m.getModifiers())) {
Logs.http().error("$$$ {}.{} has bad modifiers, maybe static or private", clz.getName(), m.getName());
continue;
}
httpMethods.add(m);
}
if (httpMethods.isEmpty()) {
return;
}
List mpInfos = AsmUtils.buildMethodInfos(httpMethods);
for (MethodParamInfo info : mpInfos) {
Method m = info.getMethod();
Web act = m.getAnnotation(Web.class);
HttpActionNode node = new HttpActionNode(bean, m, ArgPojos.create(info), info.getArgNames(),
ParamFactory.create(m), act);
List names = rawNames(m, act);
if (names == null || names.isEmpty()) {
continue;
}
for (String name : names) {
this.addAction(name, node);
}
}
}
private void addAction(String name, HttpActionNode node) throws Exception {
if (name == null || name.isEmpty()) {
return;
}
HttpActions.putActInfo(name, node);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy