# 源码
package com.zhairuihao.utils;
import java.util.*;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
/**
* 批处理工具
*/
public class BatchExec {
/**
* 线程池中线程最大允许数量
*/
static final int MAX_THREAD_SIZE = 200;
/**
* 默认处理超时时间
*/
static final int DEFAULT_EXECUTE_TIME_OUT_IN_SECONDS = 15;
/**
* 分批执行处理命令,并汇总返回处理结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
* @return
*/
public static <T, K> List<K> execute(
ListCommand<T, K> command, List<T> data, int size) {
return execute(command, data, size, DEFAULT_EXECUTE_TIME_OUT_IN_SECONDS);
}
/**
* 分批执行处理命令,并汇总返回处理结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
* @param executor 线程池
* @return
*/
public static <T, K> List<K> execute(
ListCommand<T, K> command, List<T> data, int size, ExecutorService executor) {
return execute(command, data, size, DEFAULT_EXECUTE_TIME_OUT_IN_SECONDS, executor);
}
/**
* 分批执行处理命令,并汇总返回处理结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
* @param executeTimeoutInSeconds 每个处理超时时间
* @return
*/
public static <T, K> List<K> execute(
ListCommand<T, K> command, List<T> data, int size, int executeTimeoutInSeconds) {
return execute(command, data, size, executeTimeoutInSeconds, null);
}
/**
* 分批执行处理命令,并汇总返回处理结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
* @param executeTimeoutInSeconds 每个处理超时时间
* @param executor 线程池
* @return
*/
public static <T, K> List<K> execute(
ListCommand<T, K> command,
List<T> data,
int size,
int executeTimeoutInSeconds,
ExecutorService executor) {
List<List<T>> splitDataList = split(data, size);
List<Callable<List<K>>> tasks =
splitDataList.stream()
.<Callable<List<K>>>map(splitData -> () -> command.execute(splitData))
.collect(Collectors.toList());
try {
List<K> resultList = new ArrayList<K>();
int threadSize = Math.min(splitDataList.size(), MAX_THREAD_SIZE);
executeTimeoutInSeconds =
executeTimeoutInSeconds <= 0
? DEFAULT_EXECUTE_TIME_OUT_IN_SECONDS
: executeTimeoutInSeconds;
execute(
tasks,
executor == null ? Executors.newFixedThreadPool(threadSize) : executor,
executeTimeoutInSeconds,
executor == null)
.forEach(resultList::addAll);
return resultList;
} catch (Exception e) {
return new ArrayList<>();
}
}
/**
* 分批执行处理命令,无返回结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
*/
public static <T> void execute(VoidCommand<T> command, List<T> data, int size) {
execute(command, data, size, DEFAULT_EXECUTE_TIME_OUT_IN_SECONDS);
}
/**
* 分批执行处理命令,无返回结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
* @param executor 线程池
*/
public static <T> void execute(
VoidCommand<T> command, List<T> data, int size, ExecutorService executor) {
execute(command, data, size, DEFAULT_EXECUTE_TIME_OUT_IN_SECONDS, executor);
}
/**
* 分批执行处理命令,无返回结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
*/
public static <T> boolean execute(
VoidCommand<T> command, List<T> data, int size, long executeTimeoutInSeconds) {
return execute(command, data, size, executeTimeoutInSeconds, null);
}
/**
* 分批执行处理命令,无返回结果
*
* @param command 实际处理任务
* @param data 需要分批处理的数据
* @param size 分批大小
* @param executor 线程池
*/
public static <T> boolean execute(
VoidCommand<T> command,
List<T> data,
int size,
long executeTimeoutInSeconds,
ExecutorService executor) {
List<List<T>> splitDataList = split(data, size);
List<Callable<Integer>> tasks = new ArrayList<>();
for (List<T> splitData : splitDataList) {
Callable<Integer> integerCallable =
() -> {
command.execute(splitData);
return 1;
};
tasks.add(integerCallable);
}
try {
executeTimeoutInSeconds =
executeTimeoutInSeconds <= 0
? DEFAULT_EXECUTE_TIME_OUT_IN_SECONDS
: executeTimeoutInSeconds;
int threadSize =
splitDataList.size() > MAX_THREAD_SIZE ? MAX_THREAD_SIZE : splitDataList.size();
execute(
tasks,
executor == null ? Executors.newFixedThreadPool(threadSize) : executor,
executeTimeoutInSeconds,
executor == null);
} catch (Exception e) {
return false;
}
return true;
}
/**
* 异步执行任务
*/
public static <T> List<T> execute(
Collection<? extends Callable<T>> tasks,
ExecutorService executor,
long executeTimeout,
boolean shutdownExecutor)
throws Exception {
try {
return executor.invokeAll(tasks).stream()
.map(
future -> {
try {
return future.get(executeTimeout, TimeUnit.SECONDS);
} catch (Exception e) {
return null;
}
})
.filter(Objects::nonNull)
.collect(Collectors.toList());
} finally {
if (shutdownExecutor) {
executor.shutdown();
}
}
}
/**
* 将列表拆分成固定大小的子列表集合
*/
public static <T> List<List<T>> split(List<T> data, int size) {
List<List<T>> resultList = new ArrayList<>();
int part = data.size() / size;
for (int i = 0; i < part; i++) {
resultList.add(data.subList(i * size, (i + 1) * size));
}
if (data.size() % size > 0) {
resultList.add(data.subList(part * size, data.size()));
}
return resultList;
}
/**
* 返回List处理结果
*/
@FunctionalInterface
public interface ListCommand<T, K> {
List<K> execute(List<T> data);
}
/**
* 无返回批量处理
*/
@FunctionalInterface
public interface VoidCommand<T> {
void execute(List<T> data);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# 用法
public static void main(String args[]) {
// 有返回值
List<Integer> execute = BatchExec.execute(list -> {
System.out.println(" 分片后的大小: " + list.size());
// do something
return list;
},
Arrays.asList(1, 2, 3, 4, 5, 6), 2
);
System.out.println(" execute " + execute);
//无返回值
BatchExec.execute(list -> {
System.out.println(" 分片后的大小: " + list.size());
// do something
},
Arrays.asList(1, 2, 3, 4, 5, 6), 2
);
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- 运行结果