2024-05-14 22:34:41 +02:00
|
|
|
// Copyright 2024, Command Line Inc.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package blockservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2024-05-17 03:01:52 +02:00
|
|
|
"strings"
|
2024-05-22 06:15:11 +02:00
|
|
|
"time"
|
2024-05-14 22:34:41 +02:00
|
|
|
|
|
|
|
"github.com/wavetermdev/thenextwave/pkg/blockcontroller"
|
2024-06-12 02:42:10 +02:00
|
|
|
"github.com/wavetermdev/thenextwave/pkg/service/servicemeta"
|
2024-05-14 22:34:41 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type BlockService struct{}
|
|
|
|
|
2024-05-24 23:08:24 +02:00
|
|
|
const DefaultTimeout = 2 * time.Second
|
|
|
|
|
2024-06-12 02:42:10 +02:00
|
|
|
func (bs *BlockService) SendCommand_Meta() servicemeta.MethodMeta {
|
|
|
|
return servicemeta.MethodMeta{
|
|
|
|
Desc: "send command to block",
|
|
|
|
ArgNames: []string{"blockid", "command"},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-14 22:34:41 +02:00
|
|
|
func (bs *BlockService) SendCommand(blockId string, cmdMap map[string]any) error {
|
|
|
|
cmd, err := blockcontroller.ParseCmdMap(cmdMap)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error parsing command map: %w", err)
|
|
|
|
}
|
2024-05-17 03:01:52 +02:00
|
|
|
if strings.HasPrefix(cmd.GetCommand(), "controller:") {
|
|
|
|
bc := blockcontroller.GetBlockController(blockId)
|
|
|
|
if bc == nil {
|
|
|
|
return fmt.Errorf("block controller not found for block %q", blockId)
|
|
|
|
}
|
|
|
|
bc.InputCh <- cmd
|
|
|
|
} else {
|
|
|
|
blockcontroller.ProcessStaticCommand(blockId, cmd)
|
|
|
|
}
|
2024-05-14 22:34:41 +02:00
|
|
|
return nil
|
|
|
|
}
|