/usr/lib/python2.7/dist-packages/vamos/Config.py is in undertaker 1.6.1-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 | """vamos - representation of a Configuration"""
# Copyright (C) 2012 Valentin Rothberg <valentinrothberg@googlemail.com>
# Copyright (C) 2014 Stefan Hengelein <stefan.hengelein@fau.de>
#
# 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/>.
class Config(dict):
def __init__(self, path = None):
dict.__init__(self)
if path != None:
self.readConfigFile(path)
def readConfigFile(self, path):
""" Parse the file in path and add all features contained to the config. """
with open(path, 'r') as stream:
for line in stream.readlines():
if line.startswith("CONFIG_"):
line = line.strip("\n")
split = line.split("=")
key = split[0].strip()
value = split[1].strip()
self[key] = value
def valueOf(self, key):
""" Return value of key. If key is not present in the config, None is returned. """
if key in self.keys():
return self[key]
else:
return None
def addFeature(self, key, value):
""" Add feature as key and value to the config. """
self[key] = value
def contains(self, key):
""" Return true if config contains key. """
return key in self.keys()
def conflict(self, other):
"""
Return true if both Configs conflict. Configs conflict if both contain
the same feature with different values.
"""
for key in self.keys():
if other.contains(key):
if self.valueOf(key) != other.valueOf(key):
return True
def getConflicts(self, other):
""" Return a list of conflicting features in both configs. """
res = []
for key in self.keys():
if other.contains(key):
if self.valueOf(key) != other.valueOf(key):
res.append(key)
return res
|