mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
docs
This commit is contained in:
parent
bf30f12654
commit
72f75b77a6
@ -19,13 +19,14 @@ def build(ctx):
|
||||
ctx(rule='sleep 0.1', color='GREEN', name='green', always=True)
|
||||
ctx(rule='sleep 6', color='RED', name='red', after='blue')
|
||||
|
||||
|
||||
from waflib import Task, Runner
|
||||
|
||||
old = Task.set_file_constraints
|
||||
def meth(lst):
|
||||
def bluefirst(lst):
|
||||
lst.sort(cmp=lambda x, y: cmp(x.__class__.__name__, y.__class__.__name__))
|
||||
old(lst)
|
||||
Task.set_file_constraints = meth
|
||||
Task.set_file_constraints = bluefirst
|
||||
|
||||
def get_out(self):
|
||||
tsk = self.prev_get_out()
|
||||
@ -40,10 +41,6 @@ def get_out(self):
|
||||
lst.reverse()
|
||||
return reds
|
||||
self.outstanding = remove_red(self.outstanding) + remove_red(self.frozen) + self.outstanding
|
||||
#remove_red(self.outstanding)
|
||||
#remove_red(self.frozen)
|
||||
#for x in reds:
|
||||
# self.outstanding.insert(0, x)
|
||||
return tsk
|
||||
Runner.Parallel.prev_get_out = Runner.Parallel.get_out
|
||||
Runner.Parallel.get_out = get_out
|
||||
|
BIN
docs/book/pics/tasks_nosort.png
Normal file
BIN
docs/book/pics/tasks_nosort.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
BIN
docs/book/pics/tasks_pseudo_after.png
Normal file
BIN
docs/book/pics/tasks_pseudo_after.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
docs/book/pics/tasks_pseudo_before.png
Normal file
BIN
docs/book/pics/tasks_pseudo_before.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
docs/book/pics/tasks_sort.png
Normal file
BIN
docs/book/pics/tasks_sort.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
@ -240,6 +240,40 @@ Here is a representation of the effect:
|
||||
|
||||
image::tasks_sort{PIC}["Slowest task first"{backend@docbook:,width=440:},align="center"]
|
||||
|
||||
==== Pseudo-sequential constraints
|
||||
|
||||
Though the weak order constraints can schedule specific tasks to run as soon as possible, they do not affect tasks that are posponed. The tasks that are waiting on others can be executed at any time. On the following diagram, the task type *red* is waiting on the task type *blue*, but other tasks (*green*) get executed before:
|
||||
|
||||
image::tasks_pseudo_before{PIC}["No particular order"{backend@docbook:,width=440:},align="center"]
|
||||
|
||||
To force the execution of *red* be as soon as possible after *blue*, another constraint is added. It sorts the waiting tasks so that the *red* tasks are getting a higher priority
|
||||
|
||||
// tasks_weak2
|
||||
[source,python]
|
||||
---------------
|
||||
from waflib import Runner
|
||||
def get_out(self):
|
||||
tsk = self.prev_get_out()
|
||||
if tsk.__class__.__name__ == 'blue':
|
||||
def remove_red(lst):
|
||||
reds = []
|
||||
lst.reverse()
|
||||
for tsk in lst:
|
||||
if tsk.__class__.__name__ == 'red':
|
||||
lst.remove(tsk)
|
||||
reds.append(tsk)
|
||||
lst.reverse()
|
||||
return reds
|
||||
self.outstanding = remove_red(self.outstanding) + remove_red(self.frozen) + self.outstanding
|
||||
return tsk
|
||||
Runner.Parallel.prev_get_out = Runner.Parallel.get_out
|
||||
Runner.Parallel.get_out = get_out
|
||||
---------------
|
||||
|
||||
On the results, a few *green* tasks are still executed before the *red* ones because a certain amount tasks is already waiting to be processed by the consumer threads (*waflib.Task.GAP*).
|
||||
|
||||
image::tasks_pseudo_after{PIC}["Additional constraints"{backend@docbook:,width=440:},align="center"]
|
||||
|
||||
=== Dependencies
|
||||
|
||||
==== Task signatures
|
||||
|
Loading…
Reference in New Issue
Block a user