Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F10615206
blockfileinfo.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
blockfileinfo.h
View Options
// Copyright (c) 2018-2020 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_BLOCKFILEINFO_H
#define BITCOIN_BLOCKFILEINFO_H
#include
<serialize.h>
#include
<cstdint>
#include
<string>
class
CBlockFileInfo
{
public
:
//! number of blocks stored in file
unsigned
int
nBlocks
;
//! number of used bytes of block file
unsigned
int
nSize
;
//! number of used bytes in the undo file
unsigned
int
nUndoSize
;
//! lowest height of block in file
unsigned
int
nHeightFirst
;
//! highest height of block in file
unsigned
int
nHeightLast
;
//! earliest time of block in file
uint64_t
nTimeFirst
;
//! latest time of block in file
uint64_t
nTimeLast
;
SERIALIZE_METHODS
(
CBlockFileInfo
,
obj
)
{
READWRITE
(
VARINT
(
obj
.
nBlocks
));
READWRITE
(
VARINT
(
obj
.
nSize
));
READWRITE
(
VARINT
(
obj
.
nUndoSize
));
READWRITE
(
VARINT
(
obj
.
nHeightFirst
));
READWRITE
(
VARINT
(
obj
.
nHeightLast
));
READWRITE
(
VARINT
(
obj
.
nTimeFirst
));
READWRITE
(
VARINT
(
obj
.
nTimeLast
));
}
void
SetNull
()
{
nBlocks
=
0
;
nSize
=
0
;
nUndoSize
=
0
;
nHeightFirst
=
0
;
nHeightLast
=
0
;
nTimeFirst
=
0
;
nTimeLast
=
0
;
}
CBlockFileInfo
()
{
SetNull
();
}
std
::
string
ToString
()
const
;
/** update statistics (does not update nSize) */
void
AddBlock
(
unsigned
int
nHeightIn
,
uint64_t
nTimeIn
)
{
if
(
nBlocks
==
0
||
nHeightFirst
>
nHeightIn
)
{
nHeightFirst
=
nHeightIn
;
}
if
(
nBlocks
==
0
||
nTimeFirst
>
nTimeIn
)
{
nTimeFirst
=
nTimeIn
;
}
nBlocks
++
;
if
(
nHeightIn
>
nHeightLast
)
{
nHeightLast
=
nHeightIn
;
}
if
(
nTimeIn
>
nTimeLast
)
{
nTimeLast
=
nTimeIn
;
}
}
};
#endif
// BITCOIN_BLOCKFILEINFO_H
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sat, Nov 23, 10:01 (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4510180
Default Alt Text
blockfileinfo.h (1 KB)
Attached To
rSTAGING Bitcoin ABC staging
Event Timeline
Log In to Comment