mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00

* Implement custom study on backend * Switch frontend to backend custom study * Skip typecheck for new pb classes * Build tag search string on backend Also fixes escaping of special characters in tag names. * `cram.cards` -> `cram.card_limit` * Assign more meaningful names in `TagLimit` * Broaden rustfmt glob * Use `invalid_input()` helper * Assign `FilteredDeckForUpdate` to temp var * Implement `SearchBuilder` * Rewrite `custom_study()` with `SearchBuilder` * Replace match macros with `SearchBuilder` * Remove `into_nodes_list` & `concatenate_searches`
85 lines
1.3 KiB
Python
85 lines
1.3 KiB
Python
# Copyright: Ankitects Pty Ltd and contributors
|
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
from __future__ import annotations
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class LocalizedError(Exception):
|
|
"An error with a localized description."
|
|
|
|
def __init__(self, localized: str) -> None:
|
|
self._localized = localized
|
|
super().__init__()
|
|
|
|
def __str__(self) -> str:
|
|
return self._localized
|
|
|
|
|
|
class Interrupted(Exception):
|
|
pass
|
|
|
|
|
|
class NetworkError(LocalizedError):
|
|
pass
|
|
|
|
|
|
class SyncErrorKind(Enum):
|
|
AUTH = 1
|
|
OTHER = 2
|
|
|
|
|
|
class SyncError(LocalizedError):
|
|
def __init__(self, localized: str, kind: SyncErrorKind):
|
|
self.kind = kind
|
|
super().__init__(localized)
|
|
|
|
|
|
class BackendIOError(LocalizedError):
|
|
pass
|
|
|
|
|
|
class CustomStudyError(LocalizedError):
|
|
pass
|
|
|
|
|
|
class DBError(LocalizedError):
|
|
pass
|
|
|
|
|
|
class TemplateError(LocalizedError):
|
|
pass
|
|
|
|
|
|
class NotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class ExistsError(Exception):
|
|
pass
|
|
|
|
|
|
class UndoEmpty(Exception):
|
|
pass
|
|
|
|
|
|
class FilteredDeckError(LocalizedError):
|
|
pass
|
|
|
|
|
|
class InvalidInput(LocalizedError):
|
|
pass
|
|
|
|
|
|
class SearchError(LocalizedError):
|
|
pass
|
|
|
|
|
|
class AbortSchemaModification(Exception):
|
|
pass
|
|
|
|
|
|
# legacy
|
|
DeckRenameError = FilteredDeckError
|
|
AnkiError = AbortSchemaModification
|