-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathplan.go
296 lines (245 loc) · 9.7 KB
/
plan.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
package tfsdk
import (
"context"
"errors"
"fmt"
"github.com/hashicorp/terraform-plugin-framework/attr"
"github.com/hashicorp/terraform-plugin-framework/diag"
"github.com/hashicorp/terraform-plugin-framework/internal/reflect"
"github.com/hashicorp/terraform-plugin-go/tftypes"
)
// Plan represents a Terraform plan.
type Plan struct {
Raw tftypes.Value
Schema Schema
}
// Get populates the struct passed as `target` with the entire plan.
func (p Plan) Get(ctx context.Context, target interface{}) diag.Diagnostics {
return reflect.Into(ctx, p.Schema.AttributeType(), p.Raw, target, reflect.Options{})
}
// GetAttribute retrieves the attribute found at `path` and returns it as an
// attr.Value. Consumers should assert the type of the returned value with the
// desired attr.Type.
func (p Plan) GetAttribute(ctx context.Context, path *tftypes.AttributePath) (attr.Value, diag.Diagnostics) {
var diags diag.Diagnostics
attrType, err := p.Schema.AttributeTypeAtPath(path)
if err != nil {
err = fmt.Errorf("error getting attribute type in schema: %w", err)
diags.AddAttributeError(
path,
"Plan Read Error",
"An unexpected error was encountered trying to read an attribute from the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return nil, diags
}
// if the whole plan is nil, the value of a valid attribute is also nil
if p.Raw.IsNull() {
return nil, nil
}
tfValue, err := p.terraformValueAtPath(path)
if err != nil {
diags.AddAttributeError(
path,
"Plan Read Error",
"An unexpected error was encountered trying to read an attribute from the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return nil, diags
}
if attrTypeWithValidate, ok := attrType.(attr.TypeWithValidate); ok {
diags.Append(attrTypeWithValidate.Validate(ctx, tfValue, path)...)
if diags.HasError() {
return nil, diags
}
}
attrValue, err := attrType.ValueFromTerraform(ctx, tfValue)
if err != nil {
diags.AddAttributeError(
path,
"Plan Read Error",
"An unexpected error was encountered trying to read an attribute from the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return nil, diags
}
return attrValue, diags
}
// Set populates the entire plan using the supplied Go value. The value `val`
// should be a struct whose values have one of the attr.Value types. Each field
// must be tagged with the corresponding schema field.
func (p *Plan) Set(ctx context.Context, val interface{}) diag.Diagnostics {
newPlanAttrValue, diags := reflect.FromValue(ctx, p.Schema.AttributeType(), val, tftypes.NewAttributePath())
if diags.HasError() {
return diags
}
newPlanVal, err := newPlanAttrValue.ToTerraformValue(ctx)
if err != nil {
err = fmt.Errorf("error running ToTerraformValue on plan: %w", err)
diags.AddError(
"Plan Write Error",
"An unexpected error was encountered trying to write the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return diags
}
newPlan := tftypes.NewValue(p.Schema.AttributeType().TerraformType(ctx), newPlanVal)
p.Raw = newPlan
return diags
}
// SetAttribute sets the attribute at `path` using the supplied Go value.
//
// The attribute path and value must be valid with the current schema. If the
// attribute path already has a value, it will be overwritten. If the attribute
// path does not have a value, it will be added, including any parent attribute
// paths as necessary.
//
// Lists can only have the next element added according to the current length.
func (p *Plan) SetAttribute(ctx context.Context, path *tftypes.AttributePath, val interface{}) diag.Diagnostics {
var diags diag.Diagnostics
attrType, err := p.Schema.AttributeTypeAtPath(path)
if err != nil {
err = fmt.Errorf("error getting attribute type in schema: %w", err)
diags.AddAttributeError(
path,
"Plan Write Error",
"An unexpected error was encountered trying to write an attribute to the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return diags
}
newVal, newValDiags := reflect.FromValue(ctx, attrType, val, path)
diags.Append(newValDiags...)
if diags.HasError() {
return diags
}
newTfVal, err := newVal.ToTerraformValue(ctx)
if err != nil {
err = fmt.Errorf("error running ToTerraformValue on new plan value: %w", err)
diags.AddAttributeError(
path,
"Plan Write Error",
"An unexpected error was encountered trying to write an attribute to the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return diags
}
tfVal := tftypes.NewValue(attrType.TerraformType(ctx), newTfVal)
if attrTypeWithValidate, ok := attrType.(attr.TypeWithValidate); ok {
diags.Append(attrTypeWithValidate.Validate(ctx, tfVal, path)...)
if diags.HasError() {
return diags
}
}
transformFunc, transformFuncDiags := p.setAttributeTransformFunc(ctx, path, tfVal, nil)
diags.Append(transformFuncDiags...)
if diags.HasError() {
return diags
}
p.Raw, err = tftypes.Transform(p.Raw, transformFunc)
if err != nil {
err = fmt.Errorf("Cannot transform plan: %w", err)
diags.AddAttributeError(
path,
"Plan Write Error",
"An unexpected error was encountered trying to write an attribute to the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return diags
}
return diags
}
// pathExists walks the current state and returns true if the path can be reached.
// The value at the path may be null or unknown.
func (p Plan) pathExists(ctx context.Context, path *tftypes.AttributePath) (bool, diag.Diagnostics) {
var diags diag.Diagnostics
_, remaining, err := tftypes.WalkAttributePath(p.Raw, path)
if err != nil {
if errors.Is(err, tftypes.ErrInvalidStep) {
return false, diags
}
diags.AddAttributeError(
path,
"Plan Read Error",
"An unexpected error was encountered trying to read an attribute from the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+
fmt.Sprintf("Cannot walk attribute path in plan: %s", err),
)
return false, diags
}
return len(remaining.Steps()) == 0, diags
}
// setAttributeTransformFunc recursively creates a value based on the current
// Plan values along the path. If the value at the path does not yet exist,
// this will perform recursion to add the child value to a parent value,
// creating the parent value if necessary.
func (p Plan) setAttributeTransformFunc(ctx context.Context, path *tftypes.AttributePath, tfVal tftypes.Value, diags diag.Diagnostics) (transformFunc, diag.Diagnostics) {
exists, pathExistsDiags := p.pathExists(ctx, path)
diags.Append(pathExistsDiags...)
if diags.HasError() {
return nil, diags
}
if exists {
// Overwrite existing value
return func(p *tftypes.AttributePath, v tftypes.Value) (tftypes.Value, error) {
if p.Equal(path) {
return tfVal, nil
}
return v, nil
}, diags
}
parentPath := path.WithoutLastStep()
parentAttrType, err := p.Schema.AttributeTypeAtPath(parentPath)
if err != nil {
err = fmt.Errorf("error getting parent attribute type in schema: %w", err)
diags.AddAttributeError(
parentPath,
"Plan Write Error",
"An unexpected error was encountered trying to write an attribute to the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return nil, diags
}
parentValue, err := p.terraformValueAtPath(parentPath)
if err != nil && !errors.Is(err, tftypes.ErrInvalidStep) {
diags.AddAttributeError(
parentPath,
"Plan Read Error",
"An unexpected error was encountered trying to read an attribute from the plan. This is always an error in the provider. Please report the following to the provider developer:\n\n"+err.Error(),
)
return nil, diags
}
if parentValue.IsNull() || !parentValue.IsKnown() {
// TODO: This will break when DynamicPsuedoType is introduced.
// tftypes.Type should implement AttributePathStepper, but it currently does not.
// When it does, we should use: tftypes.WalkAttributePath(p.Raw.Type(), parentPath)
// Reference: https://github.com/hashicorp/terraform-plugin-go/issues/110
parentType := parentAttrType.TerraformType(ctx)
var childValue interface{}
if !parentValue.IsKnown() {
childValue = tftypes.UnknownValue
}
var parentValueDiags diag.Diagnostics
parentValue, parentValueDiags = createParentValue(ctx, parentPath, parentType, childValue)
diags.Append(parentValueDiags...)
if diags.HasError() {
return nil, diags
}
}
var childValueDiags diag.Diagnostics
childStep := path.Steps()[len(path.Steps())-1]
parentValue, childValueDiags = upsertChildValue(ctx, parentPath, parentValue, childStep, tfVal)
diags.Append(childValueDiags...)
if diags.HasError() {
return nil, diags
}
if attrTypeWithValidate, ok := parentAttrType.(attr.TypeWithValidate); ok {
diags.Append(attrTypeWithValidate.Validate(ctx, parentValue, parentPath)...)
if diags.HasError() {
return nil, diags
}
}
return p.setAttributeTransformFunc(ctx, parentPath, parentValue, diags)
}
func (p Plan) terraformValueAtPath(path *tftypes.AttributePath) (tftypes.Value, error) {
rawValue, remaining, err := tftypes.WalkAttributePath(p.Raw, path)
if err != nil {
return tftypes.Value{}, fmt.Errorf("%v still remains in the path: %w", remaining, err)
}
attrValue, ok := rawValue.(tftypes.Value)
if !ok {
return tftypes.Value{}, fmt.Errorf("got non-tftypes.Value result %v", rawValue)
}
return attrValue, err
}