forked from bufbuild/protocompile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compiler.go
681 lines (607 loc) · 20.8 KB
/
compiler.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
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
// Copyright 2020-2024 Buf Technologies, Inc.
//
// 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 protocompile
import (
"bytes"
"context"
"fmt"
"io"
"runtime"
"runtime/debug"
"strings"
"sync"
"golang.org/x/sync/semaphore"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/descriptorpb"
"github.com/bufbuild/protocompile/ast"
"github.com/bufbuild/protocompile/linker"
"github.com/bufbuild/protocompile/options"
"github.com/bufbuild/protocompile/parser"
"github.com/bufbuild/protocompile/reporter"
"github.com/bufbuild/protocompile/sourceinfo"
)
// Compiler handles compilation tasks, to turn protobuf source files, or other
// intermediate representations, into fully linked descriptors.
//
// The compilation process involves five steps for each protobuf source file:
// 1. Parsing the source into an AST (abstract syntax tree).
// 2. Converting the AST into descriptor protos.
// 3. Linking descriptor protos into fully linked descriptors.
// 4. Interpreting options.
// 5. Computing source code information.
//
// With fully linked descriptors, code generators and protoc plugins could be
// invoked (though that step is not implemented by this package and not a
// responsibility of this type).
type Compiler struct {
// Resolves path/file names into source code or intermediate representations
// for protobuf source files. This is how the compiler loads the files to
// be compiled as well as all dependencies. This field is the only required
// field.
Resolver Resolver
// The maximum parallelism to use when compiling. If unspecified or set to
// a non-positive value, then min(runtime.NumCPU(), runtime.GOMAXPROCS(-1))
// will be used.
MaxParallelism int
// A custom error and warning reporter. If unspecified a default reporter
// is used. A default reporter fails the compilation after encountering any
// errors and ignores all warnings.
Reporter reporter.Reporter
// If unspecified or set to SourceInfoNone, source code information will not
// be included in the resulting descriptors. Source code information is
// metadata in the file descriptor that provides position information (i.e.
// the line and column where file elements were defined) as well as comments.
//
// If set to SourceInfoStandard, normal source code information will be
// included in the resulting descriptors. This matches the output of protoc
// (the reference compiler for Protocol Buffers). If set to
// SourceInfoMoreComments, the resulting descriptor will attempt to preserve
// as many comments as possible, for all elements in the file, not just for
// complete declarations.
//
// If Resolver returns descriptors or descriptor protos for a file, then
// those descriptors will not be modified. If they do not already include
// source code info, they will be left that way when the compile operation
// concludes. Similarly, if they already have source code info but this flag
// is false, existing info will be left in place.
SourceInfoMode SourceInfoMode
// If true, ASTs are retained in compilation results for which an AST was
// constructed. So any linker.Result value in the resulting compiled files
// will have an AST, in addition to descriptors. If left false, the AST
// will be removed as soon as it's no longer needed. This can help reduce
// total memory usage for operations involving a large number of files.
RetainASTs bool
}
// SourceInfoMode indicates how source code info is generated by a Compiler.
type SourceInfoMode int
const (
// SourceInfoNone indicates that no source code info is generated.
SourceInfoNone = SourceInfoMode(0)
// SourceInfoStandard indicates that the standard source code info is
// generated, which includes comments only for complete declarations.
SourceInfoStandard = SourceInfoMode(1)
// SourceInfoExtraComments indicates that source code info is generated
// and will include comments for all elements (more comments than would
// be found in a descriptor produced by protoc).
SourceInfoExtraComments = SourceInfoMode(2)
// SourceInfoExtraOptionLocations indicates that source code info is
// generated with additional locations for elements inside of message
// literals in option values. This can be combined with the above by
// bitwise-OR'ing it with SourceInfoExtraComments.
SourceInfoExtraOptionLocations = SourceInfoMode(4)
)
// Compile compiles the given file names into fully-linked descriptors. The
// compiler's resolver is used to locate source code (or intermediate artifacts
// such as parsed ASTs or descriptor protos) and then do what is necessary to
// transform that into descriptors (parsing, linking, etc).
//
// Elements in the given returned files will implement [linker.Result] if the
// compiler had to link it (i.e. the resolver provided either a descriptor proto
// or source code). That result will contain a full AST for the file if the
// compiler had to parse it (i.e. the resolver provided source code for that
// file).
func (c *Compiler) Compile(ctx context.Context, files ...string) (linker.Files, error) {
if len(files) == 0 {
return nil, nil
}
ctx, cancel := context.WithCancel(ctx)
defer cancel()
par := c.MaxParallelism
if par <= 0 {
par = runtime.GOMAXPROCS(-1)
cpus := runtime.NumCPU()
if par > cpus {
par = cpus
}
}
h := reporter.NewHandler(c.Reporter)
e := executor{
c: c,
h: h,
s: semaphore.NewWeighted(int64(par)),
cancel: cancel,
sym: &linker.Symbols{},
results: map[string]*result{},
}
// We lock now and create all tasks under lock to make sure that no
// async task can create a duplicate result. For example, if files
// contains both "foo.proto" and "bar.proto", then there is a race
// after we start compiling "foo.proto" between this loop and the
// async compilation task to create the result for "bar.proto". But
// we need to know if the file is directly requested for compilation,
// so we need this loop to define the result. So this loop holds the
// lock the whole time so async tasks can't create a result first.
results := make([]*result, len(files))
func() {
e.mu.Lock()
defer e.mu.Unlock()
for i, f := range files {
results[i] = e.compileLocked(ctx, f, true)
}
}()
descs := make([]linker.File, len(files))
var firstError error
for i, r := range results {
select {
case <-r.ready:
case <-ctx.Done():
return nil, ctx.Err()
}
if r.err != nil {
if firstError == nil {
firstError = r.err
}
}
descs[i] = r.res
}
if err := h.Error(); err != nil {
return descs, err
}
// this should probably never happen; if any task returned an
// error, h.Error() should be non-nil
return descs, firstError
}
type result struct {
name string
ready chan struct{}
// true if this file was explicitly provided to the compiler; otherwise
// this file is an import that is implicitly included
explicitFile bool
// produces a linker.File or error, only available when ready is closed
res linker.File
err error
mu sync.Mutex
// the results that are dependencies of this result; this result is
// blocked, waiting on these dependencies to complete
blockedOn []string
}
func (r *result) fail(err error) {
r.err = err
close(r.ready)
}
func (r *result) complete(f linker.File) {
r.res = f
close(r.ready)
}
func (r *result) setBlockedOn(deps []string) {
r.mu.Lock()
defer r.mu.Unlock()
r.blockedOn = deps
}
func (r *result) getBlockedOn() []string {
r.mu.Lock()
defer r.mu.Unlock()
return r.blockedOn
}
type executor struct {
c *Compiler
h *reporter.Handler
s *semaphore.Weighted
cancel context.CancelFunc
sym *linker.Symbols
descriptorProtoCheck sync.Once
descriptorProtoIsCustom bool
mu sync.Mutex
results map[string]*result
}
func (e *executor) compile(ctx context.Context, file string) *result {
e.mu.Lock()
defer e.mu.Unlock()
return e.compileLocked(ctx, file, false)
}
func (e *executor) compileLocked(ctx context.Context, file string, explicitFile bool) *result {
r := e.results[file]
if r != nil {
return r
}
r = &result{
name: file,
ready: make(chan struct{}),
explicitFile: explicitFile,
}
e.results[file] = r
go func() {
defer func() {
if p := recover(); p != nil {
if r.err == nil {
// TODO: strip top frames from stack trace so that the panic is
// the top of the trace?
panicErr := PanicError{File: file, Value: p, Stack: string(debug.Stack())}
r.fail(panicErr)
}
// TODO: if r.err != nil, then this task has already
// failed and there's nothing we can really do to
// communicate this panic to parent goroutine. This
// means the panic must have happened *after* the
// failure was already recorded (or during?)
// It would be nice to do something else here, like
// send the compiler an out-of-band error? Or log?
}
}()
e.doCompile(ctx, file, r)
}()
return r
}
// PanicError is an error value that represents a recovered panic. It includes
// the value returned by recover() as well as the stack trace.
//
// This should generally only be seen if a Resolver implementation panics.
//
// An error returned by a Compiler may wrap a PanicError, so you may need to
// use errors.As(...) to access panic details.
type PanicError struct {
// The file that was being processed when the panic occurred
File string
// The value returned by recover()
Value interface{}
// A formatted stack trace
Stack string
}
// Error implements the error interface. It does NOT include the stack trace.
// Use a type assertion and query the Stack field directly to access that.
func (p PanicError) Error() string {
return fmt.Sprintf("panic handling %q: %v", p.File, p.Value)
}
type errFailedToResolve struct {
err error
path string
}
func (e errFailedToResolve) Error() string {
errMsg := e.err.Error()
if strings.Contains(errMsg, e.path) {
// underlying error already refers to path in question, so we don't need to add more context
return errMsg
}
return fmt.Sprintf("could not resolve path %q: %s", e.path, e.err.Error())
}
func (e errFailedToResolve) Unwrap() error {
return e.err
}
func (e *executor) hasOverrideDescriptorProto() bool {
e.descriptorProtoCheck.Do(func() {
defer func() {
// ignore a panic here; just assume no custom descriptor.proto
_ = recover()
}()
res, err := e.c.Resolver.FindFileByPath(descriptorProtoPath)
e.descriptorProtoIsCustom = err == nil && res.Desc != standardImports[descriptorProtoPath]
})
return e.descriptorProtoIsCustom
}
func (e *executor) doCompile(ctx context.Context, file string, r *result) {
t := task{e: e, h: e.h.SubHandler(), r: r}
if err := e.s.Acquire(ctx, 1); err != nil {
r.fail(err)
return
}
defer t.release()
sr, err := e.c.Resolver.FindFileByPath(file)
if err != nil {
r.fail(errFailedToResolve{err: err, path: file})
return
}
defer func() {
// if results included a result, don't leave it open if it can be closed
if sr.Source == nil {
return
}
if c, ok := sr.Source.(io.Closer); ok {
_ = c.Close()
}
}()
desc, err := t.asFile(ctx, file, sr)
if err != nil {
r.fail(err)
return
}
r.complete(desc)
}
// A compilation task. The executor has a semaphore that limits the number
// of concurrent, running tasks.
type task struct {
e *executor
// handler for this task
h *reporter.Handler
// If true, this task needs to acquire a semaphore permit before running.
// If false, this task needs to release its semaphore permit on completion.
released bool
// the result that is populated by this task
r *result
}
func (t *task) release() {
if !t.released {
t.e.s.Release(1)
t.released = true
}
}
const descriptorProtoPath = "google/protobuf/descriptor.proto"
func (t *task) asFile(ctx context.Context, name string, r SearchResult) (linker.File, error) {
if r.Desc != nil {
if r.Desc.Path() != name {
return nil, fmt.Errorf("search result for %q returned descriptor for %q", name, r.Desc.Path())
}
return linker.NewFileRecursive(r.Desc)
}
parseRes, err := t.asParseResult(name, r)
if err != nil {
return nil, err
}
if linkRes, ok := parseRes.(linker.Result); ok {
// if resolver returned a parse result that was actually a link result,
// use the link result directly (no other steps needed)
return linkRes, nil
}
var deps []linker.File
fileDescriptorProto := parseRes.FileDescriptorProto()
var wantsDescriptorProto bool
imports := fileDescriptorProto.Dependency
if t.e.hasOverrideDescriptorProto() {
// we only consider implicitly including descriptor.proto if it's overridden
if name != descriptorProtoPath {
var includesDescriptorProto bool
for _, dep := range fileDescriptorProto.Dependency {
if dep == descriptorProtoPath {
includesDescriptorProto = true
break
}
}
if !includesDescriptorProto {
wantsDescriptorProto = true
// make a defensive copy so we don't inadvertently mutate
// slice's backing array when adding this implicit dep
importsCopy := make([]string, len(imports)+1)
copy(importsCopy, imports)
importsCopy[len(imports)] = descriptorProtoPath
imports = importsCopy
}
}
}
var overrideDescriptorProto linker.File
if len(imports) > 0 {
t.r.setBlockedOn(imports)
results := make([]*result, len(fileDescriptorProto.Dependency))
checked := map[string]struct{}{}
for i, dep := range fileDescriptorProto.Dependency {
span := findImportSpan(parseRes, dep)
if name == dep {
// doh! file imports itself
handleImportCycle(t.h, span, []string{name}, dep)
return nil, t.h.Error()
}
res := t.e.compile(ctx, dep)
// check for dependency cycle to prevent deadlock
if err := t.e.checkForDependencyCycle(res, []string{name, dep}, span, checked); err != nil {
return nil, err
}
results[i] = res
}
deps = make([]linker.File, len(results))
var descriptorProtoRes *result
if wantsDescriptorProto {
descriptorProtoRes = t.e.compile(ctx, descriptorProtoPath)
}
// release our semaphore so dependencies can be processed w/out risk of deadlock
t.e.s.Release(1)
t.released = true
// now we wait for them all to be computed
for i, res := range results {
select {
case <-res.ready:
if res.err != nil {
if rerr, ok := res.err.(errFailedToResolve); ok {
// We don't report errors to get file from resolver to handler since
// it's usually considered immediately fatal. However, if the reason
// we were resolving is due to an import, turn this into an error with
// source position that pinpoints the import statement and report it.
return nil, reporter.Error(findImportSpan(parseRes, res.name), rerr)
}
return nil, res.err
}
deps[i] = res.res
case <-ctx.Done():
return nil, ctx.Err()
}
}
if descriptorProtoRes != nil {
select {
case <-descriptorProtoRes.ready:
// descriptor.proto wasn't explicitly imported, so we can ignore a failure
if descriptorProtoRes.err == nil {
overrideDescriptorProto = descriptorProtoRes.res
}
case <-ctx.Done():
return nil, ctx.Err()
}
}
// all deps resolved
t.r.setBlockedOn(nil)
// reacquire semaphore so we can proceed
if err := t.e.s.Acquire(ctx, 1); err != nil {
return nil, err
}
t.released = false
}
return t.link(parseRes, deps, overrideDescriptorProto)
}
func (e *executor) checkForDependencyCycle(res *result, sequence []string, span ast.SourceSpan, checked map[string]struct{}) error {
if _, ok := checked[res.name]; ok {
// already checked this one
return nil
}
checked[res.name] = struct{}{}
deps := res.getBlockedOn()
for _, dep := range deps {
// is this a cycle?
for _, file := range sequence {
if file == dep {
handleImportCycle(e.h, span, sequence, dep)
return e.h.Error()
}
}
e.mu.Lock()
depRes := e.results[dep]
e.mu.Unlock()
if depRes == nil {
continue
}
if err := e.checkForDependencyCycle(depRes, append(sequence, dep), span, checked); err != nil {
return err
}
}
return nil
}
func handleImportCycle(h *reporter.Handler, span ast.SourceSpan, importSequence []string, dep string) {
var buf bytes.Buffer
buf.WriteString("cycle found in imports: ")
for _, imp := range importSequence {
_, _ = fmt.Fprintf(&buf, "%q -> ", imp)
}
_, _ = fmt.Fprintf(&buf, "%q", dep)
// error is saved and returned in caller
_ = h.HandleErrorf(span, buf.String())
}
func findImportSpan(res parser.Result, dep string) ast.SourceSpan {
root := res.AST()
if root == nil {
return ast.UnknownSpan(res.FileNode().Name())
}
for _, decl := range root.Decls {
if imp, ok := decl.(*ast.ImportNode); ok {
if imp.Name.AsString() == dep {
return root.NodeInfo(imp.Name)
}
}
}
// this should never happen...
return ast.UnknownSpan(res.FileNode().Name())
}
func (t *task) link(parseRes parser.Result, deps linker.Files, overrideDescriptorProtoRes linker.File) (linker.File, error) {
// This cloning is necessary because options.InterpretUnlinkedOptions
// modifies the parseRes' descriptor proto and some tests are sensitive to
// this because after this modification the descriptor proto is no longer
// equivalent to the "canonical" descriptor proto. Not sure if users care
// though.
r := parseRes
if parseRes.AST() != nil {
r = parser.Clone(parseRes)
_, err := options.InterpretUnlinkedOptions(r)
if err != nil {
return nil, err
}
}
file, err := linker.Link(parseRes, r, deps, t.e.sym, t.h)
if err != nil {
return nil, err
}
var interpretOpts []options.InterpreterOption
if overrideDescriptorProtoRes != nil {
interpretOpts = []options.InterpreterOption{options.WithOverrideDescriptorProto(overrideDescriptorProtoRes)}
}
optsIndex, err := options.InterpretOptions(file, t.h, interpretOpts...)
if err != nil {
return nil, err
}
// now that options are interpreted, we can do some additional checks
if err := file.ValidateOptions(t.h); err != nil {
return nil, err
}
if t.r.explicitFile {
file.CheckForUnusedImports(t.h)
}
if err := t.h.Error(); err != nil {
return nil, err
}
if needsSourceInfo(parseRes, t.e.c.SourceInfoMode) {
var srcInfoOpts []sourceinfo.GenerateOption
if t.e.c.SourceInfoMode&SourceInfoExtraComments != 0 {
srcInfoOpts = append(srcInfoOpts, sourceinfo.WithExtraComments())
}
if t.e.c.SourceInfoMode&SourceInfoExtraOptionLocations != 0 {
srcInfoOpts = append(srcInfoOpts, sourceinfo.WithExtraOptionLocations())
}
parseRes.FileDescriptorProto().SourceCodeInfo = sourceinfo.GenerateSourceInfo(parseRes.AST(), optsIndex, srcInfoOpts...)
} else if t.e.c.SourceInfoMode == SourceInfoNone {
// If results came from unlinked FileDescriptorProto, it could have
// source info that we should strip.
parseRes.FileDescriptorProto().SourceCodeInfo = nil
}
if len(parseRes.FileDescriptorProto().GetSourceCodeInfo().GetLocation()) > 0 {
// If we have source code info in the descriptor proto at this point,
// we have to build the index of locations.
file.PopulateSourceCodeInfo()
}
if !t.e.c.RetainASTs {
file.RemoveAST()
}
return file, nil
}
func needsSourceInfo(parseRes parser.Result, mode SourceInfoMode) bool {
return mode != SourceInfoNone && parseRes.AST() != nil && parseRes.FileDescriptorProto().SourceCodeInfo == nil
}
func (t *task) asParseResult(name string, r SearchResult) (parser.Result, error) {
if r.ParseResult != nil {
if r.ParseResult.FileDescriptorProto().GetName() != name {
return nil, fmt.Errorf("search result for %q returned descriptor for %q", name, r.ParseResult.FileDescriptorProto().GetName())
}
// If the file descriptor needs linking, it will be mutated during the
// next stage. So to make anu mutations thread-safe, we must make a
// defensive copy.
res := parser.Clone(r.ParseResult)
return res, nil
}
if r.Proto != nil {
if r.Proto.GetName() != name {
return nil, fmt.Errorf("search result for %q returned descriptor for %q", name, r.Proto.GetName())
}
// If the file descriptor needs linking, it will be mutated during the
// next stage. So to make any mutations thread-safe, we must make a
// defensive copy.
descProto := proto.Clone(r.Proto).(*descriptorpb.FileDescriptorProto) //nolint:errcheck
return parser.ResultWithoutAST(descProto), nil
}
file, err := t.asAST(name, r)
if err != nil {
return nil, err
}
return parser.ResultFromAST(file, true, t.h)
}
func (t *task) asAST(name string, r SearchResult) (*ast.FileNode, error) {
if r.AST != nil {
if r.AST.Name() != name {
return nil, fmt.Errorf("search result for %q returned descriptor for %q", name, r.AST.Name())
}
return r.AST, nil
}
return parser.Parse(name, r.Source, t.h)
}