mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
141 lines
3.4 KiB
Go
141 lines
3.4 KiB
Go
package modconfig
|
|
|
|
import (
|
|
"fmt"
|
|
typehelpers "github.com/turbot/go-kit/types"
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/hashicorp/hcl/v2"
|
|
"github.com/stevenle/topsort"
|
|
"github.com/turbot/steampipe/pkg/utils"
|
|
)
|
|
|
|
// TODO [node_reuse] add DashboardLeafNodeImpl
|
|
|
|
// DashboardContainer is a struct representing the Dashboard and Container resource
|
|
type DashboardContainer struct {
|
|
ResourceWithMetadataImpl
|
|
ModTreeItemImpl
|
|
|
|
// required to allow partial decoding
|
|
Remain hcl.Body `hcl:",remain" json:"-"`
|
|
|
|
Width *int `cty:"width" hcl:"width" column:"width,text"`
|
|
Display *string `cty:"display" hcl:"display"`
|
|
Inputs []*DashboardInput `cty:"inputs" column:"inputs,jsonb"`
|
|
// store children in a way which can be serialised via cty
|
|
ChildNames []string `cty:"children" column:"children,jsonb"`
|
|
|
|
runtimeDependencyGraph *topsort.Graph
|
|
}
|
|
|
|
func NewDashboardContainer(block *hcl.Block, mod *Mod, shortName string) HclResource {
|
|
fullName := fmt.Sprintf("%s.%s.%s", mod.ShortName, block.Type, shortName)
|
|
|
|
c := &DashboardContainer{
|
|
ModTreeItemImpl: ModTreeItemImpl{
|
|
HclResourceImpl: HclResourceImpl{
|
|
ShortName: shortName,
|
|
FullName: fullName,
|
|
UnqualifiedName: fmt.Sprintf("%s.%s", block.Type, shortName),
|
|
DeclRange: block.DefRange,
|
|
blockType: block.Type,
|
|
},
|
|
Mod: mod,
|
|
},
|
|
}
|
|
c.SetAnonymous(block)
|
|
|
|
return c
|
|
}
|
|
|
|
func (c *DashboardContainer) Equals(other *DashboardContainer) bool {
|
|
diff := c.Diff(other)
|
|
return !diff.HasChanges()
|
|
}
|
|
|
|
// OnDecoded implements HclResource
|
|
func (c *DashboardContainer) OnDecoded(block *hcl.Block, _ ResourceMapsProvider) hcl.Diagnostics {
|
|
c.ChildNames = make([]string, len(c.children))
|
|
for i, child := range c.children {
|
|
c.ChildNames[i] = child.Name()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetWidth implements DashboardLeafNode
|
|
func (c *DashboardContainer) GetWidth() int {
|
|
if c.Width == nil {
|
|
return 0
|
|
}
|
|
return *c.Width
|
|
}
|
|
|
|
// GetDisplay implements DashboardLeafNode
|
|
func (c *DashboardContainer) GetDisplay() string {
|
|
return typehelpers.SafeString(c.Display)
|
|
}
|
|
|
|
// GetType implements DashboardLeafNode
|
|
func (c *DashboardContainer) GetType() string {
|
|
return ""
|
|
}
|
|
|
|
func (c *DashboardContainer) Diff(other *DashboardContainer) *DashboardTreeItemDiffs {
|
|
res := &DashboardTreeItemDiffs{
|
|
Item: c,
|
|
Name: c.Name(),
|
|
}
|
|
|
|
if !utils.SafeStringsEqual(c.FullName, other.FullName) {
|
|
res.AddPropertyDiff("Name")
|
|
}
|
|
|
|
if !utils.SafeStringsEqual(c.Title, other.Title) {
|
|
res.AddPropertyDiff("Title")
|
|
}
|
|
|
|
if !utils.SafeIntEqual(c.Width, other.Width) {
|
|
res.AddPropertyDiff("Width")
|
|
}
|
|
|
|
if !utils.SafeStringsEqual(c.Display, other.Display) {
|
|
res.AddPropertyDiff("Display")
|
|
}
|
|
|
|
res.populateChildDiffs(c, other)
|
|
return res
|
|
}
|
|
|
|
func (c *DashboardContainer) SetChildren(children []ModTreeItem) {
|
|
c.children = children
|
|
}
|
|
|
|
func (c *DashboardContainer) AddChild(child ModTreeItem) {
|
|
c.children = append(c.children, child)
|
|
}
|
|
|
|
func (c *DashboardContainer) WalkResources(resourceFunc func(resource HclResource) (bool, error)) error {
|
|
for _, child := range c.children {
|
|
continueWalking, err := resourceFunc(child.(HclResource))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if !continueWalking {
|
|
break
|
|
}
|
|
|
|
if childContainer, ok := child.(*DashboardContainer); ok {
|
|
if err := childContainer.WalkResources(resourceFunc); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// CtyValue implements CtyValueProvider
|
|
func (c *DashboardContainer) CtyValue() (cty.Value, error) {
|
|
return GetCtyValue(c)
|
|
}
|