Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
getty
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wei.xuan
getty
Commits
939877ae
Commit
939877ae
authored
Aug 01, 2018
by
hudangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加收包超时处理
parent
1ba7f1ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
13 deletions
+21
-13
client.go
rpc/client.go
+17
-13
session.go
session.go
+4
-0
No files found.
rpc/client.go
View file @
939877ae
...
...
@@ -21,9 +21,10 @@ import (
)
var
(
errInvalidAddress
=
jerrors
.
New
(
"remote address invalid or empty"
)
errSessionNotExist
=
jerrors
.
New
(
"session not exist"
)
errClientClosed
=
jerrors
.
New
(
"client closed"
)
errInvalidAddress
=
jerrors
.
New
(
"remote address invalid or empty"
)
errSessionNotExist
=
jerrors
.
New
(
"session not exist"
)
errClientClosed
=
jerrors
.
New
(
"client closed"
)
errClientReadTimeout
=
jerrors
.
New
(
"client read timeout"
)
)
func
init
()
{
...
...
@@ -120,7 +121,7 @@ func NewClient(confFile string) (*Client, error) {
return
c
,
nil
}
func
(
c
*
Client
)
Call
(
addr
,
protocol
,
service
,
method
string
,
args
interface
{},
reply
interface
{})
error
{
func
(
c
*
Client
)
Call
(
service
,
method
string
,
args
interface
{},
reply
interface
{})
error
{
b
:=
&
GettyRPCRequest
{}
b
.
header
.
Service
=
service
b
.
header
.
Method
=
method
...
...
@@ -133,7 +134,7 @@ func (c *Client) Call(addr, protocol, service, method string, args interface{},
resp
:=
NewPendingResponse
()
resp
.
reply
=
reply
session
:=
c
.
selectSession
(
protocol
,
addr
)
session
:=
c
.
selectSession
()
if
session
==
nil
{
return
errSessionNotExist
}
...
...
@@ -141,9 +142,16 @@ func (c *Client) Call(addr, protocol, service, method string, args interface{},
if
err
:=
c
.
transfer
(
session
,
b
,
resp
);
err
!=
nil
{
return
jerrors
.
Trace
(
err
)
}
<-
resp
.
done
return
jerrors
.
Trace
(
resp
.
err
)
var
err
error
select
{
case
<-
getty
.
GetTimeWheel
()
.
After
(
c
.
conf
.
GettySessionParam
.
tcpReadTimeout
)
:
err
=
errClientReadTimeout
c
.
RemovePendingResponse
(
resp
.
seq
)
case
<-
resp
.
done
:
err
=
resp
.
err
}
return
jerrors
.
Trace
(
err
)
}
func
(
c
*
Client
)
Close
()
{
...
...
@@ -157,12 +165,8 @@ func (c *Client) Close() {
c
.
registry
=
nil
}
func
(
c
*
Client
)
selectSession
(
protocol
,
addr
string
)
getty
.
Session
{
rpcConn
,
err
:=
c
.
pool
.
getConn
(
protocol
,
addr
)
if
err
!=
nil
{
return
nil
}
return
rpcConn
.
selectSession
()
func
(
c
*
Client
)
selectSession
()
getty
.
Session
{
return
nil
}
func
(
c
*
Client
)
heartbeat
(
session
getty
.
Session
)
error
{
...
...
session.go
View file @
939877ae
...
...
@@ -49,6 +49,10 @@ var (
wheel
=
gxtime
.
NewWheel
(
gxtime
.
TimeMillisecondDuration
(
100
),
1200
)
// wheel longest span is 2 minute
)
func
GetTimeWheel
()
*
gxtime
.
Wheel
{
return
wheel
}
// getty base session
type
session
struct
{
name
string
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment