Skip to content
Snippets Groups Projects
Commit 2954fadc authored by fangyincheng's avatar fangyincheng
Browse files

Fix:heartbeat and exception

parent 9f0a8430
No related branches found
No related tags found
No related merge requests found
...@@ -93,7 +93,7 @@ func main() { ...@@ -93,7 +93,7 @@ func main() {
} }
println("response result: %v", ret1) println("response result: %v", ret1)
println("\n\n\nstart to test dubbo - getUser") println("\n\n\nstart to test dubbo - getUser2")
user = &User{} user = &User{}
err = conMap["com.ikurento.user.UserProvider"].GetRPCService().(*UserProvider).GetUser2(context.TODO(), []interface{}{1}, user) err = conMap["com.ikurento.user.UserProvider"].GetRPCService().(*UserProvider).GetUser2(context.TODO(), []interface{}{1}, user)
if err != nil { if err != nil {
......
...@@ -2,7 +2,7 @@ module github.com/apache/dubbo-go ...@@ -2,7 +2,7 @@ module github.com/apache/dubbo-go
require ( require (
github.com/dubbogo/getty v1.0.7 github.com/dubbogo/getty v1.0.7
github.com/dubbogo/hessian2 v1.0.0 github.com/dubbogo/hessian2 v1.0.1
github.com/pkg/errors v0.8.1 github.com/pkg/errors v0.8.1
github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec github.com/samuel/go-zookeeper v0.0.0-20180130194729-c4fab1ac1bec
github.com/stretchr/testify v1.3.0 github.com/stretchr/testify v1.3.0
......
...@@ -3,8 +3,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c ...@@ -3,8 +3,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dubbogo/getty v1.0.7 h1:5Hg+JwXyCKm9Yr4yJkm98ahhnoa8c2h6br5QJxwQ+YU= github.com/dubbogo/getty v1.0.7 h1:5Hg+JwXyCKm9Yr4yJkm98ahhnoa8c2h6br5QJxwQ+YU=
github.com/dubbogo/getty v1.0.7/go.mod h1:cRMSuoCmwc5lULFFnYZTxyCfZhObmRTNbS7XRnPNHSo= github.com/dubbogo/getty v1.0.7/go.mod h1:cRMSuoCmwc5lULFFnYZTxyCfZhObmRTNbS7XRnPNHSo=
github.com/dubbogo/hessian2 v1.0.0 h1:KM7BKAUZ+2sjv1nAV9JwJNPMK0T+sHYiSe7Gls1GFS4= github.com/dubbogo/hessian2 v1.0.1 h1:ztI7gJxR3Isxrrl2jE1IZKX61eNR93eRKGhn49vPEX8=
github.com/dubbogo/hessian2 v1.0.0/go.mod h1:XFGDn4oSZX26zkcfhkM/fCJrOqwQJxk/xgWW1KMJBKM= github.com/dubbogo/hessian2 v1.0.1/go.mod h1:XFGDn4oSZX26zkcfhkM/fCJrOqwQJxk/xgWW1KMJBKM=
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q= github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=
......
...@@ -25,7 +25,7 @@ import ( ...@@ -25,7 +25,7 @@ import (
import ( import (
"github.com/dubbogo/getty" "github.com/dubbogo/getty"
hessian "github.com/dubbogo/hessian2" "github.com/dubbogo/hessian2"
perrors "github.com/pkg/errors" perrors "github.com/pkg/errors"
"go.uber.org/atomic" "go.uber.org/atomic"
"gopkg.in/yaml.v2" "gopkg.in/yaml.v2"
......
...@@ -79,10 +79,6 @@ func (p *DubboPackage) Unmarshal(buf *bytes.Buffer, opts ...interface{}) error { ...@@ -79,10 +79,6 @@ func (p *DubboPackage) Unmarshal(buf *bytes.Buffer, opts ...interface{}) error {
// read header // read header
err := codec.ReadHeader(&p.Header) err := codec.ReadHeader(&p.Header)
if err != nil { if err != nil {
if p.Header.Type&hessian.PackageError != hessian.PackageType(hessian.Zero) {
p.Body = &hessian.Response{Exception: err}
return nil
}
return perrors.WithStack(err) return perrors.WithStack(err)
} }
...@@ -95,12 +91,9 @@ func (p *DubboPackage) Unmarshal(buf *bytes.Buffer, opts ...interface{}) error { ...@@ -95,12 +91,9 @@ func (p *DubboPackage) Unmarshal(buf *bytes.Buffer, opts ...interface{}) error {
pendingRsp := client.GetPendingResponse(SequenceType(p.Header.ID)) pendingRsp := client.GetPendingResponse(SequenceType(p.Header.ID))
if pendingRsp == nil { if pendingRsp == nil {
return perrors.Errorf("client.GetPendingResponse(%v) = nil", p.Header.ID) return perrors.Errorf("client.GetPendingResponse(%v) = nil", p.Header.ID)
} else {
p.Body = &hessian.Response{RspObj: pendingRsp.reply}
} }
p.Body = &hessian.Response{RspObj: pendingRsp.reply}
}
if p.Header.Type&hessian.PackageHeartbeat != 0x00 {
return nil
} }
// read body // read body
......
...@@ -86,9 +86,12 @@ func (h *RpcClientHandler) OnMessage(session getty.Session, pkg interface{}) { ...@@ -86,9 +86,12 @@ func (h *RpcClientHandler) OnMessage(session getty.Session, pkg interface{}) {
if p.Header.Type&hessian.PackageHeartbeat != 0x00 { if p.Header.Type&hessian.PackageHeartbeat != 0x00 {
logger.Debugf("get rpc heartbeat response{header: %#v, body: %#v}", p.Header, p.Body) logger.Debugf("get rpc heartbeat response{header: %#v, body: %#v}", p.Header, p.Body)
if p.Err != nil {
logger.Errorf("rpc heartbeat response{error: %#v}", p.Err)
}
return return
} }
//logger.Debugf("get rpc response{header: %#v, body: %#v}", p.Header, p.Body) logger.Debugf("get rpc response{header: %#v, body: %#v}", p.Header, p.Body)
h.conn.updateSession(session) h.conn.updateSession(session)
...@@ -203,7 +206,6 @@ func (h *RpcServerHandler) OnMessage(session getty.Session, pkg interface{}) { ...@@ -203,7 +206,6 @@ func (h *RpcServerHandler) OnMessage(session getty.Session, pkg interface{}) {
// not twoway // not twoway
if p.Header.Type&hessian.PackageRequest_TwoWay == 0x00 { if p.Header.Type&hessian.PackageRequest_TwoWay == 0x00 {
twoway = false twoway = false
h.reply(session, p, hessian.PackageResponse)
} }
invoker := h.exporter.GetInvoker() invoker := h.exporter.GetInvoker()
......
...@@ -65,6 +65,7 @@ func (p *RpcClientPackageHandler) Read(ss getty.Session, data []byte) (interface ...@@ -65,6 +65,7 @@ func (p *RpcClientPackageHandler) Read(ss getty.Session, data []byte) (interface
pkg.Err = pkg.Body.(*hessian.Response).Exception pkg.Err = pkg.Body.(*hessian.Response).Exception
pkg.Body = pkg.Body.(*hessian.Response).RspObj pkg.Body = pkg.Body.(*hessian.Response).RspObj
return pkg, hessian.HEADER_LENGTH + pkg.Header.BodyLen, nil return pkg, hessian.HEADER_LENGTH + pkg.Header.BodyLen, nil
} }
...@@ -112,40 +113,43 @@ func (p *RpcServerPackageHandler) Read(ss getty.Session, data []byte) (interface ...@@ -112,40 +113,43 @@ func (p *RpcServerPackageHandler) Read(ss getty.Session, data []byte) (interface
return nil, 0, perrors.WithStack(err) return nil, 0, perrors.WithStack(err)
} }
// convert params of request
req := pkg.Body.([]interface{}) // length of body should be 7 if pkg.Header.Type&hessian.PackageHeartbeat == 0x00 {
if len(req) > 0 { // convert params of request
var dubboVersion, argsTypes string req := pkg.Body.([]interface{}) // length of body should be 7
var args []interface{} if len(req) > 0 {
var attachments map[interface{}]interface{} var dubboVersion, argsTypes string
if req[0] != nil { var args []interface{}
dubboVersion = req[0].(string) var attachments map[interface{}]interface{}
} if req[0] != nil {
if req[1] != nil { dubboVersion = req[0].(string)
pkg.Service.Path = req[1].(string) }
} if req[1] != nil {
if req[2] != nil { pkg.Service.Path = req[1].(string)
pkg.Service.Version = req[2].(string) }
} if req[2] != nil {
if req[3] != nil { pkg.Service.Version = req[2].(string)
pkg.Service.Method = req[3].(string) }
} if req[3] != nil {
if req[4] != nil { pkg.Service.Method = req[3].(string)
argsTypes = req[4].(string) }
} if req[4] != nil {
if req[5] != nil { argsTypes = req[4].(string)
args = req[5].([]interface{}) }
} if req[5] != nil {
if req[6] != nil { args = req[5].([]interface{})
attachments = req[6].(map[interface{}]interface{}) }
} if req[6] != nil {
pkg.Service.Interface = attachments[constant.INTERFACE_KEY].(string) attachments = req[6].(map[interface{}]interface{})
pkg.Body = map[string]interface{}{ }
"dubboVersion": dubboVersion, pkg.Service.Interface = attachments[constant.INTERFACE_KEY].(string)
"argsTypes": argsTypes, pkg.Body = map[string]interface{}{
"args": args, "dubboVersion": dubboVersion,
"service": common.ServiceMap.GetService(DUBBO, pkg.Service.Interface), "argsTypes": argsTypes,
"attachments": attachments, "args": args,
"service": common.ServiceMap.GetService(DUBBO, pkg.Service.Interface),
"attachments": attachments,
}
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment