Re: [ovs-dev] [PATCH v3 03/18] python: add list parser

2022-04-26 Thread Eelco Chaudron
On 25 Apr 2022, at 17:03, Adrian Moreno wrote: > On 3/18/22 11:19, Eelco Chaudron wrote: >> >> >> On 11 Mar 2022, at 16:21, Adrian Moreno wrote: >> >>> Some openflow or dpif flows encode their arguments in lists, eg: >>> "some_action(arg1,arg2,arg3)". In order to decode this in a way that can

Re: [ovs-dev] [PATCH v3 03/18] python: add list parser

2022-04-25 Thread Adrian Moreno
On 3/18/22 11:19, Eelco Chaudron wrote: On 11 Mar 2022, at 16:21, Adrian Moreno wrote: Some openflow or dpif flows encode their arguments in lists, eg: "some_action(arg1,arg2,arg3)". In order to decode this in a way that can be then stored and queried, add ListParser and ListDecoders

Re: [ovs-dev] [PATCH v3 03/18] python: add list parser

2022-03-18 Thread Eelco Chaudron
On 11 Mar 2022, at 16:21, Adrian Moreno wrote: > Some openflow or dpif flows encode their arguments in lists, eg: > "some_action(arg1,arg2,arg3)". In order to decode this in a way that can > be then stored and queried, add ListParser and ListDecoders classes > that parse lists into KeyValue

[ovs-dev] [PATCH v3 03/18] python: add list parser

2022-03-11 Thread Adrian Moreno
Some openflow or dpif flows encode their arguments in lists, eg: "some_action(arg1,arg2,arg3)". In order to decode this in a way that can be then stored and queried, add ListParser and ListDecoders classes that parse lists into KeyValue instances. The ListParser / ListDecoders mechanism is quite