- Removed the db.go and fs.go files, consolidating database and file system interactions into a unified IO interface. - Updated DSL struct to include db and fs fields for improved separation of concerns. - Refactored existing methods across various DSL managers (API, Connector, MCP, Model) to utilize the new IO interfaces for operations like Inspect, Create, Update, Delete, and List. - Enhanced error handling and validation in Create, Update, and Delete methods to ensure robust functionality. - Updated types to include new options for Load, Unload, and Reload operations, improving flexibility and usability.
161 lines
3.5 KiB
Go
161 lines
3.5 KiB
Go
package model
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/yaoapp/gou/model"
|
|
"github.com/yaoapp/yao/dsl/types"
|
|
)
|
|
|
|
// YaoModel is the MCP client DSL manager
|
|
type YaoModel struct {
|
|
root string // The relative path of the model DSL
|
|
fs types.IO // The file system IO interface
|
|
db types.IO // The database IO interface
|
|
}
|
|
|
|
// New returns a new connector DSL manager
|
|
func New(root string, fs types.IO, db types.IO) types.Manager {
|
|
return &YaoModel{root: root, fs: fs, db: db}
|
|
}
|
|
|
|
// Loaded return all loaded DSLs
|
|
func (m *YaoModel) Loaded(ctx context.Context) (map[string]*types.Info, error) {
|
|
|
|
infos := map[string]*types.Info{}
|
|
for id, mod := range model.Models {
|
|
infos[id] = &types.Info{
|
|
ID: id,
|
|
Type: types.TypeModel,
|
|
Label: mod.MetaData.Name,
|
|
Path: mod.File,
|
|
Sort: 999,
|
|
Tags: []string{},
|
|
Description: "Description",
|
|
}
|
|
}
|
|
|
|
return infos, nil
|
|
}
|
|
|
|
// Load will unload the DSL first, then load the DSL from DB or file system
|
|
func (m *YaoModel) Load(ctx context.Context, options *types.LoadOptions) error {
|
|
|
|
if options == nil {
|
|
return fmt.Errorf("load options is required")
|
|
}
|
|
|
|
if options.ID == "" {
|
|
return fmt.Errorf("load options id is required")
|
|
}
|
|
|
|
var opts map[string]interface{}
|
|
if options.Options != nil {
|
|
opts = options.Options
|
|
}
|
|
|
|
var migration bool = false
|
|
if v, ok := opts["migration"]; ok {
|
|
migration = v.(bool)
|
|
}
|
|
|
|
var reset bool = false
|
|
if v, ok := opts["reset"]; ok {
|
|
reset = v.(bool)
|
|
}
|
|
|
|
path := types.ToPath(types.TypeModel, options.ID)
|
|
mod, err := model.LoadSync(path, options.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if migration || reset {
|
|
return mod.Migrate(reset, model.WithDonotInsertValues(true))
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Unload will unload the DSL from memory
|
|
func (m *YaoModel) Unload(ctx context.Context, options *types.UnloadOptions) error {
|
|
|
|
if options == nil {
|
|
return fmt.Errorf("unload options is required")
|
|
}
|
|
|
|
if options.ID == "" {
|
|
return fmt.Errorf("unload options id is required")
|
|
}
|
|
|
|
var opts map[string]interface{}
|
|
if options.Options != nil {
|
|
opts = options.Options
|
|
}
|
|
|
|
var dropTable bool = false
|
|
if v, ok := opts["dropTable"]; ok {
|
|
dropTable = v.(bool)
|
|
}
|
|
|
|
mod := model.Select(options.ID)
|
|
if mod == nil {
|
|
return fmt.Errorf("model %s not found", options.ID)
|
|
}
|
|
|
|
if dropTable {
|
|
return mod.DropTable()
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Reload will unload the DSL first, then reload the DSL from DB or file system
|
|
func (m *YaoModel) Reload(ctx context.Context, options *types.ReloadOptions) error {
|
|
|
|
if options == nil {
|
|
return fmt.Errorf("reload options is required")
|
|
}
|
|
|
|
if options.ID == "" {
|
|
return fmt.Errorf("reload options id is required")
|
|
}
|
|
|
|
var opts map[string]interface{}
|
|
if options.Options != nil {
|
|
opts = options.Options
|
|
}
|
|
|
|
var migration bool = false
|
|
if v, ok := opts["migration"]; ok {
|
|
migration = v.(bool)
|
|
}
|
|
|
|
var reset bool = false
|
|
if v, ok := opts["reset"]; ok {
|
|
reset = v.(bool)
|
|
}
|
|
|
|
// Reload the model
|
|
path := types.ToPath(types.TypeModel, options.ID)
|
|
mod, err := model.LoadSync(path, options.ID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if migration || reset {
|
|
return mod.Migrate(reset, model.WithDonotInsertValues(true))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate will validate the DSL from source
|
|
func (m *YaoModel) Validate(ctx context.Context, source string) (bool, []types.LintMessage) {
|
|
return true, []types.LintMessage{}
|
|
}
|
|
|
|
// Execute will execute the DSL
|
|
func (m *YaoModel) Execute(ctx context.Context, id string, method string, args ...any) (any, error) {
|
|
return nil, fmt.Errorf("Not implemented")
|
|
}
|