Skip to content

Commit c09af22

Browse files
committed
Map module sources to their installation path
Introduce a new map based on the content of the module manifest. We can use the map to look up local installation paths based on the module source.
1 parent 4022a13 commit c09af22

File tree

4 files changed

+58
-1
lines changed

4 files changed

+58
-1
lines changed

internal/features/rootmodules/root_modules_feature.go

+19
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,22 @@ func (f *RootModulesFeature) Telemetry(path string) map[string]interface{} {
188188

189189
return properties
190190
}
191+
192+
// InstalledModulePath checks the installed modules in the given root module
193+
// for the given normalized source address.
194+
//
195+
// If the module is installed, it returns the path to the module installation
196+
// directory on disk.
197+
func (f *RootModulesFeature) InstalledModulePath(rootPath string, normalizedSource string) (string, bool) {
198+
record, err := f.Store.RootRecordByPath(rootPath)
199+
if err != nil {
200+
return "", false
201+
}
202+
203+
dir, ok := record.InstalledModules[normalizedSource]
204+
if !ok {
205+
return "", false
206+
}
207+
208+
return dir, true
209+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright (c) HashiCorp, Inc.
2+
// SPDX-License-Identifier: MPL-2.0
3+
4+
package state
5+
6+
import "github.com/hashicorp/terraform-ls/internal/terraform/datadir"
7+
8+
// InstalledModules is a map of normalized source addresses from the
9+
// manifest to the path of the local directory where the module is installed
10+
type InstalledModules map[string]string
11+
12+
func InstalledModulesFromManifest(manifest *datadir.ModuleManifest) InstalledModules {
13+
if manifest == nil {
14+
return nil
15+
}
16+
17+
installedModules := make(InstalledModules, len(manifest.Records))
18+
19+
// TODO: To support multiple versions of the same module, we need to
20+
// look into resolving the version constraints to a specific version.
21+
for _, v := range manifest.Records {
22+
installedModules[v.RawSourceAddr] = v.Dir
23+
}
24+
25+
return installedModules
26+
}

internal/features/rootmodules/state/root_record.go

+12-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ type RootRecord struct {
2323
ModManifestErr error
2424
ModManifestState op.OpState
2525

26+
// InstalledModules is a map of normalized source addresses from the
27+
// manifest to the path of the local directory where the module is installed
28+
InstalledModules InstalledModules
29+
2630
TerraformVersion *version.Version
2731
TerraformVersionErr error
2832
TerraformVersionState op.OpState
@@ -56,13 +60,20 @@ func (m *RootRecord) Copy() *RootRecord {
5660
}
5761

5862
if m.InstalledProviders != nil {
59-
newRecord.InstalledProviders = make(InstalledProviders, 0)
63+
newRecord.InstalledProviders = make(InstalledProviders, len(m.InstalledProviders))
6064
for addr, pv := range m.InstalledProviders {
6165
// version.Version is practically immutable once parsed
6266
newRecord.InstalledProviders[addr] = pv
6367
}
6468
}
6569

70+
if m.InstalledModules != nil {
71+
newRecord.InstalledModules = make(InstalledModules, len(m.InstalledModules))
72+
for source, dir := range m.InstalledModules {
73+
newRecord.InstalledModules[source] = dir
74+
}
75+
}
76+
6677
return newRecord
6778
}
6879

internal/features/rootmodules/state/root_store.go

+1
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,7 @@ func (s *RootStore) UpdateModManifest(path string, manifest *datadir.ModuleManif
258258

259259
record.ModManifest = manifest
260260
record.ModManifestErr = mErr
261+
record.InstalledModules = InstalledModulesFromManifest(manifest)
261262

262263
err = txn.Insert(s.tableName, record)
263264
if err != nil {

0 commit comments

Comments
 (0)