-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactions.go
More file actions
417 lines (375 loc) · 10.6 KB
/
actions.go
File metadata and controls
417 lines (375 loc) · 10.6 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
package process
import (
"fmt"
"strconv"
"syscall"
"time"
"dappco.re/go/core"
coreerr "dappco.re/go/core/log"
)
// --- ACTION messages (broadcast via Core.ACTION) ---
// TaskProcessStart requests asynchronous process execution through Core.PERFORM.
// The handler returns a snapshot of the started process immediately.
//
// Example:
//
// c.PERFORM(process.TaskProcessStart{Command: "sleep", Args: []string{"10"}})
type TaskProcessStart struct {
Command string `json:"command"`
Args []string `json:"args"`
Dir string `json:"dir"`
Env []string `json:"env"`
// DisableCapture skips buffering process output before returning it.
DisableCapture bool `json:"disableCapture"`
// Detach runs the command in its own process group.
Detach bool `json:"detach"`
// Timeout bounds the execution duration.
Timeout time.Duration `json:"timeout"`
// GracePeriod controls SIGTERM-to-SIGKILL escalation.
GracePeriod time.Duration `json:"gracePeriod"`
// KillGroup terminates the entire process group instead of only the leader.
KillGroup bool `json:"killGroup"`
}
// TaskProcessRun requests synchronous command execution through Core.PERFORM.
// The handler returns the combined command output on success.
//
// Example:
//
// c.PERFORM(process.TaskProcessRun{Command: "echo", Args: []string{"hello"}})
type TaskProcessRun struct {
Command string `json:"command"`
Args []string `json:"args"`
Dir string `json:"dir"`
Env []string `json:"env"`
// DisableCapture skips buffering process output before returning it.
DisableCapture bool `json:"disableCapture"`
// Detach runs the command in its own process group.
Detach bool `json:"detach"`
// Timeout bounds the execution duration.
Timeout time.Duration `json:"timeout"`
// GracePeriod controls SIGTERM-to-SIGKILL escalation.
GracePeriod time.Duration `json:"gracePeriod"`
// KillGroup terminates the entire process group instead of only the leader.
KillGroup bool `json:"killGroup"`
}
// TaskProcessKill requests termination of a managed process by ID or PID.
//
// Example:
//
// c.PERFORM(process.TaskProcessKill{ID: "proc-1"})
type TaskProcessKill struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
// PID targets a process directly when ID is not available.
PID int `json:"pid"`
}
// TaskProcessSignal requests signalling a managed process by ID or PID through Core.PERFORM.
// Signal 0 is allowed for liveness checks.
//
// Example:
//
// c.PERFORM(process.TaskProcessSignal{ID: "proc-1", Signal: syscall.SIGTERM})
type TaskProcessSignal struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
// PID targets a process directly when ID is not available.
PID int `json:"pid"`
// Signal is delivered to the process or process group.
Signal syscall.Signal `json:"signal"`
}
// TaskProcessGet requests a snapshot of a managed process through Core.PERFORM.
//
// Example:
//
// c.PERFORM(process.TaskProcessGet{ID: "proc-1"})
type TaskProcessGet struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
}
// TaskProcessWait waits for a managed process to finish through Core.PERFORM.
// Successful exits return an Info snapshot. Unsuccessful exits return a
// TaskProcessWaitError value that preserves the final snapshot.
//
// Example:
//
// c.PERFORM(process.TaskProcessWait{ID: "proc-1"})
type TaskProcessWait struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
}
// TaskProcessWaitError is returned as the task value when TaskProcessWait
// completes with a non-successful process outcome. It preserves the final
// process snapshot while still behaving like the underlying wait error.
type TaskProcessWaitError struct {
Info Info
Err error
}
// Error implements error.
func (e *TaskProcessWaitError) Error() string {
if e == nil || e.Err == nil {
return ""
}
return e.Err.Error()
}
// Unwrap returns the underlying wait error.
func (e *TaskProcessWaitError) Unwrap() error {
if e == nil {
return nil
}
return e.Err
}
// TaskProcessOutput requests the captured output of a managed process through Core.PERFORM.
//
// Example:
//
// c.PERFORM(process.TaskProcessOutput{ID: "proc-1"})
type TaskProcessOutput struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
}
// TaskProcessInput writes data to the stdin of a managed process through Core.PERFORM.
//
// Example:
//
// c.PERFORM(process.TaskProcessInput{ID: "proc-1", Input: "hello\n"})
type TaskProcessInput struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
// Input is written verbatim to the process stdin pipe.
Input string `json:"input"`
}
// TaskProcessCloseStdin closes the stdin pipe of a managed process through Core.PERFORM.
//
// Example:
//
// c.PERFORM(process.TaskProcessCloseStdin{ID: "proc-1"})
type TaskProcessCloseStdin struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
}
// processActionInput models the options passed via core.Actions.
// Keys:
// command, args, dir, env, disableCapture, detach, timeout,
// gracePeriod, killGroup, id, pid.
type processActionInput struct {
Command string
Args []string
Dir string
Env []string
DisableCapture bool
Detach bool
Timeout time.Duration
GracePeriod time.Duration
KillGroup bool
ID string
PID int
}
func parseProcessActionInput(opts core.Options, requireCommand bool) (processActionInput, error) {
parsed := processActionInput{
Command: core.Trim(opts.String("command")),
Dir: opts.String("dir"),
DisableCapture: opts.Bool("disableCapture"),
Detach: opts.Bool("detach"),
KillGroup: opts.Bool("killGroup"),
Timeout: parseDurationOption(opts, "timeout"),
GracePeriod: parseDurationOption(opts, "gracePeriod"),
}
var err error
parsed.Args, err = parseStringSliceOption(opts, "args")
if err != nil {
return processActionInput{}, err
}
parsed.Env, err = parseStringSliceOption(opts, "env")
if err != nil {
return processActionInput{}, err
}
parsed.ID = core.Trim(opts.String("id"))
parsed.PID = parseIntOption(opts, "pid")
if requireCommand && parsed.Command == "" {
return processActionInput{}, coreerr.E("process action", "command is required", nil)
}
return parsed, nil
}
func parseProcessActionTarget(opts core.Options) (string, int, error) {
id := core.Trim(opts.String("id"))
pid := parseIntOption(opts, "pid")
if id == "" && pid <= 0 {
return "", 0, coreerr.E("process action", "id or pid is required", nil)
}
return id, pid, nil
}
func parseDurationOption(opts core.Options, key string) time.Duration {
r := opts.Get(key)
if !r.OK {
return 0
}
switch value := r.Value.(type) {
case time.Duration:
return value
case int:
return time.Duration(value)
case int8:
return time.Duration(value)
case int16:
return time.Duration(value)
case int32:
return time.Duration(value)
case int64:
return time.Duration(value)
case uint:
return time.Duration(value)
case uint8:
return time.Duration(value)
case uint16:
return time.Duration(value)
case uint32:
return time.Duration(value)
case uint64:
return time.Duration(value)
case float32:
return time.Duration(value)
case float64:
return time.Duration(value)
case string:
d, err := time.ParseDuration(value)
if err == nil {
return d
}
if n, parseErr := strconv.ParseInt(value, 10, 64); parseErr == nil {
return time.Duration(n)
}
}
return 0
}
func parseIntOption(opts core.Options, key string) int {
r := opts.Get(key)
if !r.OK {
return 0
}
switch value := r.Value.(type) {
case int:
return value
case int8:
return int(value)
case int16:
return int(value)
case int32:
return int(value)
case int64:
return int(value)
case uint:
return int(value)
case uint8:
return int(value)
case uint16:
return int(value)
case uint32:
return int(value)
case uint64:
return int(value)
case float32:
return int(value)
case float64:
return int(value)
case string:
if parsed, err := strconv.Atoi(value); err == nil {
return parsed
}
}
return 0
}
func parseStringSliceOption(opts core.Options, key string) ([]string, error) {
r := opts.Get(key)
if !r.OK {
return nil, nil
}
raw, ok := r.Value.([]string)
if ok {
return raw, nil
}
anyList, ok := r.Value.([]any)
if !ok {
if alt, ok := r.Value.([]interface{}); ok {
anyList = alt
} else {
return nil, coreerr.E("process action", fmt.Sprintf("%s must be an array", key), nil)
}
}
items := make([]string, 0, len(anyList))
for _, item := range anyList {
value, ok := item.(string)
if !ok {
return nil, coreerr.E("process action", fmt.Sprintf("%s entries must be strings", key), nil)
}
items = append(items, value)
}
return items, nil
}
// TaskProcessList requests a snapshot of managed processes through Core.PERFORM.
// If RunningOnly is true, only active processes are returned.
//
// Example:
//
// c.PERFORM(process.TaskProcessList{RunningOnly: true})
type TaskProcessList struct {
RunningOnly bool `json:"runningOnly"`
}
// TaskProcessRemove removes a completed managed process through Core.PERFORM.
//
// Example:
//
// c.PERFORM(process.TaskProcessRemove{ID: "proc-1"})
type TaskProcessRemove struct {
// ID identifies a managed process started by this service.
ID string `json:"id"`
}
// TaskProcessClear removes all completed managed processes through Core.PERFORM.
//
// Example:
//
// c.PERFORM(process.TaskProcessClear{})
type TaskProcessClear struct{}
// ActionProcessStarted is broadcast when a process begins execution.
//
// Example:
//
// case process.ActionProcessStarted: core.Println("started", msg.ID)
type ActionProcessStarted struct {
ID string
Command string
Args []string
Dir string
PID int
}
// ActionProcessOutput is broadcast for each line of output.
// Subscribe to this for real-time streaming.
//
// Example:
//
// case process.ActionProcessOutput: core.Println(msg.Line)
type ActionProcessOutput struct {
ID string
Line string
Stream Stream
}
// ActionProcessExited is broadcast when a process completes.
// Check ExitCode for success (0) or failure.
//
// Example:
//
// case process.ActionProcessExited: core.Println(msg.ExitCode)
type ActionProcessExited struct {
ID string
ExitCode int
Duration time.Duration
Error error // Set for failed starts, non-zero exits, or killed processes.
}
// ActionProcessKilled is broadcast when a process is terminated.
//
// Example:
//
// case process.ActionProcessKilled: core.Println(msg.Signal)
type ActionProcessKilled struct {
ID string
Signal string
}