Commit 26ab78a7 authored by yanzg's avatar yanzg

接口文档的支持

No related merge requests found
...@@ -6,7 +6,7 @@ package com.yanzuoguang.util.vo; ...@@ -6,7 +6,7 @@ package com.yanzuoguang.util.vo;
* @param <T> * @param <T>
* @author 颜佐光 * @author 颜佐光
*/ */
public interface DataDaoKey<T extends Object> { public interface DataDaoKey<T> {
/** /**
* 获取关键字 * 获取关键字
* *
......
package com.yanzuoguang.util.vo;
/**
* 获取关键字
*
* @param <T>
* @author 颜佐光
*/
public interface DataDaoKeyConvert<T, M> extends DataDaoKey<T> {
/**
* 获取关键字
*
* @param from 来源对象
* @return
*/
T convert(M from);
}
...@@ -25,31 +25,54 @@ public class DataDaoVo<T> { ...@@ -25,31 +25,54 @@ public class DataDaoVo<T> {
* @param keyFunc * @param keyFunc
*/ */
public static <T> DataDaoVo<T> init(List<T> hisitories, List<T> nows, DataDaoKey<T> keyFunc) { public static <T> DataDaoVo<T> init(List<T> hisitories, List<T> nows, DataDaoKey<T> keyFunc) {
Map<String, T> mapHistory = new HashMap<>((hisitories.size() + nows.size()) / 2); // 定义缓存集合
Map<String, T> mapHistory = new HashMap<>(10);
// 历史数据处理 // 历史数据处理
for (T his : hisitories) { if (hisitories != null) {
String key = keyFunc.getKey(his); for (T his : hisitories) {
T t = mapHistory.get(key); String key = keyFunc.getKey(his);
mapHistory.put(key, t); T t = mapHistory.get(key);
mapHistory.put(key, t);
}
} }
DataDaoVo<T> res = new DataDaoVo<T>(); DataDaoVo<T> res = new DataDaoVo<T>();
// 返回集 // 返回集
for (T now : nows) { if (nows != null) {
String key = keyFunc.getKey(now); for (T now : nows) {
T his = mapHistory.get(key); String key = keyFunc.getKey(now);
if (his == null) { T his = mapHistory.get(key);
res.creates.add(now); if (his == null) {
res.mapNow.put(key, now); res.creates.add(now);
} else { res.mapNow.put(key, now);
keyFunc.set(his, now); } else {
res.updates.add(his); keyFunc.set(his, now);
res.mapNow.put(key, his); res.updates.add(his);
res.mapNow.put(key, his);
}
} }
} }
res.removes.addAll(mapHistory.values()); res.removes.addAll(mapHistory.values());
return res; return res;
}
/**
* 初始话对象
*
* @param hisitories
* @param nows
* @param keyFunc
*/
public static <T, M> DataDaoVo<T> init(List<T> hisitories, List<M> nows, DataDaoKeyConvert<T, M> keyFunc) {
List<T> toNows = new ArrayList<>(10);
if (nows != null) {
for (M m : nows) {
T t = keyFunc.convert(m);
toNows.add(t);
}
}
return init(hisitories, toNows, keyFunc);
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment