-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b8bdea
commit b4292cf
Showing
9 changed files
with
177 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,60 @@ | ||
import abc | ||
import logging | ||
from typing import Optional | ||
|
||
# setup null handler for all API endpoints | ||
logging.getLogger("ubuntupro").addHandler(logging.NullHandler()) | ||
|
||
|
||
class AbstractProgress(metaclass=abc.ABCMeta): | ||
@abc.abstractmethod | ||
def progress( | ||
self, | ||
*, | ||
total_steps: int, | ||
done_steps: int, | ||
previous_step_message: Optional[str], | ||
current_step_message: Optional[str] | ||
): | ||
pass | ||
|
||
|
||
class NullProgress(AbstractProgress): | ||
def progress( | ||
self, | ||
*, | ||
total_steps: int, | ||
done_steps: int, | ||
previous_step_message: Optional[str], | ||
current_step_message: Optional[str] | ||
): | ||
pass | ||
|
||
|
||
class ProgressWrapper: | ||
def __init__(self, progress_object: Optional[AbstractProgress] = None): | ||
if progress_object is not None: | ||
self.progress_object = progress_object | ||
else: | ||
self.progress_object = NullProgress() | ||
self.done_steps = 0 | ||
self.total_steps = -1 | ||
self.previous_step_message = None # type: Optional[str] | ||
|
||
def progress(self, message: str): | ||
self.progress_object.progress( | ||
total_steps=self.total_steps, | ||
done_steps=self.done_steps, | ||
previous_step_message=self.previous_step_message, | ||
current_step_message=message, | ||
) | ||
self.previous_step_message = message | ||
self.done_steps += 1 | ||
|
||
def start(self, total_steps: int, message: str): | ||
self.total_steps = total_steps | ||
self.progress(message) | ||
|
||
def finish(self, message: str): | ||
self.done_steps = self.total_steps | ||
self.progress(message) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.