2021-11-27 04:16:41 -05:00
|
|
|
package multiobservatory
|
2021-06-19 05:49:34 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-10-28 06:34:19 -04:00
|
|
|
|
2021-09-07 08:16:47 -04:00
|
|
|
"github.com/golang/protobuf/jsonpb"
|
2021-06-19 05:49:34 -04:00
|
|
|
"github.com/golang/protobuf/proto"
|
2021-10-28 06:34:19 -04:00
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/taggedfeatures"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/features"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/features/extension"
|
2021-06-19 05:49:34 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2021-09-07 08:16:47 -04:00
|
|
|
func (x *Config) UnmarshalJSONPB(unmarshaler *jsonpb.Unmarshaler, bytes []byte) error {
|
|
|
|
var err error
|
2021-11-27 04:16:41 -05:00
|
|
|
x.Holders, err = taggedfeatures.LoadJSONConfig(context.TODO(), "service", "background", bytes)
|
2021-09-07 08:16:47 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-06-19 05:49:34 -04:00
|
|
|
func init() {
|
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return New(ctx, config.(*Config))
|
|
|
|
}))
|
|
|
|
}
|