mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
92 lines
2.2 KiB
Go
92 lines
2.2 KiB
Go
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package blockcontroller
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
|
|
"github.com/wavetermdev/thenextwave/pkg/shellexec"
|
|
)
|
|
|
|
const CommandKey = "command"
|
|
|
|
const (
|
|
BlockCommand_Message = "message"
|
|
BlockCommand_SetView = "setview"
|
|
BlockCommand_SetMeta = "setmeta"
|
|
BlockCommand_Input = "controller:input"
|
|
)
|
|
|
|
var CommandToTypeMap = map[string]reflect.Type{
|
|
BlockCommand_Message: reflect.TypeOf(MessageCommand{}),
|
|
BlockCommand_Input: reflect.TypeOf(InputCommand{}),
|
|
BlockCommand_SetView: reflect.TypeOf(SetViewCommand{}),
|
|
BlockCommand_SetMeta: reflect.TypeOf(SetMetaCommand{}),
|
|
}
|
|
|
|
type BlockCommand interface {
|
|
GetCommand() string
|
|
}
|
|
|
|
func ParseCmdMap(cmdMap map[string]any) (BlockCommand, error) {
|
|
cmdType, ok := cmdMap[CommandKey].(string)
|
|
if !ok {
|
|
return nil, fmt.Errorf("no %s field in command map", CommandKey)
|
|
}
|
|
mapJson, err := json.Marshal(cmdMap)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error marshalling command map: %w", err)
|
|
}
|
|
rtype := CommandToTypeMap[cmdType]
|
|
if rtype == nil {
|
|
return nil, fmt.Errorf("unknown command type %q", cmdType)
|
|
}
|
|
cmd := reflect.New(rtype).Interface()
|
|
err = json.Unmarshal(mapJson, cmd)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error unmarshalling command: %w", err)
|
|
}
|
|
return cmd.(BlockCommand), nil
|
|
}
|
|
|
|
type MessageCommand struct {
|
|
Command string `json:"command"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
func (mc *MessageCommand) GetCommand() string {
|
|
return BlockCommand_Message
|
|
}
|
|
|
|
type InputCommand struct {
|
|
Command string `json:"command"`
|
|
InputData64 string `json:"inputdata64"`
|
|
SigName string `json:"signame,omitempty"`
|
|
TermSize *shellexec.TermSize `json:"termsize,omitempty"`
|
|
}
|
|
|
|
func (ic *InputCommand) GetCommand() string {
|
|
return BlockCommand_Input
|
|
}
|
|
|
|
type SetViewCommand struct {
|
|
Command string `json:"command"`
|
|
View string `json:"view"`
|
|
}
|
|
|
|
func (svc *SetViewCommand) GetCommand() string {
|
|
return BlockCommand_SetView
|
|
}
|
|
|
|
type SetMetaCommand struct {
|
|
Command string `json:"command"`
|
|
Meta map[string]any `json:"meta"`
|
|
}
|
|
|
|
func (smc *SetMetaCommand) GetCommand() string {
|
|
return BlockCommand_SetMeta
|
|
}
|