Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2022 The Bitcoin Core developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <stdexcept>
7 : :
8 : : #include <flatfile.h>
9 : : #include <logging.h>
10 : : #include <tinyformat.h>
11 : : #include <util/fs_helpers.h>
12 : :
13 : 321368 : FlatFileSeq::FlatFileSeq(fs::path dir, const char* prefix, size_t chunk_size) :
14 : 321368 : m_dir(std::move(dir)),
15 : 321368 : m_prefix(prefix),
16 : 321368 : m_chunk_size(chunk_size)
17 : : {
18 [ + - ]: 321368 : if (chunk_size == 0) {
19 [ # # # # ]: 0 : throw std::invalid_argument("chunk_size must be positive");
20 : : }
21 : 321368 : }
22 : :
23 : 8533 : std::string FlatFilePos::ToString() const
24 : : {
25 : 8533 : return strprintf("FlatFilePos(nFile=%i, nPos=%i)", nFile, nPos);
26 : : }
27 : :
28 : 228521 : fs::path FlatFileSeq::FileName(const FlatFilePos& pos) const
29 : : {
30 [ + - + - : 228521 : return m_dir / fs::u8path(strprintf("%s%05u.dat", m_prefix, pos.nFile));
- + ]
31 : 0 : }
32 : :
33 : 237031 : FILE* FlatFileSeq::Open(const FlatFilePos& pos, bool read_only)
34 : : {
35 [ + + ]: 237031 : if (pos.IsNull()) {
36 : 8510 : return nullptr;
37 : : }
38 : 228521 : fs::path path = FileName(pos);
39 [ + - + - ]: 228521 : fs::create_directories(path.parent_path());
40 [ + - ]: 228521 : FILE* file = fsbridge::fopen(path, read_only ? "rb": "rb+");
41 [ + + + - ]: 228521 : if (!file && !read_only)
42 [ + - ]: 1609 : file = fsbridge::fopen(path, "wb+");
43 [ + - ]: 228521 : if (!file) {
44 [ # # # # : 0 : LogPrintf("Unable to open file %s\n", fs::PathToString(path));
# # # # ]
45 : 0 : return nullptr;
46 : : }
47 [ + + + - : 228521 : if (pos.nPos && fseek(file, pos.nPos, SEEK_SET)) {
+ - ]
48 [ # # # # : 0 : LogPrintf("Unable to seek to position %u of %s\n", pos.nPos, fs::PathToString(path));
# # # # ]
49 [ # # ]: 0 : fclose(file);
50 : 0 : return nullptr;
51 : : }
52 : 228521 : return file;
53 : 237031 : }
54 : :
55 : 85790 : size_t FlatFileSeq::Allocate(const FlatFilePos& pos, size_t add_size, bool& out_of_space)
56 : : {
57 : 85790 : out_of_space = false;
58 : :
59 : 85790 : unsigned int n_old_chunks = (pos.nPos + m_chunk_size - 1) / m_chunk_size;
60 : 85790 : unsigned int n_new_chunks = (pos.nPos + add_size + m_chunk_size - 1) / m_chunk_size;
61 [ + + ]: 85790 : if (n_new_chunks > n_old_chunks) {
62 : 1453 : size_t old_size = pos.nPos;
63 : 1453 : size_t new_size = n_new_chunks * m_chunk_size;
64 : 1453 : size_t inc_size = new_size - old_size;
65 : :
66 [ + - ]: 1453 : if (CheckDiskSpace(m_dir, inc_size)) {
67 : 1453 : FILE *file = Open(pos);
68 [ + - ]: 1453 : if (file) {
69 [ + + + - : 1453 : LogPrint(BCLog::VALIDATION, "Pre-allocating up to position 0x%x in %s%05u.dat\n", new_size, m_prefix, pos.nFile);
+ - - + ]
70 : 1453 : AllocateFileRange(file, pos.nPos, inc_size);
71 : 1453 : fclose(file);
72 : 1453 : return inc_size;
73 : : }
74 : 173 : } else {
75 : 0 : out_of_space = true;
76 : : }
77 : 0 : }
78 : 84337 : return 0;
79 : 85790 : }
80 : :
81 : 100072 : bool FlatFileSeq::Flush(const FlatFilePos& pos, bool finalize)
82 : : {
83 : 100072 : FILE* file = Open(FlatFilePos(pos.nFile, 0)); // Avoid fseek to nPos
84 [ + - ]: 100072 : if (!file) {
85 : 0 : return error("%s: failed to open file %d", __func__, pos.nFile);
86 : : }
87 [ - + # # ]: 100072 : if (finalize && !TruncateFile(file, pos.nPos)) {
88 : 0 : fclose(file);
89 : 0 : return error("%s: failed to truncate file %d", __func__, pos.nFile);
90 : : }
91 [ + - ]: 100072 : if (!FileCommit(file)) {
92 : 0 : fclose(file);
93 : 0 : return error("%s: failed to commit file %d", __func__, pos.nFile);
94 : : }
95 : 100072 : DirectoryCommit(m_dir);
96 : :
97 : 100072 : fclose(file);
98 : 100072 : return true;
99 : 100072 : }
|