RcGcDb/src/domain.py

146 lines
5.5 KiB
Python
Raw Normal View History

2021-05-28 17:16:14 +00:00
from __future__ import annotations
import asyncio
2021-05-30 17:15:37 +00:00
import logging
2021-05-30 13:31:51 +00:00
from collections import OrderedDict
2021-05-30 17:15:37 +00:00
from src.config import settings
2021-05-28 17:16:14 +00:00
from typing import TYPE_CHECKING, Optional
2022-10-09 12:10:08 +00:00
from src.argparser import command_line_args
2021-06-22 19:42:32 +00:00
from functools import cache
2022-10-03 13:34:36 +00:00
# from src.discussions import Discussions
from statistics import Log, LogType
2021-05-30 17:15:37 +00:00
logger = logging.getLogger("rcgcdb.domain")
2021-05-28 17:16:14 +00:00
if TYPE_CHECKING:
import src.wiki
2021-05-30 17:15:37 +00:00
import src.irc_feed
2021-05-28 17:16:14 +00:00
class Domain:
2021-05-30 13:31:51 +00:00
def __init__(self, name: str):
2021-05-30 11:23:48 +00:00
self.name = name # This should be always in format of topname.extension for example fandom.com
2021-05-30 17:15:37 +00:00
self.task: Optional[asyncio.Task] = None
self.wikis: OrderedDict[str, src.wiki.Wiki] = OrderedDict()
2021-05-30 17:15:37 +00:00
self.irc: Optional[src.irc_feed.AioIRCCat] = None
2022-10-09 12:10:08 +00:00
# self.discussions_handler: Optional[Discussions] = Discussions(self.wikis) if name == "fandom.com" else None
2021-05-30 13:31:51 +00:00
def __iter__(self):
return iter(self.wikis)
def __getitem__(self, item):
return
2021-05-30 17:15:37 +00:00
def __len__(self):
return len(self.wikis)
def destroy(self):
2022-08-16 10:50:49 +00:00
"""Destroy the domain do all of the tasks that should make sure there is no leftovers before being collected by GC"""
if self.irc:
2022-11-04 14:59:26 +00:00
self.irc.connection.die("Leaving")
if self.discussions_handler:
self.discussions_handler.close()
if self.task:
self.task.cancel()
2021-05-30 17:15:37 +00:00
def get_wiki(self, item, default=None) -> Optional[src.wiki.Wiki]:
2022-08-16 10:50:49 +00:00
"""Return a wiki with given domain name"""
2021-05-30 17:15:37 +00:00
return self.wikis.get(item, default)
def set_irc(self, irc_client: src.irc_feed.AioIRCCat):
2022-08-16 10:50:49 +00:00
"""Sets IRC"""
2021-05-28 17:16:14 +00:00
self.irc = irc_client
def stop_task(self):
"""Cancells the task"""
self.task.cancel() # Be aware that cancelling the task may take time
2021-05-30 17:15:37 +00:00
def run_domain(self):
2022-08-16 10:50:49 +00:00
"""Starts asyncio task for domain"""
if not self.task or self.task.cancelled():
self.task = asyncio.create_task(self.run_wiki_check(), name=self.name)
else:
logger.error(f"Tried to start a task for domain {self.name} however the task already exists!")
2021-05-30 17:15:37 +00:00
def remove_wiki(self, script_url: str):
2021-07-09 12:55:23 +00:00
self.wikis.pop(script_url)
2022-10-09 12:10:08 +00:00
async def add_wiki(self, wiki: src.wiki.Wiki, first=False):
2021-05-30 11:23:48 +00:00
"""Adds a wiki to domain list.
:parameter wiki - Wiki object
2021-05-30 13:31:51 +00:00
:parameter first (optional) - bool indicating if wikis should be added as first or last in the ordered dict"""
wiki.set_domain(self)
2022-06-22 17:17:20 +00:00
if wiki.script_url in self.wikis:
2022-10-09 12:10:08 +00:00
await self.wikis[wiki.script_url].update_targets()
else:
self.wikis[wiki.script_url] = wiki
2022-10-09 12:10:08 +00:00
await wiki.update_targets()
2021-05-30 13:31:51 +00:00
if first:
self.wikis.move_to_end(wiki.script_url, last=False)
2021-05-30 11:23:48 +00:00
async def run_wiki_scan(self, wiki: src.wiki.Wiki, reason: Optional[int] = None):
await wiki.scan()
wiki.statistics.update(Log(type=LogType.SCAN_REASON, title=str(reason)))
2021-05-30 17:15:37 +00:00
self.wikis.move_to_end(wiki.script_url)
async def irc_scheduler(self):
2022-10-09 12:10:08 +00:00
try:
while True:
try:
wiki_url = self.irc.updated_wikis.pop()
except KeyError:
break
try:
wiki = self.wikis[wiki_url]
except KeyError:
logger.error(f"Could not find a wiki with URL {wiki_url} in the domain group!")
continue
2021-05-30 17:15:37 +00:00
await self.run_wiki_scan(wiki)
2022-10-29 15:04:25 +00:00
while True: # Iterate until hitting return, we don't have to iterate using for since we are sending wiki to the end anyways
wiki: src.wiki.Wiki = next(iter(self.wikis.values()))
2022-10-09 12:10:08 +00:00
if (wiki.statistics.last_checked_rc or 0) < settings.get("irc_overtime", 3600):
await self.run_wiki_scan(wiki)
else:
return # Recently scanned wikis will get at the end of the self.wikis, so we assume what is first hasn't been checked for a while
except:
if command_line_args.debug:
2022-11-04 14:59:26 +00:00
logger.exception("IRC scheduler task for domain {} failed!".format(self.name))
2021-05-30 17:15:37 +00:00
else:
2022-10-09 12:10:08 +00:00
# TODO Write
pass
2021-05-30 17:15:37 +00:00
async def regular_scheduler(self):
2022-10-09 12:10:08 +00:00
try:
while True:
await asyncio.sleep(self.calculate_sleep_time(len(self))) # To make sure that we don't spam domains with one wiki every second we calculate a sane timeout for domains with few wikis
await self.run_wiki_scan(next(iter(self.wikis.values())))
except:
if command_line_args.debug:
logger.exception("IRC task for domain {} failed!".format(self.name))
else:
# TODO Write
pass
2021-05-30 17:15:37 +00:00
2021-06-22 19:42:32 +00:00
@cache
def calculate_sleep_time(self, queue_length: int):
return max((-25 * queue_length) + 150, 1)
2021-05-30 11:23:48 +00:00
async def run_wiki_check(self):
2022-08-16 10:50:49 +00:00
"""Runs appropriate scheduler depending on existence of IRC"""
2021-05-30 17:15:37 +00:00
if self.irc:
2022-10-09 12:10:08 +00:00
try:
while True:
await self.irc_scheduler()
await asyncio.sleep(10.0)
except asyncio.exceptions.CancelledError:
for wiki in self.wikis.values():
await wiki.session.close()
2022-11-04 14:59:26 +00:00
self.irc.connection.disconnect()
2021-05-30 17:15:37 +00:00
else:
2022-10-09 12:10:08 +00:00
try:
await self.regular_scheduler()
except asyncio.exceptions.CancelledError:
for wiki in self.wikis.values():
await wiki.session.close()