-
Notifications
You must be signed in to change notification settings - Fork 3
/
convert.go
360 lines (318 loc) · 10.3 KB
/
convert.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
package main
// // this file is from https://github.com/tmccombs/hcl2json/blob/master/convert/convert.go
// // there are some modifications to allow using a _JSON_ heredoc as a json blob
// // https://github.com/hashicorp/hcl2/issues/5
// import (
// "encoding/json"
// "fmt"
// "io"
// "os"
// "strings"
// "time"
// "github.com/hashicorp/hcl/v2"
// "github.com/hashicorp/hcl/v2/hclsyntax"
// "github.com/zclconf/go-cty/cty"
// ctyconvert "github.com/zclconf/go-cty/cty/convert"
// "github.com/zclconf/go-cty/cty/function"
// "github.com/zclconf/go-cty/cty/function/stdlib"
// ctyjson "github.com/zclconf/go-cty/cty/json"
// )
// type Options struct {
// Simplify bool
// }
// var interval = map[string]time.Duration{
// "ns": time.Nanosecond,
// "ms": time.Millisecond,
// "µs": time.Microsecond,
// "s": time.Second,
// "m": time.Minute,
// "h": time.Hour,
// }
// func delay(str string) time.Duration {
// var n int
// var i string
// if x, _ := fmt.Sscanf(str, "%d%s", &n, &i); x > 0 {
// if d, ok := interval[i]; ok {
// return time.Duration(n) * d
// }
// }
// return time.Duration(0)
// }
// type converter struct {
// bytes []byte
// options Options
// file io.ReaderAt
// }
// type jsonObj map[string]interface{}
// func (c *converter) convertBody(body *hclsyntax.Body) (out jsonObj, err error) {
// out = make(jsonObj)
// c.file, err = os.Open(body.SrcRange.Filename)
// if err != nil {
// log.Fatal("template file open:", err)
// }
// defer c.file.(*os.File).Close()
// for _, block := range body.Blocks {
// if err = c.convertBlock(block, out); err != nil {
// return nil, fmt.Errorf("convert block: %w", err)
// }
// }
// for key, value := range body.Attributes {
// out[key], err = c.convertExpression(value.Expr)
// if err != nil {
// return nil, fmt.Errorf("convert expression: %w", err)
// }
// }
// return out, nil
// }
// func (c *converter) rangeSource(r hcl.Range) string {
// // for some reason the range doesn't include the ending paren, so
// // check if the next character is an ending paren, and include it if it is.
// end := r.End.Byte
// if c.bytes[end] == ')' {
// end++
// }
// return string(c.bytes[r.Start.Byte:end])
// }
// func (c *converter) convertBlock(block *hclsyntax.Block, out jsonObj) error {
// key := block.Type
// for _, label := range block.Labels {
// // Labels represented in HCL are defined as quoted strings after the name of the block:
// // block "label_one" "label_two"
// //
// // Labels represtend in JSON are nested one after the other:
// // "label_one": {
// // "label_two": {}
// // }
// //
// // To create the JSON representation, check to see if the label exists in the current output:
// //
// // When the label exists, move onto the next label reference.
// // When a label does not exist, create the label in the output and set that as the next label reference
// // in order to append (potential) labels to it.
// if _, exists := out[key]; exists {
// var ok bool
// out, ok = out[key].(jsonObj)
// if !ok {
// return fmt.Errorf("Unable to convert Block to JSON: %v.%v", block.Type, strings.Join(block.Labels, "."))
// }
// } else {
// out[key] = make(jsonObj)
// out = out[key].(jsonObj)
// }
// key = label
// }
// value, err := c.convertBody(block.Body)
// if err != nil {
// return fmt.Errorf("convert body: %w", err)
// }
// // Multiple blocks can exist with the same name, at the same
// // level in the JSON document (e.g. locals).
// //
// // For consistency, always wrap the value in a collection.
// // When multiple values are at the same key
// if current, exists := out[key]; exists {
// out[key] = append(current.([]interface{}), value)
// } else {
// out[key] = []interface{}{value}
// }
// return nil
// }
// func (c *converter) convertExpression(expr hclsyntax.Expression) (interface{}, error) {
// if c.options.Simplify {
// value, err := expr.Value(&evalContext)
// if err == nil {
// return ctyjson.SimpleJSONValue{Value: value}, nil
// }
// }
// // assume it is hcl syntax (because, um, it is)
// switch value := expr.(type) {
// case *hclsyntax.LiteralValueExpr:
// return ctyjson.SimpleJSONValue{Value: value.Val}, nil
// case *hclsyntax.UnaryOpExpr:
// return c.convertUnary(value)
// case *hclsyntax.TemplateExpr:
// return c.convertTemplate(value)
// case *hclsyntax.TemplateWrapExpr:
// return c.convertExpression(value.Wrapped)
// case *hclsyntax.TupleConsExpr:
// list := make([]interface{}, 0)
// for _, ex := range value.Exprs {
// elem, err := c.convertExpression(ex)
// if err != nil {
// return nil, err
// }
// list = append(list, elem)
// }
// return list, nil
// case *hclsyntax.ObjectConsExpr:
// m := make(jsonObj)
// for _, item := range value.Items {
// key, err := c.convertKey(item.KeyExpr)
// if err != nil {
// return nil, err
// }
// m[key], err = c.convertExpression(item.ValueExpr)
// if err != nil {
// return nil, err
// }
// }
// return m, nil
// default:
// return c.wrapExpr(expr), nil
// }
// }
// func (c *converter) convertUnary(v *hclsyntax.UnaryOpExpr) (interface{}, error) {
// _, isLiteral := v.Val.(*hclsyntax.LiteralValueExpr)
// if !isLiteral {
// // If the expression after the operator isn't a literal, fall back to
// // wrapping the expression with ${...}
// return c.wrapExpr(v), nil
// }
// val, err := v.Value(nil)
// if err != nil {
// return nil, err
// }
// return ctyjson.SimpleJSONValue{Value: val}, nil
// }
// func (c *converter) convertTemplate(t *hclsyntax.TemplateExpr) (interface{}, error) {
// if t.IsStringLiteral() {
// // safe because the value is just the string
// v, err := t.Value(nil)
// if err != nil {
// return "", err
// }
// b := make([]byte, t.SrcRange.End.Column)
// c.file.ReadAt(b, int64(t.SrcRange.End.Byte-t.SrcRange.End.Column))
// if strings.TrimSpace(string(b)) == "_JSON_" {
// m := make(map[string]interface{})
// err := json.Unmarshal([]byte(v.AsString()), &m)
// return m, err
// }
// return v.AsString(), nil
// }
// var builder strings.Builder
// for _, part := range t.Parts {
// s, err := c.convertStringPart(part)
// if err != nil {
// return "", err
// }
// builder.WriteString(s)
// }
// return builder.String(), nil
// }
// func (c *converter) convertStringPart(expr hclsyntax.Expression) (string, error) {
// switch v := expr.(type) {
// case *hclsyntax.LiteralValueExpr:
// s, err := ctyconvert.Convert(v.Val, cty.String)
// if err != nil {
// return "", err
// }
// return s.AsString(), nil
// case *hclsyntax.TemplateExpr:
// str, err := c.convertTemplate(v)
// return str.(string), err
// case *hclsyntax.TemplateWrapExpr:
// return c.convertStringPart(v.Wrapped)
// case *hclsyntax.ConditionalExpr:
// return c.convertTemplateConditional(v)
// case *hclsyntax.TemplateJoinExpr:
// return c.convertTemplateFor(v.Tuple.(*hclsyntax.ForExpr))
// default:
// // treating as an embedded expression
// return c.wrapExpr(expr), nil
// }
// }
// func (c *converter) convertKey(keyExpr hclsyntax.Expression) (string, error) {
// // a key should never have dynamic input
// if k, isKeyExpr := keyExpr.(*hclsyntax.ObjectConsKeyExpr); isKeyExpr {
// keyExpr = k.Wrapped
// if _, isTraversal := keyExpr.(*hclsyntax.ScopeTraversalExpr); isTraversal {
// return c.rangeSource(keyExpr.Range()), nil
// }
// }
// return c.convertStringPart(keyExpr)
// }
// func (c *converter) convertTemplateConditional(expr *hclsyntax.ConditionalExpr) (string, error) {
// var builder strings.Builder
// builder.WriteString("%{if ")
// builder.WriteString(c.rangeSource(expr.Condition.Range()))
// builder.WriteString("}")
// trueResult, err := c.convertStringPart(expr.TrueResult)
// if err != nil {
// return "", nil
// }
// builder.WriteString(trueResult)
// falseResult, err := c.convertStringPart(expr.FalseResult)
// if len(falseResult) > 0 {
// builder.WriteString("%{else}")
// builder.WriteString(falseResult)
// }
// builder.WriteString("%{endif}")
// return builder.String(), nil
// }
// func (c *converter) convertTemplateFor(expr *hclsyntax.ForExpr) (string, error) {
// var builder strings.Builder
// builder.WriteString("%{for ")
// if len(expr.KeyVar) > 0 {
// builder.WriteString(expr.KeyVar)
// builder.WriteString(", ")
// }
// builder.WriteString(expr.ValVar)
// builder.WriteString(" in ")
// builder.WriteString(c.rangeSource(expr.CollExpr.Range()))
// builder.WriteString("}")
// templ, err := c.convertStringPart(expr.ValExpr)
// if err != nil {
// return "", err
// }
// builder.WriteString(templ)
// builder.WriteString("%{endfor}")
// return builder.String(), nil
// }
// func (c *converter) wrapExpr(expr hclsyntax.Expression) string {
// return "${" + c.rangeSource(expr.Range()) + "}"
// }
// // a subset of functions used in terraform
// // that can be used when simplifying during conversion
// var evalContext = hcl.EvalContext{
// Functions: map[string]function.Function{
// // numeric
// // "abs": stdlib.AbsoluteFunc,
// // "ceil": stdlib.CeilFunc,
// // "floor": stdlib.FloorFunc,
// // "log": stdlib.LogFunc,
// "max": stdlib.MaxFunc,
// "min": stdlib.MinFunc,
// // "parseint": stdlib.ParseIntFunc,
// // "pow": stdlib.PowFunc,
// // "signum": stdlib.SignumFunc,
// // string
// // "chomp": stdlib.ChompFunc,
// "format": stdlib.FormatFunc,
// "formatlist": stdlib.FormatListFunc,
// // "indent": stdlib.IndentFunc,
// // "join": stdlib.JoinFunc,
// // "split": stdlib.SplitFunc,
// // "strrev": stdlib.ReverseFunc,
// // "trim": stdlib.TrimFunc,
// // "trimprefix": stdlib.TrimPrefixFunc,
// // "trimsuffix": stdlib.TrimSuffixFunc,
// // "trimspace": stdlib.TrimSpaceFunc,
// // collections
// // "chunklist": stdlib.ChunklistFunc,
// "concat": stdlib.ConcatFunc,
// // "distinct": stdlib.DistinctFunc,
// // "flatten": stdlib.FlattenFunc,
// "length": stdlib.LengthFunc,
// // "merge": stdlib.MergeFunc,
// // "reverse": stdlib.ReverseListFunc,
// // "sort": stdlib.SortFunc,
// // encoding
// "csvdecode": stdlib.CSVDecodeFunc,
// "jsondecode": stdlib.JSONDecodeFunc,
// "jsonencode": stdlib.JSONEncodeFunc,
// // time
// "formatdate": stdlib.FormatDateFunc,
// // "timeadd": stdlib.TimeAddFunc,
// },
// }