Skip to content

Commit

Permalink
Whisper watches fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed Dec 16, 2014
1 parent 93edae2 commit 52b5463
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 16 deletions.
3 changes: 2 additions & 1 deletion cmd/mist/assets/qml/views/whisper.qml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Rectangle {
Component.onCompleted: {
identity = shh.newIdentity()
console.log("New identity:", identity)

var t = shh.watch({topics: ["chat"]})
}

RowLayout {
Expand All @@ -35,7 +37,6 @@ Rectangle {
id: topics
placeholderText: "topic1, topic2, topic3, ..."
}

Button {
text: "Send"
onClicked: {
Expand Down
20 changes: 15 additions & 5 deletions event/filter/generic_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,29 @@ package filter

type Generic struct {
Str1, Str2, Str3 string
Data map[string]struct{}

Fn func(data interface{})
}

// self = registered, f = incoming
func (self Generic) Compare(f Filter) bool {
var strMatch, dataMatch = true, true

filter := f.(Generic)
if (len(self.Str1) == 0 || filter.Str1 == self.Str1) &&
(len(self.Str2) == 0 || filter.Str2 == self.Str2) &&
(len(self.Str3) == 0 || filter.Str3 == self.Str3) {
return true
if (len(self.Str1) > 0 && filter.Str1 != self.Str1) ||
(len(self.Str2) > 0 && filter.Str2 != self.Str2) ||
(len(self.Str3) > 0 && filter.Str3 != self.Str3) {
strMatch = false
}

for k, _ := range self.Data {
if _, ok := filter.Data[k]; !ok {
return false
}
}

return false
return strMatch && dataMatch
}

func (self Generic) Trigger(data interface{}) {
Expand Down
28 changes: 23 additions & 5 deletions ui/qt/qwhisper/whisper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package qwhisper
import (
"fmt"
"time"
"unsafe"

"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethutil"
Expand All @@ -18,13 +19,22 @@ func fromHex(s string) []byte {
}
func toHex(b []byte) string { return "0x" + ethutil.Bytes2Hex(b) }

type Watch struct {
}

func (self *Watch) Arrived(v unsafe.Pointer) {
fmt.Println(v)
}

type Whisper struct {
*whisper.Whisper
view qml.Object

watches map[int]*Watch
}

func New(w *whisper.Whisper) *Whisper {
return &Whisper{w, nil}
return &Whisper{w, nil, make(map[int]*Watch)}
}

func (self *Whisper) SetView(view qml.Object) {
Expand All @@ -37,7 +47,7 @@ func (self *Whisper) Post(data string, to, from string, topics []string, pow, tt
Ttl: time.Duration(ttl),
To: crypto.ToECDSAPub(fromHex(to)),
From: crypto.ToECDSA(fromHex(from)),
Topics: whisper.TopicsFromString(topics),
Topics: whisper.TopicsFromString(topics...),
})
if err != nil {
fmt.Println(err)
Expand All @@ -60,12 +70,15 @@ func (self *Whisper) HasIdentity(key string) bool {
return self.Whisper.HasIdentity(crypto.ToECDSA(fromHex(key)))
}

func (self *Whisper) Watch(opts map[string]interface{}) {
func (self *Whisper) Watch(opts map[string]interface{}) *Watch {
filter := filterFromMap(opts)
filter.Fn = func(msg *whisper.Message) {
// TODO POST TO QT WINDOW
fmt.Println(msg)
}
self.Whisper.Watch(filter)
i := self.Whisper.Watch(filter)
self.watches[i] = &Watch{}

return self.watches[i]
}

func filterFromMap(opts map[string]interface{}) (f whisper.Filter) {
Expand All @@ -75,6 +88,11 @@ func filterFromMap(opts map[string]interface{}) (f whisper.Filter) {
if from, ok := opts["from"].(string); ok {
f.From = crypto.ToECDSAPub(fromHex(from))
}
if topicList, ok := opts["topics"].(*qml.List); ok {
var topics []string
topicList.Convert(&topics)
f.Topics = whisper.TopicsFromString(topics...)
}

return
}
6 changes: 4 additions & 2 deletions whisper/envelope.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,13 @@ func (self *Envelope) Open(prv *ecdsa.PrivateKey) (msg *Message, err error) {
message.Flags = data[0]
message.Signature = data[1:66]
}
message.Payload = data[dataStart:]

payload := data[dataStart:]
if prv != nil {
message.Payload, err = crypto.Decrypt(prv, message.Payload)
message.Payload, err = crypto.Decrypt(prv, payload)
switch err {
case ecies.ErrInvalidPublicKey: // Payload isn't encrypted
message.Payload = payload
return &message, err
default:
return nil, fmt.Errorf("unable to open envelope. Decrypt failed: %v", err)
Expand Down
11 changes: 10 additions & 1 deletion whisper/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,19 @@ func Topics(data [][]byte) [][]byte {
return d
}

func TopicsFromString(data []string) [][]byte {
func TopicsFromString(data ...string) [][]byte {
d := make([][]byte, len(data))
for i, str := range data {
d[i] = hashTopic([]byte(str))
}
return d
}

func bytesToMap(s [][]byte) map[string]struct{} {
m := make(map[string]struct{})
for _, topic := range s {
m[string(topic)] = struct{}{}
}

return m
}
4 changes: 2 additions & 2 deletions whisper/whisper.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"bytes"
"crypto/ecdsa"
"errors"
"fmt"
"sync"
"time"

Expand Down Expand Up @@ -120,6 +119,7 @@ func (self *Whisper) Watch(opts Filter) int {
return self.filters.Install(filter.Generic{
Str1: string(crypto.FromECDSA(opts.To)),
Str2: string(crypto.FromECDSAPub(opts.From)),
Data: bytesToMap(opts.Topics),
Fn: func(data interface{}) {
opts.Fn(data.(*Message))
},
Expand Down Expand Up @@ -150,7 +150,6 @@ func (self *Whisper) msgHandler(peer *p2p.Peer, ws p2p.MsgReadWriter) error {
continue
}

fmt.Println("recv")
if err := self.add(envelope); err != nil {
// TODO Punish peer here. Invalid envelope.
peer.Infoln(err)
Expand Down Expand Up @@ -233,6 +232,7 @@ func (self *Whisper) postEvent(envelope *Envelope) {
// Create a custom filter?
self.filters.Notify(filter.Generic{
Str1: string(crypto.FromECDSA(key)), Str2: string(crypto.FromECDSAPub(message.Recover())),
Data: bytesToMap(envelope.Topics),
}, message)
} else {
wlogger.Infoln(err)
Expand Down

0 comments on commit 52b5463

Please sign in to comment.