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
|
import re
from debian_linux.config import ConfigParser, SchemaItemList
class Config(dict):
config_name = "defines"
top_schemas = {
'base': {
'packages': SchemaItemList(),
},
}
package_schemas = {
'base': {
'files': SchemaItemList(),
'files-excluded': SchemaItemList(),
'support': SchemaItemList(),
'usrmovemitigation': SchemaItemList(),
}
}
def __init__(self):
self._read_base()
def _read_base(self):
config = ConfigParser(self.top_schemas)
config.read("debian/config/%s" % self.config_name)
packages = config['base',]['packages']
for section in iter(config):
real = (section[-1],) + section[:-1]
self[real] = config[section]
for package in packages:
self._read_package(package)
def _read_package(self, package):
config = ConfigParser(self.package_schemas)
config.read("debian/config/%s/%s" % (package, self.config_name))
for section in iter(config):
if len(section) > 1:
real = (section[-1], package, '_'.join(section[:-1]))
else:
real = (section[-1], package)
s = self.get(real, {})
s.update(config[section])
self[real] = s
_wildcard_re = re.compile(r'\*\*/|[*?.^$+{}\\\[\]|()]')
_wildcard_map = {
'**/': r'(?:.+/)?',
'*': r'[^/]*',
'?': r'[^/]',
}
# pathlib.Path.match() does *not* support '**', so do our own
# pattern-to-regexp conversion
def pattern_to_re(pattern):
return re.compile(
_wildcard_re.sub(
lambda match: _wildcard_map.get(match.group(0),
'\\' + match.group(0)),
pattern))
|