-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparser.py
executable file
·763 lines (633 loc) · 30.2 KB
/
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
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
#!/usr/bin/env python
#
# Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
#
# 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.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
import argparse
import copy
import time
from docx import Document
from parser_lib.attributes import Attribute
from parser_lib.class_id import ClassIdList, ClassAccess
from parser_lib.parsed_json import ParsedJson
from parser_lib.parsed_yaml import MetadataYAML
from parser_lib.text import camelcase
from parser_lib.versions import VersionHeading
from preparsed_json import PreParsedJson
#
# This application takes the pre-parsed JSON file and further parses it to output suitable for
# running a code generator with.
#
# The process from scratch is:
#
# 1. Pre-parse the G.988 Word Document via 'preParse.py' to create the 'G.988.Precompiled.json' file
#
# 2. Parse the G.988 JSON via 'parser.py' to create the G.988.Parsed.json file. At this point,
# there is just a minimal fragment 'G.988.augment.yaml' file that really as a little bit of data
#
# 3. Run the 'augmentGenerator.py' file to create an 'augmented.yaml' file in the 'metadata' sub-
# directory. This will have all the newly parsed JSON converted to YAML form.
#
# 4. Hand edit the augmented.yaml file by hand and adjust the values as needed. Once you are done,
# overwrite the base directory's 'G.988.augment.yaml' file with this. You now have a
# metadata file that will be used every time you either run the parser (or code generator) with
# your updated metadata.
#
# 5. Run the 'parser.py' program again. This will pick up the metadata hint you created in step 4
# and will create an updated 'G.988.Parsed.json' file with your data.
#
# 6. Run either the C or Go code generator to generate your classes.
#
############################################################################
#
# If the pre-parser is upgraded or a bug is fixed and needs to be ran again due to updates, run steps 1-6
#
# If the parser is upgraded or a bug is fixed, you only need to run steps 5 & 6
#
# If the code generator you are interested in is upgraded or fixed, you only need to run step 6
#
############################################################################
MEClassSection = "11.2.4" # Class IDs
def parse_args():
parser = argparse.ArgumentParser(description='G.988 Parser')
parser.add_argument('--ITU', '-I', action='store',
default='T-REC-G.988-202003-I!Amd3!MSW-E.docx',
help='Path to ITU G.988 specification document')
parser.add_argument('--input', '-i', action='store',
default='G.988.PreCompiled.json',
help='Path to pre-parsed G.988 data, default: G.988.PreCompiled.json')
parser.add_argument('--hints', '-H', action='store',
default='G.988.augment.yaml',
help='Path to hand modified G.988 input data, default: G.988.augment.yaml')
parser.add_argument('--output', '-o', action='store',
default='G.988.Parsed.json',
help='Output filename, default: G.988.Parsed.json')
parser.add_argument('--classes', '-c', action='store',
default='11.2.4',
help='Document section number with ME Class IDs, default: 11.2.4')
parser.add_argument('--verbose', '-v', action='count',
default=0,
help='Increase verbosity level')
args = parser.parse_args()
return args
class Main(object):
""" Main program """
def __init__(self):
self.args = parse_args()
self.paragraphs = None
self.body = None
self.preparsed = PreParsedJson()
self.parsed = ParsedJson()
self.attribute_hints = dict() # Class ID -> attribute hints list
version = VersionHeading()
version.name = 'parser'
version.create_time = time.time()
version.itu_document = self.args.ITU
version.version = self.get_version()
version.sha256 = self.get_file_hash(version.itu_document)
self.parsed.add(version)
def verbose(self, level: int = 1) -> bool:
return level <= self.args.verbose
@staticmethod
def get_version():
with open('VERSION', 'r') as f:
for line in f:
line = line.strip().lower()
if len(line) > 0:
return line
@staticmethod
def get_file_hash(filename):
import hashlib
with open(filename, 'rb') as f:
data = f.read()
return hashlib.sha256(data).hexdigest()
@property
def sections(self):
return self.preparsed.sections
@property
def section_list(self):
return self.preparsed.section_list
@property
def class_ids(self):
return self.parsed.class_ids
def load_itu_document(self):
return Document(self.args.ITU)
def start(self):
print("Loading ITU Document '{}' and parsed data file '{}'".format(self.args.ITU,
self.args.input))
self.preparsed.load(self.args.input)
for version in self.preparsed.versions:
self.parsed.add(version)
self.attribute_hints = MetadataYAML().load(self.args.hints)
document = self.load_itu_document()
self.paragraphs = document.paragraphs
# doc_sections = document.sections
# styles = document.styles
# self.body = document.element.body
print('Extracting ME Class ID values')
class_ids = ClassIdList.parse_sections(self.section_list,
self.args.classes)
for _cid, me_class in class_ids.items():
self.parsed.add(me_class)
print('Found {} ME Class ID entries. {} have sections associated to them'.
format(len(self.class_ids),
len([c for c in self.class_ids.values()
if c.section is not None])))
crazy_formatted_mes = {} # Try all
todo_class_ids = {k: v for k, v in self.class_ids.items()
if k not in crazy_formatted_mes}
print('Managed Entities without Sections')
for c in [c for c in todo_class_ids.values() if c.section is None]:
print(' {:>4}: {}'.format(c.cid, c.name))
# Work with what we have. Watch for section 8 items. The title of these diagrams can
# conflict with ME title names
todo_class_ids = {cid: c for cid, c in todo_class_ids.items()
if c.section is not None and c.section.section_points and c.section.section_points[0] != '8'}
print('')
print('Parsing deeper for managed Entities with Sections')
final_class_ids = todo_class_ids
if self.verbose(1):
print('Class IDs and section to work with:')
for cid, c in final_class_ids.items():
print(f' {cid:>4}: {c.section.section_number:>9} - {c.name}')
# c = final_class_ids[441] # Uncomment for fast debug of a single Class ID
# c.deep_parse(self.paragraphs)
for c in final_class_ids.values():
if c.section is None:
c.failure(None, None)
continue
print(f' {c.section.section_number:>9}: {c.cid:>4}: {c.name} -> {camelcase(c.name)}')
c.deep_parse(self.paragraphs, self.args.verbose)
pass
print('Main parsing complete, fixing up a few difficult class IDs')
# Some just need some manual intervention
final_class_ids = self.fix_difficult_class_ids(final_class_ids)
# Who creates them
final_class_ids = self.find_class_access(final_class_ids)
completed = len([c for c in final_class_ids.values() if c.state == 'complete'])
failed = len([c for c in final_class_ids.values() if c.state == 'failure'])
print('Of {} MEs, {} were parsed successfully and {} failed'.format(len(final_class_ids),
completed,
failed))
# Run some sanity checks
print('\n\n\nValidating ME Class Information, total of {}:\n'.
format(len(final_class_ids)))
class_with_issues = dict()
class_with_no_actions = dict()
class_with_no_attributes = dict()
attributes_with_no_access = dict()
attributes_with_no_size = dict()
attributes_with_zero_size = dict()
class_with_too_many_attributes = dict()
num_attributes = 0
for c in final_class_ids.values():
print(f' ID: {c.cid}: {c.section.section_number} -\t{c.name}',
end='')
if c.state != 'complete':
print('\t\tParsing ended in state {}', c.state)
class_with_issues[c.cid] = c
if len(c.actions) == 0:
print('\t\tActions: No actions decoded for ME')
class_with_issues[c.cid] = c
class_with_no_actions[c.cid] = c
c.failure(None, None) # Mark invalid
else:
print('\t\tActions: {}'.format({a.name for a in c.actions}))
if len(c.attributes) == 0:
print('\t\tNO ATTRIBUTES') # TODO Look for 'set' without 'get'
class_with_issues[c.cid] = c
class_with_no_attributes[c.cid] = c
c.failure(None, None) # Mark invalid
elif len(c.attributes) > 17: # Entity ID counts as well in this list
print('\t\tTOO MANY ATTRIBUTES')
class_with_issues[c.cid] = c
class_with_too_many_attributes[c.cid] = c
c.failure(None, None) # Mark invalid
else:
for attr in c.attributes:
num_attributes += 1
print('\t\t\t\t{}'.format(attr.name), end='')
if attr.access is None or len(attr.access) == 0:
print('\t\t\t\tNO ACCESS INFORMATION')
attributes_with_no_access[c.cid] = c
c.failure(None, None) # Mark invalid
else:
print('\t\t\t\tAccess: {}'.format({a.name for a in attr.access}))
if attr.size is None:
attributes_with_no_size[c.cid] = c
print('\t\t\t\tNO SIZE INFORMATION')
c.failure(None, None) # Mark invalid
elif attr.size.octets == 0:
attributes_with_zero_size[c.cid] = c
print('\t\t\t\tSIZE zero')
c.failure(None, None) # Mark invalid
print('Section parsing is complete, saving JSON output...')
print('=======================================================')
# Output the results to a JSON file so it can be used by a code-generation
# tool
self.parsed.save(self.args.output)
# Restore and verify
self.parsed.load(self.args.output)
self.parsed.dump()
# Results
print("Of the {} class IDs, {} had issues: {} had no actions and {} had no attributes and {} with too many".
format(len(final_class_ids), len(class_with_issues), len(class_with_no_actions),
len(class_with_no_attributes), len(class_with_too_many_attributes)))
print("Of the {} attributes, {} had no access info and {} had no size info and {} had zero size".
format(num_attributes, len(attributes_with_no_access), len(attributes_with_no_size),
len(attributes_with_zero_size)))
bad_cids = {key for key in class_with_no_actions.keys()} | \
{key for key in class_with_no_attributes.keys()} | \
{key for key in class_with_too_many_attributes.keys()} | \
{key for key in attributes_with_no_access.keys()} | \
{key for key in attributes_with_no_size.keys()} | \
{key for key in attributes_with_zero_size.keys()}
if bad_cids:
print('=======================================================')
print("Bad Classes: {}".format(len(bad_cids)))
for cid in bad_cids:
c = final_class_ids[cid]
bad = []
if cid in class_with_no_actions:
bad.append("No Action")
if cid in class_with_no_attributes:
bad.append("No Attributes")
if cid in class_with_too_many_attributes:
bad.append("Too Nany Attributes")
if cid in attributes_with_no_access:
bad.append("No Access")
if cid in attributes_with_no_size:
bad.append("No Size")
if cid in attributes_with_zero_size:
bad.append("Zero Size")
print(" {:3d}: {:<60s}: {}".format(cid, c.name, ', '.join(what for what in bad)))
def fix_difficult_class_ids(self, class_list):
# Special exception. Ethernet frame performance monitoring history data downstream
# is in identical upstream and only a note of that exists. Fix it now
from parser_lib.actions import Actions
from parser_lib.size import AttributeSize
from parser_lib.attributes import AttributeAccess, AttributeList, AttributeType
# Circuit Pack is now created only by ONU (OLT creation kept only for backwards
# compatibility
if 6 in class_list.keys():
item = class_list[6]
item.access = ClassAccess.CreatedByOnu
if 58 in class_list.keys():
item = class_list[58]
item.actions.add(Actions.GetNext)
if 113 in class_list.keys():
item = class_list[113]
item.alarms._alarms[7] = ('leftr defect seconds', item.alarms._alarms[7][1])
if 134 in class_list.keys():
item = class_list[134]
item.actions.add(Actions.Test)
if 408 in class_list.keys():
item = class_list[408]
item.alarms._alarms[0] = ('leftr defect seconds', item.alarms._alarms[0][1])
if 149 in class_list.keys():
sip = class_list[149] # SIP config portal (zero size for config text table)
sz = AttributeSize()
sz._octets = 25 # Assume it is 25 at most since it is vendor specific
sip.attributes[1].size = sz
if 150 in class_list.keys():
item = class_list[150]
item.actions.add(Actions.GetNext)
if 154 in class_list.keys():
mgc = class_list[154] # MGC config portal (zero size for config text table)
sz = AttributeSize()
sz._octets = 25 # Assume it is 25 at most since it is vendor specific
mgc.attributes[1].size = sz
# For SIP user data, the Username&Password attribute is a pointer
# to a security methods ME and is 2 bytes but is in the document as
# just (2)
if 153 in class_list.keys():
sip = class_list[153]
sz = AttributeSize()
sz._octets = 25
sip.attributes[3].size = sz
sip.attributes[3].access.add(AttributeAccess.Read)
sip.attributes[3].access.add(AttributeAccess.Write)
sz2 = AttributeSize()
sz2._octets = 2
sip.attributes[4].size = sz2
# Large string
if 157 in class_list.keys():
item = class_list[157]
part1 = item.attributes[2]
part1.name = 'Part 1'
part1.optional = False
part1.size._repeat_max = 1
for part in range(2, 16):
newPart = copy.deepcopy(part1)
newPart.name = 'Part {}'.format(part)
item.attributes.add(newPart)
# ONU remote debug - reply table size not bounded
if 158 in class_list.keys():
item = class_list[158]
reply_table = item.attributes[3]
sz = copy.deepcopy(reply_table.size)
sz._octets = -1
reply_table.size = sz
# MCAST GEM Interworking - IPv4
if 281 in class_list.keys():
item = class_list[281]
sz = AttributeSize()
sz._octets = 12
sz.getnext_required = True
item.attributes[9].size = sz
item.attributes[9].access.add(AttributeAccess.Read)
item.attributes[9].access.add(AttributeAccess.Write)
# OMCI. IPv6 Table is 24N octets
if 287 in class_list.keys():
item = class_list[287]
item.attributes[1].getnext_required = True
sz = AttributeSize()
sz._octets = 1
sz.getnext_required = True
item.attributes[2].size = sz
# Managed entity tables. 4 tables need fixing
if 288 in class_list.keys():
me = class_list[288]
class_list[288].name += ' ME' # To avoid conflicts with Go file/struct names
sz = AttributeSize()
sz._octets = 1
me.attributes[4].size = sz
me.attributes[5].size = sz
# Managed entity code points table. Table is 2*n octets
if 289 in class_list.keys():
class_list[289].name += ' ME' # To avoid conflicts with Go file/struct names
# Dot1ag maintenance domain. Has multiple attributes defined on one line that need
# to be split up
if 299 in class_list.keys():
item = class_list[299]
for index in range(6, 3, -1):
item.attributes[index] = item.attributes[index-1]
item.attributes[3].name = "MD Name 1"
item.attributes[4].name = "MD Name 2"
# Dot1ag maintenance association. Has multiple attributes defined on one line that need
# to be split up
if 300 in class_list.keys():
item = class_list[300]
for index in range(8, 3, -1):
item.attributes[index] = item.attributes[index-1]
item.attributes[3].name = "Short MA Name 1"
item.attributes[4].name = "Short MA Name 2"
# Dot1ag chassis-managment info. Has multiple attributes defined on one line that need
# to be split up. Three times...
if 306 in class_list.keys():
item = class_list[306]
for index in range(8, 3, -1):
item.attributes[index] = item.attributes[index-1]
item.attributes[3].name = "Chassis ID Part 1"
item.attributes[4].name = "Chassis ID Part 2"
for index in range(9, 6, -1):
item.attributes[index] = item.attributes[index-1]
item.attributes[6].name = "Management Address Domain 1"
item.attributes[7].name = "Management Address Domain 2"
for index in range(10, 9, -1):
item.attributes[index] = item.attributes[index-1]
item.attributes[9].name = "Management Address 1"
item.attributes[10].name = "Management Address 2"
# Octet String - 1..15 row entries
if 307 in class_list.keys():
item = class_list[307]
part1 = item.attributes[2]
part1.name = 'Part 1'
part1.optional = False
part1.size._repeat_max = 1
for part in range(2, 16):
newPart = copy.deepcopy(part1)
newPart.name = 'Part {}'.format(part)
newPart.optional = True
item.attributes.add(newPart)
# General Purpose Buffer - Buffer table is one big unbounded string
if 308 in class_list.keys():
item = class_list[308]
buffer_table = item.attributes[2]
sz = copy.deepcopy(buffer_table.size)
sz._octets = -1
buffer_table.size = sz
# For multicast operations profile - Attributes getting polluted with table info/descriptions
if 309 in class_list.keys():
item = class_list[309]
if len(item.attributes) == 20:
first_bad = 8 # Table Control is description of attribute 7
next_good = 11 # Pick back up to good attributes at the Static Access Control List Table
# Also attribute 7 lost its information on access...
old_attributes = item.attributes
item.attributes = AttributeList()
for index, attribute in enumerate(old_attributes):
if index < first_bad or index >= next_good:
item.attributes.add(attribute)
# And a quick attribute name fixup here
item.attributes[16].name = "Downstream IGMP and multicast TCI"
# Some enumerated items
item.attributes[1].attribute_type = AttributeType.Enumeration
item.attributes[2].attribute_type = AttributeType.Enumeration
item.attributes[3].attribute_type = AttributeType.Enumeration
item.attributes[16].name = "Downstream IGMP and multicast TCI"
# The pain in the rear table in the document
sz = AttributeSize()
sz._octets = 24
sz.getnext_required = True
item.attributes[7].size = sz
item.attributes[7].access.add(AttributeAccess.Read)
item.attributes[7].access.add(AttributeAccess.Write)
# For multicast subscriber config info. very hard to decode automatically
if 310 in class_list.keys():
msci = class_list[310]
msci.attributes.remove(8)
item = msci.attributes[7]
sz = AttributeSize()
sz._octets = 22
sz.getnext_required = True
item.size = sz
item.access.add(AttributeAccess.Read)
item.access.add(AttributeAccess.Write)
if 321 in class_list.keys() and 322 in class_list.keys():
down = class_list[321]
up = class_list[322]
down.attributes = up.attributes
down.actions = up.actions
down.optional_actions = up.optional_actions
down.alarms = up.alarms
down.avcs = up.avcs
down.test_results = up.test_results
down.hidden = up.hidden
# xDSL line inventory and status data part 5
if 325 in class_list.keys():
item = class_list[325]
try:
# Type in document, not table attributes present
item.actions.remove(Actions.GetNext)
except KeyError:
pass
# Enhanced security control
if 332 in class_list.keys():
item = class_list[332]
try:
# Type in document, not table attributes present
item.attributes[7].access.add(AttributeAccess.Read)
except KeyError:
pass
# ONU dynamic power management control
if 336 in class_list.keys():
item = class_list[336]
try:
old_attributes = item.attributes
item.attributes = AttributeList()
for index, attribute in enumerate(old_attributes):
if index < 11:
item.attributes.add(attribute)
item.attributes.add(old_attributes[12])
if len(old_attributes) > 14:
# 2017 and 2020 document
item.attributes.add(old_attributes[14])
else:
# 2022 document (messed up style of TOC 6for the attribute name).
pass # item.attributes.add(old_attributes[13])
# TODO: Need to figure out how to parse /fix
sz = AttributeSize()
sz._octets = 1
item.attributes[10].size = sz
item.attributes[10].optional = True
item.attributes[10].access.add(AttributeAccess.Read)
item.attributes[11].size = sz
item.attributes[11].optional = True
item.attributes[11].access.add(AttributeAccess.Read)
item.attributes[11].access.add(AttributeAccess.Write)
attr = Attribute()
sz = AttributeSize()
sz._octets = 4
attr.name = "Missing Consecutive Bursts Threshold"
attr.size = sz
attr.optional = False
attr.access.add(AttributeAccess.Read)
attr.access.add(AttributeAccess.Write)
item.attributes.add(attr)
except KeyError:
pass
# xDSL line inventory and status data part 8
if 414 in class_list.keys():
item = class_list[414]
try:
# Type in document, not table attributes present
item.actions.remove(Actions.GetNext)
except KeyError:
pass
# Fast Channel Configuration Profile ME is missing Managed Entity
if 432 in class_list.keys():
item = class_list[432]
item.name = "Fast Channel Configuration Profile Part1"
for index in range(11, 0, -1):
item.attributes[index] = item.attributes[index - 1]
item.attributes[0] = Attribute().load(
{
"name": "Managed Entity Id",
"description": [
5374
],
"access": [
"Read",
"SetByCreate"
],
"optional": False,
"deprecated": False,
"size": {
"octets": 2,
"bits": None,
"repeat_count": 1,
"repeat_max": 1,
"getnext_required": False
},
"avc": False,
"tca": False,
"table-support": False,
"type": "Pointer",
"constraint": None,
"default": None
}, 0)
item.attributes[1].attribute_type = AttributeType.UnsignedInteger
# ONU-3G
if 441 in class_list.keys():
item = class_list[441]
old_attributes = item.attributes
item.attributes = AttributeList()
for index, attribute in enumerate(old_attributes):
if index != 3:
item.attributes.add(attribute)
sz = AttributeSize()
sz._octets = 1
item.attributes[2].size = sz
item.attributes[2].optional = False
item.attributes[2].access.add(AttributeAccess.Read)
sz = copy.deepcopy(item.attributes[8].size)
sz._octets = 25 # N bytes. Vendor specific. 25 bytes is max get attribute size
item.attributes[8].size = sz
item.attributes[6].size = sz # Same issue M rows of 'n' size....
# ONU Manufacturing data has two attributes on the same line
if 456 in class_list.keys():
item = class_list[456]
for index in range(7, 2, -1):
item.attributes[index] = item.attributes[index-1]
item.attributes[2].name = "Serial Number 1"
item.attributes[3].name = "Serial Number 2"
# Now even some other crazy things
class_list = self.fix_other_difficulties(class_list)
# Find counter and other types of attributes
self.find_attribute_types(class_list)
return class_list
@staticmethod
def fix_other_difficulties(class_list):
# Some uncommon cleanups
# for cid, cls in class_list.items():
# pass
return class_list
@staticmethod
def find_class_access(class_list):
from parser_lib.class_id import ClassAccess, Actions
for _, item in class_list.items():
if item.access == ClassAccess.UnknownAccess and len(item.actions):
if Actions.Create in item.actions:
item.access = ClassAccess.CreatedByOlt
else:
item.access = ClassAccess.CreatedByOnu
return class_list
def find_attribute_types(self, class_list):
# A bit more in depth look at the attributes
from parser_lib.attributes import AttributeType
for cid, item in class_list.items():
# Any hints to apply before seeding default settings?
if cid in self.attribute_hints:
hints = self.attribute_hints[cid]
for index, attr_hint in hints['attributes'].items():
item_attribute = next((attr for attr in item.attributes if attr.index == index), None)
if item_attribute is not None:
if 'type' in attr_hint:
item_attribute.attribute_type = attr_hint['type']
if 'default' in attr_hint:
item_attribute.default = attr_hint['default']
if 'constraint' in attr_hint:
item_attribute.constraint = attr_hint['constraint']
for attr in item.attributes:
# Only set unknown types (or integer since it may be a counter)
if attr.attribute_type == AttributeType.Unknown:
attr.find_type(item)
return class_list
if __name__ == '__main__':
try:
Main().start()
except Exception as _e:
raise