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
b8e7b8e2
Commit
b8e7b8e2
authored
Jan 27, 2015
by
Taylor Gerring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New simplified Websocket transport
Uses rpc.EthereumApi abstraction
parent
2f0166b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
124 additions
and
0 deletions
+124
-0
server.go
rpc/websocket/server.go
+124
-0
No files found.
rpc/websocket/server.go
0 → 100644
View file @
b8e7b8e2
/*
This file is part of go-ethereum
go-ethereum is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
go-ethereum is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
*/
package
websocket
import
(
"fmt"
"net"
"net/http"
ws
"code.google.com/p/go.net/websocket"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/event/filter"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/xeth"
)
var
wslogger
=
logger
.
NewLogger
(
"RPC-WS"
)
type
WebSocketServer
struct
{
eth
*
eth
.
Ethereum
filterManager
*
filter
.
FilterManager
port
int
doneCh
chan
bool
listener
net
.
Listener
}
func
NewWebSocketServer
(
eth
*
eth
.
Ethereum
,
port
int
)
(
*
WebSocketServer
,
error
)
{
sport
:=
fmt
.
Sprintf
(
":%d"
,
port
)
l
,
err
:=
net
.
Listen
(
"tcp"
,
sport
)
if
err
!=
nil
{
return
nil
,
err
}
filterManager
:=
filter
.
NewFilterManager
(
eth
.
EventMux
())
go
filterManager
.
Start
()
return
&
WebSocketServer
{
eth
,
filterManager
,
port
,
make
(
chan
bool
),
l
,
},
nil
}
func
(
self
*
WebSocketServer
)
handlerLoop
()
{
for
{
select
{
case
<-
self
.
doneCh
:
wslogger
.
Infoln
(
"Shutdown RPC-WS server"
)
return
}
}
}
func
(
self
*
WebSocketServer
)
Stop
()
{
close
(
self
.
doneCh
)
}
func
(
self
*
WebSocketServer
)
Start
()
{
wslogger
.
Infof
(
"Starting RPC-WS server on port %d"
,
self
.
port
)
go
self
.
handlerLoop
()
api
:=
rpc
.
NewEthereumApi
(
xeth
.
NewJSXEth
(
self
.
eth
))
h
:=
self
.
apiHandler
(
api
)
http
.
Handle
(
"/ws"
,
h
)
err
:=
http
.
Serve
(
self
.
listener
,
nil
)
if
err
!=
nil
{
wslogger
.
Errorln
(
"Error on RPC-WS interface:"
,
err
)
}
}
func
(
s
*
WebSocketServer
)
apiHandler
(
xeth
*
rpc
.
EthereumApi
)
http
.
Handler
{
fn
:=
func
(
w
http
.
ResponseWriter
,
req
*
http
.
Request
)
{
h
:=
sockHandler
(
xeth
)
s
:=
ws
.
Server
{
Handler
:
h
}
s
.
ServeHTTP
(
w
,
req
)
}
return
http
.
HandlerFunc
(
fn
)
}
func
sockHandler
(
xeth
*
rpc
.
EthereumApi
)
ws
.
Handler
{
fn
:=
func
(
conn
*
ws
.
Conn
)
{
for
{
// FIX wslogger does not output to console
wslogger
.
Debugln
(
"Handling request"
)
var
reqParsed
rpc
.
RpcRequest
if
err
:=
ws
.
JSON
.
Receive
(
conn
,
&
reqParsed
);
err
!=
nil
{
wslogger
.
Debugln
(
rpc
.
ErrorParseRequest
)
ws
.
JSON
.
Send
(
conn
,
rpc
.
RpcErrorResponse
{
JsonRpc
:
reqParsed
.
JsonRpc
,
ID
:
reqParsed
.
ID
,
Error
:
true
,
ErrorText
:
rpc
.
ErrorParseRequest
})
continue
}
var
response
interface
{}
reserr
:=
xeth
.
GetRequestReply
(
&
reqParsed
,
&
response
)
if
reserr
!=
nil
{
wslogger
.
Errorln
(
reserr
)
ws
.
JSON
.
Send
(
conn
,
rpc
.
RpcErrorResponse
{
JsonRpc
:
reqParsed
.
JsonRpc
,
ID
:
reqParsed
.
ID
,
Error
:
true
,
ErrorText
:
reserr
.
Error
()})
continue
}
wslogger
.
Debugf
(
"Generated response: %T %s"
,
response
,
response
)
ws
.
JSON
.
Send
(
conn
,
rpc
.
RpcSuccessResponse
{
JsonRpc
:
reqParsed
.
JsonRpc
,
ID
:
reqParsed
.
ID
,
Error
:
false
,
Result
:
response
})
}
}
return
fn
}
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