2022-07-19 23:12:40 +00:00
|
|
|
package experimental
|
|
|
|
|
|
|
|
import (
|
2023-04-21 09:29:00 +00:00
|
|
|
"context"
|
2022-09-26 11:37:06 +00:00
|
|
|
"os"
|
|
|
|
|
2022-07-19 23:12:40 +00:00
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
"github.com/sagernet/sing-box/log"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
)
|
|
|
|
|
2023-04-21 09:29:00 +00:00
|
|
|
type ClashServerConstructor = func(ctx context.Context, router adapter.Router, logFactory log.ObservableFactory, options option.ClashAPIOptions) (adapter.ClashServer, error)
|
2022-09-26 11:37:06 +00:00
|
|
|
|
|
|
|
var clashServerConstructor ClashServerConstructor
|
|
|
|
|
|
|
|
func RegisterClashServerConstructor(constructor ClashServerConstructor) {
|
|
|
|
clashServerConstructor = constructor
|
|
|
|
}
|
|
|
|
|
2023-04-21 09:29:00 +00:00
|
|
|
func NewClashServer(ctx context.Context, router adapter.Router, logFactory log.ObservableFactory, options option.ClashAPIOptions) (adapter.ClashServer, error) {
|
2022-09-26 11:37:06 +00:00
|
|
|
if clashServerConstructor == nil {
|
|
|
|
return nil, os.ErrInvalid
|
|
|
|
}
|
2023-04-21 09:29:00 +00:00
|
|
|
return clashServerConstructor(ctx, router, logFactory, options)
|
2022-07-19 23:12:40 +00:00
|
|
|
}
|