/snap/core22/2411/usr/share/subiquity/subiquitycore
NameSizeModeActions
controllers/-0755rm
models/-0755rm
testing/-0755rm
tests/-0755rm
ui/-0755rm
__pycache__/-0755rm
async_helpers.py23270644editdlrm
context.py45210644editdlrm
controller.py17220644editdlrm
controllerset.py19500644editdlrm
core.py46050644editdlrm
file_util.py17100644editdlrm
i18n.py17380644editdlrm
log.py18410644editdlrm
lsb_release.py9470644editdlrm
netplan.py54710644editdlrm
palette.py46410644editdlrm
prober.py20110644editdlrm
pubsub.py12530644editdlrm
screen.py50170644editdlrm
snapd.py62440644editdlrm
ssh.py36250644editdlrm
tui.py132870644editdlrm
tuicontroller.py34560644editdlrm
utils.py58450644editdlrm
view.py34330644editdlrm
__init__.py7100644editdlrm
Edit: /snap/core22/2411/usr/share/subiquity/subiquitycore/tuicontroller.py (3456B)
# Copyright 2020 Canonical, Ltd. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . from abc import abstractmethod import asyncio import logging from subiquitycore.controller import BaseController log = logging.getLogger("subiquitycore.tuicontroller") class Skip(Exception): """Raise this from a controller's make_ui method to skip a screen.""" class TuiController(BaseController): """Base class for controllers.""" def __init__(self, app): super().__init__(app) self.ui = app.ui self.answers = app.answers.get(self.name, {}) @abstractmethod def cancel(self): pass @property def showing(self): inst = self.app.controllers.cur while isinstance(inst, RepeatedController): inst = inst.orig return inst is self @abstractmethod def make_ui(self): """Return the view for this controller's UI.""" def end_ui(self): """Stop running this controller's UI. This method doesn't actually need to remove this controller's UI as the next one is about to replace it, it's more of a hook to stop any background tasks that can be stopped when the UI is not running. """ # Stuff for fine grained actions, used by filesystem and network # controller at time of writing this comment. async def _enter_form_data(self, form, data, submit, clean_suffix=''): for k, v in data.items(): c = getattr( self, '_action_clean_{}_{}'.format(k, clean_suffix), None) if c is None: c = getattr(self, '_action_clean_{}'.format(k), lambda x: x) field = getattr(form, k) from subiquitycore.ui.selector import Selector v = c(v) if isinstance(field.widget, Selector): field.widget._emit('select', v) field.value = v yield for bf in form._fields: bf.validate() form.validated() if submit: if not form.done_btn.enabled: raise Exception("answers left form invalid!") form._click_done(None) async def _run_actions(self, actions): delay = 0.2/self.app.scale_factor for action in actions: async for _ in self._answers_action(action): await asyncio.sleep(delay) delay /= 1.1 class RepeatedController(BaseController): def __init__(self, orig, index): self.name = "{}-{}".format(orig.name, index) self.orig = orig self.index = index self.context = orig.context def make_ui(self): return self.orig.make_ui(self.index) def run_answers(self): self.orig.run_answers() def end_ui(self): self.orig.end_ui() def cancel(self): self.orig.cancel() @property def answers(self): return self.orig.answers