From: Martin Jansa <martin.jansa@gmail.com>
To: Koen Kooi <koen@dominion.thruhere.net>
Cc: bitbake-devel <bitbake-devel@lists.openembedded.org>,
Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core] [PATCH] ui/knotty: Add a footer to the build output for interactive terminals
Date: Wed, 21 Mar 2012 17:19:36 +0100 [thread overview]
Message-ID: <20120321161936.GA3659@jama.jama.net> (raw)
In-Reply-To: <A4FAC08D-E547-40BF-9CAF-98D82B152CE9@dominion.thruhere.net>
[-- Attachment #1.1: Type: text/plain, Size: 2001 bytes --]
On Tue, Mar 20, 2012 at 01:24:00PM +0100, Koen Kooi wrote:
>
> Op 15 mrt. 2012, om 23:56 heeft Richard Purdie het volgende geschreven:
>
> > I've sent this before, this is an updated version with several bugfixes
> > and improvements. Its a major change but one I think people will like
> > overall as I hear a lot of complaints about the verbose console
> > messages. v0 never got complaints so I will merge this fairly quickly
> > unless there are objections.
> >
> > ---
> > On terminals which support it, add summary information to the end of the
> > build output about the number of tasks currently running and how many tasks
> > we've run so far.
> >
> > This provides a summary at a glace of what the current state of the build is
> > and what the build is currently doing which is lacking in the current UI.
> >
> > Also disable echo of characters on stdin since this corrupts the disable,
> > particularly Crtl+C.
> >
> > The "waiting for X tasks" code can be merged into this code too since
> > that is only useful on interactive terminals and this improves the
> > readability of that output too.
> >
> > Improvements since v0:
> >
> > * The tasks are ordered in execution order.
> > * The display is only updated when the list of tasks changes or there
> > is output above the footer.
> > * Errors early in the init process don't corrupt the terminal
> > * Running task x of y and package messages are suppressed from the console
>
> I like it a lot, but there is one missing thing. Have a look at the following output:
I like it too.
1) it doesn't break my usual use-case
bitbake foo | tee -a log.${MACHINE}
2) with more threads it was hard to see that task is on "background"
But as I often want to see if some particular task was already finished
then I've changed InteractConsoleLogFilter like this to keep
task Started/Succeeded messages above footer.
Cheers,
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #1.2: 0001-knotty-filter-only-Running-NOTEs.patch --]
[-- Type: text/plain, Size: 953 bytes --]
From dab4d382e9257d2493e36dccf67b9d1d056965bf Mon Sep 17 00:00:00 2001
From: Martin Jansa <Martin.Jansa@gmail.com>
Date: Wed, 21 Mar 2012 17:09:45 +0100
Subject: [PATCH] knotty: filter only "Running" NOTEs
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
lib/bb/ui/knotty.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py
index 4a7e6b9..61ff9dd 100644
--- a/lib/bb/ui/knotty.py
+++ b/lib/bb/ui/knotty.py
@@ -174,7 +174,7 @@ def main(server, eventHandler):
class InteractConsoleLogFilter(logging.Filter):
def filter(self, record):
- if record.levelno == format.NOTE and (record.msg.startswith("Running") or record.msg.startswith("package ")):
+ if record.levelno == format.NOTE and record.msg.startswith("Running"):
return False
clearFooter()
return True
--
1.7.8.5
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
prev parent reply other threads:[~2012-03-21 16:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-15 22:56 [PATCH] ui/knotty: Add a footer to the build output for interactive terminals Richard Purdie
2012-03-19 11:48 ` [OE-core] " Koen Kooi
2012-03-20 12:24 ` Koen Kooi
2012-03-21 16:19 ` Martin Jansa [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=20120321161936.GA3659@jama.jama.net \
--to=martin.jansa@gmail.com \
--cc=bitbake-devel@lists.openembedded.org \
--cc=koen@dominion.thruhere.net \
--cc=openembedded-core@lists.openembedded.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