-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomplex.py
1280 lines (1032 loc) · 43.7 KB
/
complex.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# =============================================================================
# DelayedKeyboardInterrupt implementation.
# This code can be moved into separate python package.
# =============================================================================
import os
import signal
__all__ = [
'SIGNAL_TRANSLATION_MAP',
]
SIGNAL_TRANSLATION_MAP = {
signal.SIGINT: 'SIGINT',
signal.SIGTERM: 'SIGTERM',
}
class DelayedKeyboardInterrupt:
def __init__(self, propagate_to_forked_processes=None):
"""
Constructs a context manager that suppresses SIGINT & SIGTERM signal handlers
for a block of code.
The signal handlers are called on exit from the block.
Inspired by: https://stackoverflow.com/a/21919644
:param propagate_to_forked_processes: This parameter controls behavior of this context manager
in forked processes.
If True, this context manager behaves the same way in forked processes as in parent process.
If False, signals received in forked processes are handled by the original signal handler.
If None, signals received in forked processes are ignored (default).
"""
self._pid = os.getpid()
self._propagate_to_forked_processes = propagate_to_forked_processes
self._sig = None
self._frame = None
self._old_signal_handler_map = None
def __enter__(self):
self._old_signal_handler_map = {
sig: signal.signal(sig, self._handler)
for sig, _ in SIGNAL_TRANSLATION_MAP.items()
}
def __exit__(self, exc_type, exc_val, exc_tb):
for sig, handler in self._old_signal_handler_map.items():
signal.signal(sig, handler)
if self._sig is None:
return
self._old_signal_handler_map[self._sig](self._sig, self._frame)
def _handler(self, sig, frame):
self._sig = sig
self._frame = frame
#
# Protection against fork.
#
if os.getpid() != self._pid:
if self._propagate_to_forked_processes is False:
log.warning(f'DelayedKeyboardInterrupt._handler: {SIGNAL_TRANSLATION_MAP[sig]} received; '
f'PID mismatch: {os.getpid()=}, {self._pid=}, calling original handler')
self._old_signal_handler_map[self._sig](self._sig, self._frame)
elif self._propagate_to_forked_processes is None:
log.warning(f'DelayedKeyboardInterrupt._handler: {SIGNAL_TRANSLATION_MAP[sig]} received; '
f'PID mismatch: {os.getpid()=}, ignoring the signal')
return
# elif self._propagate_to_forked_processes is True:
# ... passthrough
log.warning(f'DelayedKeyboardInterrupt._handler: {SIGNAL_TRANSLATION_MAP[sig]} received; delaying KeyboardInterrupt')
# =============================================================================
# Main script code.
# =============================================================================
import asyncio
import logging
import logging.handlers
import multiprocessing as mp
import queue
import random
import signal
import threading
import time
from concurrent.futures import Executor, ThreadPoolExecutor
from dataclasses import dataclass, field
from typing import Dict, List, Type, Optional, Any
from uuid import uuid4
log = logging.getLogger()
#
# Maximum number of processes, threads and "busy tasks" for this script.
#
# Keep in mind that when there are more tasks scheduled to run
# in the threadpool executor than the THREADPOOL_EXECUTOR_MAX_WORKERS,
# the tasks are pending until all previous tasks are done.
#
# This becomes a problem becomes when the threadpool queue is full and
# e.g. run_in_executor(stop()) is scheduled. In that case, the stop()
# won't happen before all other tasks are done.
#
PROCESS_WORKER_COUNT = 4
THREADPOOL_EXECUTOR_MAX_WORKERS = PROCESS_WORKER_COUNT
BUSY_TASK_COUNT = THREADPOOL_EXECUTOR_MAX_WORKERS - 2 # leave space for scheduling stop()
# and update()
class DummyManager:
"""
This class represents a class that does some pythonic "heavy lifting",
i.e. does some CPU intensive work.
It has 2 arbitrary methods that simulate some heavy work.
It has also update() method, which manipulates with an internal state.
One real world example of this class might be "Yara rules" manager:
Instead of process_string() there would be something like match()
and update() would update the internal yara.Rules object.
"""
def __init__(self):
self._version = 1
def process_string(self, parameter: str) -> dict:
log.info(f'DummyManager.process_string({parameter=})')
time.sleep(0.5)
return {
'version': self._version,
'parameter': parameter
}
def process_number(self, parameter: int) -> dict:
log.info(f'DummyManager.process_number({parameter=})')
time.sleep(0.3)
return {
'version': self._version,
'parameter': parameter
}
def update(self):
log.info(f'DummyManager.update')
time.sleep(5)
self._version += 1
UNSET = object()
@dataclass
class MultiProcessManagerResultItem:
event: threading.Event
value: Any = UNSET
class MultiProcessManager:
PROCESS_WORKER_BOOTSTRAP_TIMEOUT = 5.0
PROCESS_WORKER_START_TIMEOUT = 30.0
CALL_METHOD_TIMEOUT = 30.0
UPDATE_TIMEOUT = 30.0
def __init__(self, process_worker_count: int):
#
# Input & output queue.
# Input queue contains tuples of (uuid, method_name, (args)).
# Output queue contains tuples of (uuid, result).
#
self._input_queue = mp.Queue() # type: mp.Queue
self._output_queue = mp.Queue() # type: mp.Queue
#
# Result map contains { uuid -> MultiProcessManagerResultItem } mapping.
#
self._result_map = {} # type: Dict[str, MultiProcessManagerResultItem]
#
# List of Process() workers and list of events that _process_worker sets
# to signalize successful start.
#
self._process_list = [] # type: List[mp.Process]
self._process_bootstrapped_event_list = [] # type: List[mp.Event]
self._process_started_event_list = [] # type: List[mp.Event]
self._process_started_value_list = [] # type: List[mp.Value]
#
# When update() method is called, _update_condition notifies all waiters in the _process_worker.
# After the update is done, each instance sets its own update_done_event.
# _update_in_progress_lock protects the update() method from being called more than once.
#
self._update_condition_lock = mp.Lock()
self._update_condition = mp.Condition(self._update_condition_lock)
self._update_done_event_list = [] # type: List[mp.Event]
self._update_in_progress_lock = threading.Lock()
#
# When _stop_event is set, all Process() instances are instructed to gracefully exit.
#
self._stop_event = mp.Event()
#
# Result collector thread.
#
self._result_collector_thread = threading.Thread(target=self._result_collector_thread_worker,
args=(self._output_queue, self._stop_event, self._result_map))
for i in range(process_worker_count):
process_bootstrapped_event = mp.Event()
process_started_event = mp.Event()
process_started_value = mp.Value('i', 0)
update_done_event = mp.Event()
process = mp.Process(target=self._process_worker,
args=(logger.queue,
self._input_queue, self._output_queue,
process_bootstrapped_event, process_started_event, process_started_value,
self._update_condition, update_done_event, self._stop_event))
self._process_list.append(process)
self._process_bootstrapped_event_list.append(process_bootstrapped_event)
self._process_started_event_list.append(process_started_event)
self._process_started_value_list.append(process_started_value)
self._update_done_event_list.append(update_done_event)
def start(self):
log.info(f'MPM.start: starting')
try:
#
# Start the process workers.
#
log.debug(f'MPM.start: creating processes')
for process in self._process_list:
process.start()
#
# Wait until all processes reach the _process_worker() function.
#
log.debug(f'MPM.start: waiting for "bootstrapped" events')
self._wait_for_events(self._process_bootstrapped_event_list,
self.PROCESS_WORKER_BOOTSTRAP_TIMEOUT)
#
# Wait until all processes are done initializing
#
log.debug(f'MPM.start: waiting for "started" events')
self._wait_for_events(self._process_started_event_list,
self.PROCESS_WORKER_START_TIMEOUT)
#
# Check if all processes initialized successfully.
#
log.debug(f'MPM.start: checking initialization status')
for process_started_value in self._process_started_value_list:
if process_started_value.value == 0:
log.error(f'MPM.start: process failed to start')
raise RuntimeError(f'Process initialization failed')
#
# Check if all processes are alive.
#
log.debug(f'MPM.start: checking process status')
for process in self._process_list:
if not process.is_alive():
log.error('MPM.start: process killed')
raise RuntimeError(f'Process killed')
#
# If everything went fine, start the result collector thread.
#
log.debug(f'MPM.start: starting result collector thread')
self._result_collector_thread.start()
except (TimeoutError, RuntimeError) as e:
log.error(f'MPM.start: start failed: {e}, killing all processes')
for process in self._process_list:
process.kill()
process.close()
self._process_list = []
raise
log.info(f'MPM.start: started')
def stop(self):
log.info(f'MPM.stop: stopping')
#
# First, set the stop event.
#
log.debug(f'MPM.stop: waking up worker threads (CommandStop)')
self._stop_event.set()
#
# Then wake up all worker threads in all processes.
#
log.debug(f'MPM.stop: waking up worker threads (CommandUpdate)')
with self._update_condition:
self._update_condition.notify_all()
log.debug(f'MPM.stop: waking up worker threads (CommandCallMethod)')
for process in self._process_list:
self._input_queue.put((None, None, None))
#
# Wait until all queues are drained and then close them.
#
log.debug(f'MPM.stop: closing input queue')
self._input_queue.close()
#
# Wait until all processes terminate.
#
log.debug(f'MPM.stop: waiting for processes to terminate')
for process in self._process_list:
process.join()
process.close()
#
# Finally, wake up the result collector thread
# and wait until it terminates.
#
log.debug(f'MPM.stop: terminating result collector thread')
self._output_queue.put((None, None))
self._result_collector_thread.join()
log.debug(f'MPM.stop: closing output queue')
self._output_queue.close()
#
# Wake up all waits in update().
# Note that we ignore _update_in_progress_lock here.
# The processes are already dead, so any wait on update_done_event
# would timeout anyway.
#
log.debug(f'MPM.stop: waking up update events')
for update_done_event in self._update_done_event_list:
update_done_event.set()
#
# Wake up all waits in _call_method().
#
log.debug(f'MPM.stop: unprocessed tasks: {len(self._result_map)}')
for uuid, result in self._result_map.items():
result.event.set()
log.info(f'MPM.stop: stopped')
def update(self):
with self._update_in_progress_lock:
assert not self._stop_event.is_set()
log.info('MPM.update: started')
with self._update_condition:
self._update_condition.notify_all()
for update_done_event in self._update_done_event_list:
update_done_event.wait(self.UPDATE_TIMEOUT)
#
# Check if the stop() method was called meanwhile
# update was in progress.
# If it was, it means the update_done_event was set
# in the stop() method and the update actuall didn't
# happen.
#
if self._stop_event.is_set():
log.error('MPM.update: stopped while updating')
raise RuntimeError('Stopped while updating')
for update_done_event in self._update_done_event_list:
update_done_event.clear()
log.info('MPM.update: finished')
def process_string(self, parameter: str) -> dict:
log.info(f'MPM.process_string({parameter=})')
return self._call_method('process_string', (parameter, ))
def process_number(self, parameter: int) -> dict:
log.info(f'MPM.process_number({parameter=})')
return self._call_method('process_number', (parameter, ))
def _call_method(self, method_name: str, args: tuple):
assert not self._stop_event.is_set()
#
# Enqueue RPC-like item in the input queue.
# The process worker gets it from there.
#
log.debug(f'MPM._call_method({method_name=}, {args=})')
uuid = str(uuid4())
event = threading.Event()
result = MultiProcessManagerResultItem(event=event)
self._result_map[uuid] = result
#
# Note that this call might raise ValueError() if the code is
# is poorly synchronized and the input queue is already closed.
#
self._input_queue.put((uuid, method_name, args))
log.debug(f'MPM._call_method: task "{uuid}" enqueued, waiting')
if not event.wait(self.CALL_METHOD_TIMEOUT):
log.error(f'MPM._call_method: task "{uuid}" timeouted')
raise TimeoutError()
if self._stop_event.is_set():
log.error(f'MPM._call_method: service got stopped while waiting for the result')
raise RuntimeError('Stopped while waiting for the result')
log.debug(f'MPM._call_method: task "{uuid}" done, {result.value=}')
value = result.value
del self._result_map[uuid]
return value
@staticmethod
def _wait_for_events(event_list: List[mp.Event], timeout: float):
deadline = time.time() + timeout
for event in event_list:
if not event.wait(deadline - time.time()):
raise TimeoutError()
@staticmethod
def _result_collector_thread_worker(
output_queue: mp.Queue,
stop_event: mp.Event,
result_map: Dict[str, MultiProcessManagerResultItem]
):
log.debug(f'MPM[collector]: started')
while True:
uuid, value = output_queue.get()
if stop_event.is_set():
#
# There still might be valid queued items in the queue,
# therefore we don't assert on the uuid/value.
#
# However, we ignore what's left in the queue and stop
# unconditionally.
#
# assert uuid is None
# assert value is None
log.debug(f'MPM[collector]: stopping')
break
log.debug(f'MPM[collector]: collecting result {uuid}')
result = result_map[uuid]
result.value = value
result.event.set()
log.debug(f'MPM[collector]: stopped')
@staticmethod
def _process_worker(
logger_queue: mp.Queue,
input_queue: mp.Queue,
output_queue: mp.Queue,
process_bootstrapped_event: mp.Event,
process_started_event: mp.Event,
process_started_value: mp.Value,
update_condition: mp.Condition,
update_done_event: mp.Event,
stop_event: mp.Event
):
ApplicationLogger.configure(logger_queue)
try:
#
# Because we have our own stop_event, we're going to suppress the
# KeyboardInterrupt during the execution of the __process_worker().
#
# Note that if the parent process dies without setting the stop_event,
# this process will be unresponsive to SIGINT/SIGTERM.
# The only way to stop this process would be to ruthlessly kill it.
#
with DelayedKeyboardInterrupt():
#
# Worker function reached - signalize that bootstrapping phase
# is done.
#
log.debug(f'MPM: bootstrapped')
process_bootstrapped_event.set()
MultiProcessManager.__process_worker(
logger_queue,
input_queue,
output_queue,
process_bootstrapped_event,
process_started_event,
process_started_value,
update_condition,
update_done_event,
stop_event
)
#
# Keep in mind that the KeyboardInterrupt will get delivered
# after leaving from the DelayedKeyboardInterrupt() block.
#
except KeyboardInterrupt:
log.warning(f'MPM: KeyboardInterrupt')
pass
@staticmethod
def __process_worker(
logger_queue: mp.Queue,
input_queue: mp.Queue,
output_queue: mp.Queue,
process_bootstrapped_event: mp.Event,
process_started_event: mp.Event,
process_started_value: mp.Value,
update_condition: mp.Condition,
update_done_event: mp.Event,
stop_event: mp.Event
):
class StopProcessWorkerException(Exception):
pass
#
# RPC-like commands.
# Each command must have one process() method
# and one worker() static method.
#
# Each worker is then executed in separated thread.
#
@dataclass
class Command:
def process(self):
pass
@staticmethod
def worker():
raise NotImplementedError()
@dataclass
class CommandCallMethod(Command):
"""
This command represents a RPC-like message constructed in
the _call_method(). It causes to call specified method
in the DummyManager, and return the result in the output_queue.
"""
uuid: str
method_name: str
args: tuple
def process(self):
log.debug(f'MPM: CommandCallMethod.process({self.uuid=}, {self.method_name=}, {self.args=})')
method = getattr(manager, self.method_name)
value = method(*self.args)
output_queue.put((self.uuid, value))
@staticmethod
def worker():
while True:
uuid, method_name, args = input_queue.get()
if stop_event.is_set():
assert uuid is None
assert method_name is None
assert args is None
log.debug(f'MPM: stopping CommandCallMethod.worker()')
break
command_queue.put(
PrioritizedItem(priority=3,
command=CommandCallMethod(uuid, method_name, args))
)
@dataclass
class CommandUpdate(Command):
"""
This command causes the DummyManager to update.
When the update_condition is fired, all process
workers perform an update at the same time.
Note that this is different from CommandCallMethod,
where there is no control over which Process will get
the command.
This command has higher priority than CommandCallMethod.
"""
def process(self):
log.debug(f'MPM: CommandUpdate.process()')
manager.update()
update_done_event.set()
@staticmethod
def worker():
with update_condition:
while True:
update_condition.wait()
if stop_event.is_set():
log.debug(f'MPM: stopping CommandUpdate.worker()')
break
command_queue.put(
PrioritizedItem(priority=2,
command=CommandUpdate())
)
@dataclass
class CommandStop(Command):
"""
This command causes the process worker to stop.
It has the highest priority.
"""
def process(self):
log.debug(f'MPM CommandStop.process()')
raise StopProcessWorkerException()
@staticmethod
def worker():
stop_event.wait()
log.debug(f'MPM: stopping CommandStop.worker()')
command_queue.put(
PrioritizedItem(priority=1,
command=CommandStop())
)
command_list = [
CommandCallMethod,
CommandUpdate,
CommandStop
]
@dataclass(order=True)
class PrioritizedItem:
priority: int
command: Command = field(compare=False)
#
# This queue is filled by command worker threads.
#
command_queue = queue.PriorityQueue() # type: queue.PriorityQueue[Command]
# =====================================================================
# Main code.
# =====================================================================
manager = DummyManager()
#
# Create command worker threads.
#
log.debug(f'MPM: creating command worker threads')
thread_list = [
threading.Thread(target=command.worker)
for command in command_list
]
try:
log.debug(f'MPM: starting command worker threads')
for thread in thread_list:
thread.start()
#
# Initialization is done.
# Set process_started_value to non-zero value to signalize success
# and set the process_started_event.
#
process_started_value.value = 1
process_started_event.set()
log.debug(f'MPM: initialization done')
while True:
try:
item = command_queue.get()
try:
item.command.process()
except StopProcessWorkerException:
log.warning(f'MPM: stopping _process_worker()')
break
except KeyboardInterrupt:
log.warning(f'MPM: KeyboardInterrupt (inner2)')
raise
else:
command_queue.task_done()
except KeyboardInterrupt:
log.warning(f'MPM: KeyboardInterrupt (inner1)')
raise
finally:
#
# Gracefully wait until all threads terminate.
#
log.debug(f'MPM: waiting for thread cleanup ...')
for thread in thread_list:
if thread.is_alive():
thread.join()
log.debug(f'MPM: ... terminated')
class Service:
def start(self):
raise NotImplementedError()
def stop(self):
raise NotImplementedError()
class AsyncService1(Service):
"""
Asynchronous service that wraps the MultiProcessManager.
"""
def __init__(self):
self._executor = ThreadPoolExecutor(max_workers=THREADPOOL_EXECUTOR_MAX_WORKERS)
self._mpm = MultiProcessManager(process_worker_count=PROCESS_WORKER_COUNT)
self._update_task = None # type: Optional[asyncio.Task]
self._process_worker_task_list = [] # type: List[asyncio.Task]
async def start(self):
log.debug(f'AsyncService1: starting')
log.debug(f'AsyncService1: starting MPM')
await asyncio.get_running_loop().run_in_executor(self._executor,
self._mpm.start)
log.debug(f'AsyncService1: creating update task')
self._update_task = asyncio.create_task(self._update_task_worker())
log.debug(f'AsyncService1: creating process worker tasks')
for i in range(BUSY_TASK_COUNT):
self._process_worker_task_list.append(
asyncio.create_task(self._process_worker(i * 1000))
)
log.debug(f'AsyncService1: started')
async def stop(self):
log.debug(f'AsyncService1: stopping')
log.debug(f'AsyncService1: cancelling update task')
self._update_task.cancel()
await self._update_task
log.debug(f'AsyncService1: cancelling process worker tasks')
for process_worker_task in self._process_worker_task_list:
process_worker_task.cancel()
await asyncio.gather(*self._process_worker_task_list, return_exceptions=True)
log.debug(f'AsyncService1: stopping MPM')
await asyncio.get_running_loop().run_in_executor(self._executor,
self._mpm.stop)
log.debug(f'AsyncService1: shutting down executor')
self._executor.shutdown()
log.debug(f'AsyncService1: stopped')
async def update(self):
log.debug(f'AsyncService1: updating')
await asyncio.get_running_loop().run_in_executor(self._executor, self._mpm.update)
log.debug(f'AsyncService1: updated')
async def process_string(self, parameter: str) -> dict:
return await asyncio.get_running_loop().run_in_executor(self._executor,
self._mpm.process_string,
parameter)
async def process_number(self, parameter: int) -> dict:
return await asyncio.get_running_loop().run_in_executor(self._executor,
self._mpm.process_number,
parameter)
#
# Two versions of _update_task_worker:
# - unshielded: when this task is cancelled, it is _really_ cancelled;
# if the cancellation happens in the middle of the update,
# the task doesn't wait until it finishes.
#
# But keep in mind that the task DOESN'T get cancelled in
# the ThreadPoolExecutor - therefore cancellation of this
# task doesn't make instantly an empty space there.
#
# - shielded: when this task is cancelled in the middle of the update,
# it waits for that update to finish.
#
# Feel free to experiment with both of them and chose what suits you.
#
async def __update_task_worker_unshielded(self):
"""
This worker, when cancelled, returns immediately back
to the caller. Note that the update() task still might
remain executing in the ThreadPoolExecutor.
Because of that, you might get message:
"stopped while updating".
"""
try:
while True:
await asyncio.sleep(10)
await self.update()
except asyncio.CancelledError:
log.warning(f'AsyncService1._update_task_worker: cancelled')
async def __update_task_worker_shielded(self):
"""
This worker, when cancelled, waits until the update finishes
and then returns back.
"""
update_task = None # type: Optional[asyncio.Task]
try:
while True:
await asyncio.sleep(10)
update_task = asyncio.create_task(self.update())
await asyncio.shield(update_task)
except asyncio.CancelledError:
log.warning(f'AsyncService1._update_task_worker: cancelled')
if update_task:
log.warning(f'AsyncService1._update_task_worker: awaiting update_task')
await update_task
_update_task_worker = __update_task_worker_shielded
#
# Two versions of _process_worker.
# Same rules as with _update_task_worker apply here.
#
async def __process_worker_unshielded(self, parameter: int):
"""
This worker, when cancelled, returns immediately back
to the caller. Note that tasks still might remain
executing in the ThreadPoolExecutor.
Because of that, you might get messages:
"service got stopped while waiting for the result".
"""
try:
while True:
await asyncio.sleep(random.random())
await self.process_number(parameter)
await self.process_string(f'string-{parameter}')
parameter += 1
except asyncio.CancelledError:
log.debug(f'AsyncService1._process_worker: cancelled')
async def __process_worker_shielded(self, parameter: int):
"""
This worker, when cancelled, waits until all tasks finish
and then returns back.
"""
task_process_number = None # type: Optional[asyncio.Task]
task_process_string = None # type: Optional[asyncio.Task]
try:
while True:
await asyncio.sleep(random.random())
task_process_number = asyncio.create_task(self.process_number(parameter))
await asyncio.shield(task_process_number)
task_process_string = asyncio.create_task(self.process_string(f'string-{parameter}'))
await asyncio.shield(task_process_string)
parameter += 1
except asyncio.CancelledError:
log.debug(f'AsyncService1._process_worker: cancelled')
if task_process_number:
log.debug(f'AsyncService1._process_worker: awaiting task_process_number')
await task_process_number
if task_process_string:
log.debug(f'AsyncService1._process_worker: awaiting task_process_string')
await task_process_string
_process_worker = __process_worker_shielded
class AsyncService2(Service):
"""
Dummy service that does nothing.
"""
def __init__(self):
pass
async def start(self):
log.debug(f'AsyncService2: starting')
await asyncio.sleep(1)
log.debug(f'AsyncService2: started')
async def stop(self):
log.debug(f'AsyncService2: stopping')
await asyncio.sleep(1)
log.debug(f'AsyncService2: stopped')
class Application:
def __init__(self, service_factory_list: List[Type[Service]]):
self._service_factory_list = service_factory_list
self._service_list = [] # type: List[Service]
self._loop = None # type: Optional[asyncio.AbstractEventLoop]
self._wait_event = None # type: Optional[asyncio.Event]
self._wait_task = None # type: Optional[asyncio.Task]
def run(self):
self._loop = asyncio.new_event_loop()
try:
#
# Shield _start() from termination.
#
try:
with DelayedKeyboardInterrupt():
logger.start()
self._start()
#
# If there was an attempt to terminate the application,
# the KeyboardInterrupt is raised AFTER the _start() finishes
# its job.
#
# In that case, the KeyboardInterrupt is re-raised and caught in
# exception handler below and _stop() is called to clean all resources.
#
# Note that it might be generally unsafe to call stop() methods
# on objects that are not started properly.
# This is the main reason why the whole execution of _start()
# is shielded.
#
except KeyboardInterrupt:
log.warning(f'Application.run: got KeyboardInterrupt during start')
raise
#
# Application is started now and is running.
# Wait for a termination event infinitelly.
#
log.debug(f'Application.run: entering wait loop')
self._wait()
log.debug(f'Application.run: exiting wait loop')
except KeyboardInterrupt:
#
# The _stop() is also shielded from termination.
#
try:
with DelayedKeyboardInterrupt():
self._stop()
logger.stop()
except KeyboardInterrupt:
log.warning(f'Application.run: got KeyboardInterrupt during stop')
async def _astart(self):
for service_factory in self._service_factory_list:
service = service_factory()
if asyncio.iscoroutinefunction(service.start):
await service.start()
else:
service.start()
self._service_list.append(service)
async def _astop(self):
for service in self._service_list:
if asyncio.iscoroutinefunction(service.stop):
await service.stop()
else:
service.stop()
async def _await(self):
self._wait_event = asyncio.Event()
self._wait_task = asyncio.create_task(self._wait_event.wait())
await self._wait_task
def _start(self):
self._loop.run_until_complete(self._astart())
def _stop(self):