114 lines
3.9 KiB
Python
114 lines
3.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright(C) 2010 Christophe Benz
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, version 3 of the License.
|
|
#
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
from __future__ import with_statement
|
|
|
|
from ConfigParser import RawConfigParser, DEFAULTSECT
|
|
import logging
|
|
import os
|
|
|
|
from weboob.tools.ordereddict import OrderedDict
|
|
from .iconfig import IConfig
|
|
|
|
|
|
__all__ = ['INIConfig']
|
|
|
|
|
|
class INIConfig(IConfig):
|
|
ROOTSECT = 'ROOT'
|
|
|
|
def __init__(self, path):
|
|
self.path = path
|
|
self.values = OrderedDict()
|
|
self.config = RawConfigParser()
|
|
|
|
def load(self, default={}):
|
|
self.values = OrderedDict(default)
|
|
|
|
if os.path.exists(self.path):
|
|
logging.debug(u'Loading application configuration file: %s.' % self.path)
|
|
self.config.read(self.path)
|
|
for section in self.config.sections():
|
|
args = section.split(':')
|
|
if args[0] == self.ROOTSECT:
|
|
args.pop(0)
|
|
for key, value in self.config.items(section):
|
|
self.set(*(args + [key, value]))
|
|
# retro compatibility
|
|
if len(self.config.sections()) == 0:
|
|
first = True
|
|
for key, value in self.config.items(DEFAULTSECT):
|
|
if first:
|
|
logging.warning('The configuration file "%s" uses an old-style' % self.path)
|
|
logging.warning('Please rename the %s section to %s' % (DEFAULTSECT, self.ROOTSECT))
|
|
first = False
|
|
self.set(key, value)
|
|
logging.debug(u'Application configuration file loaded: %s.' % self.path)
|
|
else:
|
|
self.save()
|
|
logging.debug(u'Application configuration file created with default values: %s. '
|
|
'Please customize it.' % self.path)
|
|
return self.values
|
|
|
|
def save(self):
|
|
def save_section(values, root_section=self.ROOTSECT):
|
|
for k, v in values.iteritems():
|
|
if isinstance(v, (int, float, basestring)):
|
|
if not self.config.has_section(root_section):
|
|
self.config.add_section(root_section)
|
|
self.config.set(root_section, k, unicode(v))
|
|
elif isinstance(v, dict):
|
|
new_section = ':'.join((root_section, k)) if (root_section != self.ROOTSECT or k == self.ROOTSECT) else k
|
|
if not self.config.has_section(new_section):
|
|
self.config.add_section(new_section)
|
|
save_section(v, new_section)
|
|
save_section(self.values)
|
|
with open(self.path, 'w') as f:
|
|
self.config.write(f)
|
|
|
|
def get(self, *args, **kwargs):
|
|
default = None
|
|
if 'default' in kwargs:
|
|
default = kwargs['default']
|
|
|
|
v = self.values
|
|
for k in args[:-1]:
|
|
if k in v:
|
|
v = v[k]
|
|
else:
|
|
return default
|
|
try:
|
|
return v[args[-1]]
|
|
except KeyError:
|
|
return default
|
|
|
|
def set(self, *args):
|
|
v = self.values
|
|
for k in args[:-2]:
|
|
if k not in v:
|
|
v[k] = OrderedDict()
|
|
v = v[k]
|
|
v[args[-2]] = args[-1]
|
|
|
|
def delete(self, *args):
|
|
v = self.values
|
|
for k in args[:-1]:
|
|
if k not in v:
|
|
return
|
|
v = v[k]
|
|
v.pop(args[-1], None)
|