From: Jakub Kicinski <kuba@kernel.org>
To: Jiri Pirko <jiri@resnulli.us>
Cc: netdev@vger.kernel.org, pabeni@redhat.com, davem@davemloft.net,
edumazet@google.com
Subject: Re: [patch net-next v2] tools: ynl: introduce option to process unknown attributes or types
Date: Mon, 16 Oct 2023 17:59:03 -0700 [thread overview]
Message-ID: <20231016175903.605f61aa@kernel.org> (raw)
In-Reply-To: <20231016110222.465453-1-jiri@resnulli.us>
On Mon, 16 Oct 2023 13:02:22 +0200 Jiri Pirko wrote:
> +class FakeSpecAttr:
> + def __init__(self, name):
> + self.dict = {"name": name, "type": None}
> + self.is_multi = False
> +
> + def __getitem__(self, key):
> + return self.dict[key]
> +
> + def __contains__(self, key):
> + return key in self.dict
Why the new class? Why not attach the NlAttr object directly?
I have an idea knocking about in my head to support "polymorphic"
nests (nests where decoding depends on value of another attr,
link rtnl link attrs or tc object attrs). The way I'm thinking
about doing it is to return NlAttr / struct nla_attr back to the user.
And let the users call a sub-parser of choice by hand.
So returning a raw NlAttr appeals to me more.
> + if not self.process_unknown:
> + raise Exception(f'Unknown {attr_spec["type"]} with name {attr_spec["name"]}')
> + if attr._type & Netlink.NLA_F_NESTED:
> + subdict = self._decode(NlAttrs(attr.raw), None)
> + decoded = subdict
> + else:
> + decoded = attr.as_bin()
Again, I wouldn't descend at all.
next prev parent reply other threads:[~2023-10-17 0:59 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-16 11:02 [patch net-next v2] tools: ynl: introduce option to process unknown attributes or types Jiri Pirko
2023-10-17 0:59 ` Jakub Kicinski [this message]
2023-10-17 6:18 ` Jiri Pirko
2023-10-17 15:50 ` Jakub Kicinski
2023-10-18 7:52 ` Jiri Pirko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20231016175903.605f61aa@kernel.org \
--to=kuba@kernel.org \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=jiri@resnulli.us \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).