forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonc.go
80 lines (69 loc) · 2.16 KB
/
jsonc.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
package jsonc
import (
"encoding/json"
"fmt"
"strings"
"github.com/sourcegraph/jsonx"
)
// Unmarshal unmarshals the JSON using a fault-tolerant parser that allows comments and trailing
// commas. If any unrecoverable faults are found, an error is returned.
func Unmarshal(text string, v interface{}) error {
data, err := Parse(text)
if err != nil {
return err
}
if strings.TrimSpace(text) == "" {
return nil
}
return json.Unmarshal(data, v)
}
// Parse converts JSON with comments, trailing commas, and some types of syntax errors into standard
// JSON. If there is an error that it can't unambiguously resolve, it returns the error.
func Parse(text string) ([]byte, error) {
data, errs := jsonx.Parse(text, jsonx.ParseOptions{Comments: true, TrailingCommas: true})
if len(errs) > 0 {
return data, fmt.Errorf("failed to parse JSON: %v", errs)
}
return data, nil
}
// Normalize is like Parse, except it ignores errors and always returns valid JSON, even if that
// JSON is a subset of the input.
func Normalize(input string) []byte {
output, _ := jsonx.Parse(string(input), jsonx.ParseOptions{Comments: true, TrailingCommas: true})
if len(output) == 0 {
return []byte("{}")
}
return output
}
var DefaultFormatOptions = jsonx.FormatOptions{InsertSpaces: true, TabSize: 2}
// Remove returns the input JSON with the given path removed.
func Remove(input string, path ...string) (string, error) {
edits, _, err := jsonx.ComputePropertyRemoval(input,
jsonx.PropertyPath(path...),
DefaultFormatOptions,
)
if err != nil {
return input, err
}
return jsonx.ApplyEdits(input, edits...)
}
// Edit returns the input JSON with the given path set to v.
func Edit(input string, v interface{}, path ...string) (string, error) {
edits, _, err := jsonx.ComputePropertyEdit(input,
jsonx.PropertyPath(path...),
v,
nil,
DefaultFormatOptions,
)
if err != nil {
return input, err
}
return jsonx.ApplyEdits(input, edits...)
}
// Format returns the input JSON formatted with the given options.
func Format(input string, opt *jsonx.FormatOptions) (string, error) {
if opt == nil {
opt = &DefaultFormatOptions
}
return jsonx.ApplyEdits(input, jsonx.Format(input, *opt)...)
}