Browse Source

Merge branch 'dev' of http://121.42.53.174:3000/jiapeng/jFrameWork.git
into dev

yunkai 8 years ago
parent
commit
056a479ec4

+ 12 - 0
jfwAptOrm/src/main/java/org/jfw/apt/orm/annotation/dao/param/In.java

@ -0,0 +1,12 @@
1
package org.jfw.apt.orm.annotation.dao.param;
2

3
import java.lang.annotation.ElementType;
4
import java.lang.annotation.Retention;
5
import java.lang.annotation.RetentionPolicy;
6
import java.lang.annotation.Target;
7

8
@Target(ElementType.PARAMETER)
9
@Retention(RetentionPolicy.SOURCE)
10
public @interface In {
11
	String value() default "";
12
}

+ 10 - 9
jfwAptOrm/src/main/java/org/jfw/apt/orm/core/ColumnWriterCache.java

@ -6,13 +6,16 @@ import java.util.Map;
6 6
import org.jfw.apt.out.ClassWriter;
7 7
8 8
public class ColumnWriterCache {
9
	private String valEl;
10
	private boolean useTmpVar;
11
	private boolean nullable;
12
	private ClassWriter cw;
13
	private String checkNullVar;
14
	private String cacheValVar;
15
	private ColumnHandler ch;
9
	protected String valEl;
10
	protected boolean useTmpVar;
11
	protected boolean nullable;
12
	protected ClassWriter cw;
13
	protected String checkNullVar;
14
	protected String cacheValVar;
15
	protected ColumnHandler ch;
16
	
17
	
18
	
16 19
17 20
	private Map<Object, Object> attributes;
18 21
@ -37,8 +40,6 @@ public class ColumnWriterCache {
37 40
		return this.ch;
38 41
	}
39 42
40
	private ColumnWriterCache() {
41
	}
42 43
	
43 44
	public static String getMethodTempVarName(ClassWriter cw,String key,String secKey){
44 45
		String flagKey =ColumnWriterCache.class.getName()+"###"+key+"$$$"+ secKey;

+ 50 - 15
jfwAptOrm/src/main/java/org/jfw/apt/orm/core/model/where/WhereFactory.java

@ -20,6 +20,7 @@ import org.jfw.apt.orm.annotation.dao.method.Or;
20 20
import org.jfw.apt.orm.annotation.dao.param.Equals;
21 21
import org.jfw.apt.orm.annotation.dao.param.GreaterThan;
22 22
import org.jfw.apt.orm.annotation.dao.param.GtEq;
23
import org.jfw.apt.orm.annotation.dao.param.In;
23 24
import org.jfw.apt.orm.annotation.dao.param.LessThan;
24 25
import org.jfw.apt.orm.annotation.dao.param.Like;
25 26
import org.jfw.apt.orm.annotation.dao.param.LtEq;
@ -39,14 +40,53 @@ public final class WhereFactory {
39 40
40 41
	public static Map<Class<? extends Annotation>, String> classEls = new HashMap<Class<? extends Annotation>, String>();
41 42
42
	public static boolean build(MethodParamEntry mpe, DataEntry entry, LinkedList<WhereColumn> result)
43
			throws AptException {
44
		boolean ret = false;
43
	public static boolean buildIn(MethodParamEntry mpe, DataEntry entry, LinkedList<WhereColumn> result) throws AptException {
44
		VariableElement ref = mpe.getRef();
45
		In in = ref.getAnnotation(In.class);
46
		if (in != null) {
47
			String tn = mpe.getTypeName();
48
			Class<? extends ColumnHandler> handlerClass = null;
49
			String javaname = Util.emptyToNull(in.value());
50
			if (javaname == null) {
51
				javaname = mpe.getName();
52
			}
53
			if (!tn.endsWith("[]")) {
54
				throw new AptException(ref, "param type must is Array");
55
			}
56
			tn = tn.substring(0, tn.length() - 2);
57
			CalcColumn c = entry.getCalcColumnByJavaName(javaname);
58
			if (c == null) {
59
				throw new AptException(ref, "not found annotation:@" + In.class.getName() + " or invlaid param name with column javaname");
60
			}
61
			handlerClass = c.getHandlerClass();
62
			String sn = ColumnHandlerFactory.get(handlerClass).supportsClass();
63
			if (!tn.equals(sn)) {
64
				throw new AptException(ref, "param Type unEquals ColumnHandler.supportClass");
65
			}
66
			WhereInColumn wc = new WhereInColumn();
67
			wc.setColumnName(c.getSqlName());
68
			wc.setHandlerClass(handlerClass);
69
			wc.setName(mpe.getName());
70
			wc.setNullable(true);
71
			wc.setCacheValue(false);
72
			result.addLast(wc);
73
			return true;
74
75
		}
76
		return false;
77
78
	}
79
80
	public static boolean build(MethodParamEntry mpe, DataEntry entry, LinkedList<WhereColumn> result) throws AptException {
81
		
82
		
83
		boolean ret = buildIn(mpe, entry, result);
84
		if(ret ) return ret;
45 85
		VariableElement ref = mpe.getRef();
46 86
		List<ParamColumn> paramColumns = null;
47 87
		Class<? extends ColumnHandler> handlerClass = null;
48 88
		boolean nullable = Util.isPrimitive(mpe.getTypeName()) ? false : (null != ref.getAnnotation(Nullable.class));
49
		for(ParamSqlColumn psc: ParamSqlColumn.build(mpe, entry)){
89
		for (ParamSqlColumn psc : ParamSqlColumn.build(mpe, entry)) {
50 90
			ret = true;
51 91
			handlerClass = psc.getHandlerClass();
52 92
			String tn = mpe.getTypeName();
@ -71,10 +111,9 @@ public final class WhereFactory {
71 111
				result.addLast(wc);
72 112
			else
73 113
				result.addFirst(wc);
74
			
114
75 115
		}
76
		
77
		
116
78 117
		for (Class<? extends Annotation> cls : supportedClass) {
79 118
			Annotation anObj = mpe.getRef().getAnnotation(cls);
80 119
			if (anObj == null)
@ -114,8 +153,7 @@ public final class WhereFactory {
114 153
115 154
	}
116 155
117
	public static void buildWithEq(MethodParamEntry mpe, DataEntry entry, LinkedList<WhereColumn> result)
118
			throws AptException {
156
	public static void buildWithEq(MethodParamEntry mpe, DataEntry entry, LinkedList<WhereColumn> result) throws AptException {
119 157
		VariableElement ref = mpe.getRef();
120 158
		boolean nullable = Util.isPrimitive(mpe.getTypeName()) ? false : (null != ref.getAnnotation(Nullable.class));
121 159
		List<ParamColumn> pcs = ParamColumn.build(mpe, entry);
@ -146,8 +184,7 @@ public final class WhereFactory {
146 184
		}
147 185
	}
148 186
149
	public static void handlePrimaryKey(Table table, List<WhereColumn> list, Element methodRef, String paramName)
150
			throws AptException {
187
	public static void handlePrimaryKey(Table table, List<WhereColumn> list, Element methodRef, String paramName) throws AptException {
151 188
		DbUniqu du = table.getPrimaryKey();
152 189
		if (du == null)
153 190
			throw new AptException(methodRef, "not found primary key in table[" + table.getFromSentence() + "]");
@ -178,8 +215,7 @@ public final class WhereFactory {
178 215
		return wherePart;
179 216
	}
180 217
181
	public static WherePart build(MethodEntry method, DataEntry entry, boolean excludeSet,
182
			List<String> excludeParamName) throws AptException {
218
	public static WherePart build(MethodEntry method, DataEntry entry, boolean excludeSet, List<String> excludeParamName) throws AptException {
183 219
		WherePart result = new WherePart();
184 220
		result.setStaticSentence(getStaticWhereSql(method.getRef()));
185 221
		result.setAnd(isAnd(method.getRef()));
@ -201,8 +237,7 @@ public final class WhereFactory {
201 237
	}
202 238
203 239
	public static String getStaticWhereSql(Element methodRef) {
204
		org.jfw.apt.orm.annotation.dao.method.Where ws = methodRef
205
				.getAnnotation(org.jfw.apt.orm.annotation.dao.method.Where.class);
240
		org.jfw.apt.orm.annotation.dao.method.Where ws = methodRef.getAnnotation(org.jfw.apt.orm.annotation.dao.method.Where.class);
206 241
		if (ws == null)
207 242
			return null;
208 243
		return Util.emptyToNull(ws.value());

+ 100 - 0
jfwAptOrm/src/main/java/org/jfw/apt/orm/core/model/where/WhereInColumn.java

@ -0,0 +1,100 @@
1
package org.jfw.apt.orm.core.model.where;
2

3
import org.jfw.apt.orm.core.ColumnHandler;
4
import org.jfw.apt.orm.core.ColumnHandlerFactory;
5
import org.jfw.apt.orm.core.ColumnWriterCache;
6
import org.jfw.apt.out.ClassWriter;
7

8
public class WhereInColumn extends WhereColumn {
9
	private String sqlVarName;
10
	private String nullableVarName;
11
	private String loopVarName;
12
	private String columnName;
13
	private ColumnHandler ch;
14
	// private String arrayLenVarName;
15

16
	public String getColumnName() {
17
		return columnName;
18
	}
19

20
	public void setColumnName(String columnName) {
21
		this.columnName = columnName;
22
	}
23

24
	@Override
25
	public void prepare(ClassWriter cw) {
26
		sqlVarName = cw.getMethodTempVarName();
27
		nullableVarName = cw.getMethodTempVarName();
28
		// arrayLenVarName = cw.getMethodTempVarName();
29
		loopVarName = cw.getMethodTempVarName();
30
		cw.bL("boolean ").w(nullableVarName).w(" = (null == ").w(this.getName()).w(") || (0 == ").w(this.getName()).el(".length);");
31
		cw.bL("int ").w(loopVarName).el(" = 0 ;");
32
		cw.bL("StringBuilder ").w(sqlVarName).el(" = null;");
33
		cw.bL("if(!").w(nullableVarName).el("){");
34
		cw.bL(sqlVarName).el(" = new StringBuilder();");
35
		cw.bL(sqlVarName).w(".append(\"").w(this.columnName).w(" IN (").el("\");");
36
		cw.bL("for( ").w(loopVarName).w(" = 0 ; ").w(loopVarName).w(" < ").w(this.getName()).w(".length; ++").w(loopVarName).el("){");
37
		cw.bL(sqlVarName).el(".append(\"?,\");");
38
		cw.l("}");
39
		// cw.bL("int ").w(arrayLenVarName).w(" = ").w(loopVarName).el(" ;");
40
		cw.bL(sqlVarName).w(".setCharAt(").w(sqlVarName).el(".length()-1,')');");
41
		cw.l("}");
42

43
		this.setNullable(true);
44

45
		InColumnWriterCache icwc = new InColumnWriterCache();
46
		this.ch = ColumnHandlerFactory.get(this.getHandlerClass());
47
		icwc.setColumnHandler(this.ch);
48
		icwc.setCw(cw);
49
		icwc.setCheckNullVar(nullableVarName);
50
		icwc.setCacheValVar(this.getName() + "[" + loopVarName + "]");
51
		icwc.setNullable(true);
52
		this.setCwc(icwc);
53
	}
54

55
	@Override
56
	public String getWhereSql() {
57
		ClassWriter cw = this.getCwc().getCw();
58
		cw.w("\").append(").w(sqlVarName).w(".toString()).append(\"");
59
		return "";
60
	}
61

62
	@Override
63
	public void writeValue() {
64
		((InColumnWriterCache) this.getCwc()).setNullable(false);
65
		ClassWriter cw = this.getCwc().getCw();
66
		cw.bL("if(!").w(this.nullableVarName).el("){");
67
		cw.bL("for( ").w(loopVarName).w(" = 0 ; ").w(loopVarName).w(" < ").w(this.getName()).w(".length; ++").w(loopVarName).el("){");
68
		this.ch.writeValue(this.getCwc(), false);
69
		cw.l("}");
70
		cw.l("}");
71
	}
72

73
	public static class InColumnWriterCache extends ColumnWriterCache {
74
		public void setColumnHandler(ColumnHandler ch) {
75
			this.ch = ch;
76
		}
77

78
		public void setCw(ClassWriter cw) {
79
			this.cw = cw;
80
		}
81

82
		public void setCheckNullVar(String v) {
83
			this.checkNullVar = v;
84
		}
85

86
		public void setCacheValVar(String v) {
87
			this.cacheValVar = v;
88
		}
89

90
		@Override
91
		public boolean isUseTmpVar() {
92
			return true;
93
		}
94

95
		public void setNullable(boolean v) {
96
			this.nullable = v;
97
		}
98
	}
99

100
}

+ 1 - 1
jfwAptOrm/src/main/java/org/jfw/apt/orm/daoHandler/QueryValListHandler.java

@ -78,7 +78,7 @@ public class QueryValListHandler extends BaseQueryHandler {
78 78
	protected void buildResult() {
79 79
		cw.bL(LIST_PREFIX).w(this.returnClassName).w(LIST_SUFFIX).w(" _result = new java.util.ArrayList<")
80 80
				.w(this.returnClassName).el(">();");
81
		cw.l("while(rs.next(){");
81
		cw.l("while(rs.next()){");
82 82
83 83
			ColumnHandlerFactory.get(valColumn.getHandlerClass()).readValue(cw, "_result.add(", ");", 1,
84 84
					valColumn.isNullable());

+ 4 - 1
jfwUtil/src/main/java/org/jfw/util/exception/JfwBaseException.java

@ -73,7 +73,10 @@ public class JfwBaseException extends Exception {
73 73
	
74 74
	static{
75 75
		reasons.put(0,"UnDefine Exception");
76
		reasons.put(1, "No Logined");		
76
		reasons.put(1, "No Logined");
77
		reasons.put(2, "orgUser has exists");
78
		reasons.put(3, "orgUser has authentication");
79
		reasons.put(4, "orgUser is Auditing");
77 80
		reasons.put(10,"paramter null or empty");
78 81
		reasons.put(11,"paramter format error");
79 82
		reasons.put(90,"resource not exists");

+ 3 - 2
jfwWebUtil/src/main/java/org/jfw/web/servlet/fileupload/cached/CachedUploadServlet.java

@ -96,17 +96,18 @@ public class CachedUploadServlet extends HttpServlet {
96 96
		Integer cLimit = CachedUploadServlet.parseInt(map.get("countLimit"));
97 97
		Long sLimit = CachedUploadServlet.parseLong(map.get("sizeLimit"));
98 98
		String jsonpContent = null;
99
100 99
		String[] jces = map.get("function");
101 100
		if (jces != null) {
102 101
			jsonpContent = jces[0];
103 102
		}
103
		String[] hasText = map.get("text");
104
		boolean textJson = hasText != null && hasText.length > 0 && "1".equals(hasText[0]);
104 105
		int countLimit = this.config.getRealCountLimit(cLimit);
105 106
		long sizeLimit = this.config.getRealSizeLimit(sLimit);
106 107
107 108
		List<CachedItem> items = null;
108 109
		boolean byJsonp = null != jsonpContent;
109
		this.initResponse(resp, byJsonp);
110
		this.initResponse(resp, byJsonp || textJson);
110 111
		PrintWriter out = resp.getWriter();
111 112
		try {
112 113
			items = this.upload(req, countLimit, sizeLimit);