rpc, whisper, xeth: polish whisper RPC interface

pull/738/head
Péter Szilágyi 10 years ago
parent 182d484aa7
commit 3563c59b12
  1. 17
      rpc/api.go
  2. 13
      whisper/whisper.go
  3. 135
      xeth/whisper.go
  4. 26
      xeth/whisper_filter.go
  5. 31
      xeth/whisper_message.go
  6. 27
      xeth/xeth.go

@ -408,18 +408,18 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
*reply = newHexData(res) *reply = newHexData(res)
case "shh_version": case "shh_version":
*reply = api.xeth().WhisperVersion() *reply = api.xeth().WhisperVersion()
case "shh_post": case "shh_post":
args := new(WhisperMessageArgs) args := new(WhisperMessageArgs)
if err := json.Unmarshal(req.Params, &args); err != nil { if err := json.Unmarshal(req.Params, &args); err != nil {
return err return err
} }
err := api.xeth().Whisper().Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl) err := api.xeth().Whisper().Post(args.Payload, args.To, args.From, args.Topics, args.Priority, args.Ttl)
if err != nil { if err != nil {
return err return err
} }
*reply = true *reply = true
case "shh_newIdentity": case "shh_newIdentity":
*reply = api.xeth().Whisper().NewIdentity() *reply = api.xeth().Whisper().NewIdentity()
// case "shh_removeIdentity": // case "shh_removeIdentity":
@ -434,32 +434,35 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
return err return err
} }
*reply = api.xeth().Whisper().HasIdentity(args.Identity) *reply = api.xeth().Whisper().HasIdentity(args.Identity)
case "shh_newGroup", "shh_addToGroup": case "shh_newGroup", "shh_addToGroup":
return NewNotImplementedError(req.Method) return NewNotImplementedError(req.Method)
case "shh_newFilter": case "shh_newFilter":
args := new(WhisperFilterArgs) args := new(WhisperFilterArgs)
if err := json.Unmarshal(req.Params, &args); err != nil { if err := json.Unmarshal(req.Params, &args); err != nil {
return err return err
} }
opts := new(xeth.Options) id := api.xeth().NewWhisperFilter(args.To, args.From, args.Topics)
// opts.From = args.From
opts.To = args.To
opts.Topics = args.Topics
id := api.xeth().NewWhisperFilter(opts)
*reply = newHexNum(big.NewInt(int64(id)).Bytes()) *reply = newHexNum(big.NewInt(int64(id)).Bytes())
case "shh_uninstallFilter": case "shh_uninstallFilter":
args := new(FilterIdArgs) args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil { if err := json.Unmarshal(req.Params, &args); err != nil {
return err return err
} }
*reply = api.xeth().UninstallWhisperFilter(args.Id) *reply = api.xeth().UninstallWhisperFilter(args.Id)
case "shh_getFilterChanges": case "shh_getFilterChanges":
// Retrieve all the new messages arrived since the last request
args := new(FilterIdArgs) args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil { if err := json.Unmarshal(req.Params, &args); err != nil {
return err return err
} }
*reply = api.xeth().MessagesChanged(args.Id) *reply = api.xeth().MessagesChanged(args.Id)
case "shh_getMessages": case "shh_getMessages":
// Retrieve all the cached messages matching a specific, existing filter
args := new(FilterIdArgs) args := new(FilterIdArgs)
if err := json.Unmarshal(req.Params, &args); err != nil { if err := json.Unmarshal(req.Params, &args); err != nil {
return err return err

@ -58,6 +58,8 @@ type Whisper struct {
quit chan struct{} quit chan struct{}
} }
// New creates a Whisper client ready to communicate through the Ethereum P2P
// network.
func New() *Whisper { func New() *Whisper {
whisper := &Whisper{ whisper := &Whisper{
filters: filter.New(), filters: filter.New(),
@ -148,7 +150,7 @@ func (self *Whisper) Stop() {
glog.V(logger.Info).Infoln("Whisper stopped") glog.V(logger.Info).Infoln("Whisper stopped")
} }
// Messages retrieves the currently pooled messages matching a filter id. // Messages retrieves all the currently pooled messages matching a filter id.
func (self *Whisper) Messages(id int) []*Message { func (self *Whisper) Messages(id int) []*Message {
messages := make([]*Message, 0) messages := make([]*Message, 0)
if filter := self.filters.Get(id); filter != nil { if filter := self.filters.Get(id); filter != nil {
@ -163,15 +165,6 @@ func (self *Whisper) Messages(id int) []*Message {
return messages return messages
} }
// func (self *Whisper) RemoveIdentity(key *ecdsa.PublicKey) bool {
// k := string(crypto.FromECDSAPub(key))
// if _, ok := self.keys[k]; ok {
// delete(self.keys, k)
// return true
// }
// return false
// }
// handlePeer is called by the underlying P2P layer when the whisper sub-protocol // handlePeer is called by the underlying P2P layer when the whisper sub-protocol
// connection is negotiated. // connection is negotiated.
func (self *Whisper) handlePeer(peer *p2p.Peer, rw p2p.MsgReadWriter) error { func (self *Whisper) handlePeer(peer *p2p.Peer, rw p2p.MsgReadWriter) error {

@ -1,7 +1,9 @@
// Contains the external API to the whisper sub-protocol.
package xeth package xeth
import ( import (
"errors" "fmt"
"time" "time"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
@ -12,109 +14,78 @@ import (
var qlogger = logger.NewLogger("XSHH") var qlogger = logger.NewLogger("XSHH")
// Whisper represents the API wrapper around the internal whisper implementation.
type Whisper struct { type Whisper struct {
*whisper.Whisper *whisper.Whisper
} }
// NewWhisper wraps an internal whisper client into an external API version.
func NewWhisper(w *whisper.Whisper) *Whisper { func NewWhisper(w *whisper.Whisper) *Whisper {
return &Whisper{w} return &Whisper{w}
} }
func (self *Whisper) Post(payload string, to, from string, topics []string, priority, ttl uint32) error { // NewIdentity generates a new cryptographic identity for the client, and injects
if priority == 0 { // it into the known identities for message decryption.
priority = 1000
}
if ttl == 0 {
ttl = 100
}
pk := crypto.ToECDSAPub(common.FromHex(from))
if key := self.Whisper.GetIdentity(pk); key != nil || len(from) == 0 {
msg := whisper.NewMessage(common.FromHex(payload))
envelope, err := msg.Wrap(time.Duration(priority*100000), whisper.Options{
TTL: time.Duration(ttl) * time.Second,
To: crypto.ToECDSAPub(common.FromHex(to)),
From: key,
Topics: whisper.NewTopicsFromStrings(topics...),
})
if err != nil {
return err
}
if err := self.Whisper.Send(envelope); err != nil {
return err
}
} else {
return errors.New("unmatched pub / priv for seal")
}
return nil
}
func (self *Whisper) NewIdentity() string { func (self *Whisper) NewIdentity() string {
key := self.Whisper.NewIdentity() identity := self.Whisper.NewIdentity()
return common.ToHex(crypto.FromECDSAPub(&identity.PublicKey))
return common.ToHex(crypto.FromECDSAPub(&key.PublicKey))
} }
// HasIdentity checks if the the whisper node is configured with the private key
// of the specified public pair.
func (self *Whisper) HasIdentity(key string) bool { func (self *Whisper) HasIdentity(key string) bool {
return self.Whisper.HasIdentity(crypto.ToECDSAPub(common.FromHex(key))) return self.Whisper.HasIdentity(crypto.ToECDSAPub(common.FromHex(key)))
} }
// func (self *Whisper) RemoveIdentity(key string) bool { // Post injects a message into the whisper network for distribution.
// return self.Whisper.RemoveIdentity(crypto.ToECDSAPub(common.FromHex(key))) func (self *Whisper) Post(payload string, to, from string, topics []string, priority, ttl uint32) error {
// } // Construct the whisper message and transmission options
message := whisper.NewMessage(common.FromHex(payload))
func (self *Whisper) Watch(opts *Options) int { options := whisper.Options{
filter := whisper.Filter{ To: crypto.ToECDSAPub(common.FromHex(to)),
To: crypto.ToECDSAPub(common.FromHex(opts.To)), TTL: time.Duration(ttl) * time.Second,
From: crypto.ToECDSAPub(common.FromHex(opts.From)), Topics: whisper.NewTopicsFromStrings(topics...),
Topics: whisper.NewTopicsFromStrings(opts.Topics...),
} }
if len(from) != 0 {
var i int if key := self.Whisper.GetIdentity(crypto.ToECDSAPub(common.FromHex(from))); key != nil {
filter.Fn = func(msg *whisper.Message) { options.From = key
opts.Fn(NewWhisperMessage(msg)) } else {
return fmt.Errorf("unknown identity to send from: %s", from)
}
} }
// Wrap and send the message
i = self.Whisper.Watch(filter) pow := time.Duration(priority) * time.Millisecond
envelope, err := message.Wrap(pow, options)
return i if err != nil {
} return err
func (self *Whisper) Messages(id int) (messages []WhisperMessage) {
msgs := self.Whisper.Messages(id)
messages = make([]WhisperMessage, len(msgs))
for i, message := range msgs {
messages[i] = NewWhisperMessage(message)
} }
if err := self.Whisper.Send(envelope); err != nil {
return return err
}
return nil
} }
type Options struct { // Watch installs a new message handler to run in case a matching packet arrives
To string // from the whisper network.
From string func (self *Whisper) Watch(to, from string, topics []string, fn func(WhisperMessage)) int {
Topics []string filter := whisper.Filter{
Fn func(msg WhisperMessage) To: crypto.ToECDSAPub(common.FromHex(to)),
From: crypto.ToECDSAPub(common.FromHex(from)),
Topics: whisper.NewTopicsFromStrings(topics...),
}
filter.Fn = func(message *whisper.Message) {
fn(NewWhisperMessage(message))
}
return self.Whisper.Watch(filter)
} }
type WhisperMessage struct { // Messages retrieves all the currently pooled messages matching a filter id.
ref *whisper.Message func (self *Whisper) Messages(id int) []WhisperMessage {
Payload string `json:"payload"` pool := self.Whisper.Messages(id)
To string `json:"to"`
From string `json:"from"`
Sent int64 `json:"sent"`
}
func NewWhisperMessage(msg *whisper.Message) WhisperMessage { messages := make([]WhisperMessage, len(pool))
return WhisperMessage{ for i, message := range pool {
ref: msg, messages[i] = NewWhisperMessage(message)
Payload: common.ToHex(msg.Payload),
From: common.ToHex(crypto.FromECDSAPub(msg.Recover())),
To: common.ToHex(crypto.FromECDSAPub(msg.To)),
Sent: msg.Sent,
} }
return messages
} }

@ -0,0 +1,26 @@
// Contains the external API side message filter for watching, pooling and polling
// matched whisper messages.
package xeth
import "time"
// whisperFilter is the message cache matching a specific filter, accumulating
// inbound messages until the are requested by the client.
type whisperFilter struct {
id int // Filter identifier
cache []WhisperMessage // Cache of messages not yet polled
timeout time.Time // Time when the last message batch was queries
}
// insert injects a new batch of messages into the filter cache.
func (w *whisperFilter) insert(msgs ...WhisperMessage) {
w.cache = append(w.cache, msgs...)
}
// retrieve fetches all the cached messages from the filter.
func (w *whisperFilter) retrieve() (messages []WhisperMessage) {
messages, w.cache = w.cache, nil
w.timeout = time.Now()
return
}

@ -0,0 +1,31 @@
// Contains the external API representation of a whisper message.
package xeth
import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/whisper"
)
// WhisperMessage is the external API representation of a whisper.Message.
type WhisperMessage struct {
ref *whisper.Message
Payload string `json:"payload"`
To string `json:"to"`
From string `json:"from"`
Sent int64 `json:"sent"`
}
// NewWhisperMessage converts an internal message into an API version.
func NewWhisperMessage(message *whisper.Message) WhisperMessage {
return WhisperMessage{
ref: message,
Payload: common.ToHex(message.Payload),
From: common.ToHex(crypto.FromECDSAPub(message.Recover())),
To: common.ToHex(crypto.FromECDSAPub(message.To)),
Sent: message.Sent,
}
}

@ -452,14 +452,15 @@ func (self *XEth) AllLogs(earliest, latest int64, skip, max int, address []strin
return filter.Find() return filter.Find()
} }
func (p *XEth) NewWhisperFilter(opts *Options) int { func (p *XEth) NewWhisperFilter(to, from string, topics []string) int {
var id int var id int
opts.Fn = func(msg WhisperMessage) { callback := func(msg WhisperMessage) {
p.messagesMut.Lock() p.messagesMut.Lock()
defer p.messagesMut.Unlock() defer p.messagesMut.Unlock()
p.messages[id].add(msg) // = append(p.messages[id], msg)
p.messages[id].insert(msg)
} }
id = p.Whisper().Watch(opts) id = p.Whisper().Watch(to, from, topics, callback)
p.messages[id] = &whisperFilter{timeout: time.Now()} p.messages[id] = &whisperFilter{timeout: time.Now()}
return id return id
} }
@ -478,7 +479,7 @@ func (self *XEth) MessagesChanged(id int) []WhisperMessage {
defer self.messagesMut.Unlock() defer self.messagesMut.Unlock()
if self.messages[id] != nil { if self.messages[id] != nil {
return self.messages[id].get() return self.messages[id].retrieve()
} }
return nil return nil
@ -731,22 +732,6 @@ func (m callmsg) Gas() *big.Int { return m.gas }
func (m callmsg) Value() *big.Int { return m.value } func (m callmsg) Value() *big.Int { return m.value }
func (m callmsg) Data() []byte { return m.data } func (m callmsg) Data() []byte { return m.data }
type whisperFilter struct {
messages []WhisperMessage
timeout time.Time
id int
}
func (w *whisperFilter) add(msgs ...WhisperMessage) {
w.messages = append(w.messages, msgs...)
}
func (w *whisperFilter) get() []WhisperMessage {
w.timeout = time.Now()
tmp := w.messages
w.messages = nil
return tmp
}
type logFilter struct { type logFilter struct {
logs state.Logs logs state.Logs
timeout time.Time timeout time.Time

Loading…
Cancel
Save