Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F10615207
blockdb.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
blockdb.cpp
View Options
#include
<blockdb.h>
#include
<blockindex.h>
#include
<clientversion.h>
#include
<pow/pow.h>
#include
<primitives/block.h>
#include
<streams.h>
#include
<util/system.h>
extern
RecursiveMutex
cs_main
;
FlatFileSeq
BlockFileSeq
()
{
return
FlatFileSeq
(
gArgs
.
GetBlocksDirPath
(),
"blk"
,
BLOCKFILE_CHUNK_SIZE
);
}
FlatFileSeq
UndoFileSeq
()
{
return
FlatFileSeq
(
gArgs
.
GetBlocksDirPath
(),
"rev"
,
UNDOFILE_CHUNK_SIZE
);
}
FILE
*
OpenBlockFile
(
const
FlatFilePos
&
pos
,
bool
fReadOnly
)
{
return
BlockFileSeq
().
Open
(
pos
,
fReadOnly
);
}
/** Open an undo file (rev?????.dat) */
FILE
*
OpenUndoFile
(
const
FlatFilePos
&
pos
,
bool
fReadOnly
)
{
return
UndoFileSeq
().
Open
(
pos
,
fReadOnly
);
}
fs
::
path
GetBlockPosFilename
(
const
FlatFilePos
&
pos
)
{
return
BlockFileSeq
().
FileName
(
pos
);
}
bool
ReadBlockFromDisk
(
CBlock
&
block
,
const
FlatFilePos
&
pos
,
const
Consensus
::
Params
&
params
)
{
block
.
SetNull
();
// Open history file to read
CAutoFile
filein
(
OpenBlockFile
(
pos
,
true
),
SER_DISK
,
CLIENT_VERSION
);
if
(
filein
.
IsNull
())
{
return
error
(
"ReadBlockFromDisk: OpenBlockFile failed for %s"
,
pos
.
ToString
());
}
// Read block
try
{
filein
>>
block
;
}
catch
(
const
std
::
exception
&
e
)
{
return
error
(
"%s: Deserialize or I/O error - %s at %s"
,
__func__
,
e
.
what
(),
pos
.
ToString
());
}
// Check the header
if
(
!
CheckProofOfWork
(
block
.
GetHash
(),
block
.
nBits
,
params
))
{
return
error
(
"ReadBlockFromDisk: Errors in block header at %s"
,
pos
.
ToString
());
}
return
true
;
}
bool
ReadBlockFromDisk
(
CBlock
&
block
,
const
CBlockIndex
*
pindex
,
const
Consensus
::
Params
&
params
)
{
FlatFilePos
blockPos
;
{
LOCK
(
cs_main
);
blockPos
=
pindex
->
GetBlockPos
();
}
if
(
!
ReadBlockFromDisk
(
block
,
blockPos
,
params
))
{
return
false
;
}
if
(
block
.
GetHash
()
!=
pindex
->
GetBlockHash
())
{
return
error
(
"ReadBlockFromDisk(CBlock&, CBlockIndex*)
:
GetHash
()
"
"doesn't match index for %s at %s"
,
pindex
->
ToString
(),
pindex
->
GetBlockPos
().
ToString
());
}
return
true
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sat, Nov 23, 10:01 (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4523421
Default Alt Text
blockdb.cpp (2 KB)
Attached To
rSTAGING Bitcoin ABC staging
Event Timeline
Log In to Comment