forked from pyrogram/pyrogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyncer.py
More file actions
88 lines (71 loc) · 2.39 KB
/
syncer.py
File metadata and controls
88 lines (71 loc) · 2.39 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
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2021 Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
import asyncio
import logging
import time
log = logging.getLogger(__name__)
class Syncer:
INTERVAL = 20
clients = {}
event = None
lock = None
@classmethod
async def add(cls, client):
if cls.event is None:
cls.event = asyncio.Event()
if cls.lock is None:
cls.lock = asyncio.Lock()
async with cls.lock:
await cls.sync(client)
cls.clients[id(client)] = client
if len(cls.clients) == 1:
cls.start()
@classmethod
async def remove(cls, client):
async with cls.lock:
await cls.sync(client)
del cls.clients[id(client)]
if len(cls.clients) == 0:
cls.stop()
@classmethod
def start(cls):
cls.event.clear()
asyncio.get_event_loop().create_task(cls.worker())
@classmethod
def stop(cls):
cls.event.set()
@classmethod
async def worker(cls):
while True:
try:
await asyncio.wait_for(cls.event.wait(), cls.INTERVAL)
except asyncio.TimeoutError:
async with cls.lock:
for client in cls.clients.values():
await cls.sync(client)
else:
break
@classmethod
async def sync(cls, client):
try:
start = time.time()
await client.storage.save()
except Exception as e:
log.critical(e, exc_info=True)
else:
log.debug(f'Synced "{client.storage.name}" in {(time.time() - start) * 1000:.6} ms')