forked from google/textfsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtextfsm.py
executable file
·1082 lines (837 loc) · 31.8 KB
/
textfsm.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/python
#
# Copyright 2010 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
"""Template based text parser.
This module implements a parser, intended to be used for converting
human readable text, such as command output from a router CLI, into
a list of records, containing values extracted from the input text.
A simple template language is used to describe a state machine to
parse a specific type of text input, returning a record of values
for each input entity.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
__version__ = '0.4.1'
import getopt
import inspect
import re
import string
import sys
class Error(Exception):
"""Base class for errors."""
class Usage(Exception):
"""Error in command line execution."""
class TextFSMError(Error):
"""Error in the FSM state execution."""
class TextFSMTemplateError(Error):
"""Errors while parsing templates."""
# The below exceptions are internal state change triggers
# and not used as Errors.
class FSMAction(Exception):
"""Base class for actions raised with the FSM."""
class SkipRecord(FSMAction):
"""Indicate a record is to be skipped."""
class SkipValue(FSMAction):
"""Indicate a value is to be skipped."""
class TextFSMOptions(object):
"""Class containing all valid TextFSMValue options.
Each nested class here represents a TextFSM option. The format
is "option<name>".
Each class may override any of the methods inside the OptionBase class.
A user of this module can extend options by subclassing
TextFSMOptionsBase, adding the new option class(es), then passing
that new class to the TextFSM constructor with the 'option_class'
argument.
"""
class OptionBase(object):
"""Factory methods for option class.
Attributes:
value: A TextFSMValue, the parent Value.
"""
def __init__(self, value):
self.value = value
@property
def name(self):
return self.__class__.__name__.replace('option', '')
def OnCreateOptions(self):
"""Called after all options have been parsed for a Value."""
def OnClearVar(self):
"""Called when value has been cleared."""
def OnClearAllVar(self):
"""Called when a value has clearalled."""
def OnAssignVar(self):
"""Called when a matched value is being assigned."""
def OnGetValue(self):
"""Called when the value name is being requested."""
def OnSaveRecord(self):
"""Called just prior to a record being committed."""
@classmethod
def ValidOptions(cls):
"""Returns a list of valid option names."""
valid_options = []
for obj_name in dir(cls):
obj = getattr(cls, obj_name)
if inspect.isclass(obj) and issubclass(obj, cls.OptionBase):
valid_options.append(obj_name)
return valid_options
@classmethod
def GetOption(cls, name):
"""Returns the class of the requested option name."""
return getattr(cls, name)
class Required(OptionBase):
"""The Value must be non-empty for the row to be recorded."""
def OnSaveRecord(self):
if not self.value.value:
raise SkipRecord
class Filldown(OptionBase):
"""Value defaults to the previous line's value."""
def OnCreateOptions(self):
self._myvar = None
def OnAssignVar(self):
self._myvar = self.value.value
def OnClearVar(self):
self.value.value = self._myvar
def OnClearAllVar(self):
self._myvar = None
class Fillup(OptionBase):
"""Like Filldown, but upwards until it finds a non-empty entry."""
def OnAssignVar(self):
# If value is set, copy up the results table, until we
# see a set item.
if self.value.value:
# Get index of relevant result column.
value_idx = self.value.fsm.values.index(self.value)
# Go up the list from the end until we see a filled value.
# pylint: disable=protected-access
for result in reversed(self.value.fsm._result):
if result[value_idx]:
# Stop when a record has this column already.
break
# Otherwise set the column value.
result[value_idx] = self.value.value
class Key(OptionBase):
"""Value constitutes part of the Key of the record."""
class List(OptionBase):
"""
Value takes the form of a list.
If the value regex contains nested match groups in the form (?P<name>regex),
instead of adding a string to the list, we add a dictionary of the groups.
Eg.
Value List ((?P<name>\w+)\s+(?P<age>\d+)) would create results like [{'name': 'Bob', 'age': 32}]
Do not give nested groups the same name as other values in the template.
"""
def OnCreateOptions(self):
self.OnClearAllVar()
def OnAssignVar(self):
# Nested matches will have more than one match group
if self.value.compiled_regex.groups > 1:
match = self.value.compiled_regex.match(self.value.value)
else:
match = None
# If the List-value regex has match-groups defined, add the resulting dict to the list
# Otherwise, add the string that was matched
if match and match.groupdict():
self._value.append(match.groupdict())
else:
self._value.append(self.value.value)
def OnClearVar(self):
if 'Filldown' not in self.value.OptionNames():
self._value = []
def OnClearAllVar(self):
self._value = []
def OnSaveRecord(self):
self.value.value = list(self._value)
class TextFSMValue(object):
"""A TextFSM value.
A value has syntax like:
'Value Filldown,Required helloworld (.*)'
Where 'Value' is a keyword.
'Filldown' and 'Required' are options.
'helloworld' is the value name.
'(.*) is the regular expression to match in the input data.
Attributes:
max_name_len: (int), maximum character length os a variable name.
name: (str), Name of the value.
options: (list), A list of current Value Options.
regex: (str), Regex which the value is matched on.
template: (str), regexp with named groups added.
fsm: A TextFSMBase(), the containing FSM.
value: (str), the current value.
"""
# The class which contains valid options.
def __init__(self, fsm=None, max_name_len=48, options_class=None):
"""Initialise a new TextFSMValue."""
self.max_name_len = max_name_len
self.name = None
self.options = []
self.regex = None
self.value = None
self.fsm = fsm
self._options_cls = options_class
def AssignVar(self, value):
"""Assign a value to this Value."""
self.value = value
# Call OnAssignVar on options.
_ = [option.OnAssignVar() for option in self.options]
def ClearVar(self):
"""Clear this Value."""
self.value = None
# Call OnClearVar on options.
_ = [option.OnClearVar() for option in self.options]
def ClearAllVar(self):
"""Clear this Value."""
self.value = None
# Call OnClearAllVar on options.
_ = [option.OnClearAllVar() for option in self.options]
def Header(self):
"""Fetch the header name of this Value."""
# Call OnGetValue on options.
_ = [option.OnGetValue() for option in self.options]
return self.name
def OptionNames(self):
"""Returns a list of option names for this Value."""
return [option.name for option in self.options]
def Parse(self, value):
"""Parse a 'Value' declaration.
Args:
value: String line from a template file, must begin with 'Value '.
Raises:
TextFSMTemplateError: Value declaration contains an error.
"""
value_line = value.split(' ')
if len(value_line) < 3:
raise TextFSMTemplateError('Expect at least 3 tokens on line.')
if not value_line[2].startswith('('):
# Options are present
options = value_line[1]
for option in options.split(','):
self._AddOption(option)
# Call option OnCreateOptions callbacks
_ = [option.OnCreateOptions() for option in self.options]
self.name = value_line[2]
self.regex = ' '.join(value_line[3:])
else:
# There were no valid options, so there are no options.
# Treat this argument as the name.
self.name = value_line[1]
self.regex = ' '.join(value_line[2:])
if len(self.name) > self.max_name_len:
raise TextFSMTemplateError(
"Invalid Value name '%s' or name too long." % self.name)
if (not re.match(r'^\(.*\)$', self.regex) or
self.regex.count('(') != self.regex.count(')')):
raise TextFSMTemplateError(
"Value '%s' must be contained within a '()' pair." % self.regex)
self.template = re.sub(r'^\(', '(?P<%s>' % self.name, self.regex)
# Compile and store the regex object only on List-type values for use in nested matching
if any(map(lambda x: isinstance(x, TextFSMOptions.List), self.options)):
try:
self.compiled_regex = re.compile(self.regex)
except re.error as e:
raise TextFSMTemplateError(str(e))
def _AddOption(self, name):
"""Add an option to this Value.
Args:
name: (str), the name of the Option to add.
Raises:
TextFSMTemplateError: If option is already present or
the option does not exist.
"""
# Check for duplicate option declaration
if name in [option.name for option in self.options]:
raise TextFSMTemplateError('Duplicate option "%s"' % name)
# Create the option object
try:
option = self._options_cls.GetOption(name)(self)
except AttributeError:
raise TextFSMTemplateError('Unknown option "%s"' % name)
self.options.append(option)
def OnSaveRecord(self):
"""Called just prior to a record being committed."""
_ = [option.OnSaveRecord() for option in self.options]
def __str__(self):
"""Prints out the FSM Value, mimic the input file."""
if self.options:
return 'Value %s %s %s' % (
','.join(self.OptionNames()),
self.name,
self.regex)
else:
return 'Value %s %s' % (self.name, self.regex)
class CopyableRegexObject(object):
"""Like a re.RegexObject, but can be copied."""
# pylint: disable=C6409
def __init__(self, pattern):
self.pattern = pattern
self.regex = re.compile(pattern)
def match(self, *args, **kwargs):
return self.regex.match(*args, **kwargs)
def sub(self, *args, **kwargs):
return self.regex.sub(*args, **kwargs)
def __copy__(self):
return CopyableRegexObject(self.pattern)
def __deepcopy__(self, unused_memo):
return self.__copy__()
class TextFSMRule(object):
"""A rule in each FSM state.
A value has syntax like:
^<regexp> -> Next.Record State2
Where '<regexp>' is a regular expression.
'Next' is a Line operator.
'Record' is a Record operator.
'State2' is the next State.
Attributes:
match: Regex to match this rule.
regex: match after template substitution.
line_op: Operator on input line on match.
record_op: Operator on output record on match.
new_state: Label to jump to on action
regex_obj: Compiled regex for which the rule matches.
line_num: Integer row number of Value.
"""
# Implicit default is '(regexp) -> Next.NoRecord'
MATCH_ACTION = re.compile(r'(?P<match>.*)(\s->(?P<action>.*))')
# The structure to the right of the '->'.
LINE_OP = ('Continue', 'Next', 'Error')
RECORD_OP = ('Clear', 'Clearall', 'Record', 'NoRecord')
# Line operators.
LINE_OP_RE = '(?P<ln_op>%s)' % '|'.join(LINE_OP)
# Record operators.
RECORD_OP_RE = '(?P<rec_op>%s)' % '|'.join(RECORD_OP)
# Line operator with optional record operator.
OPERATOR_RE = r'(%s(\.%s)?)' % (LINE_OP_RE, RECORD_OP_RE)
# New State or 'Error' string.
NEWSTATE_RE = r'(?P<new_state>\w+|\".*\")'
# Compound operator (line and record) with optional new state.
ACTION_RE = re.compile(r'\s+%s(\s+%s)?$' % (OPERATOR_RE, NEWSTATE_RE))
# Record operator with optional new state.
ACTION2_RE = re.compile(r'\s+%s(\s+%s)?$' % (RECORD_OP_RE, NEWSTATE_RE))
# Default operators with optional new state.
ACTION3_RE = re.compile(r'(\s+%s)?$' % (NEWSTATE_RE))
def __init__(self, line, line_num=-1, var_map=None):
"""Initialise a new rule object.
Args:
line: (str), a template rule line to parse.
line_num: (int), Optional line reference included in error reporting.
var_map: Map for template (${var}) substitutions.
Raises:
TextFSMTemplateError: If 'line' is not a valid format for a Value entry.
"""
self.match = ''
self.regex = ''
self.regex_obj = None
self.line_op = '' # Equivalent to 'Next'.
self.record_op = '' # Equivalent to 'NoRecord'.
self.new_state = '' # Equivalent to current state.
self.line_num = line_num
line = line.strip()
if not line:
raise TextFSMTemplateError('Null data in FSMRule. Line: %s'
% self.line_num)
# Is there '->' action present.
match_action = self.MATCH_ACTION.match(line)
if match_action:
self.match = match_action.group('match')
else:
self.match = line
# Replace ${varname} entries.
self.regex = self.match
if var_map:
try:
self.regex = string.Template(self.match).substitute(var_map)
except (ValueError, KeyError):
raise TextFSMTemplateError(
"Duplicate or invalid variable substitution: '%s'. Line: %s." %
(self.match, self.line_num))
try:
# Work around a regression in Python 2.6 that makes RE Objects uncopyable.
self.regex_obj = CopyableRegexObject(self.regex)
except re.error:
raise TextFSMTemplateError(
"Invalid regular expression: '%s'. Line: %s." %
(self.regex, self.line_num))
# No '->' present, so done.
if not match_action:
return
# Attempt to match line.record operation.
action_re = self.ACTION_RE.match(match_action.group('action'))
if not action_re:
# Attempt to match record operation.
action_re = self.ACTION2_RE.match(match_action.group('action'))
if not action_re:
# Math implicit defaults with an optional new state.
action_re = self.ACTION3_RE.match(match_action.group('action'))
if not action_re:
# Last attempt, match an optional new state only.
raise TextFSMTemplateError("Badly formatted rule '%s'. Line: %s." %
(line, self.line_num))
# We have an Line operator.
if 'ln_op' in action_re.groupdict() and action_re.group('ln_op'):
self.line_op = action_re.group('ln_op')
# We have a record operator.
if 'rec_op' in action_re.groupdict() and action_re.group('rec_op'):
self.record_op = action_re.group('rec_op')
# A new state was specified.
if 'new_state' in action_re.groupdict() and action_re.group('new_state'):
self.new_state = action_re.group('new_state')
# Only 'Next' (or implicit 'Next') line operator can have a new_state.
# But we allow error to have one as a warning message so we are left
# checking that Continue does not.
if self.line_op == 'Continue' and self.new_state:
raise TextFSMTemplateError(
"Action '%s' with new state %s specified. Line: %s."
% (self.line_op, self.new_state, self.line_num))
# Check that an error message is present only with the 'Error' operator.
if self.line_op != 'Error' and self.new_state:
if not re.match(r'\w+', self.new_state):
raise TextFSMTemplateError(
'Alphanumeric characters only in state names. Line: %s.'
% (self.line_num))
def __str__(self):
"""Prints out the FSM Rule, mimic the input file."""
operation = ''
if self.line_op and self.record_op:
operation = '.'
operation = '%s%s%s' % (self.line_op, operation, self.record_op)
if operation and self.new_state:
new_state = ' ' + self.new_state
else:
new_state = self.new_state
# Print with implicit defaults.
if not (operation or new_state):
return ' %s' % self.match
# Non defaults.
return ' %s -> %s%s' % (self.match, operation, new_state)
class TextFSM(object):
"""Parses template and creates Finite State Machine (FSM).
Attributes:
states: (str), Dictionary of FSMState objects.
values: (str), List of FSMVariables.
value_map: (map), For substituting values for names in the expressions.
header: Ordered list of values.
state_list: Ordered list of valid states.
"""
# Variable and State name length.
MAX_NAME_LEN = 48
comment_regex = re.compile(r'^\s*#')
state_name_re = re.compile(r'^(\w+)$')
_DEFAULT_OPTIONS = TextFSMOptions
def __init__(self, template, options_class=_DEFAULT_OPTIONS):
"""Initialises and also parses the template file."""
self._options_cls = options_class
self.states = {}
# Track order of state definitions.
self.state_list = []
self.values = []
self.value_map = {}
# Track where we are for error reporting.
self._line_num = 0
# Run FSM in this state
self._cur_state = None
# Name of the current state.
self._cur_state_name = None
# Read and parse FSM definition.
# Restore the file pointer once done.
try:
self._Parse(template)
finally:
template.seek(0)
# Initialise starting data.
self.Reset()
def __str__(self):
"""Returns the FSM template, mimic the input file."""
result = '\n'.join([str(value) for value in self.values])
result += '\n'
for state in self.state_list:
result += '\n%s\n' % state
state_rules = '\n'.join([str(rule) for rule in self.states[state]])
if state_rules:
result += state_rules + '\n'
return result
def Reset(self):
"""Preserves FSM but resets starting state and current record."""
# Current state is Start state.
self._cur_state = self.states['Start']
self._cur_state_name = 'Start'
# Clear table of results and current record.
self._result = []
self._ClearAllRecord()
@property
def header(self):
"""Returns header."""
return self._GetHeader()
def _GetHeader(self):
"""Returns header."""
header = []
for value in self.values:
try:
header.append(value.Header())
except SkipValue:
continue
return header
def _GetValue(self, name):
"""Returns the TextFSMValue object natching the requested name."""
for value in self.values:
if value.name == name:
return value
def _AppendRecord(self):
"""Adds current record to result if well formed."""
# If no Values then don't output.
if not self.values:
return
cur_record = []
for value in self.values:
try:
value.OnSaveRecord()
except SkipRecord:
self._ClearRecord()
return
except SkipValue:
continue
# Build current record into a list.
cur_record.append(value.value)
# If no Values in template or whole record is empty then don't output.
if len(cur_record) == (cur_record.count(None) + cur_record.count([])):
return
# Replace any 'None' entries with null string ''.
while None in cur_record:
cur_record[cur_record.index(None)] = ''
self._result.append(cur_record)
self._ClearRecord()
def _Parse(self, template):
"""Parses template file for FSM structure.
Args:
template: Valid template file.
Raises:
TextFSMTemplateError: If template file syntax is invalid.
"""
if not template:
raise TextFSMTemplateError('Null template.')
# Parse header with Variables.
self._ParseFSMVariables(template)
# Parse States.
while self._ParseFSMState(template):
pass
# Validate destination states.
self._ValidateFSM()
def _ParseFSMVariables(self, template):
"""Extracts Variables from start of template file.
Values are expected as a contiguous block at the head of the file.
These will be line separated from the State definitions that follow.
Args:
template: Valid template file, with Value definitions at the top.
Raises:
TextFSMTemplateError: If syntax or semantic errors are found.
"""
self.values = []
for line in template:
self._line_num += 1
line = line.rstrip()
# Blank line signifies end of Value definitions.
if not line:
return
# Skip commented lines.
if self.comment_regex.match(line):
continue
if line.startswith('Value '):
try:
value = TextFSMValue(
fsm=self, max_name_len=self.MAX_NAME_LEN,
options_class=self._options_cls)
value.Parse(line)
except TextFSMTemplateError as error:
raise TextFSMTemplateError('%s Line %s.' % (error, self._line_num))
if value.name in self.header:
raise TextFSMTemplateError(
"Duplicate declarations for Value '%s'. Line: %s."
% (value.name, self._line_num))
try:
self._ValidateOptions(value)
except TextFSMTemplateError as error:
raise TextFSMTemplateError('%s Line %s.' % (error, self._line_num))
self.values.append(value)
self.value_map[value.name] = value.template
# The line has text but without the 'Value ' prefix.
elif not self.values:
raise TextFSMTemplateError('No Value definitions found.')
else:
raise TextFSMTemplateError(
'Expected blank line after last Value entry. Line: %s.'
% (self._line_num))
def _ValidateOptions(self, value):
"""Checks that combination of Options is valid."""
# Always passes in base class.
pass
def _ParseFSMState(self, template):
"""Extracts State and associated Rules from body of template file.
After the Value definitions the remainder of the template is
state definitions. The routine is expected to be called iteratively
until no more states remain - indicated by returning None.
The routine checks that the state names are a well formed string, do
not clash with reserved names and are unique.
Args:
template: Valid template file after Value definitions
have already been read.
Returns:
Name of the state parsed from file. None otherwise.
Raises:
TextFSMTemplateError: If any state definitions are invalid.
"""
if not template:
return
state_name = ''
# Strip off extra white space lines (including comments).
for line in template:
self._line_num += 1
line = line.rstrip()
# First line is state definition
if line and not self.comment_regex.match(line):
# Ensure statename has valid syntax and is not a reserved word.
if (not self.state_name_re.match(line) or
len(line) > self.MAX_NAME_LEN or
line in TextFSMRule.LINE_OP or
line in TextFSMRule.RECORD_OP):
raise TextFSMTemplateError("Invalid state name: '%s'. Line: %s"
% (line, self._line_num))
state_name = line
if state_name in self.states:
raise TextFSMTemplateError("Duplicate state name: '%s'. Line: %s"
% (line, self._line_num))
self.states[state_name] = []
self.state_list.append(state_name)
break
# Parse each rule in the state.
for line in template:
self._line_num += 1
line = line.rstrip()
# Finish rules processing on blank line.
if not line:
break
if self.comment_regex.match(line):
continue
# A rule within a state, starts with whitespace
if not (line.startswith(' ^') or line.startswith('\t^')):
raise TextFSMTemplateError(
"Missing white space or carat ('^') before rule. Line: %s" %
self._line_num)
self.states[state_name].append(
TextFSMRule(line, self._line_num, self.value_map))
return state_name
def _ValidateFSM(self):
"""Checks state names and destinations for validity.
Each destination state must exist, be a valid name and
not be a reserved name.
There must be a 'Start' state and if 'EOF' or 'End' states are specified,
they must be empty.
Returns:
True if FSM is valid.
Raises:
TextFSMTemplateError: If any state definitions are invalid.
"""
# Must have 'Start' state.
if 'Start' not in self.states:
raise TextFSMTemplateError("Missing state 'Start'.")
# 'End/EOF' state (if specified) must be empty.
if self.states.get('End'):
raise TextFSMTemplateError("Non-Empty 'End' state.")
if self.states.get('EOF'):
raise TextFSMTemplateError("Non-Empty 'EOF' state.")
# Remove 'End' state.
if 'End' in self.states:
del self.states['End']
self.state_list.remove('End')
# Ensure jump states are all valid.
for state in self.states:
for rule in self.states[state]:
if rule.line_op == 'Error':
continue
if not rule.new_state or rule.new_state in ('End', 'EOF'):
continue
if rule.new_state not in self.states:
raise TextFSMTemplateError(
"State '%s' not found, referenced in state '%s'" %
(rule.new_state, state))
return True
def ParseText(self, text, eof=True):
"""Passes CLI output through FSM and returns list of tuples.
First tuple is the header, every subsequent tuple is a row.
Args:
text: (str), Text to parse with embedded newlines.
eof: (boolean), Set to False if we are parsing only part of the file.
Suppresses triggering EOF state.
Raises:
TextFSMError: An error occurred within the FSM.
Returns:
List of Lists.
"""
lines = []
if text:
lines = text.splitlines()
for line in lines:
self._CheckLine(line)
if self._cur_state_name in ('End', 'EOF'):
break
if self._cur_state_name != 'End' and 'EOF' not in self.states and eof:
# Implicit EOF performs Next.Record operation.
# Suppressed if Null EOF state is instantiated.
self._AppendRecord()
return self._result
def _CheckLine(self, line):
"""Passes the line through each rule until a match is made.
Args:
line: A string, the current input line.
"""
for rule in self._cur_state:
matched = self._CheckRule(rule, line)
if matched:
for value in matched.groupdict():
self._AssignVar(matched, value)
if self._Operations(rule, line):
# Not a Continue so check for state transition.
if rule.new_state:
if rule.new_state not in ('End', 'EOF'):
self._cur_state = self.states[rule.new_state]
self._cur_state_name = rule.new_state
break
def _CheckRule(self, rule, line):
"""Check a line against the given rule.
This is a separate method so that it can be overridden by
a debugging tool.
Args:
rule: A TextFSMRule(), the rule to check.
line: A str, the line to check.
Returns:
A regex match object.
"""
return rule.regex_obj.match(line)
def _AssignVar(self, matched, value):
"""Assigns variable into current record from a matched rule.
If a record entry is a list then append, otherwise values are replaced.
Args:
matched: (regexp.match) Named group for each matched value.
value: (str) The matched value.
"""
_value = self._GetValue(value)
if _value is not None:
_value.AssignVar(matched.group(value))
def _Operations(self, rule, line):
"""Operators on the data record.
Operators come in two parts and are a '.' separated pair:
Operators that effect the input line or the current state (line_op).
'Next' Get next input line and restart parsing (default).
'Continue' Keep current input line and continue resume parsing.
'Error' Unrecoverable input discard result and raise Error.
Operators that affect the record being built for output (record_op).
'NoRecord' Does nothing (default)
'Record' Adds the current record to the result.
'Clear' Clears non-Filldown data from the record.
'Clearall' Clears all data from the record.
Args:
rule: FSMRule object.
line: A string, the current input line.
Returns:
True if state machine should restart state with new line.
Raises:
TextFSMError: If Error state is encountered.
"""
# First process the Record operators.
if rule.record_op == 'Record':
self._AppendRecord()
elif rule.record_op == 'Clear':
# Clear record.
self._ClearRecord()
elif rule.record_op == 'Clearall':
# Clear all record entries.
self._ClearAllRecord()
# Lastly process line operators.
if rule.line_op == 'Error':
if rule.new_state:
raise TextFSMError('Error: %s. Rule Line: %s. Input Line: %s.'
% (rule.new_state, rule.line_num, line))
raise TextFSMError('State Error raised. Rule Line: %s. Input Line: %s'
% (rule.line_num, line))
elif rule.line_op == 'Continue':
# Continue with current line without returning to the start of the state.
return False
# Back to start of current state with a new line.
return True
def _ClearRecord(self):
"""Remove non 'Filldown' record entries."""
_ = [value.ClearVar() for value in self.values]