/usr/share/pyshared/chirpui/config.py is in chirp 0.1.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | #!/usr/bin/python
#
# Copyright 2011 Dan Smith <dsmith@danplanet.com>
#
# 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, either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.
from chirp import platform
from ConfigParser import ConfigParser
import os
class ChirpConfig:
def __init__(self, basepath, name="chirp.config"):
self.__basepath = basepath
self.__name = name
self._default_section = "global"
self.__config = ConfigParser()
cfg = os.path.join(basepath, name)
if os.path.exists(cfg):
self.__config.read(cfg)
def save(self):
cfg = os.path.join(self.__basepath, self.__name)
cfg_file = file(cfg, "w")
self.__config.write(cfg_file)
cfg_file.close()
def get(self, key, section):
if not self.__config.has_section(section):
return None
if not self.__config.has_option(section, key):
return None
return self.__config.get(section, key)
def set(self, key, value, section):
if not self.__config.has_section(section):
self.__config.add_section(section)
self.__config.set(section, key, value)
def is_defined(self, key, section):
return self.__config.has_option(section, key)
class ChirpConfigProxy:
def __init__(self, config, section="global"):
self._config = config
self._section = section
def get(self, key, section=None):
return self._config.get(key, section or self._section)
def set(self, key, value, section=None):
return self._config.set(key, value, section or self._section)
def get_int(self, key, section=None):
try:
return int(self.get(key, section))
except ValueError:
return 0
def set_int(self, key, value, section=None):
if not isinstance(value, int):
raise ValueError("Value is not an integer")
self.set(key, "%i" % value, section)
def get_float(self, key, section=None):
try:
return float(self.get(key, section))
except ValueError:
return 0
def set_float(self, key, value, section=None):
if not isinstance(value, float):
raise ValueError("Value is not an integer")
self.set(key, "%i" % value, section)
def get_bool(self, key, section=None):
return self.get(key, section) == "True"
def set_bool(self, key, value, section=None):
self.set(key, str(bool(value)), section)
def is_defined(self, key, section=None):
return self._config.is_defined(key, section or self._section)
_CONFIG = None
def get(section="global"):
global _CONFIG
p = platform.get_platform()
if not _CONFIG:
_CONFIG = ChirpConfig(p.config_dir())
return ChirpConfigProxy(_CONFIG, section)
|