Documentation
¶
Index ¶
- Variables
- func IsTemplateDocumentLangID(langID lsp.LanguageIdentifier) bool
- func IsValuesYamlFile(fileURI uri.URI) bool
- func IsYamllsEnabled(uri lsp.URI, yamllsConfiguration util.YamllsConfiguration) bool
- type DiagnosticsCache
- type Document
- type DocumentInterface
- type DocumentStore
- func (s *DocumentStore) DidOpenTemplateDocument(params *lsp.DidOpenTextDocumentParams, helmlsConfig util.HelmlsConfiguration) (*TemplateDocument, error)
- func (s *DocumentStore) DidOpenYamlDocument(params *lsp.DidOpenTextDocumentParams, helmlsConfig util.HelmlsConfiguration) (*YamlDocument, error)
- func (s *DocumentStore) GetAllTemplateDocs() []*TemplateDocument
- func (s *DocumentStore) GetAllYamlDocs() []*YamlDocument
- func (s *DocumentStore) GetDocumentType(uri uri.URI) (DocumentType, bool)
- func (s *DocumentStore) GetSyncDocument(uri uri.URI) (DocumentInterface, bool)
- func (s *DocumentStore) GetTemplateDoc(docuri uri.URI) (*TemplateDocument, bool)
- func (s *DocumentStore) GetYamlDoc(docuri uri.URI) (*YamlDocument, bool)
- func (s *DocumentStore) LoadDocsOnNewChart(chart *charts.Chart, helmlsConfig util.HelmlsConfiguration)
- func (s *DocumentStore) StoreTemplateDocument(path string, content []byte, helmlsConfig util.HelmlsConfiguration)
- type DocumentType
- type TemplateDocument
- type TextDocument
- type YamlDocument
Constants ¶
This section is empty.
Variables ¶
View Source
var ValuesYamlFileGlob = glob.MustCompile(`**/values*.{yaml,yml}`)
Functions ¶
func IsTemplateDocumentLangID ¶
func IsTemplateDocumentLangID(langID lsp.LanguageIdentifier) bool
func IsValuesYamlFile ¶ added in v0.4.0
func IsYamllsEnabled ¶
func IsYamllsEnabled(uri lsp.URI, yamllsConfiguration util.YamllsConfiguration) bool
Types ¶
type DiagnosticsCache ¶
type DiagnosticsCache struct {
YamlDiagnostics []lsp.Diagnostic
HelmDiagnostics []lsp.Diagnostic
// contains filtered or unexported fields
}
func NewDiagnosticsCache ¶
func NewDiagnosticsCache(helmlsConfig util.HelmlsConfiguration) DiagnosticsCache
func (DiagnosticsCache) GetMergedDiagnostics ¶
func (d DiagnosticsCache) GetMergedDiagnostics() (merged []lsp.Diagnostic)
func (*DiagnosticsCache) SetYamlDiagnostics ¶
func (d *DiagnosticsCache) SetYamlDiagnostics(diagnostics []lsp.Diagnostic)
func (*DiagnosticsCache) ShouldShowDiagnosticsOnNewYamlDiagnostics ¶
func (d *DiagnosticsCache) ShouldShowDiagnosticsOnNewYamlDiagnostics() bool
type Document ¶
type Document struct {
URI lsp.DocumentURI
Path string
Content []byte
IsOpen bool
// contains filtered or unexported fields
}
func (*Document) ApplyChanges ¶
func (d *Document) ApplyChanges(changes []lsp.TextDocumentContentChangeEvent)
ApplyChanges updates the content of the document from LSP textDocument/didChange events.
func (*Document) GetContent ¶
GetContent implements PossibleDependencyFile.
type DocumentInterface ¶
type DocumentInterface interface {
GetDocumentType() DocumentType
ApplyChanges([]lsp.TextDocumentContentChangeEvent)
}
type DocumentStore ¶
type DocumentStore struct {
// contains filtered or unexported fields
}
documentStore holds opened documents.
func NewDocumentStore ¶
func NewDocumentStore() *DocumentStore
func (*DocumentStore) DidOpenTemplateDocument ¶
func (s *DocumentStore) DidOpenTemplateDocument( params *lsp.DidOpenTextDocumentParams, helmlsConfig util.HelmlsConfiguration, ) (*TemplateDocument, error)
func (*DocumentStore) DidOpenYamlDocument ¶
func (s *DocumentStore) DidOpenYamlDocument( params *lsp.DidOpenTextDocumentParams, helmlsConfig util.HelmlsConfiguration, ) (*YamlDocument, error)
func (*DocumentStore) GetAllTemplateDocs ¶
func (s *DocumentStore) GetAllTemplateDocs() []*TemplateDocument
func (*DocumentStore) GetAllYamlDocs ¶
func (s *DocumentStore) GetAllYamlDocs() []*YamlDocument
func (*DocumentStore) GetDocumentType ¶
func (s *DocumentStore) GetDocumentType(uri uri.URI) (DocumentType, bool)
func (*DocumentStore) GetSyncDocument ¶
func (s *DocumentStore) GetSyncDocument(uri uri.URI) (DocumentInterface, bool)
func (*DocumentStore) GetTemplateDoc ¶
func (s *DocumentStore) GetTemplateDoc(docuri uri.URI) (*TemplateDocument, bool)
func (*DocumentStore) GetYamlDoc ¶
func (s *DocumentStore) GetYamlDoc(docuri uri.URI) (*YamlDocument, bool)
func (*DocumentStore) LoadDocsOnNewChart ¶
func (s *DocumentStore) LoadDocsOnNewChart(chart *charts.Chart, helmlsConfig util.HelmlsConfiguration)
func (*DocumentStore) StoreTemplateDocument ¶
func (s *DocumentStore) StoreTemplateDocument(path string, content []byte, helmlsConfig util.HelmlsConfiguration)
type DocumentType ¶
type DocumentType string
Document represents an opened file.
const ( TemplateDocumentType DocumentType = "helm" YamlDocumentType DocumentType = "yaml" )
func DocumentTypeForFile ¶ added in v0.4.0
func DocumentTypeForFile(langID lsp.LanguageIdentifier, fileURI uri.URI) DocumentType
Since not all editors support custom filetypes for values.yaml its easier to check if the file is a values.yaml or not on the server side
type TemplateDocument ¶
type TemplateDocument struct {
Document
NeedsRefreshDiagnostics bool
Ast *sitter.Tree
DiagnosticsCache DiagnosticsCache
SymbolTable *symboltable.SymbolTable
IsYaml bool
}
TemplateDocument represents an helm template file.
func NewTemplateDocument ¶
func NewTemplateDocument(fileURI uri.URI, content []byte, isOpen bool, helmlsConfig util.HelmlsConfiguration) *TemplateDocument
func (*TemplateDocument) ApplyChanges ¶
func (d *TemplateDocument) ApplyChanges(changes []lsp.TextDocumentContentChangeEvent)
ApplyChanges updates the content of the document from LSP textDocument/didChange events.
func (*TemplateDocument) ApplyChangesToAst ¶
func (d *TemplateDocument) ApplyChangesToAst(newContent []byte)
func (*TemplateDocument) GetDocumentType ¶
func (d *TemplateDocument) GetDocumentType() DocumentType
type TextDocument ¶
type TextDocument interface {
ApplyChanges([]lsp.TextDocumentContentChangeEvent)
}
type YamlDocument ¶
type YamlDocument struct {
Document
Node yaml.Node
GoccyYamlNode ast.Node
ParsedYaml map[string]any
ParseErr error
}
TemplateDocument represents an helm template file.
func NewYamlDocument ¶
func NewYamlDocument(fileURI uri.URI, content []byte, isOpen bool, helmlsConfig util.HelmlsConfiguration) *YamlDocument
func (*YamlDocument) ApplyChanges ¶
func (d *YamlDocument) ApplyChanges(changes []lsp.TextDocumentContentChangeEvent)
ApplyChanges updates the content of the document from LSP textDocument/didChange events.
func (*YamlDocument) GetDocumentType ¶
func (d *YamlDocument) GetDocumentType() DocumentType
func (*YamlDocument) GetPathForPosition ¶ added in v0.5.0
func (d *YamlDocument) GetPathForPosition(position lsp.Position) (string, error)
Click to show internal directories.
Click to hide internal directories.