probe/service/ProbeClientService.go

74 lines
1.7 KiB
Go
Raw Normal View History

2018-04-17 14:11:13 +00:00
package service
import (
2018-05-03 11:24:07 +00:00
"fmt"
2018-04-17 14:11:13 +00:00
"reflect"
cda "git.loafle.net/commons/di-go/annotation"
cdr "git.loafle.net/commons/di-go/registry"
2018-05-10 10:18:00 +00:00
occp "git.loafle.net/overflow/commons-go/config/probe"
"git.loafle.net/overflow/probe/client/probe"
2018-04-17 14:11:13 +00:00
// For annotation
_ "git.loafle.net/overflow/commons-go/core/annotation"
)
var ProbeClientServiceType = reflect.TypeOf((*ProbeClientService)(nil))
func init() {
cdr.RegisterType(ProbeClientServiceType)
}
type ProbeClientService struct {
2018-04-18 14:56:13 +00:00
RPCClientService
2018-04-17 14:11:13 +00:00
cda.TypeAnnotation `annotation:"@overflow:RPCService()"`
2018-04-19 15:03:58 +00:00
DiscoveryService *DiscoveryService `annotation:"@Inject()"`
2018-04-17 14:11:13 +00:00
EncryptionKey string
}
func (s *ProbeClientService) InitService() error {
2018-04-18 14:56:13 +00:00
if err := s.RPCClientService.InitService(); nil != err {
2018-05-03 11:24:07 +00:00
return fmt.Errorf("ProbeClientService: InitService failed %v", err)
2018-04-17 14:11:13 +00:00
}
return nil
}
func (s *ProbeClientService) StartService() error {
2018-04-18 14:56:13 +00:00
if err := s.RPCClientService.StartService(); nil != err {
2018-05-03 11:24:07 +00:00
return fmt.Errorf("ProbeClientService: StartService failed %v", err)
2018-04-18 14:56:13 +00:00
}
2018-05-10 10:18:00 +00:00
client, err := probe.New(s.HandleResponse, s.DiscoveryService)
2018-04-18 14:56:13 +00:00
if nil != err {
2018-05-03 11:24:07 +00:00
return fmt.Errorf("ProbeClientService: StartService failed %v", err)
2018-04-18 14:56:13 +00:00
}
s.client = client
2018-04-17 14:11:13 +00:00
if err := s.client.Start(); nil != err {
2018-05-03 11:24:07 +00:00
return fmt.Errorf("ProbeClientService: StartService failed %v", err)
2018-04-17 14:11:13 +00:00
}
return nil
}
func (s *ProbeClientService) StopService() {
2018-04-18 14:56:13 +00:00
s.RPCClientService.StopService()
2018-04-17 14:11:13 +00:00
}
func (s *ProbeClientService) DestroyService() {
2018-04-18 14:56:13 +00:00
s.RPCClientService.DestroyService()
2018-04-17 14:11:13 +00:00
}
2018-05-10 10:18:00 +00:00
func (s *ProbeClientService) HandleResponse(method string, param string) {
switch method {
case occp.HTTPResponseHeaderValue_Probe_Method_EncryptionKey:
s.EncryptionKey = param
case occp.HTTPResponseHeaderValue_Probe_Method_Delete:
}
2018-04-17 14:11:13 +00:00
}