mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-14 00:07:09 -05:00
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package multiObservatory
|
|
|
|
import (
|
|
"context"
|
|
"github.com/golang/protobuf/jsonpb"
|
|
"github.com/golang/protobuf/proto"
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
"github.com/v2fly/v2ray-core/v4/common/taggedfeatures"
|
|
"github.com/v2fly/v2ray-core/v4/features"
|
|
"github.com/v2fly/v2ray-core/v4/features/extension"
|
|
)
|
|
|
|
type Observer struct {
|
|
features.TaggedFeatures
|
|
config *Config
|
|
ctx context.Context
|
|
}
|
|
|
|
func (o Observer) GetObservation(ctx context.Context) (proto.Message, error) {
|
|
return common.Must2(o.GetFeaturesByTag("")).(extension.Observatory).GetObservation(ctx)
|
|
}
|
|
|
|
func (o Observer) Type() interface{} {
|
|
return extension.ObservatoryType()
|
|
}
|
|
|
|
func New(ctx context.Context, config *Config) (*Observer, error) {
|
|
holder, err := taggedfeatures.NewHolderFromConfig(ctx, config.Holders, extension.ObservatoryType())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Observer{config: config, ctx: ctx, TaggedFeatures: holder}, nil
|
|
}
|
|
|
|
func (x *Config) UnmarshalJSONPB(unmarshaler *jsonpb.Unmarshaler, bytes []byte) error {
|
|
var err error
|
|
x.Holders, err = taggedfeatures.LoadJsonConfig(context.TODO(), "service", "background", bytes)
|
|
return err
|
|
}
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return New(ctx, config.(*Config))
|
|
}))
|
|
}
|