All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/7] Make toasterui to work in build mode
@ 2016-03-01 12:26 Ed Bartosh
  2016-03-01 12:26 ` [PATCH v3 1/7] toasterui: reformat list of events Ed Bartosh
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Ed Bartosh @ 2016-03-01 12:26 UTC (permalink / raw)
  To: toaster

Hi,

This patchset is a preparation for the #7880 fix. As we're going to get rid of
running bitbake server we need toasterui to work in build mode, i.e. with
bitbake <target> -u toasterui.

If you want to test this functionality you can do the following:
 - start Toaster
 - kill bitbake server and observer processes
 - unset BBSERVER
 - add INHERIT+="toaster buildhistory" line to conf/local.conf
 - run bitbake <target> -u toasterui

Expected outcome: you should see commandline build in UI without bitbake server
                  and observer running.

I've discovered nasty bug in handling setEventMask by bitbake server while
working on this. It causes ignoring of the event mask set by toasterui. The result
of this is that list of events in _ev_list variable is different from the actual
list of events processed by toasterui. Here is the difference:
-bb.command.CommandExit
+bb.event.BuildCompleted
+bb.event.BuildStarted
+bb.event.ConfigParsed
+bb.event.DepTreeGenerated
-bb.runqueue.runQueueExitWait
+bb.event.RecipeParsed
+bb.event.SanityCheck
+bb.event.SanityCheckPassed
+bb.event.TreeDataPreparationCompleted
+bb.event.TreeDataPreparationStarted
+bb.runqueue.runQueueTaskCompleted
+bb.runqueue.runQueueTaskSkipped
+bb.runqueue.sceneQueueTaskCompleted

The fix for this bug is also included in this patchset.

Changes in v2: Added several missing events to the _ev_list.
               Removed workaround code that ignores unwanted events.

Changes in v3: Fixed WARNING: Unknown event: <bb.event.BuildStarted object at 0x2554150>
               Mentioned updating config in testing instructions

The following changes since commit f7f35a9d6ff43bd8cb75603557158617a80bb4e5:

  toaster: cleanup of bin/toaster startup code (2016-03-01 12:35:38 +0000)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib ed/toaster/toasterui-in-build-mode
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=ed/toaster/toasterui-in-build-mode

Ed Bartosh (7):
  toasterui: reformat list of events
  toasterui: update list of events
  command: make setEventMask readonly
  toasterui: check if setEventMask succeeded
  toasterui: make toasterui to work in build mode
  toasterui: exit on final events
  toasterui: fix warning 'Unknown event'

 bitbake/lib/bb/command.py      |  1 +
 bitbake/lib/bb/ui/toasterui.py | 90 +++++++++++++++++++++++++++++-------------
 2 files changed, 64 insertions(+), 27 deletions(-)

--
Regards,
Ed


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-03-03  6:42 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-01 12:26 [PATCH v3 0/7] Make toasterui to work in build mode Ed Bartosh
2016-03-01 12:26 ` [PATCH v3 1/7] toasterui: reformat list of events Ed Bartosh
2016-03-01 12:26 ` [PATCH v3 2/7] toasterui: update " Ed Bartosh
2016-03-01 12:26 ` [PATCH v3 3/7] command: make setEventMask readonly Ed Bartosh
2016-03-01 12:26 ` [PATCH v3 4/7] toasterui: check if setEventMask succeeded Ed Bartosh
2016-03-01 12:26 ` [PATCH v3 5/7] toasterui: make toasterui to work in build mode Ed Bartosh
2016-03-01 12:26 ` [PATCH v3 6/7] toasterui: exit on final events Ed Bartosh
2016-03-01 12:26 ` [PATCH v3 7/7] toasterui: fix warning 'Unknown event' Ed Bartosh
2016-03-03  6:42 ` [PATCH v3 0/7] Make toasterui to work in build mode Brian Avery

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.