sync.php
10.1 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
<?php
//error_reporting();
use Swoole\Process;
include_once __DIR__."/../vendor/autoload.php";
function start(){
// 删除停止运行的值
redis()->delete(SYNC_RUNNING_REDIS_KEY,'email_sync_stop_num');
// 进程管理器
$pm = new Process\Manager();
// 启动一个进程来管理定时
$pm->add(function (Process\Pool $pool, int $workerId){
_echo("定时进程({$workerId})启动成功");
// 每秒执行
\Swoole\Timer::tick(1000,function() use(&$pool){
if(redis()->getOriginData('email_sync_stop_num') >= WORKER_NUM+1 ){
$pool->shutdown();
}
// 每秒检查一次是否空闲redis
foreach (\Lib\RedisPool::$instance as $redis){
if(time()-5 > $redis->lastTimer ){
$redis->close();
}
}
// 空闲超过10秒的db链接,关闭
foreach (\Lib\DbPool::$instance as $db){
if(time()-10 > $db->lastTimer ){
$db->close();
}
}
//
\Lib\Log::getInstance()->write();
});
// 进行阻塞,否则定时器无法运行
while (true){
co::sleep(10);
}
},true);
// 协程配置
\co::set([
'max_coroutine'=>COROUTINE_MAX_NUM, // 最大携程数量
'hook_flags'=>SWOOLE_HOOK_TCP, // redis需要的配置
]);
// 启动业务进程
$pm->addBatch(WORKER_NUM,function (Process\Pool $pool, int $worker_id){
_echo("业务进程({$worker_id})启动成功");
$start_num = 0;// 启动的协程数量
// 循环阻塞
while (true){
if(redis()->get(SYNC_RUNNING_REDIS_KEY)=='stop'){
break;
}
// 是否到了协程配置的数量上限
if($start_num < COROUTINE_MAX_NUM){
// 需要同步的id
$id = redis()->lPop('sync_email_lists');
if(!$id || !is_numeric($id)){
co::sleep(1);
}else{
// 占用当前的id,占用2小时
if(redis()->add('just_sync_'.$id,time(),7200)){
// 启动一个协程
go(function () use (&$start_num,$worker_id,$id){
$start_num++;
// 开始同步
try {
sync($id,$worker_id);
}catch (\Throwable $e){
// 重新发布同步任务,如果失败了是否重新发布
// redis()->rPush('sync_email_lists',$id);
// _echo($e->getMessage());
logs(
$e->getMessage().PHP_EOL.$e->getTraceAsString(),
LOG_PATH.'/'.$worker_id.'.log'
);
}
// 协程完成后执行的函数
co::defer(function () use (&$start_num,$worker_id,$id){
// _echo('正常关闭进程('.$worker_id.')下的协程('.co::getCid().')');
$start_num--;
// 消除占用
redis()->delete('just_sync_'.$id);
// 写入日志
\Lib\Log::getInstance()->write();
// 关闭数据库链接
db()->close();
// 关闭redis链接
redis()->close();
});
});
}
}
}else{
// 协程到了最大的数量,阻塞1秒
co::sleep(1);
}
}
// 验证是否全部进程退出了
while (true){
if(!$start_num){
redis()->incr('email_sync_stop_num');
break;
}
co::sleep(0.5);
}
while (true){
co::sleep(99);
}
},true);
// 启动一个同步内容的进程
$pm->add(function (Process\Pool $pool, int $worker_id){
_echo("业务进程({$worker_id})启动成功,body");
$start_num = 0;// 启动的协程数量
// 循环阻塞
while (true){
if(redis()->get(SYNC_RUNNING_REDIS_KEY)=='stop'){
break;
}
// 是否到了协程配置的数量上限
if($start_num < 500){
// 需要同步的id
$id = redis()->lPop('sync_email_body');
if(!$id){
co::sleep(1);
}else{
// 占用当前的id,占用2小时
if(redis()->add('just_sync_body_'.$id['lists_id'],time(),600)){
// 启动一个协程
go(function () use (&$start_num,$worker_id,$id){
$start_num++;
// 开始同步
try {
sync_body($id,$worker_id);
}catch (\Throwable $e){
// _echo($e->getMessage());
logs(
$e->getMessage().PHP_EOL.$e->getTraceAsString(),
LOG_PATH.'/'.$worker_id.'.log'
);
}
// 协程完成后执行的函数
co::defer(function () use (&$start_num,$worker_id,$id){
// _echo('正常关闭进程('.$worker_id.')下的协程('.co::getCid().')');
$start_num--;
// 消除占用
redis()->delete('just_sync_body_'.$id['lists_id']);
// 写入日志
\Lib\Log::getInstance()->write();
// 关闭数据库链接
db()->close();
// 关闭redis链接
redis()->close();
});
});
}
}
}else{
// 协程到了最大的数量,阻塞1秒
co::sleep(1);
}
}
// 验证是否全部进程退出了
while (true){
if(!$start_num){
redis()->incr('email_sync_stop_num');
break;
}
co::sleep(0.5);
}
while (true){
co::sleep(99);
}
},true);
// 启动管理器
$pm->start();
}
/**
* 同步内容 body
* @param $id
* @param $worker_id
* @return int
* @author:dc
* @time 2023/3/23 10:18
*/
function sync_body($id,$worker_id){
// 是否有数据
if(db()->count(\Model\bodySql::has((int) $id['lists_id']))){
return 0;
}
$email = db()->first(\Model\emailSql::first($id['email_id']));
if(!$email){
return 0;
}
if($email['pwd_error']){
return 1;
}
$mailServer = new Lib\Mail\Mail($email['email'],base64_decode($email['password']),$email['imap']);
// 登录服务器
if(!$mailServer->login()){
return 2;
}
// $mailServer->client->debug(true,LOG_PATH.'/'.$id['email_id'].'body/');
// 同步 body
$mailServer->syncBody($id['folder'],$id['uid'],$id['lists_id'],db());
$mailServer = null;
return 0;
}
/**
* 开始同步, 这里是主要的业务代码
* @param $email_id
* @param $worker_id
* @return int
* @author:dc
* @time 2023/3/10 10:19
*/
function sync($email_id,$worker_id){
$email = db()->first(\Model\emailSql::first($email_id));
if(!$email){
return 0;
}
if($email['pwd_error']){
return 1;
}
$mailServer = new Lib\Mail\Mail($email['email'],base64_decode($email['password']),$email['imap']);
// 登录服务器
if(!$mailServer->login()){
return 2;
}
// $mailServer->client->debug(true,LOG_PATH.'/'.$email_id.'/');
// 同步文件夹
$mailServer->syncFolder($email_id,db());
// 读取到邮箱中的文件夹
$folders = db()->all(\Model\folderSql::all($email['id']));
if(!$folders){
return 3;
}
$folders = list_to_tree($folders);
foreach ($folders as $folder){
try {
if(empty($folder['_child'])){
// 同步父文件夹
$mailServer->syncMail($email_id,$folder['id'],$folder['origin_folder']);
}else{
foreach ($folder['_child'] as $item){
// 同步子文件夹
$mailServer->syncMail($email_id,$item['id'],$item['origin_folder']);
}
}
}catch (\Throwable $e){
logs(
$e->getMessage().$e->getTraceAsString(),
LOG_PATH.'/imap/'.$email['email'].'.error.log'
);
}
}
$email = null;
$mailServer = null;
}
if(!function_exists("imap_8bit")){
echo '请安装imap扩展';
exit(0);
}
$ps = "ps -ef | grep \"sync.php start\" | grep -v grep | wc -l";
switch ($argv[1]??0){
case 'start':{
// $num = exec($ps);
// if($num){
// echo '正则运行,请勿重复运行';
// }else{
start();
// }
break;
}
case 'stop':{
\Co\run(function ($ps){
echo "正在退出程序...\n非必要请不要强制kill掉进程\n";
redis()->set(SYNC_RUNNING_REDIS_KEY,'stop');
while (true){
$num = exec($ps);
if(!$num){
break;
}
co::sleep(0.2);
}
echo "已退出程序\n";
},$ps);
break;
}
default:{
break;
}
}