aboutsummaryrefslogtreecommitdiffstats
path: root/debian/lib/python/debian_linux/kconfig.py
blob: 70668c8e3eff665d7a414be3c2cf073267299b01 (plain)
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
from __future__ import absolute_import

from .utils import SortedDict

__all__ = (
    "KconfigFile",
)


class EntryString(object):
    __slots__ = "name", "value"

    def __init__(self, name, value):
        self.name = name
        self.value = value

    def __str__(self):
        return "CONFIG_%s=%s" % (self.name, self.value)


class EntryTristate(object):
    __slots__ = "name", "value"

    VALUE_NO = 0
    VALUE_YES = 1
    VALUE_MOD = 2

    def __init__(self, name, value=None):
        self.name = name
        if value == 'n' or value is None:
            self.value = self.VALUE_NO
        elif value == 'y':
            self.value = self.VALUE_YES
        elif value == 'm':
            self.value = self.VALUE_MOD

    def __str__(self):
        conf = "CONFIG_%s" % self.name
        if self.value == self.VALUE_NO:
            return "# %s is not set" % conf
        elif self.value == self.VALUE_YES:
            return "%s=y" % conf
        elif self.value == self.VALUE_MOD:
            return "%s=m" % conf


class KconfigFile(SortedDict):
    def __str__(self):
        ret = []
        for i in self.str_iter():
            ret.append(i)
        return '\n'.join(ret) + '\n'

    def read(self, f):
        for line in iter(f.readlines()):
            line = line.strip()
            if line.startswith("CONFIG_"):
                i = line.find('=')
                option = line[7:i]
                value = line[i + 1:]
                self.set(option, value)
            elif line.startswith("# CONFIG_"):
                option = line[9:-11]
                self.set(option, 'n')
            elif line.startswith("#") or not line:
                pass
            else:
                raise RuntimeError("Can't recognize %s" % line)

    def set(self, key, value):
        if value in ('y', 'm', 'n'):
            entry = EntryTristate(key, value)
        else:
            entry = EntryString(key, value)
        self[key] = entry

    def str_iter(self):
        for key, value in self.iteritems():
            yield str(value)