~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to lib/appconfig.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Miro - an RSS based video player application
 
2
# Copyright (C) 2005-2010 Participatory Culture Foundation
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
#
 
18
# In addition, as a special exception, the copyright holders give
 
19
# permission to link the code of portions of this program with the OpenSSL
 
20
# library.
 
21
#
 
22
# You must obey the GNU General Public License in all respects for all of
 
23
# the code used other than OpenSSL. If you modify file(s) with this
 
24
# exception, you may extend this exception to your version of the file(s),
 
25
# but you are not obligated to do so. If you do not wish to do so, delete
 
26
# this exception statement from your version. If you delete this exception
 
27
# statement from all source files in the program, then also delete it here.
 
28
 
 
29
"""``miro.appconfig`` -- Contains the AppConfig class, which handles
 
30
holding the values of ``app.config``.
 
31
 
 
32
If Miro is using a theme, then the theme's app.config value overrides
 
33
the default one.
 
34
 
 
35
Most uses of AppConfig will come from the global variable
 
36
``app.configfile``.  This is setup in ``config.load()``.
 
37
"""
 
38
 
 
39
import logging
 
40
import traceback
 
41
 
 
42
from miro import util
 
43
from miro.plat import resources
 
44
 
 
45
class AppConfig(object):
 
46
    def __init__(self, theme=None):
 
47
        self.theme_vars = {}
 
48
 
 
49
        app_config_path = resources.path('app.config')
 
50
        self.default_vars = util.read_simple_config_file(app_config_path)
 
51
 
 
52
        self.load_theme(theme)
 
53
 
 
54
    def load_theme(self, theme):
 
55
        if theme is not None:
 
56
            logging.info("Using theme %s" % theme)
 
57
            theme_app_config = resources.theme_path(theme, 'app.config')
 
58
            try:
 
59
                self.theme_vars = util.read_simple_config_file(theme_app_config)
 
60
            except EnvironmentError:
 
61
                logging.warn("Error loading theme: %s\n%s", 
 
62
                        theme_app_config, traceback.format_exc())
 
63
 
 
64
    def get(self, key, use_theme_data=True):
 
65
        if use_theme_data and key in self.theme_vars:
 
66
            return self.theme_vars[key]
 
67
        else:
 
68
            return self.default_vars[key]
 
69
 
 
70
    def __getitem__(self, key):
 
71
        return self.get(key, use_theme_data=True)
 
72
 
 
73
    def contains(self, key, use_theme_data=True):
 
74
        return ((use_theme_data and key in self.theme_vars) or 
 
75
                (key in self.default_vars))