-
Notifications
You must be signed in to change notification settings - Fork 659
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create addon boot failed issue for repair (#5397)
* Create addon boot failed issue for repair * MDont make new objects for contains checks
- Loading branch information
Showing
12 changed files
with
381 additions
and
23 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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
"""Helpers to fix addon by disabling boot.""" | ||
|
||
import logging | ||
|
||
from ...const import AddonBoot | ||
from ...coresys import CoreSys | ||
from ..const import ContextType, IssueType, SuggestionType | ||
from .base import FixupBase | ||
|
||
_LOGGER: logging.Logger = logging.getLogger(__name__) | ||
|
||
|
||
def setup(coresys: CoreSys) -> FixupBase: | ||
"""Check setup function.""" | ||
return FixupAddonDisableBoot(coresys) | ||
|
||
|
||
class FixupAddonDisableBoot(FixupBase): | ||
"""Storage class for fixup.""" | ||
|
||
async def process_fixup(self, reference: str | None = None) -> None: | ||
"""Initialize the fixup class.""" | ||
if not (addon := self.sys_addons.get(reference, local_only=True)): | ||
_LOGGER.info("Cannot change addon %s as it does not exist", reference) | ||
return | ||
|
||
# Disable boot on addon | ||
addon.boot = AddonBoot.MANUAL | ||
|
||
@property | ||
def suggestion(self) -> SuggestionType: | ||
"""Return a SuggestionType enum.""" | ||
return SuggestionType.DISABLE_BOOT | ||
|
||
@property | ||
def context(self) -> ContextType: | ||
"""Return a ContextType enum.""" | ||
return ContextType.ADDON | ||
|
||
@property | ||
def issues(self) -> list[IssueType]: | ||
"""Return a IssueType enum list.""" | ||
return [IssueType.BOOT_FAIL] | ||
|
||
@property | ||
def auto(self) -> bool: | ||
"""Return if a fixup can be apply as auto fix.""" | ||
return False |
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
"""Helpers to fix addon by starting it.""" | ||
|
||
import logging | ||
|
||
from ...const import AddonState | ||
from ...coresys import CoreSys | ||
from ...exceptions import AddonsError, ResolutionFixupError | ||
from ..const import ContextType, IssueType, SuggestionType | ||
from .base import FixupBase | ||
|
||
_LOGGER: logging.Logger = logging.getLogger(__name__) | ||
|
||
|
||
def setup(coresys: CoreSys) -> FixupBase: | ||
"""Check setup function.""" | ||
return FixupAddonExecuteStart(coresys) | ||
|
||
|
||
class FixupAddonExecuteStart(FixupBase): | ||
"""Storage class for fixup.""" | ||
|
||
async def process_fixup(self, reference: str | None = None) -> None: | ||
"""Initialize the fixup class.""" | ||
if not (addon := self.sys_addons.get(reference, local_only=True)): | ||
_LOGGER.info("Cannot start addon %s as it does not exist", reference) | ||
return | ||
|
||
# Start addon | ||
try: | ||
start_task = await addon.start() | ||
except AddonsError as err: | ||
_LOGGER.error("Could not start %s due to %s", reference, err) | ||
raise ResolutionFixupError() from None | ||
|
||
# Wait for addon start. If it ends up in error or unknown state it's not fixed | ||
await start_task | ||
if addon.state in {AddonState.ERROR, AddonState.UNKNOWN}: | ||
_LOGGER.error("Addon %s could not start successfully", reference) | ||
raise ResolutionFixupError() | ||
|
||
@property | ||
def suggestion(self) -> SuggestionType: | ||
"""Return a SuggestionType enum.""" | ||
return SuggestionType.EXECUTE_START | ||
|
||
@property | ||
def context(self) -> ContextType: | ||
"""Return a ContextType enum.""" | ||
return ContextType.ADDON | ||
|
||
@property | ||
def issues(self) -> list[IssueType]: | ||
"""Return a IssueType enum list.""" | ||
return [IssueType.BOOT_FAIL] | ||
|
||
@property | ||
def auto(self) -> bool: | ||
"""Return if a fixup can be apply as auto fix.""" | ||
return False |
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.