mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
67 lines
1.8 KiB
Go
67 lines
1.8 KiB
Go
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package blockservice
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/wavetermdev/thenextwave/pkg/blockcontroller"
|
|
"github.com/wavetermdev/thenextwave/pkg/util/utilfn"
|
|
"github.com/wavetermdev/thenextwave/pkg/wstore"
|
|
)
|
|
|
|
type BlockService struct{}
|
|
|
|
func (bs *BlockService) CreateBlock(bdefMap map[string]any, rtOptsMap map[string]any) (*wstore.Block, error) {
|
|
var bdef wstore.BlockDef
|
|
err := utilfn.JsonMapToStruct(bdefMap, &bdef)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error unmarshalling BlockDef: %w", err)
|
|
}
|
|
var rtOpts wstore.RuntimeOpts
|
|
err = utilfn.JsonMapToStruct(rtOptsMap, &rtOpts)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error unmarshalling RuntimeOpts: %w", err)
|
|
}
|
|
blockData, err := blockcontroller.CreateBlock(&bdef, &rtOpts)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error creating block: %w", err)
|
|
}
|
|
return blockData, nil
|
|
}
|
|
|
|
func (bs *BlockService) CloseBlock(blockId string) {
|
|
blockcontroller.CloseBlock(blockId)
|
|
}
|
|
|
|
func (bs *BlockService) GetBlockData(blockId string) (*wstore.Block, error) {
|
|
ctx, cancelFn := context.WithTimeout(context.Background(), 2*time.Second)
|
|
defer cancelFn()
|
|
blockData, err := wstore.BlockGet(ctx, blockId)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error getting block data: %w", err)
|
|
}
|
|
return blockData, nil
|
|
}
|
|
|
|
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)
|
|
}
|
|
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)
|
|
}
|
|
return nil
|
|
}
|