2019-05-26 06:42:39 +02:00
|
|
|
# cython: language_level=3
|
2019-05-21 13:54:52 +02:00
|
|
|
import logging
|
2019-05-30 17:25:42 +02:00
|
|
|
import pathlib
|
|
|
|
import re
|
2019-07-22 19:16:54 +02:00
|
|
|
import signal
|
2019-07-22 14:14:07 +02:00
|
|
|
import time
|
2019-05-21 13:54:52 +02:00
|
|
|
|
2019-07-19 06:32:14 +02:00
|
|
|
import aiojobs
|
2019-05-21 13:54:52 +02:00
|
|
|
import aiojobs.aiohttp
|
2019-05-16 01:17:06 +02:00
|
|
|
import asyncio
|
|
|
|
from aiohttp import web
|
|
|
|
|
2019-07-22 14:38:53 +02:00
|
|
|
from src.schema.db_helpers import setup_database, backup_database
|
2019-06-06 11:43:47 +02:00
|
|
|
from src.database import obtain_connection, DatabaseWriter
|
2019-07-22 14:10:21 +02:00
|
|
|
from src.handles import api_endpoint, get_api_endpoint
|
2019-05-26 07:31:05 +02:00
|
|
|
|
2019-05-21 12:56:27 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
2019-05-16 05:32:29 +02:00
|
|
|
|
2019-05-20 07:18:47 +02:00
|
|
|
|
2019-05-21 11:02:01 +02:00
|
|
|
async def setup_db_schema(app):
|
2019-05-30 17:25:42 +02:00
|
|
|
if not pathlib.Path(app['db_path']).exists():
|
|
|
|
logger.info('Setting up schema in %s', app['db_path'])
|
2019-07-22 14:38:53 +02:00
|
|
|
setup_database(app['db_path'], app['config']['PATH']['SCHEMA'])
|
2019-05-30 17:25:42 +02:00
|
|
|
else:
|
2019-07-22 14:38:53 +02:00
|
|
|
logger.info(f'Database already exists in {app["db_path"]}, skipping setup')
|
2019-05-16 01:17:06 +02:00
|
|
|
|
2019-05-20 07:18:47 +02:00
|
|
|
|
2019-05-21 11:02:01 +02:00
|
|
|
async def close_comment_scheduler(app):
|
2019-07-20 15:06:34 +02:00
|
|
|
logger.info('Closing comment_scheduler')
|
2019-05-21 11:02:01 +02:00
|
|
|
await app['comment_scheduler'].close()
|
2019-05-16 01:17:06 +02:00
|
|
|
|
|
|
|
|
2019-06-04 14:14:12 +02:00
|
|
|
async def database_backup_routine(app):
|
2019-05-21 12:56:27 +02:00
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
await asyncio.sleep(app['config']['BACKUP_INT'])
|
2019-07-22 14:14:07 +02:00
|
|
|
with app['reader'] as conn:
|
2019-05-23 12:34:50 +02:00
|
|
|
logger.debug('backing up database')
|
2019-07-22 14:38:53 +02:00
|
|
|
backup_database(conn, app['backup'])
|
2019-06-04 14:14:12 +02:00
|
|
|
except asyncio.CancelledError:
|
2019-05-21 13:28:21 +02:00
|
|
|
pass
|
2019-05-21 12:56:27 +02:00
|
|
|
|
2019-05-23 12:34:50 +02:00
|
|
|
|
2019-07-22 19:16:54 +02:00
|
|
|
async def start_background_tasks(app):
|
2019-05-31 21:50:31 +02:00
|
|
|
app['reader'] = obtain_connection(app['db_path'], True)
|
2019-06-04 14:14:12 +02:00
|
|
|
app['waitful_backup'] = app.loop.create_task(database_backup_routine(app))
|
2019-07-19 06:32:14 +02:00
|
|
|
app['comment_scheduler'] = await aiojobs.create_scheduler(limit=1, pending_limit=0)
|
|
|
|
app['db_writer'] = DatabaseWriter(app['db_path'])
|
|
|
|
app['writer'] = app['db_writer'].connection
|
2019-05-23 12:34:50 +02:00
|
|
|
|
|
|
|
|
2019-07-22 19:16:54 +02:00
|
|
|
async def stop_background_tasks(app):
|
2019-07-20 15:06:34 +02:00
|
|
|
logger.info('Ending background backup loop')
|
2019-05-21 12:56:27 +02:00
|
|
|
app['waitful_backup'].cancel()
|
|
|
|
await app['waitful_backup']
|
2019-05-21 13:28:21 +02:00
|
|
|
app['reader'].close()
|
|
|
|
app['writer'].close()
|
2019-05-21 12:56:27 +02:00
|
|
|
|
|
|
|
|
2019-07-22 19:16:54 +02:00
|
|
|
class CommentDaemon:
|
|
|
|
def __init__(self, config, db_path=None, **kwargs):
|
|
|
|
self.config = config
|
|
|
|
app = web.Application()
|
|
|
|
self.insert_to_config(app, config, db_file=db_path)
|
|
|
|
app.on_startup.append(setup_db_schema)
|
|
|
|
app.on_startup.append(start_background_tasks)
|
|
|
|
app.on_shutdown.append(stop_background_tasks)
|
|
|
|
app.on_shutdown.append(close_comment_scheduler)
|
|
|
|
aiojobs.aiohttp.setup(app, **kwargs)
|
|
|
|
app.add_routes([
|
|
|
|
web.post('/api', api_endpoint),
|
|
|
|
web.get('/', get_api_endpoint),
|
|
|
|
web.get('/api', get_api_endpoint)
|
|
|
|
])
|
|
|
|
self.app = app
|
|
|
|
self.app_runner = web.AppRunner(app)
|
|
|
|
self.app_site = None
|
|
|
|
|
|
|
|
async def start(self):
|
|
|
|
self.app['START_TIME'] = time.time()
|
|
|
|
await self.app_runner.setup()
|
|
|
|
self.app_site = web.TCPSite(
|
|
|
|
runner=self.app_runner,
|
|
|
|
host=self.config['HOST'],
|
|
|
|
port=self.config['PORT'],
|
|
|
|
)
|
|
|
|
await self.app_site.start()
|
|
|
|
logger.info(f'Comment Server is running on {self.config["HOST"]}:{self.config["PORT"]}')
|
|
|
|
|
|
|
|
async def stop(self):
|
|
|
|
await self.app.shutdown()
|
|
|
|
await self.app.cleanup()
|
|
|
|
await self.app_runner.cleanup()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def insert_to_config(app, conf=None, db_file=None):
|
|
|
|
db_file = db_file if db_file else 'DEFAULT'
|
|
|
|
app['config'] = conf
|
|
|
|
app['db_path'] = conf['PATH'][db_file]
|
|
|
|
app['backup'] = re.sub(r'\.db$', '.backup.db', app['db_path'])
|
|
|
|
assert app['db_path'] != app['backup']
|
2019-05-16 01:17:06 +02:00
|
|
|
|
|
|
|
|
2019-07-20 15:06:34 +02:00
|
|
|
def run_app(config):
|
2019-07-22 19:16:54 +02:00
|
|
|
comment_app = CommentDaemon(config=config, db_path='DEFAULT', close_timeout=5.0)
|
|
|
|
|
|
|
|
loop = asyncio.get_event_loop()
|
|
|
|
loop.set_debug(True)
|
|
|
|
|
|
|
|
def __exit():
|
|
|
|
raise web.GracefulExit()
|
|
|
|
|
|
|
|
loop.add_signal_handler(signal.SIGINT, __exit)
|
|
|
|
loop.add_signal_handler(signal.SIGTERM, __exit)
|
|
|
|
|
2019-05-21 13:28:21 +02:00
|
|
|
try:
|
2019-07-22 19:16:54 +02:00
|
|
|
loop.run_until_complete(comment_app.start())
|
|
|
|
loop.run_forever()
|
|
|
|
except (web.GracefulExit, KeyboardInterrupt, asyncio.CancelledError, ValueError):
|
2019-07-22 14:14:07 +02:00
|
|
|
logging.warning('Server going down, asyncio loop raised cancelled error:')
|
2019-07-22 19:16:54 +02:00
|
|
|
finally:
|
|
|
|
loop.run_until_complete(comment_app.stop())
|