-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.go
More file actions
245 lines (198 loc) · 5.04 KB
/
plugin.go
File metadata and controls
245 lines (198 loc) · 5.04 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
package sdk
import (
"context"
"fmt"
"plugin"
"sync"
errors "github.com/xraph/go-utils/errs"
logger "github.com/xraph/go-utils/log"
"github.com/xraph/go-utils/metrics"
)
// PluginSystem manages dynamic plugin loading and execution.
type PluginSystem struct {
plugins map[string]Plugin
logger logger.Logger
metrics metrics.Metrics
mu sync.RWMutex
}
// Plugin represents a loadable plugin.
type Plugin interface {
Name() string
Version() string
Initialize(ctx context.Context) error
Execute(ctx context.Context, input any) (any, error)
Shutdown(ctx context.Context) error
}
// PluginInfo contains plugin metadata.
type PluginInfo struct {
Name string
Version string
Description string
Author string
Loaded bool
}
// NewPluginSystem creates a new plugin system.
func NewPluginSystem(logger logger.Logger, metrics metrics.Metrics) *PluginSystem {
return &PluginSystem{
plugins: make(map[string]Plugin),
logger: logger,
metrics: metrics,
}
}
// LoadPlugin loads a plugin from a shared library file.
func (ps *PluginSystem) LoadPlugin(ctx context.Context, path string) error {
ps.mu.Lock()
defer ps.mu.Unlock()
// Load the plugin
p, err := plugin.Open(path)
if err != nil {
return fmt.Errorf("failed to open plugin: %w", err)
}
// Look up the New function
sym, err := p.Lookup("New")
if err != nil {
return fmt.Errorf("plugin missing New function: %w", err)
}
// Assert the correct function signature
newFunc, ok := sym.(func() Plugin)
if !ok {
return errors.New("invalid New function signature")
}
// Create plugin instance
plugin := newFunc()
// Initialize plugin
if err := plugin.Initialize(ctx); err != nil {
return fmt.Errorf("failed to initialize plugin: %w", err)
}
// Register plugin
ps.plugins[plugin.Name()] = plugin
if ps.logger != nil {
ps.logger.Info("plugin loaded",
logger.String("name", plugin.Name()),
logger.String("version", plugin.Version()),
)
}
if ps.metrics != nil {
ps.metrics.Counter("forge.ai.sdk.plugins.loaded",
metrics.WithLabel("name", plugin.Name()),
).Inc()
}
return nil
}
// RegisterPlugin registers a plugin instance.
func (ps *PluginSystem) RegisterPlugin(ctx context.Context, p Plugin) error {
ps.mu.Lock()
defer ps.mu.Unlock()
// Initialize plugin
if err := p.Initialize(ctx); err != nil {
return fmt.Errorf("failed to initialize plugin: %w", err)
}
ps.plugins[p.Name()] = p
if ps.logger != nil {
ps.logger.Info("plugin registered",
logger.String("name", p.Name()),
)
}
return nil
}
// UnloadPlugin unloads a plugin.
func (ps *PluginSystem) UnloadPlugin(ctx context.Context, name string) error {
ps.mu.Lock()
defer ps.mu.Unlock()
p, exists := ps.plugins[name]
if !exists {
return fmt.Errorf("plugin not found: %s", name)
}
// Shutdown plugin
if err := p.Shutdown(ctx); err != nil {
return fmt.Errorf("failed to shutdown plugin: %w", err)
}
delete(ps.plugins, name)
if ps.logger != nil {
ps.logger.Info("plugin unloaded", logger.String("name", name))
}
return nil
}
// ExecutePlugin executes a plugin by name.
func (ps *PluginSystem) ExecutePlugin(ctx context.Context, name string, input any) (any, error) {
ps.mu.RLock()
p, exists := ps.plugins[name]
ps.mu.RUnlock()
if !exists {
return nil, fmt.Errorf("plugin not found: %s", name)
}
result, err := p.Execute(ctx, input)
if err != nil {
if ps.logger != nil {
ps.logger.Error("plugin execution failed",
logger.String("name", name),
logger.Error(err),
)
}
return nil, err
}
if ps.metrics != nil {
ps.metrics.Counter("forge.ai.sdk.plugins.executions",
metrics.WithLabel("name", name),
metrics.WithLabel("status", "success"),
).Inc()
}
return result, nil
}
// ListPlugins returns a list of loaded plugins.
func (ps *PluginSystem) ListPlugins() []PluginInfo {
ps.mu.RLock()
defer ps.mu.RUnlock()
infos := make([]PluginInfo, 0, len(ps.plugins))
for _, p := range ps.plugins {
infos = append(infos, PluginInfo{
Name: p.Name(),
Version: p.Version(),
Loaded: true,
})
}
return infos
}
// GetPlugin returns a plugin by name.
func (ps *PluginSystem) GetPlugin(name string) (Plugin, error) {
ps.mu.RLock()
defer ps.mu.RUnlock()
p, exists := ps.plugins[name]
if !exists {
return nil, fmt.Errorf("plugin not found: %s", name)
}
return p, nil
}
// Shutdown shuts down all plugins.
func (ps *PluginSystem) Shutdown(ctx context.Context) error {
ps.mu.Lock()
defer ps.mu.Unlock()
for name, p := range ps.plugins {
if err := p.Shutdown(ctx); err != nil {
if ps.logger != nil {
ps.logger.Error("failed to shutdown plugin",
F("name", name),
F("error", err),
)
}
}
}
ps.plugins = make(map[string]Plugin)
return nil
}
// --- Extension Points ---
// Middleware plugin interface.
type MiddlewarePlugin interface {
Plugin
Middleware(next func(context.Context, any) (any, error)) func(context.Context, any) (any, error)
}
// Tool plugin interface.
type ToolPlugin interface {
Plugin
GetTool() Tool
}
// Provider plugin interface.
type ProviderPlugin interface {
Plugin
GetProvider() LLMManager
}