1
/* ESTIMATES ARE VERY ROUGH APPROXIMATIONS */
2
strict digraph performance {
4
/* completed node list */
6
add_analysis[label="Work required analysis for add"];
7
branch_analysis[label="Work required analysis for branch"];
8
bundle_analysis[label="Work required analysis for creating a bundle"];
9
wt_disk_order[label="Working Tree disk ordering\n6-8 weeks"];
11
/* uncompleted node list - add new tasks here */
13
annotate_analysis[label="Work required analysis for annotate"];
14
status_analysis[label="Work required analysis for status"];
15
commit_analysis[label="Work required analysis for commit"];
16
fetch_analysis[label="Work required analysis for push/pull"];
17
log_analysis[label="Work required analysis for log"];
18
log_path_analysis[label="Work required analysis for log of selected paths."];
19
diff_analysis[label="Work required analysis for diff"];
20
diff_path_analysis[label="Work required analysis for diff of selected paths"];
21
revert_analysis[label="Work required analysis for revert"];
22
revert_path_analysis[label="Work required analysis for revert of selected paths"];
23
merge_analysis[label="Work required analysis for merge"];
24
uncommit_analysis[label="Work required analysis for uncommit"];
25
missing_analysis[label="Work required analysis for missing"];
26
update_analysis[label="Work required analysis for update"];
27
cbranch_analysis[label="Work required analysis for cbranch"];
29
add_api_stack[label="Targeted API stack for add"];
30
branch_api_stack[label="Targeted API stack for branch"];
31
bundle_api_stack[label="Targeted API stack for creating a bundle"];
32
annotate_api_stack[label="Targeted API stack for annotate"];
33
status_api_stack[label="Targeted API stack for status"];
34
commit_api_stack[label="Targeted API stack for commit"];
35
fetch_api_stack[label="Targeted API stack for push/pull"];
36
log_api_stack[label="Targeted API stack for log"];
37
log_path_api_stack[label="Targeted API stack for log of selected paths."];
38
diff_api_stack[label="Targeted API stack for diff"];
39
revert_api_stack[label="Targeted API stack for revert"];
40
revert_path_api_stack[label="Targeted API stack for revert of selected paths"];
41
merge_api_stack[label="Targeted API stack for merge"];
42
uncommit_api_stack[label="Targeted API stack for uncommit"];
43
missing_api_stack[label="Targeted API stack for missing"];
44
update_api_stack[label="Targeted API stack for update"];
45
cbranch_api_stack[label="Targeted API stack for cbranch"];
47
data_collation[label="Stream API for inserting/obtaining revision data.\n1 month"];
48
repository_stacking[label="Repository stacking API\n2 months"];
49
new_container[label="New container format\n2 weeks"]
50
xdelta[label="Xdelta sanity/learning\n2 weeks"];
51
xdelta_imp[label="Xdelta implementation\n1 week"];
52
q_splitting[label="Question radix directory splitting\n2 weeks"];
53
i_splitting[label="Inventory storage changed to answer what-changed quickly\n6-8 weeks"]
54
per_file_graph[label="Provide an API for per-file graph data rather than physical storage coupled knits api.\n1 days"];
55
deprecate_versionedfile_api[label="Deprecate the public API for access to physical knit storage."];
56
anno_cache[label="Annotations become a cache:\n logically separate data\n2 weeks"]
57
anno_regen[label="Annotation regeneration\n"];
58
anno_kinds[label="Different styles of annotation"];
59
memory_copies[label="Stop requiring full memory copies of files"];
60
repo_disk_order[label="Repository disk ordering\n1 month"];
61
pack_repository[label="Pack based repository format"];
62
graph_api[label="Network-efficient revision-graph API\n3 week"];
63
iter_merge[label="iter_changes based merge\n2 days"];
64
validators[label="Build new validators for revisions and trees."];
66
/* under discussion/optional */
68
hash_names[label="Use hashes as names for some objects\n(to reduce tracking metadata and ease interoperability."];
69
gdfo_api[label="GDFO API\n1 day"];
70
gdfo_cache[label="GDFO Cache\n1 week"];
71
gdfo_usage[label="GDFO Usage\n3 days"];
74
gdfo_api -> gdfo_cache;
75
gdfo_api -> gdfo_usage;
77
q_splitting -> i_splitting;
78
per_file_graph -> deprecate_versionedfile_api;
79
anno_regen -> anno_kinds;
80
anno_cache -> anno_regen;
81
add_analysis -> add_api_stack;
82
annotate_analysis -> annotate_api_stack -> anno_cache;
83
annotate_api_stack -> per_file_graph -> graph_api;
84
annotate_api_stack -> memory_copies;
85
annotate_api_stack -> hash_names;
86
branch_analysis -> branch_api_stack -> repository_stacking;
87
branch_api_stack -> memory_copies;
88
bundle_analysis -> bundle_api_stack -> data_collation;
89
bundle_api_stack -> repository_stacking;
90
bundle_api_stack -> validators;
91
bundle_api_stack -> graph_api;
92
bundle_api_stack -> memory_copies;
93
bundle_api_stack -> new_container;
94
bundle_analysis -> hash_names;
95
cbranch_analysis -> cbranch_api_stack;
96
commit_analysis -> commit_api_stack -> data_collation;
97
commit_api_stack -> per_file_graph;
98
commit_api_stack -> validators;
99
commit_api_stack -> memory_copies;
100
commit_api_stack -> hash_names;
101
diff_analysis -> diff_api_stack;
102
diff_api_stack -> memory_copies;
103
diff_path_analysis -> diff_api_stack -> i_splitting;
104
diff_api_stack -> hash_names;
105
fetch_analysis -> fetch_api_stack -> data_collation;
106
fetch_api_stack -> repository_stacking;
107
fetch_api_stack -> graph_api;
108
fetch_api_stack -> memory_copies;
109
fetch_api_stack -> hash_names;
110
repository_stacking -> graph_api;
111
hash_names -> i_splitting;
112
log_analysis -> log_api_stack -> i_splitting;
113
log_path_analysis -> log_path_api_stack;
114
log_path_api_stack -> per_file_graph;
115
merge_analysis -> merge_api_stack -> iter_merge -> i_splitting;
116
merge_api_stack -> memory_copies;
117
missing_analysis -> missing_api_stack -> repository_stacking;
118
new_container -> pack_repository;
119
pack_repository -> xdelta_imp;
120
pack_repository -> repo_disk_order;
121
per_file_graph -> hash_names;
122
repository_stacking -> pack_repository;
123
repository_stacking -> new_container;
124
revert_analysis -> revert_api_stack -> data_collation;
125
revert_path_analysis -> revert_path_api_stack;
126
revert_api_stack -> memory_copies;
127
status_analysis -> status_api_stack;
128
status_api_stack -> memory_copies;
129
uncommit_analysis -> uncommit_api_stack -> data_collation;
130
uncommit_api_stack -> graph_api;
131
update_analysis -> update_api_stack;
132
update_api_stack -> memory_copies;