mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
582 lines
31 KiB
Python
582 lines
31 KiB
Python
import logging
|
|
import os
|
|
import time
|
|
import traceback
|
|
from math import floor
|
|
from threading import Thread
|
|
from typing import List, Tuple, Optional, Dict
|
|
|
|
from PyQt5.QtWidgets import QApplication, QStyleFactory
|
|
|
|
from bauh import ROOT_DIR, __app_name__
|
|
from bauh.api.abstract.controller import SoftwareManager
|
|
from bauh.api.abstract.download import FileDownloader
|
|
from bauh.api.abstract.view import ViewComponent, TabComponent, InputOption, TextComponent, MultipleSelectComponent, \
|
|
PanelComponent, FormComponent, TabGroupComponent, SingleSelectComponent, SelectViewType, TextInputComponent, \
|
|
FileChooserComponent, RangeInputComponent
|
|
from bauh.commons.view_utils import new_select
|
|
from bauh.view.core import timeshift
|
|
from bauh.view.core.config import CoreConfigManager
|
|
from bauh.view.core.downloader import AdaptableFileDownloader
|
|
from bauh.view.util import translation
|
|
from bauh.view.util.translation import I18n
|
|
|
|
|
|
class GenericSettingsManager:
|
|
|
|
def __init__(self, managers: List[SoftwareManager], working_managers: List[SoftwareManager],
|
|
logger: logging.Logger, i18n: I18n, file_downloader: FileDownloader, configman: CoreConfigManager):
|
|
self.i18n = i18n
|
|
self.managers = managers
|
|
self.working_managers = working_managers
|
|
self.logger = logger
|
|
self.file_downloader = file_downloader
|
|
self.configman = configman
|
|
|
|
def get_settings(self, screen_width: int, screen_height: int) -> ViewComponent:
|
|
tabs = list()
|
|
|
|
gem_opts, def_gem_opts, gem_tabs = [], set(), []
|
|
|
|
for man in self.managers:
|
|
if man.can_work():
|
|
man_comp = man.get_settings(screen_width, screen_height)
|
|
modname = man.__module__.split('.')[-2]
|
|
icon_path = "{r}/gems/{n}/resources/img/{n}.svg".format(r=ROOT_DIR, n=modname)
|
|
|
|
if man_comp:
|
|
tab_name = self.i18n.get('gem.{}.label'.format(modname), modname.capitalize())
|
|
gem_tabs.append(TabComponent(label=tab_name, content=man_comp, icon_path=icon_path, id_=modname))
|
|
|
|
opt = InputOption(label=self.i18n.get('gem.{}.label'.format(modname), modname.capitalize()),
|
|
tooltip=self.i18n.get('gem.{}.info'.format(modname)),
|
|
value=modname,
|
|
icon_path='{r}/gems/{n}/resources/img/{n}.svg'.format(r=ROOT_DIR, n=modname))
|
|
gem_opts.append(opt)
|
|
|
|
if man.is_enabled() and man in self.working_managers:
|
|
def_gem_opts.add(opt)
|
|
|
|
core_config = self.configman.get_config()
|
|
|
|
if gem_opts:
|
|
type_help = TextComponent(html=self.i18n['core.config.types.tip'])
|
|
gem_opts.sort(key=lambda o: o.value)
|
|
gem_selector = MultipleSelectComponent(label=None,
|
|
tooltip=None,
|
|
options=gem_opts,
|
|
max_width=floor(screen_width * 0.22),
|
|
default_options=def_gem_opts,
|
|
id_="gems")
|
|
tabs.append(TabComponent(label=self.i18n['core.config.tab.types'],
|
|
content=PanelComponent([type_help, FormComponent([gem_selector], spaces=False)]),
|
|
id_='core.types'))
|
|
|
|
tabs.append(self._gen_general_settings(core_config, screen_width, screen_height))
|
|
tabs.append(self._gen_ui_settings(core_config, screen_width, screen_height))
|
|
tabs.append(self._gen_tray_settings(core_config, screen_width, screen_height))
|
|
tabs.append(self._gen_adv_settings(core_config, screen_width, screen_height))
|
|
|
|
bkp_settings = self._gen_backup_settings(core_config, screen_width, screen_height)
|
|
|
|
if bkp_settings:
|
|
tabs.append(bkp_settings)
|
|
|
|
for tab in gem_tabs:
|
|
tabs.append(tab)
|
|
|
|
return TabGroupComponent(tabs)
|
|
|
|
def _gen_adv_settings(self, core_config: dict, screen_width: int, screen_height: int) -> TabComponent:
|
|
default_width = floor(0.22 * screen_width)
|
|
|
|
input_data_exp = TextInputComponent(label=self.i18n['core.config.mem_cache.data_exp'],
|
|
tooltip=self.i18n['core.config.mem_cache.data_exp.tip'],
|
|
value=str(core_config['memory_cache']['data_expiration']),
|
|
only_int=True,
|
|
max_width=default_width,
|
|
id_="data_exp")
|
|
|
|
input_icon_exp = TextInputComponent(label=self.i18n['core.config.mem_cache.icon_exp'],
|
|
tooltip=self.i18n['core.config.mem_cache.icon_exp.tip'],
|
|
value=str(core_config['memory_cache']['icon_expiration']),
|
|
only_int=True,
|
|
max_width=default_width,
|
|
id_="icon_exp")
|
|
|
|
select_trim_up = new_select(label=self.i18n['core.config.trim.after_upgrade'],
|
|
tip=self.i18n['core.config.trim.after_upgrade.tip'],
|
|
value=core_config['disk']['trim']['after_upgrade'],
|
|
max_width=default_width,
|
|
opts=[(self.i18n['yes'].capitalize(), True, None),
|
|
(self.i18n['no'].capitalize(), False, None),
|
|
(self.i18n['ask'].capitalize(), None, None)],
|
|
id_='trim_after_upgrade')
|
|
|
|
select_dep_check = self._gen_bool_component(label=self.i18n['core.config.system.dep_checking'],
|
|
tooltip=self.i18n['core.config.system.dep_checking.tip'],
|
|
value=core_config['system']['single_dependency_checking'],
|
|
max_width=default_width,
|
|
id_='dep_check')
|
|
|
|
select_dmthread = self._gen_bool_component(label=self.i18n['core.config.download.multithreaded'],
|
|
tooltip=self.i18n['core.config.download.multithreaded.tip'],
|
|
id_="down_mthread",
|
|
max_width=default_width,
|
|
value=core_config['download']['multithreaded'])
|
|
|
|
select_mthread_client = self._gen_multithread_client_select(core_config, default_width)
|
|
|
|
sub_comps = [FormComponent([select_dmthread, select_mthread_client, select_trim_up, select_dep_check, input_data_exp, input_icon_exp], spaces=False)]
|
|
return TabComponent(self.i18n['core.config.tab.advanced'].capitalize(), PanelComponent(sub_comps), None, 'core.adv')
|
|
|
|
def _gen_multithread_client_select(self, core_config: dict, default_width: int) -> SingleSelectComponent:
|
|
available_mthread_clients = self.file_downloader.list_available_multithreaded_clients()
|
|
available_mthread_clients.sort()
|
|
|
|
default_i18n_key = 'default' if available_mthread_clients else 'core.config.download.multithreaded_client.none'
|
|
mthread_client_opts = [(self.i18n[default_i18n_key].capitalize(), None, None)]
|
|
|
|
for client in available_mthread_clients:
|
|
mthread_client_opts.append((client, client, None))
|
|
|
|
current_mthread_client = core_config['download']['multithreaded_client']
|
|
|
|
if current_mthread_client not in available_mthread_clients:
|
|
current_mthread_client = None
|
|
|
|
return new_select(label=self.i18n['core.config.download.multithreaded_client'],
|
|
tip=self.i18n['core.config.download.multithreaded_client.tip'],
|
|
id_="mthread_client",
|
|
max_width=default_width,
|
|
opts=mthread_client_opts,
|
|
value=current_mthread_client)
|
|
|
|
def _gen_tray_settings(self, core_config: dict, screen_width: int, screen_height: int) -> TabComponent:
|
|
default_width = floor(0.22 * screen_width)
|
|
|
|
input_update_interval = TextInputComponent(label=self.i18n['core.config.updates.interval'].capitalize(),
|
|
tooltip=self.i18n['core.config.updates.interval.tip'],
|
|
only_int=True,
|
|
value=str(core_config['updates']['check_interval']),
|
|
max_width=default_width,
|
|
id_="updates_interval")
|
|
|
|
allowed_exts = {'png', 'svg', 'jpg', 'jpeg', 'ico', 'xpm'}
|
|
select_def_icon = FileChooserComponent(id_='def_icon',
|
|
label=self.i18n["core.config.ui.tray.default_icon"],
|
|
tooltip=self.i18n["core.config.ui.tray.default_icon.tip"],
|
|
file_path=str(core_config['ui']['tray']['default_icon']) if core_config['ui']['tray']['default_icon'] else None,
|
|
max_width=default_width,
|
|
allowed_extensions=allowed_exts)
|
|
|
|
select_up_icon = FileChooserComponent(id_='up_icon',
|
|
label=self.i18n["core.config.ui.tray.updates_icon"].capitalize(),
|
|
tooltip=self.i18n["core.config.ui.tray.updates_icon.tip"].capitalize(),
|
|
file_path=str(core_config['ui']['tray']['updates_icon']) if core_config['ui']['tray']['updates_icon'] else None,
|
|
max_width=default_width,
|
|
allowed_extensions=allowed_exts)
|
|
|
|
sub_comps = [FormComponent([input_update_interval, select_def_icon, select_up_icon], spaces=False)]
|
|
return TabComponent(self.i18n['core.config.tab.tray'].capitalize(), PanelComponent(sub_comps), None, 'core.tray')
|
|
|
|
def _gen_ui_settings(self, core_config: dict, screen_width: int, screen_height: int) -> TabComponent:
|
|
default_width = floor(0.15 * screen_width)
|
|
|
|
select_hdpi = self._gen_bool_component(label=self.i18n['core.config.ui.hdpi'],
|
|
tooltip=self.i18n['core.config.ui.hdpi.tip'],
|
|
value=bool(core_config['ui']['hdpi']),
|
|
max_width=default_width,
|
|
id_='hdpi')
|
|
|
|
select_ascale = self._gen_bool_component(label=self.i18n['core.config.ui.auto_scale'],
|
|
tooltip=self.i18n['core.config.ui.auto_scale.tip'].format('QT_AUTO_SCREEN_SCALE_FACTOR'),
|
|
value=bool(core_config['ui']['auto_scale']),
|
|
max_width=default_width,
|
|
id_='auto_scale')
|
|
|
|
try:
|
|
scale = float(core_config['ui']['scale_factor'])
|
|
|
|
if scale < 1.0:
|
|
scale = 1.0
|
|
except:
|
|
scale = 1.0
|
|
|
|
select_scale = RangeInputComponent(id_="scalef", label=self.i18n['core.config.ui.scale_factor'] + ' (%)',
|
|
tooltip=self.i18n['core.config.ui.scale_factor.tip'],
|
|
min_value=100, max_value=400, step_value=5, value=scale * 100,
|
|
max_width=default_width)
|
|
|
|
cur_style = QApplication.instance().property('qt_style') if not core_config['ui']['qt_style'] else core_config['ui']['qt_style']
|
|
|
|
style_opts = [InputOption(label=s.capitalize(), value=s.lower()) for s in QStyleFactory.keys()]
|
|
|
|
default_style = [o for o in style_opts if o.value == cur_style]
|
|
|
|
if not default_style:
|
|
if cur_style:
|
|
default_style = InputOption(label=cur_style, value=cur_style)
|
|
style_opts.append(default_style)
|
|
else:
|
|
default_style = style_opts[0]
|
|
else:
|
|
default_style = default_style[0]
|
|
|
|
select_style = SingleSelectComponent(label=self.i18n['style'].capitalize(),
|
|
tooltip=self.i18n['core.config.ui.qt_style.tooltip'],
|
|
options=style_opts,
|
|
default_option=default_style,
|
|
type_=SelectViewType.COMBO,
|
|
max_width=default_width,
|
|
id_="style")
|
|
|
|
select_system_theme = self._gen_bool_component(label=self.i18n['core.config.ui.system_theme'],
|
|
tooltip=self.i18n['core.config.ui.system_theme.tip'].format(app=__app_name__),
|
|
value=bool(core_config['ui']['system_theme']),
|
|
max_width=default_width,
|
|
id_='system_theme')
|
|
|
|
input_maxd = TextInputComponent(label=self.i18n['core.config.ui.max_displayed'],
|
|
tooltip=self.i18n['core.config.ui.max_displayed.tip'],
|
|
only_int=True,
|
|
id_="table_max",
|
|
max_width=default_width,
|
|
value=str(core_config['ui']['table']['max_displayed']))
|
|
|
|
select_dicons = self._gen_bool_component(label=self.i18n['core.config.download.icons'],
|
|
tooltip=self.i18n['core.config.download.icons.tip'],
|
|
id_="down_icons",
|
|
max_width=default_width,
|
|
value=core_config['download']['icons'])
|
|
|
|
sub_comps = [FormComponent([select_hdpi, select_ascale, select_scale,
|
|
select_dicons, select_system_theme,
|
|
select_style, input_maxd], spaces=False)]
|
|
|
|
return TabComponent(self.i18n['core.config.tab.ui'].capitalize(), PanelComponent(sub_comps), None, 'core.ui')
|
|
|
|
def _gen_general_settings(self, core_config: dict, screen_width: int, screen_height: int) -> TabComponent:
|
|
default_width = floor(0.15 * screen_width)
|
|
|
|
locale_opts = [InputOption(label=self.i18n['locale.{}'.format(k)].capitalize(), value=k) for k in translation.get_available_keys()]
|
|
|
|
current_locale = None
|
|
|
|
if core_config['locale']:
|
|
current_locale = [l for l in locale_opts if l.value == core_config['locale']]
|
|
|
|
if not current_locale:
|
|
if self.i18n.current_key:
|
|
current_locale = [l for l in locale_opts if l.value == self.i18n.current_key]
|
|
|
|
if not current_locale:
|
|
current_locale = [l for l in locale_opts if l.value == self.i18n.default_key]
|
|
|
|
current_locale = current_locale[0] if current_locale else None
|
|
|
|
select_locale = SingleSelectComponent(label=self.i18n['core.config.locale.label'],
|
|
options=locale_opts,
|
|
default_option=current_locale,
|
|
type_=SelectViewType.COMBO,
|
|
max_width=default_width,
|
|
id_='locale')
|
|
|
|
select_store_pwd = self._gen_bool_component(label=self.i18n['core.config.store_password'].capitalize(),
|
|
tooltip=self.i18n['core.config.store_password.tip'].capitalize(),
|
|
id_="store_pwd",
|
|
max_width=default_width,
|
|
value=bool(core_config['store_root_password']))
|
|
|
|
select_sysnotify = self._gen_bool_component(label=self.i18n['core.config.system.notifications'].capitalize(),
|
|
tooltip=self.i18n['core.config.system.notifications.tip'].capitalize(),
|
|
value=bool(core_config['system']['notifications']),
|
|
max_width=default_width,
|
|
id_="sys_notify")
|
|
|
|
select_load_apps = self._gen_bool_component(label=self.i18n['core.config.boot.load_apps'],
|
|
tooltip=self.i18n['core.config.boot.load_apps.tip'],
|
|
value=bool(core_config['boot']['load_apps']),
|
|
id_='boot.load_apps',
|
|
max_width=default_width)
|
|
|
|
select_sugs = self._gen_bool_component(label=self.i18n['core.config.suggestions.activated'].capitalize(),
|
|
tooltip=self.i18n['core.config.suggestions.activated.tip'].capitalize(),
|
|
id_="sugs_enabled",
|
|
max_width=default_width,
|
|
value=bool(core_config['suggestions']['enabled']))
|
|
|
|
inp_sugs = TextInputComponent(label=self.i18n['core.config.suggestions.by_type'],
|
|
tooltip=self.i18n['core.config.suggestions.by_type.tip'],
|
|
value=str(core_config['suggestions']['by_type']),
|
|
only_int=True,
|
|
max_width=default_width,
|
|
id_="sugs_by_type")
|
|
|
|
inp_reboot = new_select(label=self.i18n['core.config.updates.reboot'],
|
|
tip=self.i18n['core.config.updates.reboot.tip'],
|
|
id_='ask_for_reboot',
|
|
max_width=default_width,
|
|
value=bool(core_config['updates']['ask_for_reboot']),
|
|
opts=[(self.i18n['ask'].capitalize(), True, None),
|
|
(self.i18n['no'].capitalize(), False, None)])
|
|
|
|
sub_comps = [FormComponent([select_locale, select_store_pwd, select_sysnotify, select_load_apps, select_sugs, inp_sugs, inp_reboot], spaces=False)]
|
|
return TabComponent(self.i18n['core.config.tab.general'].capitalize(), PanelComponent(sub_comps), None, 'core.gen')
|
|
|
|
def _gen_bool_component(self, label: str, tooltip: str, value: bool, id_: str, max_width: int = 200) -> SingleSelectComponent:
|
|
opts = [InputOption(label=self.i18n['yes'].capitalize(), value=True),
|
|
InputOption(label=self.i18n['no'].capitalize(), value=False)]
|
|
|
|
return SingleSelectComponent(label=label,
|
|
options=opts,
|
|
default_option=[o for o in opts if o.value == value][0],
|
|
type_=SelectViewType.RADIO,
|
|
tooltip=tooltip,
|
|
max_per_line=len(opts),
|
|
max_width=max_width,
|
|
id_=id_)
|
|
|
|
def _save_settings(self, general: PanelComponent,
|
|
advanced: PanelComponent,
|
|
backup: PanelComponent,
|
|
ui: PanelComponent,
|
|
tray: PanelComponent,
|
|
gems_panel: PanelComponent) -> Tuple[bool, Optional[List[str]]]:
|
|
core_config = self.configman.get_config()
|
|
|
|
# general
|
|
general_form = general.components[0]
|
|
|
|
locale = general_form.get_component('locale').get_selected()
|
|
|
|
if locale != self.i18n.current_key:
|
|
core_config['locale'] = locale
|
|
|
|
core_config['system']['notifications'] = general_form.get_component('sys_notify').get_selected()
|
|
core_config['suggestions']['enabled'] = general_form.get_component('sugs_enabled').get_selected()
|
|
core_config['store_root_password'] = general_form.get_component('store_pwd').get_selected()
|
|
|
|
sugs_by_type = general_form.get_component('sugs_by_type').get_int_value()
|
|
core_config['suggestions']['by_type'] = sugs_by_type
|
|
|
|
core_config['updates']['ask_for_reboot'] = general_form.get_component('ask_for_reboot').get_selected()
|
|
core_config['boot']['load_apps'] = general_form.get_component('boot.load_apps').get_selected()
|
|
|
|
# advanced
|
|
adv_form = advanced.components[0]
|
|
|
|
download_mthreaded = adv_form.get_component('down_mthread').get_selected()
|
|
core_config['download']['multithreaded'] = download_mthreaded
|
|
|
|
mthread_client = adv_form.get_component('mthread_client').get_selected()
|
|
core_config['download']['multithreaded_client'] = mthread_client
|
|
|
|
if isinstance(self.file_downloader, AdaptableFileDownloader):
|
|
self.file_downloader.multithread_client = mthread_client
|
|
self.file_downloader.multithread_enabled = download_mthreaded
|
|
|
|
single_dep_check = adv_form.get_component('dep_check').get_selected()
|
|
core_config['system']['single_dependency_checking'] = single_dep_check
|
|
|
|
data_exp = adv_form.get_component('data_exp').get_int_value()
|
|
core_config['memory_cache']['data_expiration'] = data_exp
|
|
|
|
icon_exp = adv_form.get_component('icon_exp').get_int_value()
|
|
core_config['memory_cache']['icon_expiration'] = icon_exp
|
|
|
|
core_config['disk']['trim']['after_upgrade'] = adv_form.get_component('trim_after_upgrade').get_selected()
|
|
|
|
# backup
|
|
if backup:
|
|
bkp_form = backup.components[0]
|
|
|
|
core_config['backup']['enabled'] = bkp_form.get_component('enabled').get_selected()
|
|
core_config['backup']['mode'] = bkp_form.get_component('mode').get_selected()
|
|
core_config['backup']['type'] = bkp_form.get_component('type').get_selected()
|
|
core_config['backup']['install'] = bkp_form.get_component('install').get_selected()
|
|
core_config['backup']['uninstall'] = bkp_form.get_component('uninstall').get_selected()
|
|
core_config['backup']['upgrade'] = bkp_form.get_component('upgrade').get_selected()
|
|
core_config['backup']['downgrade'] = bkp_form.get_component('downgrade').get_selected()
|
|
|
|
# tray
|
|
tray_form = tray.components[0]
|
|
core_config['updates']['check_interval'] = tray_form.get_component('updates_interval').get_int_value()
|
|
|
|
def_icon_path = tray_form.get_component('def_icon').file_path
|
|
core_config['ui']['tray']['default_icon'] = def_icon_path if def_icon_path else None
|
|
|
|
up_icon_path = tray_form.get_component('up_icon').file_path
|
|
core_config['ui']['tray']['updates_icon'] = up_icon_path if up_icon_path else None
|
|
|
|
# ui
|
|
ui_form = ui.components[0]
|
|
|
|
core_config['download']['icons'] = ui_form.get_component('down_icons').get_selected()
|
|
core_config['ui']['hdpi'] = ui_form.get_component('hdpi').get_selected()
|
|
|
|
previous_autoscale = core_config['ui']['auto_scale']
|
|
|
|
core_config['ui']['auto_scale'] = ui_form.get_component('auto_scale').get_selected()
|
|
|
|
if previous_autoscale and not core_config['ui']['auto_scale']:
|
|
self.logger.info("Deleting environment variable QT_AUTO_SCREEN_SCALE_FACTOR")
|
|
del os.environ['QT_AUTO_SCREEN_SCALE_FACTOR']
|
|
|
|
core_config['ui']['scale_factor'] = ui_form.get_component('scalef').value / 100
|
|
core_config['ui']['table']['max_displayed'] = ui_form.get_component('table_max').get_int_value()
|
|
|
|
style = ui_form.get_component('style').get_selected()
|
|
|
|
cur_style = core_config['ui']['qt_style'] if core_config['ui']['qt_style'] else QApplication.instance().property('qt_style')
|
|
if style != cur_style:
|
|
core_config['ui']['qt_style'] = style
|
|
QApplication.instance().setProperty('qt_style', style)
|
|
|
|
core_config['ui']['system_theme'] = ui_form.get_component('system_theme').get_selected()
|
|
|
|
# gems
|
|
checked_gems = gems_panel.components[1].get_component('gems').get_selected_values()
|
|
|
|
for man in self.managers:
|
|
modname = man.__module__.split('.')[-2]
|
|
enabled = modname in checked_gems
|
|
man.set_enabled(enabled)
|
|
|
|
core_config['gems'] = None if core_config['gems'] is None and len(checked_gems) == len(self.managers) else checked_gems
|
|
|
|
try:
|
|
self.configman.save_config(core_config)
|
|
return True, None
|
|
except:
|
|
return False, [traceback.format_exc()]
|
|
|
|
def _save_manager_settings(self, man: SoftwareManager, panel: ViewComponent, success_map: Dict[str, bool], warnings: List[str]):
|
|
success = False
|
|
|
|
try:
|
|
res = man.save_settings(panel)
|
|
|
|
if res:
|
|
success, errors = res[0], res[1]
|
|
|
|
if errors:
|
|
warnings.extend(errors)
|
|
except:
|
|
self.logger.error("An exception happened while {} was trying to save its settings".format(man.__class__.__name__))
|
|
traceback.print_exc()
|
|
finally:
|
|
success_map[man.__class__.__name__] = success
|
|
|
|
def _save_core_settings(self, root_component: TabGroupComponent, success_map: Dict[str, bool], warnings: List[str]):
|
|
success = False
|
|
|
|
try:
|
|
bkp = root_component.get_tab('core.bkp')
|
|
success, errors = self._save_settings(general=root_component.get_tab('core.gen').content,
|
|
advanced=root_component.get_tab('core.adv').content,
|
|
tray=root_component.get_tab('core.tray').content,
|
|
backup=bkp.content if bkp else None,
|
|
ui=root_component.get_tab('core.ui').content,
|
|
gems_panel=root_component.get_tab('core.types').content)
|
|
if errors:
|
|
warnings.extend(errors)
|
|
|
|
except:
|
|
self.logger.error("An exception happened while saving the core settings")
|
|
traceback.print_exc()
|
|
finally:
|
|
success_map[self.__class__.__name__] = success
|
|
|
|
def save_settings(self, component: TabGroupComponent) -> Tuple[bool, List[str]]:
|
|
ti = time.time()
|
|
save_threads, warnings, success_map = [], [], {}
|
|
|
|
save_core = Thread(target=self._save_core_settings, args=(component, success_map, warnings), daemon=True)
|
|
save_core.start()
|
|
save_threads.append(save_core)
|
|
|
|
for man in self.managers:
|
|
if man:
|
|
modname = man.__module__.split('.')[-2]
|
|
tab = component.get_tab(modname)
|
|
|
|
if not tab:
|
|
self.logger.warning("Tab for {} was not found".format(man.__class__.__name__))
|
|
else:
|
|
save_man = Thread(target=self._save_manager_settings(man, tab.content, success_map, warnings), daemon=True)
|
|
save_man.start()
|
|
save_threads.append(save_man)
|
|
|
|
for t in save_threads:
|
|
t.join()
|
|
|
|
success = all(success_map.values())
|
|
|
|
tf = time.time()
|
|
self.logger.info("Saving all settings took {0:.8f} seconds".format(tf - ti))
|
|
return success, warnings
|
|
|
|
def _gen_backup_settings(self, core_config: dict, screen_width: int, screen_height: int) -> TabComponent:
|
|
if timeshift.is_available():
|
|
default_width = floor(0.22 * screen_width)
|
|
|
|
enabled_opt = self._gen_bool_component(label=self.i18n['core.config.backup'],
|
|
tooltip=None,
|
|
value=bool(core_config['backup']['enabled']),
|
|
id_='enabled',
|
|
max_width=default_width)
|
|
|
|
ops_opts = [(self.i18n['yes'].capitalize(), True, None),
|
|
(self.i18n['no'].capitalize(), False, None),
|
|
(self.i18n['ask'].capitalize(), None, None)]
|
|
|
|
install_mode = new_select(label=self.i18n['core.config.backup.install'],
|
|
tip=None,
|
|
value=core_config['backup']['install'],
|
|
opts=ops_opts,
|
|
max_width=default_width,
|
|
id_='install')
|
|
|
|
uninstall_mode = new_select(label=self.i18n['core.config.backup.uninstall'],
|
|
tip=None,
|
|
value=core_config['backup']['uninstall'],
|
|
opts=ops_opts,
|
|
max_width=default_width,
|
|
id_='uninstall')
|
|
|
|
upgrade_mode = new_select(label=self.i18n['core.config.backup.upgrade'],
|
|
tip=None,
|
|
value=core_config['backup']['upgrade'],
|
|
opts=ops_opts,
|
|
max_width=default_width,
|
|
id_='upgrade')
|
|
|
|
downgrade_mode = new_select(label=self.i18n['core.config.backup.downgrade'],
|
|
tip=None,
|
|
value=core_config['backup']['downgrade'],
|
|
opts=ops_opts,
|
|
max_width=default_width,
|
|
id_='downgrade')
|
|
|
|
mode = new_select(label=self.i18n['core.config.backup.mode'],
|
|
tip=None,
|
|
value=core_config['backup']['mode'],
|
|
opts=[
|
|
(self.i18n['core.config.backup.mode.incremental'], 'incremental',
|
|
self.i18n['core.config.backup.mode.incremental.tip']),
|
|
(self.i18n['core.config.backup.mode.only_one'], 'only_one',
|
|
self.i18n['core.config.backup.mode.only_one.tip'])
|
|
],
|
|
max_width=default_width,
|
|
id_='mode')
|
|
type_ = new_select(label=self.i18n['type'].capitalize(),
|
|
tip=None,
|
|
value=core_config['backup']['type'],
|
|
opts=[('rsync', 'rsync', None), ('btrfs', 'btrfs', None)],
|
|
max_width=default_width,
|
|
id_='type')
|
|
|
|
sub_comps = [FormComponent([enabled_opt, mode, type_, install_mode, uninstall_mode, upgrade_mode, downgrade_mode], spaces=False)]
|
|
return TabComponent(self.i18n['core.config.tab.backup'].capitalize(), PanelComponent(sub_comps), None, 'core.bkp')
|