All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: PING Re: [PATCH] improve printing dependent tasks
Date: Mon, 23 Nov 2009 10:18:24 +0100	[thread overview]
Message-ID: <20091123091824.GC436@mx.loc> (raw)
In-Reply-To: <1256072198-4449-1-git-send-email-rep.dot.nop@gmail.com>

PING ?

On Tue, Oct 20, 2009 at 10:56:38PM +0200, Bernhard Reutner-Fischer wrote:
>Print names instead of Task-IDs (and not mentioning they're task ids).
>
>Previously we printed e.g.:
>Dependency loop #1 found:
>  Task 89 (/there/src/oe/openembedded/recipes/busybox/busybox-native_1.15.2.bb, do_configure) (depends: Set([88, 282, 92, 87]))
>
>Now we say
>Dependency loop #1 found:
>  Task 89 (/there/src/oe/openembedded/recipes/busybox/busybox-native_1.15.2.bb, do_configure) (dependent Tasks ['busybox-native, do_patch', 'update-rc.d, do_populate_staging', 'busybox-native, do_populate_staging', 'shasum-native.bb, do_populate_staging', 'busybox-native, do_unpack'])
>
>Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
>---
> lib/bb/runqueue.py |   12 ++++++++++--
> 1 files changed, 10 insertions(+), 2 deletions(-)
>
>diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
>index 8b6e12d..df6e673 100644
>--- a/lib/bb/runqueue.py
>+++ b/lib/bb/runqueue.py
>@@ -174,9 +174,17 @@ class RunQueue:
>         self.runq_task = []
>         self.runq_depends = []
>         self.runq_revdeps = []
>-
>         self.state = runQueuePrepare
> 
>+    def runq_depends_names(self, ids):
>+        import re
>+        ret = []
>+        for id in self.runq_depends[ids]:
>+            nam = os.path.basename(self.get_user_idstring(id))
>+            nam = re.sub("_[^,]*,", ",", nam)
>+            ret.extend([nam])
>+        return ret
>+
>     def get_user_idstring(self, task):
>         fn = self.taskData.fn_index[self.runq_fnid[task]]
>         taskname = self.runq_task[task]
>@@ -247,7 +255,7 @@ class RunQueue:
>                         valid_chains.append(new_chain)
>                         msgs.append("Dependency loop #%d found:\n" % len(valid_chains))
>                         for dep in new_chain:
>-                            msgs.append("  Task %s (%s) (depends: %s)\n" % (dep, self.get_user_idstring(dep), self.runq_depends[dep]))
>+                            msgs.append("  Task %s (%s) (dependent Tasks %s)\n" % (dep, self.get_user_idstring(dep), self.runq_depends_names(dep)))
>                         msgs.append("\n")
>                     if len(valid_chains) > 10:
>                         msgs.append("Aborted dependency loops search after 10 matches.\n")
>-- 
>1.6.5
>



  reply	other threads:[~2009-11-23  9:17 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-20 20:56 [PATCH] improve printing dependent tasks Bernhard Reutner-Fischer
2009-11-23  9:18 ` Bernhard Reutner-Fischer [this message]
2009-11-23 10:23   ` PING " Phil Blundell

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=20091123091824.GC436@mx.loc \
    --to=rep.dot.nop@gmail.com \
    --cc=openembedded-devel@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 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.