aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/zclconf/go-cty/cty/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/zclconf/go-cty/cty/error.go')
-rw-r--r--vendor/github.com/zclconf/go-cty/cty/error.go55
1 files changed, 55 insertions, 0 deletions
diff --git a/vendor/github.com/zclconf/go-cty/cty/error.go b/vendor/github.com/zclconf/go-cty/cty/error.go
new file mode 100644
index 0000000..dd139f7
--- /dev/null
+++ b/vendor/github.com/zclconf/go-cty/cty/error.go
@@ -0,0 +1,55 @@
1package cty
2
3import (
4 "fmt"
5)
6
7// PathError is a specialization of error that represents where in a
8// potentially-deep data structure an error occured, using a Path.
9type PathError struct {
10 error
11 Path Path
12}
13
14func errorf(path Path, f string, args ...interface{}) error {
15 // We need to copy the Path because often our caller builds it by
16 // continually mutating the same underlying buffer.
17 sPath := make(Path, len(path))
18 copy(sPath, path)
19 return PathError{
20 error: fmt.Errorf(f, args...),
21 Path: sPath,
22 }
23}
24
25// NewErrorf creates a new PathError for the current path by passing the
26// given format and arguments to fmt.Errorf and then wrapping the result
27// similarly to NewError.
28func (p Path) NewErrorf(f string, args ...interface{}) error {
29 return errorf(p, f, args...)
30}
31
32// NewError creates a new PathError for the current path, wrapping the given
33// error.
34func (p Path) NewError(err error) error {
35 // if we're being asked to wrap an existing PathError then our new
36 // PathError will be the concatenation of the two paths, ensuring
37 // that we still get a single flat PathError that's thus easier for
38 // callers to deal with.
39 perr, wrappingPath := err.(PathError)
40 pathLen := len(p)
41 if wrappingPath {
42 pathLen = pathLen + len(perr.Path)
43 }
44
45 sPath := make(Path, pathLen)
46 copy(sPath, p)
47 if wrappingPath {
48 copy(sPath[len(p):], perr.Path)
49 }
50
51 return PathError{
52 error: err,
53 Path: sPath,
54 }
55}