aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/server
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2013-09-09 17:41:03 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-13 17:23:48 +0100
commit8e8e17631d790271b1be747c4b45059ec38ab606 (patch)
treee52278e87b231ead4e22b288e5c876a98dba2e2a /lib/bb/server
parent62914f9208ef2427a34daa523af857f4027900eb (diff)
downloadbitbake-contrib-8e8e17631d790271b1be747c4b45059ec38ab606.tar.gz
bitbake: xmlrpc: delete unused code BitBakeUIEventServer
BitBakeUIEventServer is an unused class that pushes UI events over a separate thread. The current version of XMLRPC server works just fine with the classic UI event handlers, so this class is not needed. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/server')
-rw-r--r--lib/bb/server/xmlrpc.py45
1 files changed, 0 insertions, 45 deletions
diff --git a/lib/bb/server/xmlrpc.py b/lib/bb/server/xmlrpc.py
index a28672c44..832662352 100644
--- a/lib/bb/server/xmlrpc.py
+++ b/lib/bb/server/xmlrpc.py
@@ -169,51 +169,6 @@ class BitBakeXMLRPCRequestHandler(SimpleXMLRPCRequestHandler):
self.end_headers()
self.wfile.write(response)
-class BitBakeUIEventServer(threading.Thread):
- class EventAdapter():
- """
- Adapter to wrap our event queue since the caller (bb.event) expects to
- call a send() method, but our actual queue only has put()
- """
- def __init__(self, notify):
- self.queue = []
- self.notify = notify
- self.qlock = threading.Lock()
-
- def send(self, event):
- self.qlock.acquire()
- self.queue.append(event)
- self.qlock.release()
- self.notify.set()
-
- def get(self):
- self.qlock.acquire()
- if len(self.queue) == 0:
- self.qlock.release()
- return None
- e = self.queue.pop(0)
- if len(self.queue) == 0:
- self.notify.clear()
- self.qlock.release()
- return e
-
- def __init__(self, connection):
- self.connection = connection
- self.notify = threading.Event()
- self.event = BitBakeUIEventServer.EventAdapter(self.notify)
- self.quit = False
- threading.Thread.__init__(self)
-
- def terminateServer(self):
- self.quit = True
-
- def run(self):
- while not self.quit:
- self.notify.wait(0.1)
- evt = self.event.get()
- if evt:
- self.connection.event.sendpickle(pickle.dumps(evt))
-
class XMLRPCProxyServer(BaseImplServer):
""" not a real working server, but a stub for a proxy server connection