-
Notifications
You must be signed in to change notification settings - Fork 277
/
workspace.go
64 lines (57 loc) · 1.89 KB
/
workspace.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
// 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 bufmodule
import (
"context"
"github.com/bufbuild/buf/private/bufpkg/bufmodule/bufmoduleref"
"github.com/bufbuild/buf/private/pkg/storage"
)
type workspace struct {
// bufmoduleref.ModuleIdentity -> bufmodule.Module
namedModules map[string]Module
allModules []Module
}
func newWorkspace(
ctx context.Context,
namedModules map[string]Module,
allModules []Module,
) (*workspace, error) {
pathToExternalPaths := make(map[string][]string)
for _, module := range allModules {
fileInfos, err := module.SourceFileInfos(ctx)
if err != nil {
return nil, err
}
for _, fileInfo := range fileInfos {
pathToExternalPaths[fileInfo.Path()] = append(pathToExternalPaths[fileInfo.Path()], fileInfo.ExternalPath())
}
}
for path, externalPaths := range pathToExternalPaths {
// Will be >1 even if the externalPaths are equal, we mostly care about the count
if len(externalPaths) > 1 {
return nil, storage.NewErrExistsMultipleLocations(path, externalPaths...)
}
}
return &workspace{
namedModules: namedModules,
allModules: allModules,
}, nil
}
func (w *workspace) GetModule(moduleIdentity bufmoduleref.ModuleIdentity) (Module, bool) {
module, ok := w.namedModules[moduleIdentity.IdentityString()]
return module, ok
}
func (w *workspace) GetModules() []Module {
return w.allModules
}