forked from google/kati
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dep.go
596 lines (547 loc) · 14.9 KB
/
dep.go
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
// Copyright 2015 Google Inc. All rights reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package kati
import (
"fmt"
"path/filepath"
"sort"
"strings"
"github.com/golang/glog"
)
// DepNode represents a makefile rule for an output.
type DepNode struct {
Output string
Cmds []string
Deps []*DepNode
OrderOnlys []*DepNode
Parents []*DepNode
HasRule bool
IsPhony bool
ActualInputs []string
TargetSpecificVars Vars
Filename string
Lineno int
}
func (n *DepNode) String() string {
return fmt.Sprintf("Dep{output=%s cmds=%d deps=%d orders=%d hasRule=%t phony=%t filename=%s lineno=%d}",
n.Output, len(n.Cmds), len(n.Deps), len(n.OrderOnlys), n.HasRule, n.IsPhony, n.Filename, n.Lineno)
}
type depBuilder struct {
rules map[string]*rule
ruleVars map[string]Vars
implicitRules *ruleTrie
suffixRules map[string][]*rule
firstRule *rule
vars Vars
ev *Evaluator
vpaths searchPaths
done map[string]*DepNode
phony map[string]bool
trace []string
nodeCnt int
pickExplicitRuleCnt int
pickImplicitRuleCnt int
pickSuffixRuleCnt int
pickExplicitRuleWithoutCmdCnt int
}
type ruleTrieEntry struct {
rule *rule
suffix string
}
type ruleTrie struct {
rules []ruleTrieEntry
children map[byte]*ruleTrie
}
func newRuleTrie() *ruleTrie {
return &ruleTrie{
children: make(map[byte]*ruleTrie),
}
}
func (rt *ruleTrie) add(name string, r *rule) {
glog.V(1).Infof("rule trie: add %q %v %s", name, r.outputPatterns[0], r)
if name == "" || name[0] == '%' {
glog.V(1).Infof("rule trie: add entry %q %v %s", name, r.outputPatterns[0], r)
rt.rules = append(rt.rules, ruleTrieEntry{
rule: r,
suffix: name,
})
return
}
c, found := rt.children[name[0]]
if !found {
c = newRuleTrie()
rt.children[name[0]] = c
}
c.add(name[1:], r)
}
func (rt *ruleTrie) lookup(name string) []*rule {
glog.V(1).Infof("rule trie: lookup %q", name)
if rt == nil {
return nil
}
var rules []*rule
for _, entry := range rt.rules {
if (entry.suffix == "" && name == "") || strings.HasSuffix(name, entry.suffix[1:]) {
rules = append(rules, entry.rule)
}
}
if name == "" {
return rules
}
rules = append(rules, rt.children[name[0]].lookup(name[1:])...)
glog.V(1).Infof("rule trie: lookup %q => %v", name, rules)
return rules
}
func (rt *ruleTrie) size() int {
if rt == nil {
return 0
}
size := len(rt.rules)
for _, c := range rt.children {
size += c.size()
}
return size
}
func replaceSuffix(s string, newsuf string) string {
// TODO: Factor out the logic around suffix rules and use
// it from substitution references.
// http://www.gnu.org/software/make/manual/make.html#Substitution-Refs
return fmt.Sprintf("%s.%s", stripExt(s), newsuf)
}
func (db *depBuilder) exists(target string) bool {
_, present := db.rules[target]
if present {
return true
}
if db.phony[target] {
return true
}
_, ok := db.vpaths.exists(target)
return ok
}
func (db *depBuilder) canPickImplicitRule(r *rule, output string) bool {
outputPattern := r.outputPatterns[0]
if !outputPattern.match(output) {
return false
}
for _, input := range r.inputs {
input = outputPattern.subst(input, output)
if !db.exists(input) {
return false
}
}
return true
}
func (db *depBuilder) mergeImplicitRuleVars(outputs []string, vars Vars) Vars {
if len(outputs) != 1 {
// TODO(ukai): should return error?
panic(fmt.Sprintf("FIXME: Implicit rule should have only one output but %q", outputs))
}
glog.V(1).Infof("merge? %q", db.ruleVars)
glog.V(1).Infof("merge? %q", outputs[0])
ivars, present := db.ruleVars[outputs[0]]
if !present {
return vars
}
if vars == nil {
return ivars
}
glog.V(1).Info("merge!")
v := make(Vars)
v.Merge(ivars)
v.Merge(vars)
return v
}
func (db *depBuilder) pickRule(output string) (*rule, Vars, bool) {
r, present := db.rules[output]
vars := db.ruleVars[output]
if present {
db.pickExplicitRuleCnt++
if len(r.cmds) > 0 {
return r, vars, true
}
// If none of the explicit rules for a target has commands,
// then `make' searches for an applicable implicit rule to
// find some commands.
db.pickExplicitRuleWithoutCmdCnt++
}
irules := db.implicitRules.lookup(output)
for i := len(irules) - 1; i >= 0; i-- {
irule := irules[i]
if !db.canPickImplicitRule(irule, output) {
glog.Infof("ignore implicit rule %q %s", output, irule)
continue
}
glog.Infof("pick implicit rule %q => %q %s", output, irule.outputPatterns, irule)
db.pickImplicitRuleCnt++
if r != nil {
ir := &rule{}
*ir = *r
ir.outputPatterns = irule.outputPatterns
// implicit rule's prerequisites will be used for $<
ir.inputs = append(irule.inputs, ir.inputs...)
ir.cmds = irule.cmds
// TODO(ukai): filename, lineno?
ir.cmdLineno = irule.cmdLineno
return ir, vars, true
}
if vars != nil {
var outputs []string
for _, op := range irule.outputPatterns {
outputs = append(outputs, op.String())
}
vars = db.mergeImplicitRuleVars(outputs, vars)
}
// TODO(ukai): check len(irule.cmd) ?
return irule, vars, true
}
outputSuffix := filepath.Ext(output)
if !strings.HasPrefix(outputSuffix, ".") {
return r, vars, r != nil
}
rules, present := db.suffixRules[outputSuffix[1:]]
if !present {
return r, vars, r != nil
}
for _, irule := range rules {
if len(irule.inputs) != 1 {
// TODO(ukai): should return error?
panic(fmt.Sprintf("FIXME: unexpected number of input for a suffix rule (%d)", len(irule.inputs)))
}
if !db.exists(replaceSuffix(output, irule.inputs[0])) {
continue
}
db.pickSuffixRuleCnt++
if r != nil {
sr := &rule{}
*sr = *r
// TODO(ukai): input order is correct?
sr.inputs = append([]string{replaceSuffix(output, irule.inputs[0])}, r.inputs...)
sr.cmds = irule.cmds
// TODO(ukai): filename, lineno?
sr.cmdLineno = irule.cmdLineno
return sr, vars, true
}
if vars != nil {
vars = db.mergeImplicitRuleVars(irule.outputs, vars)
}
// TODO(ukai): check len(irule.cmd) ?
return irule, vars, true
}
return r, vars, r != nil
}
func expandInputs(rule *rule, output string) []string {
var inputs []string
for _, input := range rule.inputs {
if len(rule.outputPatterns) > 0 {
if len(rule.outputPatterns) != 1 {
panic(fmt.Sprintf("FIXME: multiple output pattern is not supported yet"))
}
input = intern(rule.outputPatterns[0].subst(input, output))
} else if rule.isSuffixRule {
input = intern(replaceSuffix(output, input))
}
inputs = append(inputs, input)
}
return inputs
}
func (db *depBuilder) buildPlan(output string, neededBy string, tsvs Vars) (*DepNode, error) {
glog.V(1).Infof("Evaluating command: %s", output)
db.nodeCnt++
if db.nodeCnt%100 == 0 {
db.reportStats()
}
if n, present := db.done[output]; present {
return n, nil
}
n := &DepNode{Output: output, IsPhony: db.phony[output]}
db.done[output] = n
// create depnode for phony targets?
rule, vars, present := db.pickRule(output)
if !present {
return n, nil
}
var restores []func()
if vars != nil {
for name, v := range vars {
// TODO: Consider not updating db.vars.
tsv := v.(*targetSpecificVar)
restores = append(restores, db.vars.save(name))
restores = append(restores, tsvs.save(name))
switch tsv.op {
case ":=", "=":
db.vars[name] = tsv
tsvs[name] = v
case "+=":
oldVar, present := db.vars[name]
if !present || oldVar.String() == "" {
db.vars[name] = tsv
} else {
var err error
v, err = oldVar.AppendVar(db.ev, tsv)
if err != nil {
return nil, err
}
db.vars[name] = v
}
tsvs[name] = v
case "?=":
if _, present := db.vars[name]; !present {
db.vars[name] = tsv
tsvs[name] = v
}
}
}
defer func() {
for _, restore := range restores {
restore()
}
}()
}
inputs := expandInputs(rule, output)
glog.Infof("Evaluating command: %s inputs:%q => %q", output, rule.inputs, inputs)
for _, input := range inputs {
db.trace = append(db.trace, input)
ni, err := db.buildPlan(input, output, tsvs)
db.trace = db.trace[0 : len(db.trace)-1]
if err != nil {
return nil, err
}
if ni != nil {
n.Deps = append(n.Deps, ni)
ni.Parents = append(ni.Parents, n)
}
}
for _, input := range rule.orderOnlyInputs {
db.trace = append(db.trace, input)
ni, err := db.buildPlan(input, output, tsvs)
db.trace = db.trace[0 : len(db.trace)-1]
if err != nil {
return nil, err
}
if n != nil {
n.OrderOnlys = append(n.OrderOnlys, ni)
ni.Parents = append(ni.Parents, n)
}
}
n.HasRule = true
n.Cmds = rule.cmds
n.ActualInputs = inputs
n.TargetSpecificVars = make(Vars)
for k, v := range tsvs {
if glog.V(1) {
glog.Infof("output=%s tsv %s=%s", output, k, v)
}
n.TargetSpecificVars[k] = v
}
n.Filename = rule.filename
if len(rule.cmds) > 0 {
if rule.cmdLineno > 0 {
n.Lineno = rule.cmdLineno
} else {
n.Lineno = rule.lineno
}
}
return n, nil
}
func (db *depBuilder) populateSuffixRule(r *rule, output string) bool {
if len(output) == 0 || output[0] != '.' {
return false
}
rest := output[1:]
dotIndex := strings.IndexByte(rest, '.')
// If there is only a single dot or the third dot, this is not a
// suffix rule.
if dotIndex < 0 || strings.IndexByte(rest[dotIndex+1:], '.') >= 0 {
return false
}
// This is a suffix rule.
inputSuffix := rest[:dotIndex]
outputSuffix := rest[dotIndex+1:]
sr := &rule{}
*sr = *r
sr.inputs = []string{inputSuffix}
sr.isSuffixRule = true
db.suffixRules[outputSuffix] = append([]*rule{sr}, db.suffixRules[outputSuffix]...)
return true
}
func mergeRules(oldRule, r *rule, output string, isSuffixRule bool) (*rule, error) {
if oldRule.isDoubleColon != r.isDoubleColon {
return nil, r.errorf("*** target file %q has both : and :: entries.", output)
}
if len(oldRule.cmds) > 0 && len(r.cmds) > 0 && !isSuffixRule && !r.isDoubleColon {
warn(r.cmdpos(), "overriding commands for target %q", output)
warn(oldRule.cmdpos(), "ignoring old commands for target %q", output)
}
mr := &rule{}
*mr = *r
if r.isDoubleColon {
mr.cmds = append(oldRule.cmds, mr.cmds...)
} else if len(oldRule.cmds) > 0 && len(r.cmds) == 0 {
mr.cmds = oldRule.cmds
}
// If the latter rule has a command (regardless of the
// commands in oldRule), inputs in the latter rule has a
// priority.
if len(r.cmds) > 0 {
mr.inputs = append(mr.inputs, oldRule.inputs...)
mr.orderOnlyInputs = append(mr.orderOnlyInputs, oldRule.orderOnlyInputs...)
} else {
mr.inputs = append(oldRule.inputs, mr.inputs...)
mr.orderOnlyInputs = append(oldRule.orderOnlyInputs, mr.orderOnlyInputs...)
}
mr.outputPatterns = append(mr.outputPatterns, oldRule.outputPatterns...)
return mr, nil
}
// expandPattern expands static pattern (target: target-pattern: prereq-pattern).
func expandPattern(r *rule) []*rule {
if len(r.outputs) == 0 {
return []*rule{r}
}
if len(r.outputPatterns) != 1 {
return []*rule{r}
}
var rules []*rule
pat := r.outputPatterns[0]
for _, output := range r.outputs {
nr := new(rule)
*nr = *r
nr.outputs = []string{output}
nr.outputPatterns = nil
nr.inputs = nil
for _, input := range r.inputs {
nr.inputs = append(nr.inputs, intern(pat.subst(input, output)))
}
rules = append(rules, nr)
}
glog.V(1).Infof("expand static pattern: outputs=%q inputs=%q -> %q", r.outputs, r.inputs, rules)
return rules
}
func (db *depBuilder) populateExplicitRule(r *rule) error {
// It seems rules with no outputs are siliently ignored.
if len(r.outputs) == 0 {
return nil
}
for _, output := range r.outputs {
output = trimLeadingCurdir(output)
isSuffixRule := db.populateSuffixRule(r, output)
if oldRule, present := db.rules[output]; present {
mr, err := mergeRules(oldRule, r, output, isSuffixRule)
if err != nil {
return err
}
db.rules[output] = mr
} else {
db.rules[output] = r
if db.firstRule == nil && !strings.HasPrefix(output, ".") {
db.firstRule = r
}
}
}
return nil
}
func (db *depBuilder) populateImplicitRule(r *rule) {
for _, outputPattern := range r.outputPatterns {
ir := &rule{}
*ir = *r
ir.outputPatterns = []pattern{outputPattern}
db.implicitRules.add(outputPattern.String(), ir)
}
}
func (db *depBuilder) populateRules(er *evalResult) error {
for _, r := range er.rules {
for i, input := range r.inputs {
r.inputs[i] = trimLeadingCurdir(input)
}
for i, orderOnlyInput := range r.orderOnlyInputs {
r.orderOnlyInputs[i] = trimLeadingCurdir(orderOnlyInput)
}
for _, r := range expandPattern(r) {
err := db.populateExplicitRule(r)
if err != nil {
return err
}
if len(r.outputs) == 0 {
db.populateImplicitRule(r)
}
}
}
return nil
}
func (db *depBuilder) reportStats() {
if !PeriodicStatsFlag {
return
}
logStats("node=%d explicit=%d implicit=%d suffix=%d explicitWOCmd=%d",
db.nodeCnt, db.pickExplicitRuleCnt, db.pickImplicitRuleCnt, db.pickSuffixRuleCnt, db.pickExplicitRuleWithoutCmdCnt)
if len(db.trace) > 1 {
logStats("trace=%q", db.trace)
}
}
func newDepBuilder(er *evalResult, vars Vars) (*depBuilder, error) {
db := &depBuilder{
rules: make(map[string]*rule),
ruleVars: er.ruleVars,
implicitRules: newRuleTrie(),
suffixRules: make(map[string][]*rule),
vars: vars,
ev: NewEvaluator(vars),
vpaths: er.vpaths,
done: make(map[string]*DepNode),
phony: make(map[string]bool),
}
err := db.populateRules(er)
if err != nil {
return nil, err
}
rule, present := db.rules[".PHONY"]
if present {
for _, input := range rule.inputs {
db.phony[input] = true
}
}
return db, nil
}
func (db *depBuilder) Eval(targets []string) ([]*DepNode, error) {
if len(targets) == 0 {
if db.firstRule == nil {
return nil, fmt.Errorf("*** No targets.")
}
targets = append(targets, db.firstRule.outputs[0])
var phonys []string
for t := range db.phony {
phonys = append(phonys, t)
}
sort.Strings(phonys)
targets = append(targets, phonys...)
}
if StatsFlag {
logStats("%d variables", len(db.vars))
logStats("%d explicit rules", len(db.rules))
logStats("%d implicit rules", db.implicitRules.size())
logStats("%d suffix rules", len(db.suffixRules))
logStats("%d dirs %d files", fsCache.dirs(), fsCache.files())
}
var nodes []*DepNode
for _, target := range targets {
db.trace = []string{target}
n, err := db.buildPlan(target, "", make(Vars))
if err != nil {
return nil, err
}
nodes = append(nodes, n)
}
db.reportStats()
return nodes, nil
}