pulumi/pkg/diag/doc.go
joeduffy f726c21402 Remember parent documents during template expansion
During subtypeOf checking, we need to walk the chain of documents from
which a stack came.  This is because, due to template expansion, we'll
end up with a different document for instantiated types than uninstantiated
ones.  This change keeps track of the parent and walks it appropriately.
2016-12-03 15:19:45 -08:00

43 lines
1 KiB
Go

// Copyright 2016 Marapongo, Inc. All rights reserved.
package diag
import (
"io/ioutil"
"path/filepath"
)
// Document is a file used during compilation, for which advanced diagnostics, such as line/column numbers, may be
// required. It stores the contents of the entire file so that precise errors can be given; Forget discards them.
type Document struct {
File string
Body []byte
Parent *Document // if this document was generated from another, this will point to it.
}
var _ Diagable = &Document{} // compile-time assertion that *Document implements Diagable.
func NewDocument(file string) *Document {
return &Document{File: file}
}
func ReadDocument(file string) (*Document, error) {
body, err := ioutil.ReadFile(file)
if err != nil {
return nil, err
}
return &Document{File: file, Body: body}, nil
}
func (doc *Document) Ext() string {
return filepath.Ext(doc.File)
}
func (doc *Document) Forget() {
doc.Body = nil
}
func (doc *Document) Where() (*Document, *Location) {
return doc, nil
}