-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patharchiver.py
executable file
·447 lines (424 loc) · 17.9 KB
/
archiver.py
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
#!/usr/bin/env python3
import datetime
import logging
import typing
import jsonschema
import jsonschema.exceptions
import google.protobuf.json_format
import mahjongsoul_sniffer.logging as logging_
import mahjongsoul_sniffer.redis as redis_
import mahjongsoul_sniffer.s3 as s3_
from mahjongsoul_sniffer.mahjongsoul_pb2 \
import (Wrapper, ResGameLiveList)
_GAME_LIVE_LIST_SCHEMA = {
'type': 'array',
'items': {
'type': 'object',
'required': [
'uuid',
'start_time',
'game_config',
'players',
'seat_list'
],
'properties': {
'uuid': {
'type': 'string'
},
'start_time': {
'type': 'integer',
'minimum': 0
},
'game_config': {
'type': 'object',
'required': [
'category',
'mode',
'meta'
],
'properties': {
'category': {
'description': '1: 友人戦, 2: 段位戦',
'enum': [
1,
2
]
},
'mode': {
'type': 'object',
'required': [
'mode',
'ai',
'extendinfo',
'detail_rule'
],
'properties': {
'mode': {
'description': '1: 東風戦, 2: 半荘戦, 4: 一局戦',
'type': 'integer',
'minimum': 0
},
'ai': {
'title': 'CPU 参加フラグ',
'description': 'false: CPU は参加していない, true: CPU が参加している',
'type': 'boolean'
},
'extendinfo': {
'$comment': 'TODO: 詳細不明',
'const': ''
},
'detail_rule': {
'type': 'object'
}
},
'additionalProperties': False
},
'meta': {
'type': 'object',
'required': [
'room_id',
'mode_id',
'contest_uid'
],
'properties': {
'room_id': {
'title': '友人戦ID',
'type': 'integer',
'minimum': 0
},
'mode_id': {
'description': '2: 段位戦・銅の間・四人東風戦, '
'6: 段位戦・銀の間・四人半荘戦, '
'8: 段位戦・金の間・四人東風戦, '
'9: 段位戦・金の間・四人半荘戦, '
'11: 段位戦・玉の間・四人東風戦, '
'12: 段位戦・玉の間・四人半荘戦, '
'16: 段位戦・王座の間・四人半荘戦, '
'21: 段位戦・金の間・三人東風戦, '
'22: 段位戦・金の間・三人半荘戦, '
'23: 段位戦・玉の間・三人東風戦, '
'24: 段位戦・玉の間・三人半荘戦, '
'26: 段位戦・王座の間・三人半荘戦',
'type': 'integer',
'minimum': 0
},
'contest_uid': {
'$comment': 'TODO: 詳細不明',
'const': 0
}
},
'additionalProperties': False
}
},
'additionalProperties': False
},
'players': {
'type': 'array',
'minItems': 3,
'maxItems': 4,
'items': {
'type': 'object',
'required': [
'account_id',
'avatar_id',
'title',
'nickname',
'level',
'character',
'level3',
'avatar_frame',
'verified',
'views'
],
'properties': {
'account_id': {
'type': 'integer',
'minimum': 0
},
'avatar_id': {
'type': 'integer',
'minimum': 0
},
'title': {
'type': 'integer',
'minimum': 0
},
'nickname': {
'type': 'string'
},
'level': {
'title': '四人戦段位',
'type': 'object',
'required': [
'id',
'score'
],
'properties': {
'id': {
'title': '四人戦段位ID',
'description': '1010X: 初心, '
'1020X: 雀士, '
'1030X: 雀傑, '
'1040X: 雀豪, '
'1050X: 雀聖, '
'1060X: 魂天',
'type': 'integer',
'minimum': 0
},
'score': {
'title': '四人戦昇段ポイント',
'type': 'integer',
'minimum': 0
}
},
'additionalProperties': False
},
'character': {
'type': 'object',
'required': [
'charid',
'level',
'exp',
'views',
'skin',
'is_upgraded',
'extra_emoji',
'rewarded_level'
],
'properties': {
'charid': {
'type': 'integer',
'minimum': 0,
},
'level': {
'title': '絆レベル?',
'type': 'integer',
'minimum': 0
},
'exp': {
'type': 'integer',
'minimum': 0
},
'views': {
'type': 'array',
'maxItems': 0
},
'skin': {
'type': 'integer',
'minimum': 0
},
'is_upgraded': {
'title': '契約済みフラグ',
'description': 'false: キャラクタと契約してない, true: キャラクタと契約済み',
'type': 'boolean'
},
'extra_emoji': {
'type': 'array',
'items': {
'type': 'integer',
'minimum': 0
},
'additionalItems': False
},
'rewarded_level': {
'$comment': 'TODO: 詳細不明',
'type': 'array',
'items': {
'type': 'integer',
'minimum': 0
},
'additionalItems': False
}
},
'additionalProperties': False
},
'level3': {
'title': '三人戦段位',
'type': 'object',
'required': [
'id',
'score'
],
'properties': {
'id': {
'title': '三人戦段位ID',
'description': '2010X: 初心, '
'2020X: 雀士, '
'2030X: 雀傑, '
'2040X: 雀豪, '
'2050X: 雀聖, '
'2060X: 魂天',
'type': 'integer',
'minimum': 0
},
'score': {
'title': '三人戦昇段ポイント',
'type': 'integer',
'minimum': 0
}
},
'additionalProperties': False
},
'avatar_frame': {
'type': 'integer',
'minimum': 0
},
'verified': {
'type': 'integer',
'minimum': 0
},
'views': {
'title': '装飾品',
'type': 'array',
'items': {
'type': 'object',
'required': [
'slot',
'item_id',
'type',
'item_id_list'
],
'properties': {
'slot': {
'description': '0: 立直棒, 1:和了演出, 2: 立直演出, 4: 立直BGM, ...',
'type': 'integer',
'minimum': 0
},
'item_id': {
'type': 'integer',
'minimum': 0
},
'type': {
'type': 'integer',
'minimum': 0
},
'item_id_list': {
'type': 'array',
'items': {
'type': 'integer',
'minimum': 0
},
'additionalItems': False
}
},
'additionalProperties': False
},
'additionalItems': False
}
},
'additionalProperties': False
},
'additionalItems': False
},
'seat_list': {
'type': 'array',
'minItems': 3,
'maxItems': 4,
'items': {
'type': 'integer',
'minimum': 0
},
'additionalItems': False
}
},
'additionalProperties': False
},
'additionalItems': False
}
def _parse(message: bytes) -> typing.List[dict]:
wrapper = Wrapper()
wrapper.ParseFromString(message[3:])
if wrapper.name != '':
raise RuntimeError(f'''{wrapper.name}: An unexpected name.''')
result = ResGameLiveList()
result.ParseFromString(wrapper.data)
result_json = google.protobuf.json_format.MessageToDict(
result, including_default_value_fields=True,
preserving_proto_field_name=True)
try:
jsonschema.validate(instance=result_json['live_list'],
schema=_GAME_LIVE_LIST_SCHEMA)
except jsonschema.exceptions.ValidationError:
raise RuntimeError(
f'''Failed to validate the following WebSocket message:
protobuf: {message}
JSON: {result_json}''')
game_abstract_list = []
for game_live in result.live_list:
uuid = game_live.uuid
start_time = game_live.start_time
start_time = datetime.datetime.fromtimestamp(
start_time, tz=datetime.timezone.utc)
mode_id = game_live.game_config.meta.mode_id
if mode_id == 2:
mode = '段位戦・銅の間・四人東風戦'
elif mode_id == 6:
mode = '段位戦・銀の間・四人半荘戦'
elif mode_id == 8:
mode = '段位戦・金の間・四人東風戦'
elif mode_id == 9:
mode = '段位戦・金の間・四人半荘戦'
elif mode_id == 11:
mode = '段位戦・玉の間・四人東風戦'
elif mode_id == 12:
mode = '段位戦・玉の間・四人半荘戦'
elif mode_id == 15:
mode = '段位戦・王座の間・四人東風戦'
elif mode_id == 16:
mode = '段位戦・王座の間・四人半荘戦'
elif mode_id == 21:
mode = '段位戦・金の間・三人東風戦'
elif mode_id == 22:
mode = '段位戦・金の間・三人半荘戦'
elif mode_id == 23:
mode = '段位戦・玉の間・三人東風戦'
elif mode_id == 24:
mode = '段位戦・玉の間・三人半荘戦'
elif mode_id == 26:
mode = '段位戦・王座の間・三人半荘戦'
else:
raise NotImplementedError(
f'uuid == {uuid}, mode_id == {mode_id}')
game_abstract = {
'uuid': uuid,
'mode': mode,
'start_time': start_time
}
game_abstract_list.append(game_abstract)
return game_abstract_list
def main():
redis = redis_.Redis(module_name='game_abstract_crawler')
finished = {}
s3_bucket = s3_.Bucket(module_name='game_abstract_crawler')
while True:
message = redis.blpop_websocket_message('game-abstract-list')
redis.set_timestamp('archiver.heartbeat')
if message['request_direction'] != 'outbound':
raise RuntimeError(
'An outbound WebSocket message is expected,\
but got an inbound one.')
message = message['response']
game_abstract_list = _parse(message)
for game_abstract in game_abstract_list:
uuid = game_abstract['uuid']
if uuid in finished:
continue
s3_bucket.put_game_abstract(game_abstract)
logging.info(f'Archived the abstract of the game {uuid}.')
finished[uuid] = game_abstract['start_time']
if len(finished) > 20000:
now = datetime.datetime.now(tz=datetime.timezone.utc)
stale_uuid_list = []
for uuid, start_time in finished.items():
if now - start_time > datetime.timedelta(days=1):
stale_uuid_list.append(uuid)
for stale_uuid in stale_uuid_list:
del finished[stale_uuid]
if __name__ == '__main__':
try:
logging_.initialize(module_name='game_abstract_crawler',
service_name='archiver')
main()
except Exception as e:
logging.exception('Abort with an unhandled exception.')
raise