All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/6] event/command: Allow UI to request the UI eventhander ID
@ 2017-07-18 21:36 Richard Purdie
  2017-07-18 21:36 ` [PATCH 2/6] server: Remove base classes and inline code Richard Purdie
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Richard Purdie @ 2017-07-18 21:36 UTC (permalink / raw)
  To: bitbake-devel

The UI may want to change its event mask however to do this, it needs the
event handler's ID. Tweak the code to allow this to be stored and add
a command to query it.

Use the new command in the process server backend.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 lib/bb/command.py        |  5 +++++
 lib/bb/event.py          | 11 ++++++++---
 lib/bb/server/process.py |  7 ++++++-
 3 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/lib/bb/command.py b/lib/bb/command.py
index 36891b9..eb7c86f 100644
--- a/lib/bb/command.py
+++ b/lib/bb/command.py
@@ -238,6 +238,11 @@ class CommandsSync:
         return command.cooker.matchFile(fMatch)
     matchFile.needconfig = False
 
+    def getUIHandlerNum(self, command, params):
+        return bb.event.get_uihandler()
+    getUIHandlerNum.needconfig = False
+    getUIHandlerNum.readonly = True
+
     def setEventMask(self, command, params):
         handlerNum = params[0]
         llevel = params[1]
diff --git a/lib/bb/event.py b/lib/bb/event.py
index d5c5ef3..92ee3e9 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -288,13 +288,13 @@ def set_eventfilter(func):
     _eventfilter = func
 
 def register_UIHhandler(handler, mainui=False):
-    if mainui:
-        global _uiready
-        _uiready = True
     bb.event._ui_handler_seq = bb.event._ui_handler_seq + 1
     _ui_handlers[_ui_handler_seq] = handler
     level, debug_domains = bb.msg.constructLogOptions()
     _ui_logfilters[_ui_handler_seq] = UIEventFilter(level, debug_domains)
+    if mainui:
+        global _uiready
+        _uiready = _ui_handler_seq
     return _ui_handler_seq
 
 def unregister_UIHhandler(handlerNum, mainui=False):
@@ -305,6 +305,11 @@ def unregister_UIHhandler(handlerNum, mainui=False):
         del _ui_handlers[handlerNum]
     return
 
+def get_uihandler():
+    if _uiready is False:
+        return None
+    return _uiready
+
 # Class to allow filtering of events and specific filtering of LogRecords *before* we put them over the IPC
 class UIEventFilter(object):
     def __init__(self, level, debug_domains):
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index a8ba468..cfcd764 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -63,7 +63,12 @@ class ServerCommunicator():
                 pass
 
     def getEventHandle(self):
-        return self.event_handle.value
+        handle, error = self.runCommand(["getUIHandlerNum"])
+        if error:
+            logger.error("Unable to get UI Handler Number: %s" % error)
+            raise BaseException(error)
+
+        return handle
 
 class EventAdapter():
     """
-- 
2.7.4



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

end of thread, other threads:[~2017-07-18 21:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-18 21:36 [PATCH 1/6] event/command: Allow UI to request the UI eventhander ID Richard Purdie
2017-07-18 21:36 ` [PATCH 2/6] server: Remove base classes and inline code Richard Purdie
2017-07-18 21:36 ` [PATCH 3/6] cookerdata: Add a function to find TOPDIR Richard Purdie
2017-07-18 21:36 ` [PATCH 4/6] daemonize: Various fixes Richard Purdie
2017-07-18 21:36 ` [PATCH 5/6] server: Rework the server API so process and xmlrpc servers coexist Richard Purdie
2017-07-18 21:43   ` Richard Purdie
2017-07-18 21:37 ` [PATCH 6/6] cookerdata/cooker: Restore original datastore upon client disconnect Richard Purdie

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.