annet 0.16.22__py3-none-any.whl → 0.16.24__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of annet might be problematic. Click here for more details.
- annet/annlib/tabparser.py +5 -8
- annet/api/__init__.py +9 -1
- {annet-0.16.22.dist-info → annet-0.16.24.dist-info}/METADATA +1 -1
- {annet-0.16.22.dist-info → annet-0.16.24.dist-info}/RECORD +9 -9
- {annet-0.16.22.dist-info → annet-0.16.24.dist-info}/AUTHORS +0 -0
- {annet-0.16.22.dist-info → annet-0.16.24.dist-info}/LICENSE +0 -0
- {annet-0.16.22.dist-info → annet-0.16.24.dist-info}/WHEEL +0 -0
- {annet-0.16.22.dist-info → annet-0.16.24.dist-info}/entry_points.txt +0 -0
- {annet-0.16.22.dist-info → annet-0.16.24.dist-info}/top_level.txt +0 -0
annet/annlib/tabparser.py
CHANGED
|
@@ -354,15 +354,12 @@ class ArubaFormatter(BlockExitFormatter):
|
|
|
354
354
|
return self.split_remove_spaces(text)
|
|
355
355
|
|
|
356
356
|
|
|
357
|
-
class AristaFormatter(
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
current = context and context.row or ""
|
|
357
|
+
class AristaFormatter(BlockExitFormatter):
|
|
358
|
+
def __init__(self, indent=" "):
|
|
359
|
+
super().__init__("exit", indent)
|
|
361
360
|
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
else:
|
|
365
|
-
yield from super().block_exit(context)
|
|
361
|
+
def split(self, text):
|
|
362
|
+
return self.split_remove_spaces(text)
|
|
366
363
|
|
|
367
364
|
|
|
368
365
|
class AsrFormatter(BlockExitFormatter):
|
annet/api/__init__.py
CHANGED
|
@@ -799,12 +799,20 @@ def guess_hw(config_text: str):
|
|
|
799
799
|
hw = hw_provider.vendor_to_hw(vendor)
|
|
800
800
|
fmtr = tabparser.make_formatter(hw)
|
|
801
801
|
rb = rulebook.get_rulebook(hw)
|
|
802
|
-
|
|
802
|
+
try:
|
|
803
|
+
config = tabparser.parse_to_tree(config_text, fmtr.split)
|
|
804
|
+
except Exception:
|
|
805
|
+
continue
|
|
803
806
|
pre = patching.make_pre(patching.make_diff({}, config, rb, []))
|
|
804
807
|
metric = _count_pre_score(pre)
|
|
805
808
|
scores[metric] = hw
|
|
809
|
+
|
|
810
|
+
if not scores:
|
|
811
|
+
raise RuntimeError("No formatter was guessed")
|
|
812
|
+
|
|
806
813
|
max_score = max(scores.keys())
|
|
807
814
|
hw = scores[max_score]
|
|
815
|
+
|
|
808
816
|
return hw, max_score
|
|
809
817
|
|
|
810
818
|
|
|
@@ -50,7 +50,7 @@ annet/annlib/jsontools.py,sha256=DVmA6kmKGSCsKrFnag4EMR1WKe39Owlvzpfdo726ufk,547
|
|
|
50
50
|
annet/annlib/lib.py,sha256=eJ4hcVuQ6pdYBzLs4YKCHFtq45idOfZCYp92XfF7_QI,15317
|
|
51
51
|
annet/annlib/output.py,sha256=_SjJ6G6bejvnTKqNHw6xeio0FT9oO3OIkLaOC3cEga4,7569
|
|
52
52
|
annet/annlib/patching.py,sha256=2CpAT3T43IUFJR57qTYSwjQ0smg0uHWN43df4n1WArs,19937
|
|
53
|
-
annet/annlib/tabparser.py,sha256=
|
|
53
|
+
annet/annlib/tabparser.py,sha256=Xsje7t2bEZqZ8hhgnEYgjQGaDZ5mBWgNxwE2wpCkwXQ,28961
|
|
54
54
|
annet/annlib/types.py,sha256=VHU0CBADfYmO0xzB_c5f-mcuU3dUumuJczQnqGlib9M,852
|
|
55
55
|
annet/annlib/netdev/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
56
|
annet/annlib/netdev/db.py,sha256=fI_u5aya4l61mbYSjj4JwlVfi3s7obt2jqERSuXGRUI,1634
|
|
@@ -67,7 +67,7 @@ annet/annlib/rbparser/platform.py,sha256=hnxznTfV9txXi1PkR1hZrprTrQJvlwgqXVL8vXk
|
|
|
67
67
|
annet/annlib/rbparser/syntax.py,sha256=iZ7Y-4QQBw4L3UtjEh54qisiRDhobl7HZxFNdP8mi54,3577
|
|
68
68
|
annet/annlib/rulebook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
69
|
annet/annlib/rulebook/common.py,sha256=bx_Iwui-JJeyctUPF1OsEll0Aa-IQZadBPQjaeuoWgw,16638
|
|
70
|
-
annet/api/__init__.py,sha256=
|
|
70
|
+
annet/api/__init__.py,sha256=dgdyBDeFhBVBwKB8QVOOTZ2LZvi0fEcVGfOQEUQyDHo,33863
|
|
71
71
|
annet/configs/context.yml,sha256=RVLrKLIHpCty7AGwOnmqf7Uu0iZQCn-AjYhophDJer8,259
|
|
72
72
|
annet/configs/logging.yaml,sha256=EUagfir99QqA73Scc3k7sfQccbU3E1SvEQdyhLFtCl4,997
|
|
73
73
|
annet/generators/__init__.py,sha256=rVHHDTPKHPZsml1eNEAj3o-8RweFTN8J7LX3tKMXdIY,16402
|
|
@@ -164,10 +164,10 @@ annet_generators/rpl_example/__init__.py,sha256=z4-gsDv06BBpgTwRohc50VBQYFD26QVu
|
|
|
164
164
|
annet_generators/rpl_example/items.py,sha256=6x7b0wZ7Vjn6yCaJ-aGbpTHm7fyqO77b-LRqzzhEbh4,615
|
|
165
165
|
annet_generators/rpl_example/policy_generator.py,sha256=KFCqn347CIPcnllOHfINYeKgNSr6Wl-bdM5Xj_YKhYM,11183
|
|
166
166
|
annet_generators/rpl_example/route_policy.py,sha256=QjxFjkePHfTo2CpMeRVaDqZXNXLM-gGlE8EocHuOR4Y,1189
|
|
167
|
-
annet-0.16.
|
|
168
|
-
annet-0.16.
|
|
169
|
-
annet-0.16.
|
|
170
|
-
annet-0.16.
|
|
171
|
-
annet-0.16.
|
|
172
|
-
annet-0.16.
|
|
173
|
-
annet-0.16.
|
|
167
|
+
annet-0.16.24.dist-info/AUTHORS,sha256=rh3w5P6gEgqmuC-bw-HB68vBCr-yIBFhVL0PG4hguLs,878
|
|
168
|
+
annet-0.16.24.dist-info/LICENSE,sha256=yPxl7dno02Pw7gAcFPIFONzx_gapwDoPXsIsh6Y7lC0,1079
|
|
169
|
+
annet-0.16.24.dist-info/METADATA,sha256=130Nbd58J6hQQ0ceLhvJwc6qNBRjfTcMVbd0WXEPy8w,728
|
|
170
|
+
annet-0.16.24.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
171
|
+
annet-0.16.24.dist-info/entry_points.txt,sha256=5lIaDGlGi3l6QQ2ry2jZaqViP5Lvt8AmsegdD0Uznck,192
|
|
172
|
+
annet-0.16.24.dist-info/top_level.txt,sha256=QsoTZBsUtwp_FEcmRwuN8QITBmLOZFqjssRfKilGbP8,23
|
|
173
|
+
annet-0.16.24.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|