All of lore.kernel.org
 help / color / mirror / Atom feed
From: Uladzimir Bely <ubely@ilbers.de>
To: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Cc: "openembedded-devel@lists.openembedded.org"
	<openembedded-devel@lists.openembedded.org>
Subject: Re: [oe] [PATCH 1/1] buildstats: disk usage outside bbclass
Date: Mon, 06 Dec 2021 14:26:10 +0300	[thread overview]
Message-ID: <2043562.9o76ZdvQCi@hp> (raw)
In-Reply-To: <19165fe6ef2547aaa5b8085227153ec2@axis.com>

In mail from воскресенье, 5 декабря 2021 г. 01:30:54 +03 user Peter 
Kjellerstedt wrote:
> > -----Original Message-----
> > From: openembedded-devel@lists.openembedded.org <openembedded-
> > devel@lists.openembedded.org> On Behalf Of Uladzimir Bely
> > Sent: den 4 december 2021 07:33
> > To: openembedded-devel@lists.openembedded.org
> > Subject: [oe] [PATCH 1/1] buildstats: disk usage outside bbclass
> > 
> > This allows to use a custom disk stats command
> > without modifying buildstats.bbclass.
> > ---
> > 
> >  meta/classes/buildstats-utils.bbclass | 4 ++++
> >  meta/classes/buildstats.bbclass       | 5 +++--
> >  2 files changed, 7 insertions(+), 2 deletions(-)
> >  create mode 100644 meta/classes/buildstats-utils.bbclass
> > 
> > diff --git a/meta/classes/buildstats-utils.bbclass
> > b/meta/classes/buildstats-utils.bbclass
> > new file mode 100644
> > index 00000000..712674d0
> > --- /dev/null
> > +++ b/meta/classes/buildstats-utils.bbclass
> > @@ -0,0 +1,4 @@
> > +def buildstats_disk_usage(path):
> > +    import subprocess
> > +    return subprocess.check_output(["du", "-shx", path],
> > +                   stderr=subprocess.STDOUT).decode('utf-8')
> > diff --git a/meta/classes/buildstats.bbclass
> > b/meta/classes/buildstats.bbclass index 0de60520..1cade568 100644
> > --- a/meta/classes/buildstats.bbclass
> > +++ b/meta/classes/buildstats.bbclass
> > @@ -8,6 +8,8 @@ BUILDSTATS_BASE = "${TMPDIR}/buildstats/"
> > 
> >  #
> > 
> > ##########################################################################
> > ######
> > 
> > +inherit buildstats-utils
> > +
> > 
> >  def get_buildprocess_cputime(pid):
> >      with open("/proc/%d/stat" % pid, "r") as f:
> >          fields = f.readline().rstrip().split()
> > 
> > @@ -244,8 +246,7 @@ python run_buildstats () {
> > 
> >                  rootfs = d.getVar('IMAGE_ROOTFS')
> >                  
> >                  if os.path.isdir(rootfs):
> >                      try:
> > -                        rootfs_size = subprocess.check_output(["du",
> > "-sh", rootfs], -                               
> > stderr=subprocess.STDOUT).decode('utf-8') +                       
> > rootfs_size = buildstats_disk_usage(rootfs)
> A simpler solution is to introduce a bitbake variable for the "du -sh"
> command. Then you can just override it with your command as you please.
> I.e., add:
> 
> BUILDSTATS_DISK_USAGE ??= "du -sh"
> 
> after BUILDSTATS_BASE at the top of the file and change the above to:
> 
>                         rootfs_size = subprocess.check_output(
>                             d.getVar('BUILDSTATS_DISK_USAGE').split() +
> [rootfs], stderr=subprocess.STDOUT).decode('utf-8')
> >                          f.write("Uncompressed Rootfs size: %s" %
> >                          rootfs_size)
> >                      
> >                      except subprocess.CalledProcessError as err:
> >                          bb.warn("Failed to get rootfs size: %s" %
> >                          err.output.decode('utf-8'))
> > 
> > --
> > 2.20.1
> 
> //Peter

Thanks, the idea of using a variable is really simpler.

I've prepared a corresponding patch for a maillist:
https://lists.openembedded.org/g/openembedded-devel/message/94215
I hope, it's good enough to be applied to oe-core upstream soon.

-- 
Uladzimir Bely
Promwad Ltd.
External service provider of ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn, Germany
+49 (89) 122 67 24-0
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov




      reply	other threads:[~2021-12-06 11:27 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-04  6:33 [PATCH 0/1] [meta-oe] buildstats: avoiding disk usage warnings in Isar Uladzimir Bely
2021-12-04  6:33 ` [PATCH 1/1] buildstats: disk usage outside bbclass Uladzimir Bely
2021-12-04 22:30   ` [oe] " Peter Kjellerstedt
2021-12-06 11:26     ` Uladzimir Bely [this message]

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=2043562.9o76ZdvQCi@hp \
    --to=ubely@ilbers.de \
    --cc=openembedded-devel@lists.openembedded.org \
    --cc=peter.kjellerstedt@axis.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.