config.py 9.0 KB
Newer Older
之一Yo's avatar
之一Yo 已提交
1 2 3 4 5 6 7
# coding:utf-8
import json
from enum import Enum
from pathlib import Path
from typing import Iterable, List, Union

import darkdetect
之一Yo's avatar
之一Yo 已提交
8
from PyQt5.QtCore import QObject, pyqtSignal
之一Yo's avatar
之一Yo 已提交
9 10 11 12 13
from PyQt5.QtGui import QColor

from .exception_handler import exceptionHandler


14 15 16 17 18 19 20 21
class Theme(Enum):
    """ Theme enumeration """

    LIGHT = "Light"
    DARK = "Dark"
    AUTO = "Auto"


之一Yo's avatar
之一Yo 已提交
22 23 24
class ConfigValidator:
    """ Config validator """

之一Yo's avatar
之一Yo 已提交
25
    def validate(self, value):
之一Yo's avatar
之一Yo 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
        """ Verify whether the value is legal """
        return True

    def correct(self, value):
        """ correct illegal value """
        return value


class RangeValidator(ConfigValidator):
    """ Range validator """

    def __init__(self, min, max):
        self.min = min
        self.max = max
        self.range = (min, max)

之一Yo's avatar
之一Yo 已提交
42
    def validate(self, value):
之一Yo's avatar
之一Yo 已提交
43 44 45 46 47 48 49 50 51
        return self.min <= value <= self.max

    def correct(self, value):
        return min(max(self.min, value), self.max)


class OptionsValidator(ConfigValidator):
    """ Options validator """

之一Yo's avatar
之一Yo 已提交
52
    def __init__(self, options):
之一Yo's avatar
之一Yo 已提交
53 54 55 56 57 58 59 60
        if not options:
            raise ValueError("The `options` can't be empty.")

        if isinstance(options, Enum):
            options = options._member_map_.values()

        self.options = list(options)

之一Yo's avatar
之一Yo 已提交
61
    def validate(self, value):
之一Yo's avatar
之一Yo 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
        return value in self.options

    def correct(self, value):
        return value if self.validate(value) else self.options[0]


class BoolValidator(OptionsValidator):
    """ Boolean validator """

    def __init__(self):
        super().__init__([True, False])


class FolderValidator(ConfigValidator):
    """ Folder validator """

之一Yo's avatar
之一Yo 已提交
78
    def validate(self, value):
之一Yo's avatar
之一Yo 已提交
79 80
        return Path(value).exists()

之一Yo's avatar
之一Yo 已提交
81
    def correct(self, value):
之一Yo's avatar
之一Yo 已提交
82 83 84 85 86 87 88 89
        path = Path(value)
        path.mkdir(exist_ok=True, parents=True)
        return str(path.absolute()).replace("\\", "/")


class FolderListValidator(ConfigValidator):
    """ Folder list validator """

之一Yo's avatar
之一Yo 已提交
90
    def validate(self, value):
之一Yo's avatar
之一Yo 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
        return all(Path(i).exists() for i in value)

    def correct(self, value: List[str]):
        folders = []
        for folder in value:
            path = Path(folder)
            if path.exists():
                folders.append(str(path.absolute()).replace("\\", "/"))

        return folders


class ColorValidator(ConfigValidator):
    """ RGB color validator """

    def __init__(self, default):
        self.default = QColor(default)

之一Yo's avatar
之一Yo 已提交
109
    def validate(self, color):
之一Yo's avatar
之一Yo 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
        try:
            return QColor(color).isValid()
        except:
            return False

    def correct(self, value):
        return QColor(value) if self.validate(value) else self.default


class ConfigSerializer:
    """ Config serializer """

    def serialize(self, value):
        """ serialize config value """
        return value

    def deserialize(self, value):
        """ deserialize config from config file's value """
        return value


class EnumSerializer(ConfigSerializer):
    """ enumeration class serializer """

    def __init__(self, enumClass):
        self.enumClass = enumClass

之一Yo's avatar
之一Yo 已提交
137
    def serialize(self, value):
之一Yo's avatar
之一Yo 已提交
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
        return value.value

    def deserialize(self, value):
        return self.enumClass(value)


class ColorSerializer(ConfigSerializer):
    """ QColor serializer """

    def serialize(self, value: QColor):
        return value.name()

    def deserialize(self, value):
        if isinstance(value, list):
            return QColor(*value)

        return QColor(value)


class ConfigItem:
    """ Config item """

之一Yo's avatar
之一Yo 已提交
160
    def __init__(self, group, name, default, validator=None, serializer=None, restart=False):
之一Yo's avatar
之一Yo 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
        """
        Parameters
        ----------
        group: str
            config group name

        name: str
            config item name, can be empty

        default:
            default value

        options: list
            options value

        serializer: ConfigSerializer
            config serializer
之一Yo's avatar
之一Yo 已提交
178 179 180

        restart: bool
            whether to restart the application after updating value
之一Yo's avatar
之一Yo 已提交
181 182 183 184 185 186 187
        """
        self.group = group
        self.name = name
        self.validator = validator or ConfigValidator()
        self.serializer = serializer or ConfigSerializer()
        self.__value = default
        self.value = default
之一Yo's avatar
之一Yo 已提交
188
        self.restart = restart
之一Yo's avatar
之一Yo 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203

    @property
    def value(self):
        """ get the value of config item """
        return self.__value

    @value.setter
    def value(self, v):
        self.__value = self.validator.correct(v)

    @property
    def key(self):
        """ get the config key separated by `.` """
        return self.group+"."+self.name if self.name else self.group

之一Yo's avatar
之一Yo 已提交
204
    def __str__(self):
之一Yo's avatar
之一Yo 已提交
205 206
        return f'{self.__class__.__name__}[value={self.value}]'

之一Yo's avatar
之一Yo 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
    def serialize(self):
        return self.serializer.serialize(self.value)

    def deserializeFrom(self, value):
        self.value = self.serializer.deserialize(value)


class RangeConfigItem(ConfigItem):
    """ Config item of range """

    @property
    def range(self):
        """ get the available range of config """
        return self.validator.range

之一Yo's avatar
之一Yo 已提交
222
    def __str__(self):
之一Yo's avatar
之一Yo 已提交
223 224
        return f'{self.__class__.__name__}[range={self.range}, value={self.value}]'

之一Yo's avatar
之一Yo 已提交
225 226 227 228 229 230 231 232

class OptionsConfigItem(ConfigItem):
    """ Config item with options """

    @property
    def options(self):
        return self.validator.options

之一Yo's avatar
之一Yo 已提交
233
    def __str__(self):
之一Yo's avatar
之一Yo 已提交
234 235
        return f'{self.__class__.__name__}[options={self.options}, value={self.value}]'

之一Yo's avatar
之一Yo 已提交
236 237 238 239

class ColorConfigItem(ConfigItem):
    """ Color config item """

之一Yo's avatar
之一Yo 已提交
240
    def __init__(self, group, name, default, restart=False):
之一Yo's avatar
之一Yo 已提交
241 242 243
        super().__init__(group, name, QColor(default), ColorValidator(default),
                         ColorSerializer(), restart)

之一Yo's avatar
之一Yo 已提交
244
    def __str__(self):
之一Yo's avatar
之一Yo 已提交
245
        return f'{self.__class__.__name__}[value={self.value.name()}]'
之一Yo's avatar
之一Yo 已提交
246 247


之一Yo's avatar
之一Yo 已提交
248
class QConfig(QObject):
之一Yo's avatar
之一Yo 已提交
249 250
    """ Config of app """

之一Yo's avatar
之一Yo 已提交
251
    appRestartSig = pyqtSignal()
之一Yo's avatar
之一Yo 已提交
252 253

    themeMode = OptionsConfigItem(
254
        "MainWindow", "ThemeMode", Theme.AUTO, OptionsValidator(Theme), EnumSerializer(Theme), restart=True)
之一Yo's avatar
之一Yo 已提交
255 256

    def __init__(self):
之一Yo's avatar
之一Yo 已提交
257 258
        super().__init__()
        self.file = Path("config/config.json")
259
        self._theme = Theme.LIGHT
之一Yo's avatar
之一Yo 已提交
260
        self._cfg = self
之一Yo's avatar
之一Yo 已提交
261

之一Yo's avatar
之一Yo 已提交
262 263
    def get(self, item):
        """ get the value of config item """
之一Yo's avatar
之一Yo 已提交
264 265
        return item.value

之一Yo's avatar
之一Yo 已提交
266 267
    def set(self, item, value):
        """ set the value of config item """
之一Yo's avatar
之一Yo 已提交
268 269 270 271
        if item.value == value:
            return

        item.value = value
之一Yo's avatar
之一Yo 已提交
272 273 274 275
        self.save()

        if item.restart:
            self._cfg.appRestartSig.emit()
之一Yo's avatar
之一Yo 已提交
276

之一Yo's avatar
之一Yo 已提交
277
    def toDict(self, serialize=True):
之一Yo's avatar
之一Yo 已提交
278 279
        """ convert config items to `dict` """
        items = {}
之一Yo's avatar
之一Yo 已提交
280 281
        for name in dir(self._cfg.__class__):
            item = getattr(self._cfg.__class__, name)
之一Yo's avatar
之一Yo 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
            if not isinstance(item, ConfigItem):
                continue

            value = item.serialize() if serialize else item.value
            if not items.get(item.group):
                if not item.name:
                    items[item.group] = value
                else:
                    items[item.group] = {}

            if item.name:
                items[item.group][item.name] = value

        return items

之一Yo's avatar
之一Yo 已提交
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
    def save(self):
        self._cfg.file.parent.mkdir(parents=True, exist_ok=True)
        with open(self._cfg.file, "w", encoding="utf-8") as f:
            json.dump(self._cfg.toDict(), f, ensure_ascii=False, indent=4)

    @exceptionHandler()
    def load(self, file=None, config=None):
        """ load config

        Parameters
        ----------
        file: str or Path
            the path of json config file

        config: Config
            config object to be initialized
        """
        if isinstance(config, QConfig):
            self._cfg = config
之一Yo's avatar
之一Yo 已提交
316

之一Yo's avatar
之一Yo 已提交
317 318
        if isinstance(file, (str, Path)):
            self._cfg.file = Path(file)
之一Yo's avatar
之一Yo 已提交
319 320

        try:
之一Yo's avatar
之一Yo 已提交
321
            with open(self._cfg.file, encoding="utf-8") as f:
之一Yo's avatar
之一Yo 已提交
322 323 324 325 326 327
                cfg = json.load(f)
        except:
            cfg = {}

        # map config items'key to item
        items = {}
之一Yo's avatar
之一Yo 已提交
328 329
        for name in dir(self._cfg.__class__):
            item = getattr(self._cfg.__class__, name)
之一Yo's avatar
之一Yo 已提交
330 331 332 333 334 335 336 337 338 339 340 341 342
            if isinstance(item, ConfigItem):
                items[item.key] = item

        # update the value of config item
        for k, v in cfg.items():
            if not isinstance(v, dict) and items.get(k) is not None:
                items[k].deserializeFrom(v)
            elif isinstance(v, dict):
                for key, value in v.items():
                    key = k + "." + key
                    if items.get(key) is not None:
                        items[key].deserializeFrom(value)

343 344 345 346 347 348
        if self.get(self.themeMode) == Theme.AUTO:
            theme = darkdetect.theme()
            if theme:
                self._cfg._theme = Theme(theme)
            else:
                self._cfg._theme = Theme.LIGHT
之一Yo's avatar
之一Yo 已提交
349
        else:
350
            self._cfg._theme = self.get(self.themeMode)
之一Yo's avatar
之一Yo 已提交
351 352 353

    @property
    def theme(self):
354 355
        """ get theme mode, can be `Theme.Light` or `Theme.Dark` """
        return self._cfg._theme
之一Yo's avatar
之一Yo 已提交
356 357


之一Yo's avatar
之一Yo 已提交
358
qconfig = QConfig()
359 360 361 362 363


def isDarkTheme():
    """ whether the theme is dark mode """
    return qconfig.theme == Theme.DARK