-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathactions_action.go
173 lines (146 loc) · 4.52 KB
/
actions_action.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
package main
import (
//"bytes"
"fmt"
"log/slog"
)
// ***************************************************************************************
// ***************************************************************************************
// actions (block / loop )
// ***************************************************************************************
// ***************************************************************************************
type ActionsAction struct {
Name *Field `yaml:"name,omitempty" json:"name,omitempty"`
With []any `yaml:"with,omitempty" json:"with,omitempty"`
When []*exporterTemplate `yaml:"when,omitempty" json:"when,omitempty"`
LoopVar string `yaml:"loop_var,omitempty" json:"loop_var,omitempty"`
Vars map[string]any `yaml:"vars,omitempty" json:"vars,omitempty"`
Until []*exporterTemplate `yaml:"until,omitempty" json:"until,omitempty"`
Actions []Action `yaml:"actions,omitempty" json:"actions,omitempty"`
vars [][]any
// Catches all undefined fields and must be empty after parsing.
XXX map[string]interface{} `yaml:",inline" json:"-"`
}
func (a *ActionsAction) Type() int {
return actions_action
}
func (a *ActionsAction) GetName(symtab map[string]any, logger *slog.Logger) string {
str, err := a.Name.GetValueString(symtab)
if err != nil {
logger.Warn(
fmt.Sprintf("invalid action name: %v", err),
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger))
return ""
}
return str
}
func (a *ActionsAction) GetNameField() *Field {
return a.Name
}
func (a *ActionsAction) SetNameField(name *Field) {
a.Name = name
}
func (a *ActionsAction) GetWidh() []any {
return a.With
}
func (a *ActionsAction) SetWidth(with []any) {
a.With = with
}
func (a *ActionsAction) GetWhen() []*exporterTemplate {
return a.When
}
func (a *ActionsAction) SetWhen(when []*exporterTemplate) {
a.When = when
}
func (a *ActionsAction) GetLoopVar() string {
return a.LoopVar
}
func (a *ActionsAction) SetLoopVar(loopvar string) {
a.LoopVar = loopvar
}
func (a *ActionsAction) GetVars() [][]any {
return a.vars
}
func (a *ActionsAction) SetVars(vars [][]any) {
a.vars = vars
}
func (a *ActionsAction) GetUntil() []*exporterTemplate {
return a.Until
}
func (a *ActionsAction) SetUntil(until []*exporterTemplate) {
a.Until = until
}
// func (a *ActionsAction) GetBaseAction() *BaseAction {
// return nil
// }
func (a *ActionsAction) setBasicElement(
nameField *Field,
vars [][]any,
with []any,
loopVar string,
when []*exporterTemplate,
until []*exporterTemplate) error {
return setBasicElement(a, nameField, vars, with, loopVar, when, until)
}
func (a *ActionsAction) PlayAction(script *YAMLScript, symtab map[string]any, logger *slog.Logger) error {
return PlayBaseAction(script, symtab, logger, a, a.CustomAction)
}
// WARNING: only the first MetricPrefix in actionsTree if supported
func (a *ActionsAction) GetMetrics() []*GetMetricsRes {
var (
final_res []*GetMetricsRes
)
for _, cur_act := range a.Actions {
res := cur_act.GetMetrics()
if len(res) > 0 {
final_res = append(final_res, res...)
}
}
return final_res
}
// only for MetricAction
func (a *ActionsAction) GetMetric() *MetricConfig {
return nil
}
func (a *ActionsAction) SetMetricFamily(*MetricFamily) {
}
// only for PlayAction
func (a *ActionsAction) SetPlayAction(script map[string]*YAMLScript) error {
for _, a := range a.Actions {
if a.Type() == play_script_action || a.Type() == actions_action {
if err := a.SetPlayAction(script); err != nil {
return err
}
}
}
return nil
}
// specific behavior for the ActionsAction
func (a *ActionsAction) CustomAction(script *YAMLScript, symtab map[string]any, logger *slog.Logger) error {
logger.Debug(
fmt.Sprintf("[Type: ActionsAction] - %d Actions to play", len(a.Actions)),
"collid", CollectorId(symtab, logger),
"script", ScriptName(symtab, logger),
"name", a.GetName(symtab, logger))
for _, cur_act := range a.Actions {
// fmt.Printf("\tadd to symbols table: %s = %v\n", key, val)
if err := PlayBaseAction(script, symtab, logger, cur_act, cur_act.CustomAction); err != nil {
return err
}
}
return nil
}
func (a *ActionsAction) AddCustomTemplate(customTemplate *exporterTemplate) error {
if err := AddCustomTemplate(a, customTemplate); err != nil {
return err
}
for _, cur_act := range a.Actions {
err := cur_act.AddCustomTemplate(customTemplate)
if err != nil {
return err
}
}
return nil
}
// ***************************************************************************************