public inbox for devicetree-compiler@vger.kernel.org
 help / color / mirror / Atom feed
From: Luca Weiss <luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org>
To: Simon Glass <sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
Cc: Devicetree Compiler
	<devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Subject: Re: [PATCH 4/4] pylibfdt: add FdtRo.getprop_or_none()
Date: Mon, 24 Jan 2022 21:50:01 +0100	[thread overview]
Message-ID: <3246478.aeNJFYEL58@g550jk> (raw)
In-Reply-To: <CAPnjgZ1NX2Q884T_LNUOLJT8=RKZXEj2z7uxzQF4MrHiKObZvA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>

Hi Simon,

On Montag, 24. Jänner 2022 18:57:45 CET Simon Glass wrote:
> Hi Luca,
> 
> On Sat, 22 Jan 2022 at 03:36, Luca Weiss <luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org> wrote:
> > Hi Simon,
> > 
> > On Dienstag, 28. Dezember 2021 09:34:57 CET Simon Glass wrote:
> > > Hi Luca,
> > > 
> > > On Sat, 25 Dec 2021 at 06:26, Luca Weiss <luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org> wrote:
> > > > Add a new method that doesn't throw an exception when a property isn't
> > > > found but returns None instead.
> > > > 
> > > > Also add a test for the new method.
> > > 
> > > You can use
> > > 
> > > getprop(node, prop, quiet=QUIET_NOTFOUND)
> > 
> > This returns -1 when not found which I found quite un-pythonic (not that
> > pylibfdt is currently super pythonic ;) ).
> > Having None returned if not found is much nicer to use and much more clear
> > to use
> > 
> >     if foobar is None:
> >  instead of having to use
> >  
> >     if foobar == -QUIET_NOTFOUND:
> > Are there any changes I can do for you to reconsider your position on this
> > patch?
> 
> I think I was put off by the mention of an exception in the commit
> message. Really all you are doing is trying to make this function more
> pythonic. I suppose we could change the getprop() function to return
> None if there is no property (with QUIET_NOTFOUND supplied for the
> 'quiet' argument). That makes not-found special, but I suppose if the
> error were anything else, e.g. -FDT_ERR_BADSTRUCTURE and
> quiet=[BADSTRUCTURE] were passed, we could return None in that case
> too?
> 
> I agree it is more pythonic.

The "proper" way (in my opinion) would be to return the property or None, 
except for more serious errors like the BADSTRUCTURE one that just throws an 
exception; and hide all the C integer return values inside the wrapper.
And instead of passing quiet=[BADSTRUCTURE] you would do

try:
    myprop = fdt.getprop(foobar)
except FdtBadStructureError:
    foobar()

I understand it's probably not a good idea to change the existing function too 
much given current users where scripts depend on this behavior but this way 
it's definitely more approachable to an average Python user.

Regards
Luca

> 
> David, what do you think?
> 
> Failing that I'm OK with this function, but with the commit message
> updated to not mention exceptions, as we already have that mechanism,
> so it is confusing.
> 
> BTW you can use QUIET_NOTFOUND instead of [FDT_ERR_NOTFOUND]
> 
> Regards,
> Simon





  parent reply	other threads:[~2022-01-24 20:50 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-25 13:25 [PATCH 0/4] Add new helpers to pylibfdt Luca Weiss
     [not found] ` <20211225132558.167123-1-luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org>
2021-12-25 13:25   ` [PATCH 1/4] pylibfdt: add Property.as_stringlist() Luca Weiss
     [not found]     ` <20211225132558.167123-2-luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org>
2021-12-28  4:29       ` David Gibson
2022-01-05 22:48       ` Rob Herring
     [not found]         ` <CAL_JsqLvQdm1kqMED8G03LEsm+xgyY2A+F+FD8DYeAy5o+eiGg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-18 10:08           ` David Gibson
2022-01-20 19:24             ` Luca Weiss
2022-01-21  0:12               ` David Gibson
2021-12-25 13:25   ` [PATCH 2/4] pylibfdt: add Property.as_*int*_array() Luca Weiss
     [not found]     ` <20211225132558.167123-3-luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org>
2021-12-28  4:30       ` David Gibson
2021-12-25 13:25   ` [PATCH 3/4] pylibfdt: add FdtRo.get_path() Luca Weiss
     [not found]     ` <20211225132558.167123-4-luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org>
2021-12-28  4:33       ` David Gibson
2021-12-25 13:25   ` [PATCH 4/4] pylibfdt: add FdtRo.getprop_or_none() Luca Weiss
     [not found]     ` <20211225132558.167123-5-luca-IfPCFPJWly+lVyrhU4qvOw@public.gmane.org>
2021-12-28  5:20       ` David Gibson
2021-12-28  8:34       ` Simon Glass
     [not found]         ` <CAPnjgZ3wun92Q1vMSEem9CH6A8MWNbKZNaepf4j4Ttmf-GNPtQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-22 10:36           ` Luca Weiss
2022-01-24 17:57             ` Simon Glass
     [not found]               ` <CAPnjgZ1NX2Q884T_LNUOLJT8=RKZXEj2z7uxzQF4MrHiKObZvA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-01-24 20:50                 ` Luca Weiss [this message]
2022-01-24 21:28                   ` Simon Glass
2022-01-25  4:50             ` David Gibson

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=3246478.aeNJFYEL58@g550jk \
    --to=luca-ifpcfpjwly+lvyrhu4qvow@public.gmane.org \
    --cc=devicetree-compiler-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
    /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