2022-08-12 06:02:06 -04:00
|
|
|
package core
|
2022-07-28 11:00:05 -04:00
|
|
|
|
|
|
|
import (
|
2023-06-07 13:18:56 -04:00
|
|
|
"errors"
|
2023-06-07 15:11:42 -04:00
|
|
|
|
2023-07-29 07:27:15 -04:00
|
|
|
"github.com/InazumaV/V2bX/conf"
|
2022-07-28 11:00:05 -04:00
|
|
|
)
|
|
|
|
|
2023-06-07 13:18:56 -04:00
|
|
|
var (
|
|
|
|
cores = map[string]func(c *conf.CoreConfig) (Core, error){}
|
|
|
|
)
|
2022-07-28 11:00:05 -04:00
|
|
|
|
2023-08-20 03:13:52 -04:00
|
|
|
func NewCore(c []conf.CoreConfig) (Core, error) {
|
|
|
|
if len(c) < 0 {
|
|
|
|
return nil, errors.New("no have vail core")
|
|
|
|
}
|
2023-06-09 09:20:41 -04:00
|
|
|
// multi core
|
2023-08-20 03:13:52 -04:00
|
|
|
if len(c) > 1 {
|
2023-09-16 08:03:02 -04:00
|
|
|
return NewSelector(c)
|
2023-06-09 09:20:41 -04:00
|
|
|
}
|
|
|
|
// one core
|
2023-08-20 03:13:52 -04:00
|
|
|
if f, ok := cores[c[0].Type]; ok {
|
|
|
|
return f(&c[0])
|
2023-06-07 13:18:56 -04:00
|
|
|
} else {
|
|
|
|
return nil, errors.New("unknown core type")
|
2022-10-09 23:31:15 -04:00
|
|
|
}
|
2022-07-28 11:00:05 -04:00
|
|
|
}
|
2022-10-09 23:31:15 -04:00
|
|
|
|
2023-06-07 13:18:56 -04:00
|
|
|
func RegisterCore(t string, f func(c *conf.CoreConfig) (Core, error)) {
|
|
|
|
cores[t] = f
|
2022-10-09 23:31:15 -04:00
|
|
|
}
|
2023-06-07 15:11:42 -04:00
|
|
|
|
|
|
|
func RegisteredCore() []string {
|
|
|
|
cs := make([]string, 0, len(cores))
|
|
|
|
for k := range cores {
|
|
|
|
cs = append(cs, k)
|
|
|
|
}
|
|
|
|
return cs
|
|
|
|
}
|