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
992e4f83
Commit
992e4f83
authored
Jun 29, 2015
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
core: replaced BlockCache with lru.Cache
parent
a8ebf756
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
core/chain_manager.go
+24
-19
24 additions, 19 deletions
core/chain_manager.go
core/chain_manager_test.go
+1
-1
1 addition, 1 deletion
core/chain_manager_test.go
with
25 additions
and
20 deletions
core/chain_manager.go
+
24
−
19
View file @
992e4f83
...
...
@@ -110,8 +110,8 @@ type ChainManager struct {
txState
*
state
.
ManagedState
cache
*
lru
.
Cache
// cache is the LRU caching
futureBlocks
*
Block
Cache
// future blocks are blocks added for later processing
pendingBlocks
*
Block
Cache
// pending blocks contain blocks not yet written to the db
futureBlocks
*
lru
.
Cache
// future blocks are blocks added for later processing
pendingBlocks
*
lru
.
Cache
// pending blocks contain blocks not yet written to the db
quit
chan
struct
{}
// procInterrupt must be atomically called
...
...
@@ -158,7 +158,7 @@ func NewChainManager(genesis *types.Block, blockDb, stateDb common.Database, pow
// Take ownership of this particular state
bc
.
txState
=
state
.
ManageState
(
bc
.
State
()
.
Copy
())
bc
.
futureBlocks
=
NewBlockCache
(
maxFutureBlocks
)
bc
.
futureBlocks
,
_
=
lru
.
New
(
maxFutureBlocks
)
bc
.
makeCache
()
go
bc
.
update
()
...
...
@@ -390,7 +390,7 @@ func (bc *ChainManager) HasBlock(hash common.Hash) bool {
}
if
bc
.
pendingBlocks
!=
nil
{
if
block
:=
bc
.
pendingBlocks
.
Get
(
hash
);
block
!=
nil
{
if
_
,
exist
:=
bc
.
pendingBlocks
.
Get
(
hash
);
exist
{
return
true
}
}
...
...
@@ -426,8 +426,8 @@ func (self *ChainManager) GetBlock(hash common.Hash) *types.Block {
}
if
self
.
pendingBlocks
!=
nil
{
if
block
:=
self
.
pendingBlocks
.
Get
(
hash
);
block
!=
nil
{
return
block
if
block
,
_
:=
self
.
pendingBlocks
.
Get
(
hash
);
block
!=
nil
{
return
block
.
(
*
types
.
Block
)
}
}
...
...
@@ -510,10 +510,11 @@ type queueEvent struct {
}
func
(
self
*
ChainManager
)
procFutureBlocks
()
{
var
blocks
[]
*
types
.
Block
self
.
futureBlocks
.
Each
(
func
(
i
int
,
block
*
types
.
Block
)
{
blocks
=
append
(
blocks
,
block
)
})
blocks
:=
make
([]
*
types
.
Block
,
self
.
futureBlocks
.
Len
())
for
i
,
hash
:=
range
self
.
futureBlocks
.
Keys
()
{
block
,
_
:=
self
.
futureBlocks
.
Get
(
hash
)
blocks
[
i
]
=
block
.
(
*
types
.
Block
)
}
if
len
(
blocks
)
>
0
{
types
.
BlockBy
(
types
.
Number
)
.
Sort
(
blocks
)
self
.
InsertChain
(
blocks
)
...
...
@@ -521,13 +522,16 @@ func (self *ChainManager) procFutureBlocks() {
}
func
(
self
*
ChainManager
)
enqueueForWrite
(
block
*
types
.
Block
)
{
self
.
pendingBlocks
.
Push
(
block
)
self
.
pendingBlocks
.
Add
(
block
.
Hash
(),
block
)
}
func
(
self
*
ChainManager
)
flushQueuedBlocks
()
{
db
,
batchWrite
:=
self
.
blockDb
.
(
*
ethdb
.
LDBDatabase
)
batch
:=
new
(
leveldb
.
Batch
)
self
.
pendingBlocks
.
Each
(
func
(
i
int
,
block
*
types
.
Block
)
{
for
_
,
key
:=
range
self
.
pendingBlocks
.
Keys
()
{
b
,
_
:=
self
.
pendingBlocks
.
Get
(
key
)
block
:=
b
.
(
*
types
.
Block
)
enc
,
_
:=
rlp
.
EncodeToBytes
((
*
types
.
StorageBlock
)(
block
))
key
:=
append
(
blockHashPre
,
block
.
Hash
()
.
Bytes
()
...
)
if
batchWrite
{
...
...
@@ -535,7 +539,8 @@ func (self *ChainManager) flushQueuedBlocks() {
}
else
{
self
.
blockDb
.
Put
(
key
,
enc
)
}
})
}
if
batchWrite
{
db
.
LDB
()
.
Write
(
batch
,
nil
)
}
...
...
@@ -588,7 +593,7 @@ func (self *ChainManager) WriteBlock(block *types.Block) (status writeStatus, er
self
.
enqueueForWrite
(
block
)
self
.
mu
.
Unlock
()
// Delete from future blocks
self
.
futureBlocks
.
Delet
e
(
block
.
Hash
())
self
.
futureBlocks
.
Remov
e
(
block
.
Hash
())
return
}
...
...
@@ -602,7 +607,7 @@ func (self *ChainManager) InsertChain(chain types.Blocks) (int, error) {
self
.
chainmu
.
Lock
()
defer
self
.
chainmu
.
Unlock
()
self
.
pendingBlocks
=
NewBlockCache
(
len
(
chain
))
self
.
pendingBlocks
,
_
=
lru
.
New
(
len
(
chain
))
// A queued approach to delivering events. This is generally
// faster than direct delivery and requires much less mutex
...
...
@@ -669,13 +674,13 @@ func (self *ChainManager) InsertChain(chain types.Blocks) (int, error) {
return
i
,
fmt
.
Errorf
(
"%v: BlockFutureErr, %v > %v"
,
BlockFutureErr
,
block
.
Time
(),
max
)
}
self
.
futureBlocks
.
Push
(
block
)
self
.
futureBlocks
.
Add
(
block
.
Hash
(),
block
)
stats
.
queued
++
continue
}
if
IsParentErr
(
err
)
&&
self
.
futureBlocks
.
Ha
s
(
block
.
ParentHash
())
{
self
.
futureBlocks
.
Push
(
block
)
if
IsParentErr
(
err
)
&&
self
.
futureBlocks
.
Contain
s
(
block
.
ParentHash
())
{
self
.
futureBlocks
.
Add
(
block
.
Hash
(),
block
)
stats
.
queued
++
continue
}
...
...
This diff is collapsed.
Click to expand it.
core/chain_manager_test.go
+
1
−
1
View file @
992e4f83
...
...
@@ -393,7 +393,7 @@ func chm(genesis *types.Block, db common.Database) *ChainManager {
var
eventMux
event
.
TypeMux
bc
:=
&
ChainManager
{
blockDb
:
db
,
stateDb
:
db
,
genesisBlock
:
genesis
,
eventMux
:
&
eventMux
,
pow
:
FakePow
{}}
bc
.
cache
,
_
=
lru
.
New
(
100
)
bc
.
futureBlocks
=
NewBlockCache
(
100
)
bc
.
futureBlocks
,
_
=
lru
.
New
(
100
)
bc
.
processor
=
bproc
{}
bc
.
ResetWithGenesisBlock
(
genesis
)
bc
.
txState
=
state
.
ManageState
(
bc
.
State
())
...
...
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