forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rpc: new RPC implementation with pub/sub support
- Loading branch information
Bas van Kervel
committed
Dec 7, 2015
1 parent
8db9d44
commit 32fefdb
Showing
39 changed files
with
4,749 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
// Copyright 2015 The go-ethereum Authors | ||
// This file is part of the go-ethereum library. | ||
// | ||
// The go-ethereum library is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Lesser General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// The go-ethereum library 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 Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package utils | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/ethereum/go-ethereum/common" | ||
"github.com/ethereum/go-ethereum/crypto" | ||
"github.com/ethereum/go-ethereum/node" | ||
"github.com/ethereum/go-ethereum/p2p" | ||
rpc "github.com/ethereum/go-ethereum/rpc/v2" | ||
) | ||
|
||
// PublicWeb3Api offers helper utils | ||
type PublicWeb3Api struct { | ||
stack *node.Node | ||
} | ||
|
||
// NewPublicWeb3Api creates a new Web3Service instance | ||
func NewPublicWeb3Api(stack *node.Node) *PublicWeb3Api { | ||
return &PublicWeb3Api{stack} | ||
} | ||
|
||
// ClientVersion returns the node name | ||
func (s *PublicWeb3Api) ClientVersion() string { | ||
return s.stack.Server().Name | ||
} | ||
|
||
// Sha3 applies the ethereum sha3 implementation on the input. | ||
// It assumes the input is hex encoded. | ||
func (s *PublicWeb3Api) Sha3(input string) string { | ||
return common.ToHex(crypto.Sha3(common.FromHex(input))) | ||
} | ||
|
||
// NetService offers network related RPC methods | ||
type PublicNetApi struct { | ||
net *p2p.Server | ||
networkVersion int | ||
} | ||
|
||
// NewPublicNetApi creates a new net api instance. | ||
func NewPublicNetApi(net *p2p.Server, networkVersion int) *PublicNetApi { | ||
return &PublicNetApi{net, networkVersion} | ||
} | ||
|
||
// Listening returns an indication if the node is listening for network connections. | ||
func (s *PublicNetApi) Listening() bool { | ||
return true // always listening | ||
} | ||
|
||
// Peercount returns the number of connected peers | ||
func (s *PublicNetApi) PeerCount() *rpc.HexNumber { | ||
return rpc.NewHexNumber(s.net.PeerCount()) | ||
} | ||
|
||
// ProtocolVersion returns the current ethereum protocol version. | ||
func (s *PublicNetApi) Version() string { | ||
return fmt.Sprintf("%d", s.networkVersion) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.