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
52b54631
Commit
52b54631
authored
Dec 16, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whisper watches fixes
parent
93edae28
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
56 additions
and
16 deletions
+56
-16
whisper.qml
cmd/mist/assets/qml/views/whisper.qml
+2
-1
generic_filter.go
event/filter/generic_filter.go
+15
-5
whisper.go
ui/qt/qwhisper/whisper.go
+23
-5
envelope.go
whisper/envelope.go
+4
-2
util.go
whisper/util.go
+10
-1
whisper.go
whisper/whisper.go
+2
-2
No files found.
cmd/mist/assets/qml/views/whisper.qml
View file @
52b54631
...
...
@@ -20,6 +20,8 @@ Rectangle {
Component.onCompleted
:
{
identity
=
shh
.
newIdentity
()
console
.
log
(
"New identity:"
,
identity
)
var
t
=
shh
.
watch
({
topics
:
[
"chat"
]})
}
RowLayout
{
...
...
@@ -35,7 +37,6 @@ Rectangle {
id
:
topics
placeholderText
:
"topic1, topic2, topic3, ..."
}
Button
{
text
:
"Send"
onClicked
:
{
...
...
event/filter/generic_filter.go
View file @
52b54631
...
...
@@ -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
tru
e
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
=
fals
e
}
for
k
,
_
:=
range
self
.
Data
{
if
_
,
ok
:=
filter
.
Data
[
k
];
!
ok
{
return
false
}
}
return
strMatch
&&
dataMatch
}
func
(
self
Generic
)
Trigger
(
data
interface
{})
{
...
...
ui/qt/qwhisper/whisper.go
View file @
52b54631
...
...
@@ -3,6 +3,7 @@ package qwhisper
import
(
"fmt"
"time"
"unsafe"
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethutil"
...
...
@@ -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
)
{
...
...
@@ -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
)
...
...
@@ -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
)
{
...
...
@@ -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
}
whisper/envelope.go
View file @
52b54631
...
...
@@ -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
.
P
ayload
)
message
.
Payload
,
err
=
crypto
.
Decrypt
(
prv
,
p
ayload
)
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
)
...
...
whisper/util.go
View file @
52b54631
...
...
@@ -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
}
whisper/whisper.go
View file @
52b54631
...
...
@@ -4,7 +4,6 @@ import (
"bytes"
"crypto/ecdsa"
"errors"
"fmt"
"sync"
"time"
...
...
@@ -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
))
},
...
...
@@ -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
)
...
...
@@ -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
)
...
...
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