mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 20:44:50 +00:00
189 lines
6.8 KiB
Python
189 lines
6.8 KiB
Python
#
|
|
# config.py
|
|
#
|
|
# Copyright (C) 2007 Andrew Resch ('andar') <andrewresch@gmail.com>
|
|
#
|
|
# Deluge is free software.
|
|
#
|
|
# You may redistribute it and/or modify it under the terms of the
|
|
# GNU General Public License, as published by the Free Software
|
|
# Foundation; either version 3 of the License, or (at your option)
|
|
# any later version.
|
|
#
|
|
# deluge is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
# See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with deluge. If not, write to:
|
|
# The Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor
|
|
# Boston, MA 02110-1301, USA.
|
|
#
|
|
# In addition, as a special exception, the copyright holders give
|
|
# permission to link the code of portions of this program with the OpenSSL
|
|
# library.
|
|
# You must obey the GNU General Public License in all respects for all of
|
|
# the code used other than OpenSSL. If you modify file(s) with this
|
|
# exception, you may extend this exception to your version of the file(s),
|
|
# but you are not obligated to do so. If you do not wish to do so, delete
|
|
# this exception statement from your version. If you delete this exception
|
|
# statement from all source files in the program, then also delete it here.
|
|
|
|
"""Configuration class used to access/create/modify configuration files."""
|
|
|
|
import cPickle
|
|
import os.path
|
|
|
|
import gobject
|
|
import deluge.common
|
|
from deluge.log import LOG as log
|
|
|
|
class Config:
|
|
"""This class is used to access configuration files."""
|
|
|
|
def __init__(self, filename, defaults=None, config_dir=None):
|
|
log.debug("Config created with filename: %s", filename)
|
|
log.debug("Config defaults: %s", defaults)
|
|
self.config = {}
|
|
self.previous_config = {}
|
|
self.set_functions = {}
|
|
self._change_callback = None
|
|
|
|
# If defaults is not None then we need to use "defaults".
|
|
if defaults != None:
|
|
self.config = defaults
|
|
|
|
# Load the config from file in the config_dir
|
|
if config_dir == None:
|
|
self.config_file = deluge.common.get_default_config_dir(filename)
|
|
else:
|
|
self.config_file = os.path.join(config_dir, filename)
|
|
|
|
self.load(self.config_file)
|
|
# Save
|
|
self.save()
|
|
|
|
def __del__(self):
|
|
self.save()
|
|
|
|
def load(self, filename=None):
|
|
"""Load a config file either by 'filename' or the filename set during
|
|
construction of this object."""
|
|
# Use self.config_file if filename is None
|
|
if filename is None:
|
|
filename = self.config_file
|
|
try:
|
|
# Un-pickle the file and update the config dictionary
|
|
pkl_file = open(filename, "rb")
|
|
filedump = cPickle.load(pkl_file)
|
|
self.config.update(filedump)
|
|
pkl_file.close()
|
|
except IOError:
|
|
log.warning("IOError: Unable to load file '%s'", filename)
|
|
except EOFError:
|
|
pkl_file.close()
|
|
|
|
def save(self, filename=None):
|
|
"""Save configuration to either 'filename' or the filename set during
|
|
construction of this object."""
|
|
# Saves the config dictionary
|
|
if filename is None:
|
|
filename = self.config_file
|
|
# Check to see if the current config differs from the one on disk
|
|
# We will only write a new config file if there is a difference
|
|
try:
|
|
pkl_file = open(filename, "rb")
|
|
filedump = cPickle.load(pkl_file)
|
|
pkl_file.close()
|
|
if filedump == self.config:
|
|
# The config has not changed so lets just return
|
|
return
|
|
except (EOFError, IOError):
|
|
log.warning("IOError: Unable to open file: '%s'", filename)
|
|
|
|
try:
|
|
pkl_file = open(filename, "wb")
|
|
cPickle.dump(self.config, pkl_file)
|
|
pkl_file.close()
|
|
except IOError:
|
|
log.warning("IOError: Unable to save file '%s'", filename)
|
|
|
|
def set(self, key, value):
|
|
"""Set the 'key' with 'value'."""
|
|
# Sets the "key" with "value" in the config dict
|
|
if self.config[key] == value:
|
|
return
|
|
|
|
oldtype, newtype = type(self.config[key]), type(value)
|
|
|
|
if value is not None and oldtype != type(None) and oldtype != newtype:
|
|
try:
|
|
value = oldtype(value)
|
|
except ValueError:
|
|
log.warning("Type '%s' invalid for '%s'", newtype, key)
|
|
return
|
|
|
|
log.debug("Setting '%s' to %s of %s", key, value, oldtype)
|
|
|
|
# Make a copy of the current config prior to changing it
|
|
self.previous_config = self.config.copy()
|
|
self.config[key] = value
|
|
# Run the set_function for this key if any
|
|
try:
|
|
gobject.idle_add(self.set_functions[key], key, value)
|
|
except KeyError:
|
|
pass
|
|
try:
|
|
gobject.idle_add(self._change_callback, key, value)
|
|
except:
|
|
pass
|
|
|
|
def get(self, key):
|
|
"""Get the value of 'key'. If it is an invalid key then get() will
|
|
return None."""
|
|
# Attempts to get the "key" value and returns None if the key is
|
|
# invalid
|
|
try:
|
|
value = self.config[key]
|
|
log.debug("Getting '%s' as %s of %s", key, value, type(value))
|
|
return value
|
|
except KeyError:
|
|
log.warning("Key does not exist, returning None")
|
|
return None
|
|
|
|
def get_config(self):
|
|
"""Returns the entire configuration as a dictionary."""
|
|
return self.config
|
|
|
|
def get_previous_config(self):
|
|
"""Returns the config prior to the last set()"""
|
|
return self.previous_config
|
|
|
|
def register_change_callback(self, callback):
|
|
"""Registers a callback that will be called when a value is changed"""
|
|
self._change_callback = callback
|
|
|
|
def register_set_function(self, key, function, apply_now=True):
|
|
"""Register a function to be run when a config value changes."""
|
|
log.debug("Registering function for %s key..", key)
|
|
self.set_functions[key] = function
|
|
# Run the function now if apply_now is set
|
|
if apply_now:
|
|
self.set_functions[key](key, self.config[key])
|
|
return
|
|
|
|
def apply_all(self):
|
|
"""Runs all set functions"""
|
|
log.debug("Running all set functions..")
|
|
for key in self.set_functions.keys():
|
|
self.set_functions[key](key, self.config[key])
|
|
|
|
def __getitem__(self, key):
|
|
return self.config[key]
|
|
|
|
def __setitem__(self, key, value):
|
|
self.set(key, value)
|
|
|