|
| 1 | +package indexer |
| 2 | + |
| 3 | +import ( |
| 4 | + "context" |
| 5 | + |
| 6 | + "github.com/hashicorp/go-multierror" |
| 7 | + "github.com/hashicorp/terraform-ls/internal/document" |
| 8 | + "github.com/hashicorp/terraform-ls/internal/job" |
| 9 | + "github.com/hashicorp/terraform-ls/internal/terraform/exec" |
| 10 | + "github.com/hashicorp/terraform-ls/internal/terraform/module" |
| 11 | + op "github.com/hashicorp/terraform-ls/internal/terraform/module/operation" |
| 12 | +) |
| 13 | + |
| 14 | +func (idx *Indexer) DocumentOpened(modHandle document.DirHandle) (job.IDs, error) { |
| 15 | + mod, err := idx.modStore.ModuleByPath(modHandle.Path()) |
| 16 | + if err != nil { |
| 17 | + return nil, err |
| 18 | + } |
| 19 | + |
| 20 | + ids := make(job.IDs, 0) |
| 21 | + var errs *multierror.Error |
| 22 | + |
| 23 | + if mod.TerraformVersionState == op.OpStateUnknown { |
| 24 | + _, err := idx.jobStore.EnqueueJob(job.Job{ |
| 25 | + Dir: modHandle, |
| 26 | + Func: func(ctx context.Context) error { |
| 27 | + ctx = exec.WithExecutorFactory(ctx, idx.tfExecFactory) |
| 28 | + return module.GetTerraformVersion(ctx, idx.modStore, modHandle.Path()) |
| 29 | + }, |
| 30 | + Type: op.OpTypeGetTerraformVersion.String(), |
| 31 | + }) |
| 32 | + if err != nil { |
| 33 | + errs = multierror.Append(errs, err) |
| 34 | + } |
| 35 | + // Given that getting version may take time and we only use it to |
| 36 | + // enhance the UX, we ignore the outcome (job ID) here |
| 37 | + // to avoid delays when documents of new modules are open. |
| 38 | + } |
| 39 | + |
| 40 | + parseId, err := idx.jobStore.EnqueueJob(job.Job{ |
| 41 | + Dir: modHandle, |
| 42 | + Func: func(ctx context.Context) error { |
| 43 | + return module.ParseModuleConfiguration(idx.fs, idx.modStore, modHandle.Path()) |
| 44 | + }, |
| 45 | + Type: op.OpTypeParseModuleConfiguration.String(), |
| 46 | + }) |
| 47 | + if err != nil { |
| 48 | + return ids, err |
| 49 | + } |
| 50 | + ids = append(ids, parseId) |
| 51 | + |
| 52 | + modIds, err := idx.decodeModule(modHandle, job.IDs{parseId}) |
| 53 | + if err != nil { |
| 54 | + return ids, err |
| 55 | + } |
| 56 | + ids = append(ids, modIds...) |
| 57 | + |
| 58 | + parseVarsId, err := idx.jobStore.EnqueueJob(job.Job{ |
| 59 | + Dir: modHandle, |
| 60 | + Func: func(ctx context.Context) error { |
| 61 | + return module.ParseVariables(idx.fs, idx.modStore, modHandle.Path()) |
| 62 | + }, |
| 63 | + Type: op.OpTypeParseVariables.String(), |
| 64 | + }) |
| 65 | + if err != nil { |
| 66 | + return ids, err |
| 67 | + } |
| 68 | + ids = append(ids, parseVarsId) |
| 69 | + |
| 70 | + varsRefsId, err := idx.jobStore.EnqueueJob(job.Job{ |
| 71 | + Dir: modHandle, |
| 72 | + Func: func(ctx context.Context) error { |
| 73 | + return module.DecodeVarsReferences(ctx, idx.modStore, idx.schemaStore, modHandle.Path()) |
| 74 | + }, |
| 75 | + Type: op.OpTypeDecodeVarsReferences.String(), |
| 76 | + DependsOn: job.IDs{parseVarsId}, |
| 77 | + }) |
| 78 | + if err != nil { |
| 79 | + return ids, err |
| 80 | + } |
| 81 | + ids = append(ids, varsRefsId) |
| 82 | + |
| 83 | + return ids, errs.ErrorOrNil() |
| 84 | +} |
0 commit comments