GeccoEngine.java
9.29 KB
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
package com.geccocrawler.gecco;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.alibaba.fastjson.JSON;
import com.geccocrawler.gecco.downloader.proxy.FileProxys;
import com.geccocrawler.gecco.downloader.proxy.Proxys;
import com.geccocrawler.gecco.dynamic.DynamicGecco;
import com.geccocrawler.gecco.dynamic.GeccoClassLoader;
import com.geccocrawler.gecco.listener.EventListener;
import com.geccocrawler.gecco.monitor.GeccoJmx;
import com.geccocrawler.gecco.monitor.GeccoMonitor;
import com.geccocrawler.gecco.pipeline.PipelineFactory;
import com.geccocrawler.gecco.request.HttpGetRequest;
import com.geccocrawler.gecco.request.HttpRequest;
import com.geccocrawler.gecco.request.StartRequestList;
import com.geccocrawler.gecco.scheduler.NoLoopStartScheduler;
import com.geccocrawler.gecco.scheduler.Scheduler;
import com.geccocrawler.gecco.scheduler.StartScheduler;
import com.geccocrawler.gecco.spider.Spider;
import com.geccocrawler.gecco.spider.SpiderBeanFactory;
import com.google.common.io.Files;
import com.google.common.io.Resources;
/**
* 爬虫引擎,每个爬虫引擎最好独立进程,在分布式爬虫场景下,可以单独分配一台爬虫服务器。引擎包括Scheduler、Downloader、Spider、 SpiderBeanFactory4个主要模块
*
* @author huchengyi
*
*/
public class GeccoEngine extends Thread {
private static Log log = LogFactory.getLog(GeccoEngine.class);
private Date startTime;
private List<HttpRequest> startRequests = new ArrayList<HttpRequest>();
private Scheduler scheduler;
private SpiderBeanFactory spiderBeanFactory;
private PipelineFactory pipelineFactory;
private List<Spider> spiders;
private String classpath;
private int threadCount;
private CountDownLatch cdl;
private int interval;
private Proxys proxysLoader;
private boolean proxy = true;
private boolean loop;
private boolean mobile;
private boolean debug;
private int retry;
private EventListener eventListener;
private GeccoEngine() {
this.retry = 3;
}
/**
* 动态配置规则不能使用该方法构造GeccoEngine
*
* @return GeccoEngine
*/
public static GeccoEngine create() {
GeccoEngine geccoEngine = new GeccoEngine();
geccoEngine.setName("GeccoEngine");
return geccoEngine;
}
public static GeccoEngine create(String classpath) {
return create(classpath, null);
}
public static GeccoEngine create(String classpath, PipelineFactory pipelineFactory) {
if (StringUtils.isEmpty(classpath)) {
// classpath不为空
throw new IllegalArgumentException("classpath cannot be empty");
}
GeccoEngine ge = create();
ge.spiderBeanFactory = new SpiderBeanFactory(classpath, pipelineFactory);
return ge;
}
public GeccoEngine start(String url) {
return start(new HttpGetRequest(url));
}
public GeccoEngine start(String... urls) {
for (String url : urls) {
start(url);
}
return this;
}
public GeccoEngine start(HttpRequest request) {
this.startRequests.add(request);
return this;
}
public GeccoEngine start(List<HttpRequest> requests) {
for (HttpRequest request : requests) {
start(request);
}
return this;
}
public GeccoEngine scheduler(Scheduler scheduler) {
this.scheduler = scheduler;
return this;
}
public GeccoEngine thread(int count) {
this.threadCount = count;
return this;
}
public GeccoEngine interval(int interval) {
this.interval = interval;
return this;
}
public GeccoEngine retry(int retry) {
this.retry = retry;
return this;
}
public GeccoEngine loop(boolean loop) {
this.loop = loop;
return this;
}
public GeccoEngine proxysLoader(Proxys proxysLoader) {
this.proxysLoader = proxysLoader;
return this;
}
public GeccoEngine proxy(boolean proxy) {
this.proxy = proxy;
return this;
}
public GeccoEngine mobile(boolean mobile) {
this.mobile = mobile;
return this;
}
public GeccoEngine debug(boolean debug) {
this.debug = debug;
return this;
}
public GeccoEngine classpath(String classpath) {
this.classpath = classpath;
return this;
}
public GeccoEngine pipelineFactory(PipelineFactory pipelineFactory) {
this.pipelineFactory = pipelineFactory;
return this;
}
public GeccoEngine spiderBeanFactory(SpiderBeanFactory spiderBeanFactory) {
this.spiderBeanFactory = spiderBeanFactory;
return this;
}
public void register(Class<?> spiderBeanClass) {
getSpiderBeanFactory().addSpiderBean(spiderBeanClass);
}
public void unregister(Class<?> spiderBeanClass) {
getSpiderBeanFactory().removeSpiderBean(spiderBeanClass);
DynamicGecco.unregister(spiderBeanClass);
}
@Override
public void run() {
if(proxysLoader == null) {//默认采用proxys文件代理集合
proxysLoader = new FileProxys();
}
if (scheduler == null) {
if (loop) {
scheduler = new StartScheduler();
} else {
scheduler = new NoLoopStartScheduler();
}
}
if (spiderBeanFactory == null) {
if (StringUtils.isEmpty(classpath)) {
// classpath不为空
throw new IllegalArgumentException("classpath cannot be empty");
}
spiderBeanFactory = new SpiderBeanFactory(classpath, pipelineFactory);
}
if (threadCount <= 0) {
threadCount = 1;
}
this.cdl = new CountDownLatch(threadCount);
startsJson();
if (startRequests.isEmpty()) {
// startRequests不为空
// throw new IllegalArgumentException("startRequests cannot be empty");
}
for (HttpRequest startRequest : startRequests) {
scheduler.into(startRequest);
}
spiders = new ArrayList<Spider>(threadCount);
for (int i = 0; i < threadCount; i++) {
Spider spider = new Spider(this);
spiders.add(spider);
Thread thread = new Thread(spider, "T" + classpath + i);
thread.start();
}
startTime = new Date();
// 监控爬虫基本信息
GeccoMonitor.monitor(this);
// 启动导出jmx信息
GeccoJmx.export(classpath);
// 非循环模式等待线程执行完毕后关闭
closeUnitlComplete();
}
@Override
public synchronized void start() {
if (eventListener != null) {
eventListener.onStart(this);
}
super.start();
}
private GeccoEngine startsJson() {
try {
URL url = Resources.getResource("starts.json");
File file = new File(url.getPath());
if (file.exists()) {
String json = Files.toString(file, Charset.forName("UTF-8"));
List<StartRequestList> list = JSON.parseArray(json, StartRequestList.class);
for (StartRequestList start : list) {
start(start.toRequest());
}
}
} catch (IllegalArgumentException ex) {
log.info("starts.json not found");
} catch (IOException ioex) {
log.error(ioex);
}
return this;
}
public Scheduler getScheduler() {
return scheduler;
}
public SpiderBeanFactory getSpiderBeanFactory() {
return spiderBeanFactory;
}
public int getInterval() {
return interval;
}
public Date getStartTime() {
return startTime;
}
public List<HttpRequest> getStartRequests() {
return startRequests;
}
public List<Spider> getSpiders() {
return spiders;
}
public int getRetry() {
return retry;
}
public int getThreadCount() {
return threadCount;
}
public boolean isLoop() {
return loop;
}
public Proxys getProxysLoader() {
return proxysLoader;
}
public boolean isMobile() {
return mobile;
}
public boolean isDebug() {
return debug;
}
public boolean isProxy() {
return proxy;
}
/**
* spider线程告知engine执行结束
*/
public void notifyComplete() {
this.cdl.countDown();
}
/**
* 非循环模式等待线程执行完毕后关闭
*/
public void closeUnitlComplete() {
if (!loop) {
try {
cdl.await();
} catch (InterruptedException e) {
log.error(e);
}
if (spiderBeanFactory != null) {
spiderBeanFactory.getDownloaderFactory().closeAll();
}
GeccoJmx.unexport();
log.info("close gecco!");
}
if (eventListener != null) {
eventListener.onStop(this);
}
}
/**
* 启动引擎,并返回GeccoEngine对象
*
* @return GeccoEngine
*/
public GeccoEngine engineStart() {
start();
return this;
}
/**
* 暂停
*/
public void pause() {
if (spiders != null) {
for (Spider spider : spiders) {
spider.pause();
}
}
if (eventListener != null) {
eventListener.onPause(this);
}
}
/**
* 重新开始抓取
*/
public void restart() {
if (spiders != null) {
for (Spider spider : spiders) {
spider.restart();
}
}
if (eventListener != null) {
eventListener.onRestart(this);
}
}
public void beginUpdateRule() {
if (log.isDebugEnabled()) {
log.debug("begin update rule");
}
// 修改规则前需要暂停引擎并且重新创建ClassLoader
pause();
GeccoClassLoader.create();
}
public void endUpdateRule() {
// 修改完成后重启引擎
restart();
if (log.isDebugEnabled()) {
log.debug("end update rule");
}
}
public void engineStop() {
if (spiders != null) {
for (Spider spider : spiders) {
spider.stop();
}
}
if (eventListener != null) {
eventListener.onStop(this);
}
}
public EventListener getEventListener() {
return eventListener;
}
public GeccoEngine setEventListener(EventListener eventListener) {
this.eventListener = eventListener;
return this;
}
}