aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorngharo <root@ngha.ro>2018-06-28 23:35:32 -0500
committerngharo <root@ngha.ro>2018-06-28 23:35:32 -0500
commit49c83f0c693890f1e2df33919606362890bf726d (patch)
treed792e9ab08ae954ef95ac5cd1719cd3f2ef6c64b
parentdf15f0e7aa0e0e7d632e0859f003f547417bf2c2 (diff)
downloadansibots-49c83f0c693890f1e2df33919606362890bf726d.tar.xz
ansibots-49c83f0c693890f1e2df33919606362890bf726d.zip
WIP
-rw-r--r--lib/__init__.py0
-rw-r--r--lib/worker.py23
-rw-r--r--spawn.py29
3 files changed, 52 insertions, 0 deletions
diff --git a/lib/__init__.py b/lib/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/lib/__init__.py
diff --git a/lib/worker.py b/lib/worker.py
new file mode 100644
index 0000000..a3ee435
--- /dev/null
+++ b/lib/worker.py
@@ -0,0 +1,23 @@
+import threading
+import time
+
+def name():
+ return threading.currentThread().getName()
+
+def worker(q):
+ while True:
+ part = q.get()
+
+ if part is None:
+ break
+
+ do_work(part)
+ time.sleep(0.05)
+ q.task_done()
+
+def do_work(part: dict):
+ if part['type'] == "print":
+ action_print(part['payload'])
+
+def action_print(text: str):
+ print('{0} - {1}'.format(name(), text))
diff --git a/spawn.py b/spawn.py
new file mode 100644
index 0000000..decea85
--- /dev/null
+++ b/spawn.py
@@ -0,0 +1,29 @@
+import sys
+import queue
+import threading
+from lib import worker
+
+num_worker_threads = 4
+
+def input():
+ return sys.stdin
+
+q = queue.Queue()
+threads = []
+for i in range(num_worker_threads):
+ thread_name = 'bob-' + str(i)
+ t = threading.Thread(target=worker.worker, args=(q,), name=thread_name)
+ t.start()
+ threads.append(t)
+
+for item in input():
+ q.put(item)
+
+# block until all tasks are done
+q.join()
+
+# stop workers
+for i in range(num_worker_threads):
+ q.put(None)
+for t in threads:
+ t.join()