good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
6a2fec53
Commit
6a2fec53
authored
May 6, 2015
by
Felix Lange
Browse files
Options
Downloads
Patches
Plain Diff
p2p, whisper: use glog for peer-level logging
parent
bcfd7886
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
p2p/peer.go
+8
-13
8 additions, 13 deletions
p2p/peer.go
whisper/peer.go
+6
-5
6 additions, 5 deletions
whisper/peer.go
whisper/whisper.go
+2
-2
2 additions, 2 deletions
whisper/whisper.go
with
16 additions
and
20 deletions
p2p/peer.go
+
8
−
13
View file @
6a2fec53
...
...
@@ -10,6 +10,7 @@ import (
"time"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/p2p/discover"
"github.com/ethereum/go-ethereum/rlp"
)
...
...
@@ -34,10 +35,6 @@ const (
// Peer represents a connected remote node.
type
Peer
struct
{
// Peers have all the log methods.
// Use them to display messages related to the peer.
*
logger
.
Logger
conn
net
.
Conn
rw
*
conn
running
map
[
string
]
*
protoRW
...
...
@@ -99,10 +96,8 @@ func (p *Peer) String() string {
}
func
newPeer
(
fd
net
.
Conn
,
conn
*
conn
,
protocols
[]
Protocol
)
*
Peer
{
logtag
:=
fmt
.
Sprintf
(
"Peer %.8x %v"
,
conn
.
ID
[
:
],
fd
.
RemoteAddr
())
protomap
:=
matchProtocols
(
protocols
,
conn
.
Caps
,
conn
)
p
:=
&
Peer
{
Logger
:
logger
.
NewLogger
(
logtag
),
conn
:
fd
,
rw
:
conn
,
running
:
protomap
,
...
...
@@ -130,7 +125,7 @@ func (p *Peer) run() DiscReason {
}
else
{
// Note: We rely on protocols to abort if there is a write
// error. It might be more robust to handle them here as well.
p
.
DebugDetailf
(
"
Read error: %v
\n
"
,
err
)
glog
.
V
(
logger
.
Detail
)
.
Infof
(
"%v:
Read error: %v
\n
"
,
p
,
err
)
reason
=
DiscNetworkError
}
case
err
:=
<-
p
.
protoErr
:
...
...
@@ -141,7 +136,7 @@ func (p *Peer) run() DiscReason {
close
(
p
.
closed
)
p
.
politeDisconnect
(
reason
)
p
.
wg
.
Wait
()
p
.
Debugf
(
"
Disconnected: %v
\n
"
,
reason
)
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"%v:
Disconnected: %v
\n
"
,
p
,
reason
)
return
reason
}
...
...
@@ -195,7 +190,7 @@ func (p *Peer) handle(msg Msg) error {
// This is the last message. We don't need to discard or
// check errors because, the connection will be closed after it.
rlp
.
Decode
(
msg
.
Payload
,
&
reason
)
p
.
Debugf
(
"
Disconnect
r
equested: %v
\n
"
,
reason
[
0
])
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"%v:
Disconnect
R
equested: %v
\n
"
,
p
,
reason
[
0
])
return
DiscRequested
case
msg
.
Code
<
baseProtocolLength
:
// ignore other base protocol messages
...
...
@@ -239,14 +234,14 @@ func (p *Peer) startProtocols() {
for
_
,
proto
:=
range
p
.
running
{
proto
:=
proto
proto
.
closed
=
p
.
closed
p
.
DebugDetailf
(
"
Starting protocol %s/%d
\n
"
,
proto
.
Name
,
proto
.
Version
)
glog
.
V
(
logger
.
Detail
)
.
Infof
(
"%v:
Starting protocol %s/%d
\n
"
,
p
,
proto
.
Name
,
proto
.
Version
)
go
func
()
{
err
:=
proto
.
Run
(
p
,
proto
)
if
err
==
nil
{
p
.
DebugDetailf
(
"
Protocol %s/%d returned
\n
"
,
proto
.
Name
,
proto
.
Version
)
glog
.
V
(
logger
.
Detail
)
.
Infof
(
"%v:
Protocol %s/%d returned
\n
"
,
p
,
proto
.
Name
,
proto
.
Version
)
err
=
errors
.
New
(
"protocol returned"
)
}
else
{
p
.
DebugDetailf
(
"
Protocol %s/%d error:
%v
\n
"
,
proto
.
Name
,
proto
.
Version
,
err
)
}
else
if
err
!=
io
.
EOF
{
glog
.
V
(
logger
.
Detail
)
.
Infof
(
"%v:
Protocol %s/%d error:
\n
"
,
p
,
proto
.
Name
,
proto
.
Version
,
err
)
}
p
.
protoErr
<-
err
p
.
wg
.
Done
()
...
...
This diff is collapsed.
Click to expand it.
whisper/peer.go
+
6
−
5
View file @
6a2fec53
...
...
@@ -5,6 +5,8 @@ import (
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/rlp"
"gopkg.in/fatih/set.v0"
...
...
@@ -36,13 +38,13 @@ func newPeer(host *Whisper, remote *p2p.Peer, rw p2p.MsgReadWriter) *peer {
// into the network.
func
(
self
*
peer
)
start
()
{
go
self
.
update
()
self
.
peer
.
Debugln
(
"
whisper started"
)
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"%v:
whisper started"
,
self
.
peer
)
}
// stop terminates the peer updater, stopping message forwarding to it.
func
(
self
*
peer
)
stop
()
{
close
(
self
.
quit
)
self
.
peer
.
Debugln
(
"
whisper stopped"
)
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"%v:
whisper stopped"
,
self
.
peer
)
}
// handshake sends the protocol initiation status message to the remote peer and
...
...
@@ -94,7 +96,7 @@ func (self *peer) update() {
case
<-
transmit
.
C
:
if
err
:=
self
.
broadcast
();
err
!=
nil
{
self
.
peer
.
Infoln
(
"
broadcast failed:
"
,
err
)
glog
.
V
(
logger
.
Info
)
.
Infof
(
"%v:
broadcast failed:
%v"
,
self
.
peer
,
err
)
return
}
...
...
@@ -152,7 +154,6 @@ func (self *peer) broadcast() error {
if
err
:=
p2p
.
Send
(
self
.
ws
,
messagesCode
,
transmit
);
err
!=
nil
{
return
err
}
self
.
peer
.
DebugDetailln
(
"broadcasted"
,
len
(
transmit
),
"message(s)"
)
glog
.
V
(
logger
.
Detail
)
.
Infoln
(
self
.
peer
,
"broadcasted"
,
len
(
transmit
),
"message(s)"
)
return
nil
}
This diff is collapsed.
Click to expand it.
whisper/whisper.go
+
2
−
2
View file @
6a2fec53
...
...
@@ -197,14 +197,14 @@ func (self *Whisper) handlePeer(peer *p2p.Peer, rw p2p.MsgReadWriter) error {
}
var
envelopes
[]
*
Envelope
if
err
:=
packet
.
Decode
(
&
envelopes
);
err
!=
nil
{
peer
.
Infof
(
"
failed to decode envelope
d
: %v"
,
err
)
glog
.
V
(
logger
.
Info
)
.
Infof
(
"%v:
failed to decode envelope: %v"
,
peer
,
err
)
continue
}
// Inject all envelopes into the internal pool
for
_
,
envelope
:=
range
envelopes
{
if
err
:=
self
.
add
(
envelope
);
err
!=
nil
{
// TODO Punish peer here. Invalid envelope.
peer
.
Debugf
(
"
failed to pool envelope: %
f"
,
err
)
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"%v:
failed to pool envelope: %
v"
,
peer
,
err
)
}
whisperPeer
.
mark
(
envelope
)
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment