summaryrefslogtreecommitdiffstats
path: root/deluge/ui/coreconfig.py
blob: 1e2927b5ef9059a881216d6b5baa11381e2f334d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#
# Copyright (C) 2008 Andrew Resch <andrewresch@gmail.com>
#
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
# the additional special exception to link portions of this program with the OpenSSL library.
# See LICENSE for more details.
#

import logging

import deluge.component as component
from deluge.ui.client import client

log = logging.getLogger(__name__)


class CoreConfig(component.Component):
    def __init__(self):
        log.debug('CoreConfig init..')
        component.Component.__init__(self, 'CoreConfig')
        self.config = {}

        def on_configvaluechanged_event(key, value):
            self.config[key] = value

        client.register_event_handler(
            'ConfigValueChangedEvent', on_configvaluechanged_event
        )

    def start(self):
        def on_get_config(config):
            self.config = config
            return config

        return client.core.get_config().addCallback(on_get_config)

    def stop(self):
        self.config = {}

    def __contains__(self, key):
        return key in self.config

    def __getitem__(self, key):
        return self.config[key]

    def __setitem__(self, key, value):
        client.core.set_config({key: value})

    def __getattr__(self, attr):
        # We treat this directly interacting with the dictionary
        return getattr(self.config, attr)