Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
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
张蕾
Geth-Modification
Commits
57f93d25
Commit
57f93d25
authored
Apr 16, 2015
by
Bas van Kervel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
admin.stopRPC support added which stops the RPC HTTP listener
parent
20537801
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
94 additions
and
2 deletions
+94
-2
admin.go
cmd/geth/admin.go
+8
-0
http.go
rpc/http.go
+19
-2
types.go
rpc/types.go
+67
-0
No files found.
cmd/geth/admin.go
View file @
57f93d25
...
...
@@ -26,6 +26,7 @@ func (js *jsre) adminBindings() {
admin
:=
t
.
Object
()
admin
.
Set
(
"suggestPeer"
,
js
.
suggestPeer
)
admin
.
Set
(
"startRPC"
,
js
.
startRPC
)
admin
.
Set
(
"stopRPC"
,
js
.
stopRPC
)
admin
.
Set
(
"nodeInfo"
,
js
.
nodeInfo
)
admin
.
Set
(
"peers"
,
js
.
peers
)
admin
.
Set
(
"newAccount"
,
js
.
newAccount
)
...
...
@@ -141,6 +142,13 @@ func (js *jsre) startRPC(call otto.FunctionCall) otto.Value {
return
otto
.
TrueValue
()
}
func
(
js
*
jsre
)
stopRPC
(
call
otto
.
FunctionCall
)
otto
.
Value
{
if
rpc
.
Stop
()
==
nil
{
return
otto
.
TrueValue
()
}
return
otto
.
FalseValue
()
}
func
(
js
*
jsre
)
suggestPeer
(
call
otto
.
FunctionCall
)
otto
.
Value
{
nodeURL
,
err
:=
call
.
Argument
(
0
)
.
ToString
()
if
err
!=
nil
{
...
...
rpc/http.go
View file @
57f93d25
...
...
@@ -5,7 +5,6 @@ import (
"fmt"
"io"
"io/ioutil"
"net"
"net/http"
"github.com/ethereum/go-ethereum/logger"
...
...
@@ -15,6 +14,7 @@ import (
)
var
rpclogger
=
logger
.
NewLogger
(
"RPC"
)
var
rpclistener
*
ControllableTCPListener
const
(
jsonrpcver
=
"2.0"
...
...
@@ -22,11 +22,17 @@ const (
)
func
Start
(
pipe
*
xeth
.
XEth
,
config
RpcConfig
)
error
{
l
,
err
:=
net
.
Listen
(
"tcp"
,
fmt
.
Sprintf
(
"%s:%d"
,
config
.
ListenAddress
,
config
.
ListenPort
))
if
rpclistener
!=
nil
{
// listener already running
glog
.
Infoln
(
"RPC listener already running"
)
return
fmt
.
Errorf
(
"RPC already running on %s"
,
rpclistener
.
Addr
()
.
String
())
}
l
,
err
:=
NewControllableTCPListener
(
fmt
.
Sprintf
(
"%s:%d"
,
config
.
ListenAddress
,
config
.
ListenPort
))
if
err
!=
nil
{
rpclogger
.
Errorf
(
"Can't listen on %s:%d: %v"
,
config
.
ListenAddress
,
config
.
ListenPort
,
err
)
return
err
}
rpclistener
=
l
var
handler
http
.
Handler
if
len
(
config
.
CorsDomain
)
>
0
{
...
...
@@ -45,6 +51,17 @@ func Start(pipe *xeth.XEth, config RpcConfig) error {
return
nil
}
func
Stop
()
error
{
if
rpclistener
==
nil
{
// listener not running
glog
.
Infoln
(
"RPC listener not running"
)
return
nil
}
rpclistener
.
Stop
()
rpclistener
=
nil
return
nil
}
// JSONRPC returns a handler that implements the Ethereum JSON-RPC API.
func
JSONRPC
(
pipe
*
xeth
.
XEth
)
http
.
Handler
{
api
:=
NewEthereumApi
(
pipe
)
...
...
rpc/types.go
View file @
57f93d25
...
...
@@ -23,6 +23,10 @@ import (
"math/big"
"strings"
"errors"
"net"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
)
...
...
@@ -257,3 +261,66 @@ type RpcErrorObject struct {
Message
string
`json:"message"`
// Data interface{} `json:"data"`
}
type
ListenerStoppedError
struct
{
msg
string
}
func
(
self
ListenerStoppedError
)
Timout
()
bool
{
return
false
}
func
(
self
ListenerStoppedError
)
Temporary
()
bool
{
return
false
}
func
(
self
ListenerStoppedError
)
Error
()
string
{
return
self
.
msg
}
type
ControllableTCPListener
struct
{
*
net
.
TCPListener
stop
chan
struct
{}
}
var
listenerStoppedError
ListenerStoppedError
func
(
self
*
ControllableTCPListener
)
Stop
()
{
close
(
self
.
stop
)
}
func
(
self
*
ControllableTCPListener
)
Accept
()
(
net
.
Conn
,
error
)
{
for
{
self
.
SetDeadline
(
time
.
Now
()
.
Add
(
time
.
Duration
(
500
*
time
.
Millisecond
)))
c
,
err
:=
self
.
TCPListener
.
AcceptTCP
()
select
{
case
<-
self
.
stop
:
self
.
TCPListener
.
Close
()
return
nil
,
listenerStoppedError
default
:
// keep on going
}
if
err
!=
nil
{
if
netErr
,
ok
:=
err
.
(
net
.
Error
);
ok
&&
netErr
.
Timeout
()
&&
netErr
.
Temporary
()
{
continue
// regular timeout
}
}
return
c
,
err
}
}
func
NewControllableTCPListener
(
addr
string
)
(
*
ControllableTCPListener
,
error
)
{
wl
,
err
:=
net
.
Listen
(
"tcp"
,
addr
)
if
err
!=
nil
{
return
nil
,
err
}
if
tcpl
,
ok
:=
wl
.
(
*
net
.
TCPListener
);
ok
{
l
:=
&
ControllableTCPListener
{
tcpl
,
make
(
chan
struct
{})}
return
l
,
nil
}
return
nil
,
errors
.
New
(
"Unable to create TCP listener for RPC"
)
}
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