Last active
August 29, 2015 14:00
-
-
Save Pentusha/11355707 to your computer and use it in GitHub Desktop.
Function for tracking state of async tasks unexpectedly used to sort a list. Dumbest sorting ever.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def waiter(tasks): | |
| """ async tasks to sync | |
| tasks -> yield + tasks_wo_result | |
| 1 2 3 4 | |
| [0,0,0,0] -> [ ] + [0,0,0,0] 1, 3 solved | |
| [1,0,3,0] -> [1,3 ] + [ 0, 0] 2 solved | |
| [ 2, 0] -> [1,3,2 ] + [ 0] 4 solved | |
| [ 4] -> [1,3,2,4] + [ ] | |
| """ | |
| while tasks: | |
| for task in tasks: | |
| if task.complete: | |
| tasks.remove(task) | |
| yield task | |
| class A(object): | |
| def __init__(self, v): | |
| self.v = self.count = v | |
| def __str__(self): | |
| return str(self.v) | |
| def __repr__(self): | |
| return str(self.v) | |
| @property | |
| def complete(self): | |
| self.count -= 1 | |
| return not self.count | |
| a = waiter([ | |
| A(1), | |
| A(2), | |
| A(1), | |
| A(3), | |
| A(7), | |
| A(2), | |
| ]) | |
| for x in a: | |
| print(x) # 1 1 2 2 3 7 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment