summaryrefslogtreecommitdiff
path: root/reconfigure/parsers/shell.py
blob: c151a64043be790b4c85bfe8f0c3909daf42d07e (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
from reconfigure.nodes import *
from reconfigure.parsers import BaseParser


class ShellParser (BaseParser):
    """
    A parser for shell scripts with variables
    """

    def __init__(self, *args, **kwargs):
        self.comment = '#'
        self.continuation = '\\'
        BaseParser.__init__(self, *args, **kwargs)

    def parse(self, content):
        rawlines = content.splitlines()
        lines = []
        while rawlines:
            l = rawlines.pop(0).strip()
            while self.continuation and rawlines and l.endswith(self.continuation):
                l = l[:-len(self.continuation)]
                l += rawlines.pop(0)
            lines.append(l)

        root = RootNode()
        last_comment = None
        for line in lines:
            line = line.strip()
            if line:
                if line.startswith(self.comment):
                    c = line.strip(self.comment).strip()
                    if last_comment:
                        last_comment += '\n' + c
                    else:
                        last_comment = c
                    continue
                if len(line) == 0:
                    continue

                name, value = line.split('=', 1)
                comment = None
                if '#' in value:
                    value, comment = value.split('#', 1)
                    last_comment = (last_comment or '') + comment.strip()
                node = PropertyNode(name.strip(), value.strip().strip('"'))
                if last_comment:
                    node.comment = last_comment
                    last_comment = None
                root.append(node)
        return root

    def stringify(self, tree):
        r = ''
        for node in tree.children:
            if node.comment and '\n' in node.comment:
                r += '\n' + ''.join('# %s\n' % x for x in node.comment.splitlines())
            r += '%s="%s"' % (node.name, node.value)
            if node.comment and not '\n' in node.comment:
                r += ' # %s' % node.comment
            r += '\n'
        return r