You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
import time
|
|
|
|
|
|
|
|
from django.utils import timezone
|
|
|
|
|
|
|
|
from common.utils.timezone import local_now_display
|
|
|
|
from .handlers import AccountBackupHandler
|
|
|
|
|
|
|
|
|
|
|
|
class AccountBackupManager:
|
|
|
|
def __init__(self, execution):
|
|
|
|
self.execution = execution
|
|
|
|
self.date_start = timezone.now()
|
|
|
|
self.time_start = time.time()
|
|
|
|
self.date_end = None
|
|
|
|
self.time_end = None
|
|
|
|
self.timedelta = 0
|
|
|
|
|
|
|
|
def do_run(self):
|
|
|
|
execution = self.execution
|
|
|
|
print('\n\033[33m# 账号备份计划正在执行\033[0m')
|
|
|
|
handler = AccountBackupHandler(execution)
|
|
|
|
handler.run()
|
|
|
|
|
|
|
|
def pre_run(self):
|
|
|
|
self.execution.date_start = self.date_start
|
|
|
|
self.execution.save()
|
|
|
|
|
|
|
|
def post_run(self):
|
|
|
|
self.time_end = time.time()
|
|
|
|
self.date_end = timezone.now()
|
|
|
|
|
|
|
|
print('\n\n' + '-' * 80)
|
|
|
|
print('计划执行结束 {}\n'.format(local_now_display()))
|
|
|
|
self.timedelta = self.time_end - self.time_start
|
|
|
|
print('用时: {}s'.format(self.timedelta))
|
|
|
|
self.execution.timedelta = self.timedelta
|
|
|
|
self.execution.save()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
self.pre_run()
|
|
|
|
self.do_run()
|
|
|
|
self.post_run()
|