-
Notifications
You must be signed in to change notification settings - Fork 107
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
ygot.Diff don't respect presence containers #936
Comments
This looks like something that needs to be added to I'm happy to help with a contribution to add this to the library -- it needs some consideration as to where edit: It looks like this should be relatively simple, as the |
I looked into this briefly before I created the issue, but it is a pretty big code base to grasp. Would you just add an if-else here? https://github.com/openconfig/ygot/blob/master/ygot/diff.go#L310 I'm out for the holidays, but I'd love to tive this a shot next weekend if no one beats me to it. We definitely need this for our Crossplane provider. Thanks for the great library and the quick response 😊 |
I had another quick look at this today. Would love some pointers/tips, as I were not successful. Adding this as a non-optional, paired with ygot.BuildEmptyTree would also probably be breaking, as it would set all these presence containers? |
The logic may be added here: I think you want to do a if on I think the tricky part comes in how you would indicate presence containers in the return value of ygot.Diff. In the |
Thanks @wenovus, I'll give it a shot this or next weekend. I would of course appreciate if anyone else got time to look at an implementation. 😊 |
w.r.t backwards compatibility -- this should be done by providing some |
Any chance OpenConfig will add support for this, or is this relying on outside contributors (me?)? |
As with most open source projects, the feature set of ygot tends to be driven by contributions where there is interest in a feature -- and by having those with interest contribute code. The core maintainers (@wenovus these days) try to ensure that the library is complete for users, but especially with a language as complex as YANG where there are many ways to express things, it's not really possible for us to commit to cover every feature. Equally, we have found that the way that developers expect particular YANG features to be represented varies, and having a real user helps with that. So, the answer is "it might happen, but it will certainly happen if you contribute code". :-) |
Related to openconfig#936 Add support for presence containers in ygot.Diff * Add a new function `IsPresenceContainer` in `util/yang.go` to check if a struct field is a presence container. * Modify the `findSetLeaves` function in `ygot/diff.go` to check for presence containers using `util.IsPresenceContainer`. * Add a new `DiffOpt` type `DiffPresenceOpt` to control whether presence containers are considered in the diff. * Update the `diff` function in `ygot/diff.go` to handle presence containers. * Add test cases in `ygot/diff_test.go` to verify the correct handling of presence containers in diffs. * Add a new function `IsPresenceContainer` in `ygot/helpers.go` to check if a struct field is a presence container. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/openconfig/ygot/issues/936?shareId=681a30d3-a040-4ffa-83e3-9356b6f18f51).
Hi,
Given two structs (generated with
-yangpresence=true
flag), theygot.Diff()
do not diff based on presence or not.Given the struct below, where
AllowImportedVpn
is a presence container, and sending it should set the presence:with this object:
where the entire
To
key is set tonil
, creates no diff. As far as I understand, this should remove the presence, and therefor create an Update-entry?Here's the YANG model: https://github.com/YangModels/yang/blob/main/vendor/cisco/xr/772/Cisco-IOS-XR-um-router-bgp-cfg.yang#L565C1-L571
The text was updated successfully, but these errors were encountered: