-
Notifications
You must be signed in to change notification settings - Fork 275
/
module_config_reader.go
707 lines (692 loc) · 22 KB
/
module_config_reader.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
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
// Copyright 2020-2023 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 bufwire
import (
"context"
"errors"
"fmt"
"strings"
"github.com/bufbuild/buf/private/buf/buffetch"
"github.com/bufbuild/buf/private/buf/bufwork"
"github.com/bufbuild/buf/private/bufpkg/bufconfig"
"github.com/bufbuild/buf/private/bufpkg/bufmodule"
"github.com/bufbuild/buf/private/bufpkg/bufmodule/bufmodulebuild"
"github.com/bufbuild/buf/private/bufpkg/bufmodule/bufmoduleref"
"github.com/bufbuild/buf/private/pkg/app"
"github.com/bufbuild/buf/private/pkg/normalpath"
"github.com/bufbuild/buf/private/pkg/storage"
"github.com/bufbuild/buf/private/pkg/storage/storageos"
"github.com/bufbuild/buf/private/pkg/stringutil"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/codes"
"go.opentelemetry.io/otel/trace"
"go.uber.org/multierr"
"go.uber.org/zap"
)
type moduleConfigReader struct {
logger *zap.Logger
storageosProvider storageos.Provider
fetchReader buffetch.Reader
moduleBucketBuilder bufmodulebuild.ModuleBucketBuilder
tracer trace.Tracer
}
func newModuleConfigReader(
logger *zap.Logger,
storageosProvider storageos.Provider,
fetchReader buffetch.Reader,
moduleBucketBuilder bufmodulebuild.ModuleBucketBuilder,
) *moduleConfigReader {
return &moduleConfigReader{
logger: logger,
storageosProvider: storageosProvider,
fetchReader: fetchReader,
moduleBucketBuilder: moduleBucketBuilder,
tracer: otel.GetTracerProvider().Tracer("bufbuild/buf"),
}
}
func (m *moduleConfigReader) GetModuleConfigs(
ctx context.Context,
container app.EnvStdinContainer,
sourceOrModuleRef buffetch.SourceOrModuleRef,
configOverride string,
externalDirOrFilePaths []string,
externalExcludeDirOrFilePaths []string,
externalDirOrFilePathsAllowNotExist bool,
) (_ []ModuleConfig, retErr error) {
ctx, span := m.tracer.Start(ctx, "get_module_config")
defer span.End()
defer func() {
if retErr != nil {
span.RecordError(retErr)
span.SetStatus(codes.Error, retErr.Error())
}
}()
// We construct a new WorkspaceBuilder here so that the cache is only used for a single call.
workspaceBuilder := bufwork.NewWorkspaceBuilder(m.moduleBucketBuilder)
switch t := sourceOrModuleRef.(type) {
case buffetch.ProtoFileRef:
return m.getProtoFileModuleSourceConfigs(
ctx,
container,
t,
workspaceBuilder,
configOverride,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
case buffetch.SourceRef:
return m.getSourceModuleConfigs(
ctx,
container,
t,
workspaceBuilder,
configOverride,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
case buffetch.ModuleRef:
moduleConfig, err := m.getModuleModuleConfig(
ctx,
container,
t,
configOverride,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
return []ModuleConfig{
moduleConfig,
}, nil
default:
return nil, fmt.Errorf("invalid ref: %T", sourceOrModuleRef)
}
}
func (m *moduleConfigReader) getSourceModuleConfigs(
ctx context.Context,
container app.EnvStdinContainer,
sourceRef buffetch.SourceRef,
workspaceBuilder bufwork.WorkspaceBuilder,
configOverride string,
externalDirOrFilePaths []string,
externalExcludeDirOrFilePaths []string,
externalDirOrFilePathsAllowNotExist bool,
) (_ []ModuleConfig, retErr error) {
readBucketCloser, err := m.fetchReader.GetSourceBucket(ctx, container, sourceRef)
if err != nil {
return nil, err
}
defer func() {
retErr = multierr.Append(retErr, readBucketCloser.Close())
}()
existingConfigFilePath, err := bufwork.ExistingConfigFilePath(ctx, readBucketCloser)
if err != nil {
return nil, err
}
if existingConfigFilePath != "" {
return m.getWorkspaceModuleConfigs(
ctx,
sourceRef,
workspaceBuilder,
readBucketCloser,
readBucketCloser.RelativeRootPath(),
readBucketCloser.SubDirPath(),
configOverride,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
}
moduleConfig, err := m.getSourceModuleConfig(
ctx,
sourceRef,
readBucketCloser,
readBucketCloser.RelativeRootPath(),
readBucketCloser.SubDirPath(),
configOverride,
workspaceBuilder,
nil,
nil,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
return []ModuleConfig{
moduleConfig,
}, nil
}
func (m *moduleConfigReader) getModuleModuleConfig(
ctx context.Context,
container app.EnvStdinContainer,
moduleRef buffetch.ModuleRef,
configOverride string,
externalDirOrFilePaths []string,
externalExcludeDirOrFilePaths []string,
externalDirOrFilePathsAllowNotExist bool,
) (_ ModuleConfig, retErr error) {
module, err := m.fetchReader.GetModule(ctx, container, moduleRef)
if err != nil {
return nil, err
}
if len(externalDirOrFilePaths) > 0 {
targetPaths := make([]string, len(externalDirOrFilePaths))
for i, externalDirOrFilePath := range externalDirOrFilePaths {
targetPath, err := moduleRef.PathForExternalPath(externalDirOrFilePath)
if err != nil {
return nil, err
}
targetPaths[i] = targetPath
}
excludePaths := make([]string, len(externalExcludeDirOrFilePaths))
for i, excludeDirOrFilePath := range externalExcludeDirOrFilePaths {
excludePath, err := moduleRef.PathForExternalPath(excludeDirOrFilePath)
if err != nil {
return nil, err
}
excludePaths[i] = excludePath
}
if externalDirOrFilePathsAllowNotExist {
module, err = bufmodule.ModuleWithTargetPathsAllowNotExist(module, targetPaths, excludePaths)
if err != nil {
return nil, err
}
} else {
module, err = bufmodule.ModuleWithTargetPaths(module, targetPaths, excludePaths)
if err != nil {
return nil, err
}
}
}
// TODO: we should read the config from the module when configuration
// is added to modules
readWriteBucket, err := m.storageosProvider.NewReadWriteBucket(
".",
storageos.ReadWriteBucketWithSymlinksIfSupported(),
)
if err != nil {
return nil, err
}
config, err := bufconfig.ReadConfigOS(
ctx,
readWriteBucket,
bufconfig.ReadConfigOSWithOverride(configOverride),
)
if err != nil {
return nil, err
}
return newModuleConfig(module, config, nil /* Workspaces aren't supported for ModuleRefs */), nil
}
func (m *moduleConfigReader) getProtoFileModuleSourceConfigs(
ctx context.Context,
container app.EnvStdinContainer,
protoFileRef buffetch.ProtoFileRef,
workspaceBuilder bufwork.WorkspaceBuilder,
configOverride string,
externalDirOrFilePaths []string,
externalExcludeDirOrFilePaths []string,
externalDirOrFilePathsAllowNotExist bool,
) (_ []ModuleConfig, retErr error) {
readBucketCloser, err := m.fetchReader.GetSourceBucket(ctx, container, protoFileRef)
if err != nil {
return nil, err
}
workspaceConfigs := stringutil.SliceToMap(bufwork.AllConfigFilePaths)
moduleConfigs := stringutil.SliceToMap(bufconfig.AllConfigFilePaths)
terminateFileProvider := readBucketCloser.TerminateFileProvider()
var workspaceConfigDirectory string
var moduleConfigDirectory string
for _, terminateFile := range terminateFileProvider.GetTerminateFiles() {
if _, ok := workspaceConfigs[terminateFile.Name()]; ok {
workspaceConfigDirectory = terminateFile.Path()
continue
}
if _, ok := moduleConfigs[terminateFile.Name()]; ok {
moduleConfigDirectory = terminateFile.Path()
}
}
// If a workspace and module are both found, then we need to check of the module is within
// the workspace. If it is, we use the workspace. Otherwise, we use the module.
if workspaceConfigDirectory != "" {
if moduleConfigDirectory != "" {
relativePath, err := normalpath.Rel(workspaceConfigDirectory, moduleConfigDirectory)
if err != nil {
return nil, err
}
readBucketCloser.SetSubDirPath(normalpath.Normalize(relativePath))
} else {
// If there are no module configs in the path to the workspace, we need to check whether or not
// proto file ref is contained within one of the workspace directories.
// If yes, we can set the `SubDirPath` for the bucket to the directory, to ensure we build all the
// dependencies for the directory. If not, then we will keep the `SubDirPath` as the working directory.
workspaceConfig, err := bufwork.GetConfigForBucket(ctx, readBucketCloser, readBucketCloser.RelativeRootPath())
if err != nil {
return nil, err
}
for _, directory := range workspaceConfig.Directories {
if normalpath.EqualsOrContainsPath(directory, readBucketCloser.SubDirPath(), normalpath.Relative) {
readBucketCloser.SetSubDirPath(normalpath.Normalize(directory))
break
}
}
}
return m.getWorkspaceModuleConfigs(
ctx,
protoFileRef,
workspaceBuilder,
readBucketCloser,
readBucketCloser.RelativeRootPath(),
readBucketCloser.SubDirPath(),
configOverride,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
}
moduleConfig, err := m.getSourceModuleConfig(
ctx,
protoFileRef,
readBucketCloser,
readBucketCloser.RelativeRootPath(),
readBucketCloser.SubDirPath(),
configOverride,
workspaceBuilder,
nil,
nil,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
return []ModuleConfig{
moduleConfig,
}, nil
}
func (m *moduleConfigReader) getWorkspaceModuleConfigs(
ctx context.Context,
sourceRef buffetch.SourceRef,
workspaceBuilder bufwork.WorkspaceBuilder,
readBucket storage.ReadBucket,
relativeRootPath string,
subDirPath string,
configOverride string,
externalDirOrFilePaths []string,
externalExcludeDirOrFilePaths []string,
externalDirOrFilePathsAllowNotExist bool,
) ([]ModuleConfig, error) {
workspaceConfig, err := bufwork.GetConfigForBucket(ctx, readBucket, relativeRootPath)
if err != nil {
return nil, err
}
if subDirPath != "." {
// There's only a single ModuleConfig based on the subDirPath,
// so we only need to create a single workspace.
workspace, err := workspaceBuilder.BuildWorkspace(
ctx,
workspaceConfig,
readBucket,
relativeRootPath,
subDirPath,
configOverride,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
moduleConfig, err := m.getSourceModuleConfig(
ctx,
sourceRef,
readBucket,
relativeRootPath,
subDirPath,
configOverride,
workspaceBuilder,
workspaceConfig,
workspace,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
return []ModuleConfig{
moduleConfig,
}, nil
}
if configOverride != "" {
return nil, errors.New("the --config flag is not compatible with workspaces")
}
// The target subDirPath points to the workspace configuration,
// so we construct a separate workspace for each of the configured
// directories.
var moduleConfigs []ModuleConfig
// We need to first get the map of externalDirOrFilePath to subDirRelPath and the map
// of excludeDirOrFilePath to subDirRelExcludePath so we can check that all paths that
// have been provided at the top level have been accounted for across the workspace.
externalPathToRelPaths := make(map[string]string)
externalExcludePathToRelPaths := make(map[string]string)
for _, directory := range workspaceConfig.Directories {
// We are unfortunately adding this logic in two difference places, once at the top level
// here, and when we build each workspace for the build options. We need to do the work
// at this level because we need to check across all workspaces once.
// We need the same logic again for each workspace build because a module can span across
// several workspaces.
// That being said, the work will be done once, since the module build may be cached as
// as a dependency via bufwork.BuildWorkspace, so the module will always be built once.
externalPathToSubDirRelPaths, err := bufwork.ExternalPathsToSubDirRelPaths(
relativeRootPath,
directory,
externalDirOrFilePaths,
)
if err != nil {
return nil, err
}
externalExcludeToSubDirRelExcludePaths, err := bufwork.ExternalPathsToSubDirRelPaths(
relativeRootPath,
directory,
externalExcludeDirOrFilePaths,
)
if err != nil {
return nil, err
}
for externalFileOrDirPath, subDirRelPath := range externalPathToSubDirRelPaths {
externalPathToRelPaths[externalFileOrDirPath] = subDirRelPath
}
for excludeFileOrDirPath, subDirRelExcludePath := range externalExcludeToSubDirRelExcludePaths {
externalExcludePathToRelPaths[excludeFileOrDirPath] = subDirRelExcludePath
}
workspace, err := workspaceBuilder.BuildWorkspace(
ctx,
workspaceConfig,
readBucket,
relativeRootPath,
directory,
configOverride,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
moduleConfig, err := m.getSourceModuleConfig(
ctx,
sourceRef,
readBucket,
relativeRootPath,
directory,
configOverride,
workspaceBuilder,
workspaceConfig,
workspace,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
moduleConfigs = append(moduleConfigs, moduleConfig)
}
// This is only a requirement if we do not allow paths to not exist.
if !externalDirOrFilePathsAllowNotExist {
for _, externalDirOrFilePath := range externalDirOrFilePaths {
if _, ok := externalPathToRelPaths[externalDirOrFilePath]; !ok {
return nil, fmt.Errorf("path does not exist: %s", externalDirOrFilePath)
}
}
for _, excludeDirOrFilePath := range externalExcludeDirOrFilePaths {
if _, ok := externalExcludePathToRelPaths[excludeDirOrFilePath]; !ok {
return nil, fmt.Errorf("path does not exist: %s", excludeDirOrFilePath)
}
}
}
return moduleConfigs, nil
}
func (m *moduleConfigReader) getSourceModuleConfig(
ctx context.Context,
sourceRef buffetch.SourceRef,
readBucket storage.ReadBucket,
relativeRootPath string,
subDirPath string,
configOverride string,
workspaceBuilder bufwork.WorkspaceBuilder,
workspaceConfig *bufwork.Config,
workspace bufmodule.Workspace,
externalDirOrFilePaths []string,
externalExcludeDirOrFilePaths []string,
externalDirOrFilePathsAllowNotExist bool,
) (ModuleConfig, error) {
moduleConfig, err := m.getModuleConfig(
ctx,
sourceRef,
readBucket,
relativeRootPath,
subDirPath,
configOverride,
workspaceBuilder,
workspaceConfig,
workspace,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
if missingReferences := detectMissingDependencies(
moduleConfig.Config().Build.DependencyModuleReferences,
moduleConfig.Module().DependencyModulePins(),
); len(missingReferences) > 0 {
var builder strings.Builder
_, _ = builder.WriteString(`Specified deps are not covered in your buf.lock, run "buf mod update":`)
for _, moduleReference := range missingReferences {
_, _ = builder.WriteString("\n\t- " + moduleReference.IdentityString())
}
m.logger.Warn(builder.String())
}
return moduleConfig, nil
}
func (m *moduleConfigReader) getModuleConfig(
ctx context.Context,
sourceRef buffetch.SourceRef,
readBucket storage.ReadBucket,
relativeRootPath string,
subDirPath string,
configOverride string,
workspaceBuilder bufwork.WorkspaceBuilder,
workspaceConfig *bufwork.Config,
workspace bufmodule.Workspace,
externalDirOrFilePaths []string,
externalExcludeDirOrFilePaths []string,
externalDirOrFilePathsAllowNotExist bool,
) (ModuleConfig, error) {
if module, moduleConfig, ok := workspaceBuilder.GetModuleConfig(subDirPath); ok {
// The module was already built while we were constructing the workspace.
// However, we still need to perform some additional validation based on
// the sourceRef.
if len(externalDirOrFilePaths) > 0 {
if workspaceDirectoryEqualsOrContainsSubDirPath(workspaceConfig, subDirPath) {
// We have to do this ahead of time as we are not using PathForExternalPath
// in this if branch. This is really bad.
for _, externalDirOrFilePath := range externalDirOrFilePaths {
if _, err := sourceRef.PathForExternalPath(externalDirOrFilePath); err != nil {
return nil, err
}
}
}
}
return newModuleConfig(module, moduleConfig, workspace), nil
}
mappedReadBucket := readBucket
if subDirPath != "." {
mappedReadBucket = storage.MapReadBucket(readBucket, storage.MapOnPrefix(subDirPath))
}
moduleConfig, err := bufconfig.ReadConfigOS(
ctx,
mappedReadBucket,
bufconfig.ReadConfigOSWithOverride(configOverride),
)
if err != nil {
return nil, err
}
var buildOptions []bufmodulebuild.BuildOption
if len(externalDirOrFilePaths) > 0 {
if workspaceDirectoryEqualsOrContainsSubDirPath(workspaceConfig, subDirPath) {
// We have to do this ahead of time as we are not using PathForExternalPath
// in this if branch. This is really bad.
for _, externalDirOrFilePath := range externalDirOrFilePaths {
if _, err := sourceRef.PathForExternalPath(externalDirOrFilePath); err != nil {
return nil, err
}
}
// The subDirPath is contained within one of the workspace directories, so
// we first need to reformat the externalDirOrFilePaths so that they accommodate
// for the relativeRootPath (the path to the directory containing the buf.work.yaml).
//
// For example,
//
// $ buf build ../../proto --path ../../proto/buf
//
// // buf.work.yaml
// version: v1
// directories:
// - proto
// - enterprise/proto
//
// Note that we CANNOT simply use the sourceRef because we would not be able to
// determine which workspace directory the paths apply to afterwards. To be clear,
// if we determined the bucketRelPath from the sourceRef, the bucketRelPath would be equal
// to ./buf/... which is ambiguous to the workspace directories ('proto' and 'enterprise/proto'
// in this case).
externalPathToSubDirRelPaths, err := bufwork.ExternalPathsToSubDirRelPaths(
relativeRootPath,
subDirPath,
externalDirOrFilePaths,
)
if err != nil {
return nil, err
}
externalExcludeToSubDirRelExcludePaths, err := bufwork.ExternalPathsToSubDirRelPaths(
relativeRootPath,
subDirPath,
externalExcludeDirOrFilePaths,
)
if err != nil {
return nil, err
}
subDirRelPaths := make([]string, 0, len(externalPathToSubDirRelPaths))
for _, subDirRelPath := range externalPathToSubDirRelPaths {
subDirRelPaths = append(subDirRelPaths, subDirRelPath)
}
subDirRelExcludePaths := make([]string, 0, len(externalExcludeToSubDirRelExcludePaths))
for _, subDirRelExcludePath := range externalExcludeToSubDirRelExcludePaths {
subDirRelExcludePaths = append(subDirRelExcludePaths, subDirRelExcludePath)
}
buildOptions, err = bufwork.BuildOptionsForWorkspaceDirectory(
ctx,
workspaceConfig,
moduleConfig,
externalDirOrFilePaths,
externalExcludeDirOrFilePaths,
subDirRelPaths,
subDirRelExcludePaths,
externalDirOrFilePathsAllowNotExist,
)
if err != nil {
return nil, err
}
} else {
// The subDirPath isn't a workspace directory, so we can determine the bucketRelPaths
// from the sourceRef on its own.
buildOptions = []bufmodulebuild.BuildOption{
// We can't determine the module's commit from the local file system.
// This also may be nil.
//
// This is particularly useful for the GoPackage modifier used in
// managed mode, which supports module-specific overrides.
bufmodulebuild.WithModuleIdentity(moduleConfig.ModuleIdentity),
}
bucketRelPaths := make([]string, len(externalDirOrFilePaths))
for i, externalDirOrFilePath := range externalDirOrFilePaths {
bucketRelPath, err := sourceRef.PathForExternalPath(externalDirOrFilePath)
if err != nil {
return nil, err
}
bucketRelPaths[i] = bucketRelPath
}
if externalDirOrFilePathsAllowNotExist {
buildOptions = append(buildOptions, bufmodulebuild.WithPathsAllowNotExist(bucketRelPaths))
} else {
buildOptions = append(buildOptions, bufmodulebuild.WithPaths(bucketRelPaths))
}
}
}
if len(externalExcludeDirOrFilePaths) > 0 {
bucketRelPaths := make([]string, len(externalExcludeDirOrFilePaths))
for i, excludeDirOrFilePath := range externalExcludeDirOrFilePaths {
bucketRelPath, err := sourceRef.PathForExternalPath(excludeDirOrFilePath)
if err != nil {
return nil, err
}
bucketRelPaths[i] = bucketRelPath
}
buildOptions = append(buildOptions, bufmodulebuild.WithExcludePaths(bucketRelPaths))
}
module, err := bufmodulebuild.BuildForBucket(
ctx,
mappedReadBucket,
moduleConfig.Build,
buildOptions...,
)
if err != nil {
return nil, err
}
return newModuleConfig(module, moduleConfig, workspace), nil
}
func workspaceDirectoryEqualsOrContainsSubDirPath(workspaceConfig *bufwork.Config, subDirPath string) bool {
if workspaceConfig == nil {
return false
}
for _, directory := range workspaceConfig.Directories {
if normalpath.EqualsOrContainsPath(directory, subDirPath, normalpath.Relative) {
return true
}
}
return false
}
func detectMissingDependencies(references []bufmoduleref.ModuleReference, pins []bufmoduleref.ModulePin) []bufmoduleref.ModuleReference {
pinSet := make(map[string]struct{})
for _, pin := range pins {
pinSet[pin.IdentityString()] = struct{}{}
}
var missingReferences []bufmoduleref.ModuleReference
for _, reference := range references {
if _, ok := pinSet[reference.IdentityString()]; !ok {
missingReferences = append(missingReferences, reference)
}
}
return missingReferences
}