180 lines
5.8 KiB
Go
180 lines
5.8 KiB
Go
package dao
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"go-common/app/infra/discovery/conf"
|
|
"go-common/app/infra/discovery/model"
|
|
"go-common/library/ecode"
|
|
"go-common/library/log"
|
|
bm "go-common/library/net/http/blademaster"
|
|
"go-common/library/xstr"
|
|
)
|
|
|
|
const (
|
|
_registerURL = "/discovery/register"
|
|
_cancelURL = "/discovery/cancel"
|
|
_renewURL = "/discovery/renew"
|
|
_setURL = "/discovery/set"
|
|
)
|
|
|
|
// Node represents a peer node to which information should be shared from this node.
|
|
//
|
|
// This struct handles replicating all update operations like 'Register,Renew,Cancel,Expiration and Status Changes'
|
|
// to the <Discovery Server> node it represents.
|
|
type Node struct {
|
|
c *conf.Config
|
|
client *bm.Client
|
|
pRegisterURL string
|
|
registerURL string
|
|
cancelURL string
|
|
renewURL string
|
|
setURL string
|
|
addr string
|
|
status model.NodeStatus
|
|
zone string
|
|
otherZone bool
|
|
}
|
|
|
|
// newNode return a node.
|
|
func newNode(c *conf.Config, addr string) (n *Node) {
|
|
n = &Node{
|
|
c: c,
|
|
addr: addr,
|
|
registerURL: fmt.Sprintf("http://%s%s", addr, _registerURL),
|
|
cancelURL: fmt.Sprintf("http://%s%s", addr, _cancelURL),
|
|
renewURL: fmt.Sprintf("http://%s%s", addr, _renewURL),
|
|
setURL: fmt.Sprintf("http://%s%s", addr, _setURL),
|
|
client: bm.NewClient(c.HTTPClient),
|
|
status: model.NodeStatusLost,
|
|
}
|
|
return
|
|
}
|
|
|
|
// Register send the registration information of Instance receiving by this node to the peer node represented.
|
|
func (n *Node) Register(c context.Context, i *model.Instance) (err error) {
|
|
err = n.call(c, model.Register, i, n.registerURL, nil)
|
|
if err != nil {
|
|
log.Warn("node be called(%s) register instance(%v) error(%v)", n.registerURL, i, err)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Cancel send the cancellation information of Instance receiving by this node to the peer node represented.
|
|
func (n *Node) Cancel(c context.Context, i *model.Instance) (err error) {
|
|
err = n.call(c, model.Cancel, i, n.cancelURL, nil)
|
|
if ec := ecode.Cause(err); ec.Code() == ecode.NothingFound.Code() {
|
|
log.Warn("node be called(%s) instance(%v) already canceled", n.cancelURL, i)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Renew send the heartbeat information of Instance receiving by this node to the peer node represented.
|
|
// If the instance does not exist the node, the instance registration information is sent again to the peer node.
|
|
func (n *Node) Renew(c context.Context, i *model.Instance) (err error) {
|
|
var res *model.Instance
|
|
err = n.call(c, model.Renew, i, n.renewURL, &res)
|
|
ec := ecode.Cause(err)
|
|
if ec.Code() == ecode.ServerErr.Code() {
|
|
log.Warn("node be called(%s) instance(%v) error(%v)", n.renewURL, i, err)
|
|
n.status = model.NodeStatusLost
|
|
return
|
|
}
|
|
n.status = model.NodeStatusUP
|
|
if ec.Code() == ecode.NothingFound.Code() {
|
|
log.Warn("node be called(%s) instance(%v) error(%v)", n.renewURL, i, err)
|
|
err = n.call(c, model.Register, i, n.registerURL, nil)
|
|
return
|
|
}
|
|
// NOTE: register response instance whitch in conflict with peer node
|
|
if ec.Code() == ecode.Conflict.Code() && res != nil {
|
|
err = n.call(c, model.Register, res, n.pRegisterURL, nil)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Set the infomation of instance by this node to the peer node represented
|
|
func (n *Node) Set(c context.Context, arg *model.ArgSet) (err error) {
|
|
err = n.setCall(c, arg, n.setURL)
|
|
return
|
|
}
|
|
|
|
func (n *Node) call(c context.Context, action model.Action, i *model.Instance, uri string, data interface{}) (err error) {
|
|
params := url.Values{}
|
|
params.Set("region", i.Region)
|
|
params.Set("zone", i.Zone)
|
|
params.Set("env", i.Env)
|
|
params.Set("treeid", strconv.FormatInt(i.Treeid, 10))
|
|
params.Set("appid", i.Appid)
|
|
params.Set("hostname", i.Hostname)
|
|
if n.otherZone {
|
|
params.Set("replication", "false")
|
|
} else {
|
|
params.Set("replication", "true")
|
|
}
|
|
switch action {
|
|
case model.Register:
|
|
params.Set("status", strconv.FormatUint(uint64(i.Status), 10))
|
|
params.Set("version", i.Version)
|
|
meta, _ := json.Marshal(i.Metadata)
|
|
params.Set("metadata", string(meta))
|
|
params.Set("addrs", strings.Join(i.Addrs, ","))
|
|
params.Set("reg_timestamp", strconv.FormatInt(i.RegTimestamp, 10))
|
|
params.Set("dirty_timestamp", strconv.FormatInt(i.DirtyTimestamp, 10))
|
|
params.Set("latest_timestamp", strconv.FormatInt(i.LatestTimestamp, 10))
|
|
case model.Renew:
|
|
params.Set("dirty_timestamp", strconv.FormatInt(i.DirtyTimestamp, 10))
|
|
case model.Cancel:
|
|
params.Set("latest_timestamp", strconv.FormatInt(i.LatestTimestamp, 10))
|
|
}
|
|
var res struct {
|
|
Code int `json:"code"`
|
|
Data json.RawMessage `json:"data"`
|
|
}
|
|
if err = n.client.Post(c, uri, "", params, &res); err != nil {
|
|
log.Error("node be called(%s) instance(%v) error(%v)", uri, i, err)
|
|
return
|
|
}
|
|
if res.Code != 0 {
|
|
log.Error("node be called(%s) instance(%v) responce code(%v)", uri, i, res.Code)
|
|
if err = ecode.Int(res.Code); err == ecode.Conflict {
|
|
json.Unmarshal([]byte(res.Data), data)
|
|
}
|
|
return
|
|
}
|
|
return
|
|
}
|
|
|
|
func (n *Node) setCall(c context.Context, arg *model.ArgSet, uri string) (err error) {
|
|
params := url.Values{}
|
|
params.Set("region", arg.Region)
|
|
params.Set("zone", arg.Zone)
|
|
params.Set("env", arg.Env)
|
|
params.Set("appid", arg.Appid)
|
|
params.Set("hostname", strings.Join(arg.Hostname, ","))
|
|
params.Set("set_timestamp", strconv.FormatInt(arg.SetTimestamp, 10))
|
|
params.Set("replication", "true")
|
|
if len(arg.Status) != 0 {
|
|
params.Set("status", xstr.JoinInts(arg.Status))
|
|
}
|
|
if len(arg.Metadata) != 0 {
|
|
params.Set("metadata", strings.Join(arg.Metadata, ","))
|
|
}
|
|
var res struct {
|
|
Code int `json:"code"`
|
|
}
|
|
if err = n.client.Post(c, uri, "", params, &res); err != nil {
|
|
log.Error("node be setCalled(%s) appid(%s) env (%s) error(%v)", uri, arg.Appid, arg.Env, err)
|
|
return
|
|
}
|
|
if res.Code != 0 {
|
|
log.Error("node be setCalled(%s) appid(%s) env (%s) responce code(%v)", uri, arg.Appid, arg.Env, res.Code)
|
|
}
|
|
return
|
|
}
|