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
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from __future__ import absolute_import
from __future__ import unicode_literals
import re
from .base import (
Entry, OffsetComment,
Parser
)
class IniSection(Entry):
'''Entity-like object representing sections in ini files
'''
def __init__(self, ctx, span, val_span):
self.ctx = ctx
self.span = span
self.key_span = self.val_span = val_span
def __repr__(self):
return self.raw_val
class IniParser(Parser):
'''
Parse files of the form:
# initial comment
[cat]
whitespace*
#comment
string=value
...
'''
Comment = OffsetComment
def __init__(self):
self.reComment = re.compile('(?:^[;#][^\n]*\n)*(?:^[;#][^\n]*)', re.M)
self.reSection = re.compile(r'\[(?P<val>.*?)\]', re.M)
self.reKey = re.compile('(?P<key>.+?)=(?P<val>.*)', re.M)
Parser.__init__(self)
def getNext(self, ctx, offset):
contents = ctx.contents
m = self.reSection.match(contents, offset)
if m:
return IniSection(ctx, m.span(), m.span('val'))
return super(IniParser, self).getNext(ctx, offset)
def getJunk(self, ctx, offset, *expressions):
# base.Parser.getNext calls us with self.reKey, self.reComment.
# Add self.reSection to the end-of-junk expressions
expressions = expressions + (self.reSection,)
return super(IniParser, self).getJunk(ctx, offset, *expressions)
|