-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactoring: transform serializer to visitor, suppress state, isolate logic #31
Conversation
445a02f
to
99e4a73
Compare
all tests passing! I have refactored only the switch serializer for now. there is a lot of additions since the new code is a bit more verbose and I had to add tons of classes to be able to have that "framework". |
1f8529e
to
86e5cc9
Compare
9e7c9c7
to
21bcb49
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very neat implementation, I like it a lot!
I would like to talk in a call about the code paths around CPE filter list generation and bgp:cpe
in general to get a better understanding!
Otherwise, it is mostly clean-up and nitpicking, but a call to go through this together and do some knowledge transfer would be a good idea anyways.
OK, I'll work on fixing the differences in config generation in |
+ base visitor
+ add getParent(type) feature + fix visitor
(it's a surprise tool that will help us later)
+ add missing guard for ethernet-ccc
(was testing superset/subset incorrectly...)
e52a85a
to
3b5a4a2
Compare
@johannwagner all differences on |
FYI I changed some stuff in the L2VPN visitors. Now all L2VPN types and their available encapsulations are modeled with dedicated types. The code is a bit more boilerplate, but in the end it's less lines than before (!) and IMO less error-prone, since we no longer have to meddle in with all the different cases for L2VPN types. The only thing to pay attention to is the order of the encapsulation traits, the one with the most priority should always be 1st. If you have some ideas to make this part simpler, feel free. Didn't really find a satisfactory solution on my end. |
Co-authored-by: Johann Wagner <[email protected]>
🥳 |
WIP