-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsimple_parser.py
executable file
·295 lines (258 loc) · 9.84 KB
/
simple_parser.py
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
#!/usr/bin/env python
'''Module that defines a parser class for block-structured data, as well as
auxilary classes for exceptions. Can be called directly to perform
unit tests'''
import io
import re
import sys
import unittest
import parser_errors as err
import block
class BlockParser:
'''Parser class to parse file in block format'''
def __init__(self):
'''constructor, initializes parser and resets it'''
self._states = ['in_block', 'not_in_block', 'error']
self._comment_pattern = re.compile(r'\s*#.*')
self._block_begin_pattern = re.compile(r'\s*begin\s+(\w+)')
self._block_end_pattern = re.compile(r'\s*end\s+(\w+)')
self._state = None
self._current_block = None
self._blocks = None
self._match = None
self._line_nr = None
self._line_int = 10
self._verbose = 0
self._reset()
def set_verbosity(self, verbosity_level):
'''set verbosity level of the parser, useful for debugging
level 0: no feedback
level 1: print line numbers parsed
level 2: show state changes as well'''
self._verbose = verbosity_level
def is_verbose(self):
'''return True if the parser should be verbose, False otherwise
(True for levels greater than 0'''
return self._verbose > 0
def is_trace(self):
'''return True if the parser should print trace information,
False otherwise (True for levels greater than 1'''
return self._verbose > 1
def set_line_interval(self, skip_lines):
'''set the number of lines interval for verbose output'''
self._line_int = skip_lines
def get_line_interval(self):
'''returns the number of lines interval for verbose output'''
return self._line_int
def _reset(self):
'''internal function to reset the parser between calls to the parse
method'''
self._set_state('not_in_block')
self._current_block = None
self._blocks = []
self._match = None
self._line_nr = 0
def _is_in_state(self, state):
'''checks whether the parser's current state is the given state'''
return state == self.get_state()
def get_state(self):
'''return the parser's current state'''
return self._state
def _set_state(self, new_state):
'''set the parser's state, after checking it is valid'''
if self.is_trace():
sys.stderr.write(
'change state from {0} to {1}\n'.format(
self._state, new_state))
if new_state in self._states:
self._state = new_state
else:
raise err.UnknownStateError(new_state)
def _is_begin_block(self, line):
'''checks whether this is a line indicating the beginning of a
block, if so, temporarilly store the match object'''
self._match = self._block_begin_pattern.match(line)
return self._match is not None
def _is_end_block(self, line):
'''checks whether this is a line indicating the end of a block,
if so, temporarilly store the match object'''
self._match = self._block_end_pattern.match(line)
return self._match is not None
def _preprocess(self, line):
'''takes a line, strips leading and trailing whitespace, and removes
comments'''
return self._comment_pattern.sub('', line.strip())
def _end_matches_begin(self):
'''returns true if begin and end block match, false otherwise'''
return self._match.group(1) == self._current_block.get_name()
def _init_block(self):
'''creates a new block'''
self._current_block = block.Block(self._match.group(1))
self._match = None
def _is_data(self, line):
'''returns true if the line contains data, false otherwise'''
return len(line) > 0
def _add_data(self, line):
'''add given line as data to the current block'''
self._current_block.add_data(line)
def _finish_block(self):
'''adds the block to the list of blocks, and resets current block'''
self._blocks.append(self._current_block)
self._current_block = None
self._match = None
def get_line_nr(self):
'''return the line number the parser has reached in the file'''
return self._line_nr
def _incr_line_nr(self):
'''incredment the current line number'''
self._line_nr = self._line_nr + 1
if self.is_verbose() and self._line_nr % self._line_int == 0:
sys.stderr.write('parsing line {0}\n'.format(self._line_nr))
def get_blocks(self):
'''returns the blocks that have been parsed, can be used upon a
parse error to retrieve those blocks that were successfully
parsed before the error occurred'''
return self._blocks
def parse(self, block_file):
'''takes a file name and opens the correspoding file to parse it,
returns a list of blocks contained in the file'''
self._reset()
for line in block_file:
self._incr_line_nr()
line = self._preprocess(line)
if self._is_in_state('in_block'):
if self._is_begin_block(line):
raise err.NestedBlocksError(self)
elif self._is_end_block(line):
if self._end_matches_begin():
self._finish_block()
self._set_state('not_in_block')
else:
raise err.NonMatchingBlockDelimitersError(self)
elif self._is_data(line):
self._add_data(line)
elif self._is_in_state('not_in_block'):
if self._is_begin_block(line):
self._init_block()
self._set_state('in_block')
elif self._is_end_block(line):
raise err.DanglingEndBlockError(self)
else:
raise err.UnknownStateError(self.get_state())
if self._is_in_state('in_block'):
raise err.NonClosedBlockError(self)
return self.get_blocks()
class ParserTest(unittest.TestCase):
'''Tests for the parser class'''
def test_constructor(self):
'''create a parser, check initial state'''
parser = BlockParser()
self.assertEqual(parser.get_line_nr(), 0)
self.assertEqual(parser.get_state(), 'not_in_block')
self.assertEqual(parser.get_blocks(), [])
def test_parse_blocks(self):
'''parse data from two blocks and check'''
data = '''
Some initial text,
on two lines.
begin b1
0.31
0.21 # this is inline comment
0.41
end b1
This is just some text
begin b2
0.42
# this is a comment
0.22
0.12
0.32
end b2
# some final comments
and some ordinary text.
'''
block_file = io.StringIO(data)
parser = BlockParser()
blocks = parser.parse(block_file)
self.assertEqual(len(blocks), 2)
self.assertEqual(blocks[0].get_name(), 'b1')
self.assertEqual(blocks[1].get_name(), 'b2')
self.assertEqual(len(blocks[0].get_data()), 3)
self.assertEqual(len(blocks[1].get_data()), 4)
self.assertEqual(blocks[0].get_data(),
['0.31', '0.21', '0.41'])
self.assertEqual(blocks[1].get_data(),
['0.42', '0.22', '0.12', '0.32'])
def test_processing(self):
'''parse a block, and test sorting of data'''
data = '''
begin b1
0.31
0.21
0.41
end b1'''
block_file = io.StringIO(data)
parser = BlockParser()
blocks = parser.parse(block_file)
list(map(lambda x: x.sort_data(), blocks))
self.assertEqual(len(blocks), 1)
self.assertEqual(blocks[0].get_name(), 'b1')
self.assertEqual(blocks[0].get_data(),
['0.21', '0.31', '0.41'])
def test_nested_blocks(self):
'''parse nested blocks, check for exception'''
data = '''
begin b1
0.31
0.21
begin b2
0.42
0.22
0.12
0.32
end b2
0.41
end b1
'''
block_file = io.StringIO(data)
parser = BlockParser()
with self.assertRaises(err.NestedBlocksError):
parser.parse(block_file)
def test_nonmatching_begin_end(self):
'''parse non-matching begin/end blocks, check for exception'''
data = '''
begin b1
0.31
0.21
end b2
'''
block_file = io.StringIO(data)
parser = BlockParser()
with self.assertRaises(err.NonMatchingBlockDelimitersError):
parser.parse(block_file)
def test_dangling_end(self):
'''parse dangling end blocks, check for exception'''
data = '''
begin b1
0.31
0.21
end b1
end b2
'''
block_file = io.StringIO(data)
parser = BlockParser()
with self.assertRaises(err.DanglingEndBlockError):
parser.parse(block_file)
def test_nonclosed_block(self):
'''parse missing end block, check for exception'''
data = '''
begin b1
0.31
0.21
'''
block_file = io.StringIO(data)
parser = BlockParser()
with self.assertRaises(err.NonClosedBlockError):
parser.parse(block_file)
if __name__ == '__main__':
unittest.main()