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
e61db714
Commit
e61db714
authored
Jun 10, 2015
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eth: dedup fetches to ensure no blocks are pulled twice
parent
355b1e3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
5 deletions
+23
-5
sync.go
eth/sync.go
+23
-5
No files found.
eth/sync.go
View file @
e61db714
...
@@ -131,6 +131,7 @@ func (pm *ProtocolManager) fetcher() {
...
@@ -131,6 +131,7 @@ func (pm *ProtocolManager) fetcher() {
request
:=
make
(
map
[
*
peer
][]
common
.
Hash
)
request
:=
make
(
map
[
*
peer
][]
common
.
Hash
)
pending
:=
make
(
map
[
common
.
Hash
]
*
blockAnnounce
)
pending
:=
make
(
map
[
common
.
Hash
]
*
blockAnnounce
)
cycle
:=
time
.
Tick
(
notifyCheckCycle
)
cycle
:=
time
.
Tick
(
notifyCheckCycle
)
done
:=
make
(
chan
common
.
Hash
)
// Iterate the block fetching until a quit is requested
// Iterate the block fetching until a quit is requested
for
{
for
{
...
@@ -139,9 +140,18 @@ func (pm *ProtocolManager) fetcher() {
...
@@ -139,9 +140,18 @@ func (pm *ProtocolManager) fetcher() {
// A batch of hashes the notified, schedule them for retrieval
// A batch of hashes the notified, schedule them for retrieval
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"Scheduling %d hash announcements from %s"
,
len
(
notifications
),
notifications
[
0
]
.
peer
.
id
)
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"Scheduling %d hash announcements from %s"
,
len
(
notifications
),
notifications
[
0
]
.
peer
.
id
)
for
_
,
announce
:=
range
notifications
{
for
_
,
announce
:=
range
notifications
{
// Skip if it's already pending fetch
if
_
,
ok
:=
pending
[
announce
.
hash
];
ok
{
continue
}
// Otherwise queue up the peer as a potential source
announces
[
announce
.
hash
]
=
append
(
announces
[
announce
.
hash
],
announce
)
announces
[
announce
.
hash
]
=
append
(
announces
[
announce
.
hash
],
announce
)
}
}
case
hash
:=
<-
done
:
// A pending import finished, remove all traces
delete
(
pending
,
hash
)
case
<-
cycle
:
case
<-
cycle
:
// Clean up any expired block fetches
// Clean up any expired block fetches
for
hash
,
announce
:=
range
pending
{
for
hash
,
announce
:=
range
pending
{
...
@@ -207,18 +217,26 @@ func (pm *ProtocolManager) fetcher() {
...
@@ -207,18 +217,26 @@ func (pm *ProtocolManager) fetcher() {
for
_
,
block
:=
range
explicit
{
for
_
,
block
:=
range
explicit
{
hash
:=
block
.
Hash
()
hash
:=
block
.
Hash
()
if
announce
:=
pending
[
hash
];
announce
!=
nil
{
if
announce
:=
pending
[
hash
];
announce
!=
nil
{
//
Filter out blocks too new to import anyway
//
Drop the block if it surely cannot fit
if
!
pm
.
chainman
.
HasBlock
(
hash
)
&&
pm
.
chainman
.
HasBlock
(
block
.
ParentHash
())
{
if
pm
.
chainman
.
HasBlock
(
hash
)
||
!
pm
.
chainman
.
HasBlock
(
block
.
ParentHash
())
{
peers
=
append
(
peers
,
announce
.
peer
)
delete
(
pending
,
hash
)
blocks
=
append
(
blocks
,
block
)
continue
}
}
delete
(
pending
,
hash
)
// Otherwise accumulate for import
peers
=
append
(
peers
,
announce
.
peer
)
blocks
=
append
(
blocks
,
block
)
}
}
}
}
// If any explicit fetches were replied to, import them
// If any explicit fetches were replied to, import them
if
count
:=
len
(
blocks
);
count
>
0
{
if
count
:=
len
(
blocks
);
count
>
0
{
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"Importing %d explicitly fetched blocks"
,
len
(
blocks
))
glog
.
V
(
logger
.
Debug
)
.
Infof
(
"Importing %d explicitly fetched blocks"
,
len
(
blocks
))
go
func
()
{
go
func
()
{
// Make sure all hashes are cleaned up
for
_
,
block
:=
range
blocks
{
hash
:=
block
.
Hash
()
defer
func
()
{
done
<-
hash
}()
}
// Try and actually import the blocks
for
i
:=
0
;
i
<
len
(
blocks
);
i
++
{
for
i
:=
0
;
i
<
len
(
blocks
);
i
++
{
if
err
:=
pm
.
importBlock
(
peers
[
i
],
blocks
[
i
],
nil
);
err
!=
nil
{
if
err
:=
pm
.
importBlock
(
peers
[
i
],
blocks
[
i
],
nil
);
err
!=
nil
{
glog
.
V
(
logger
.
Detail
)
.
Infof
(
"Failed to import explicitly fetched block: %v"
,
err
)
glog
.
V
(
logger
.
Detail
)
.
Infof
(
"Failed to import explicitly fetched block: %v"
,
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