Bitcoin ABC  0.26.3
P2P Digital Currency
flatfile.cpp
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2019 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 <flatfile.h>
7 #include <logging.h>
8 #include <tinyformat.h>
9 #include <util/system.h>
10 
11 #include <stdexcept>
12 
13 FlatFileSeq::FlatFileSeq(fs::path dir, const char *prefix, size_t chunk_size)
14  : m_dir(std::move(dir)), m_prefix(prefix), m_chunk_size(chunk_size) {
15  if (chunk_size == 0) {
16  throw std::invalid_argument("chunk_size must be positive");
17  }
18 }
19 
20 std::string FlatFilePos::ToString() const {
21  return strprintf("FlatFilePos(nFile=%i, nPos=%i)", nFile, nPos);
22 }
23 
25  return m_dir / strprintf("%s%05u.dat", m_prefix, pos.nFile);
26 }
27 
28 FILE *FlatFileSeq::Open(const FlatFilePos &pos, bool read_only) {
29  if (pos.IsNull()) {
30  return nullptr;
31  }
32  fs::path path = FileName(pos);
33  fs::create_directories(path.parent_path());
34  FILE *file = fsbridge::fopen(path, read_only ? "rb" : "rb+");
35  if (!file && !read_only) {
36  file = fsbridge::fopen(path, "wb+");
37  }
38  if (!file) {
39  LogPrintf("Unable to open file %s\n", fs::PathToString(path));
40  return nullptr;
41  }
42  if (pos.nPos && fseek(file, pos.nPos, SEEK_SET)) {
43  LogPrintf("Unable to seek to position %u of %s\n", pos.nPos,
44  fs::PathToString(path));
45  fclose(file);
46  return nullptr;
47  }
48  return file;
49 }
50 
51 size_t FlatFileSeq::Allocate(const FlatFilePos &pos, size_t add_size,
52  bool &out_of_space) {
53  out_of_space = false;
54 
55  unsigned int n_old_chunks = (pos.nPos + m_chunk_size - 1) / m_chunk_size;
56  unsigned int n_new_chunks =
57  (pos.nPos + add_size + m_chunk_size - 1) / m_chunk_size;
58  if (n_new_chunks > n_old_chunks) {
59  size_t old_size = pos.nPos;
60  size_t new_size = n_new_chunks * m_chunk_size;
61  size_t inc_size = new_size - old_size;
62 
63  if (CheckDiskSpace(m_dir, inc_size)) {
64  FILE *file = Open(pos);
65  if (file) {
67  "Pre-allocating up to position 0x%x in %s%05u.dat\n",
68  new_size, m_prefix, pos.nFile);
69  AllocateFileRange(file, pos.nPos, inc_size);
70  fclose(file);
71  return inc_size;
72  }
73  } else {
74  out_of_space = true;
75  }
76  }
77  return 0;
78 }
79 
80 bool FlatFileSeq::Flush(const FlatFilePos &pos, bool finalize) {
81  // Avoid fseek to nPos
82  FILE *file = Open(FlatFilePos(pos.nFile, 0));
83  if (!file) {
84  return error("%s: failed to open file %d", __func__, pos.nFile);
85  }
86  if (finalize && !TruncateFile(file, pos.nPos)) {
87  fclose(file);
88  return error("%s: failed to truncate file %d", __func__, pos.nFile);
89  }
90  if (!FileCommit(file)) {
91  fclose(file);
92  return error("%s: failed to commit file %d", __func__, pos.nFile);
93  }
94 
95  fclose(file);
96  return true;
97 }
fs::path FileName(const FlatFilePos &pos) const
Get the name of the file at the given position.
Definition: flatfile.cpp:24
const fs::path m_dir
Definition: flatfile.h:51
const size_t m_chunk_size
Definition: flatfile.h:53
size_t Allocate(const FlatFilePos &pos, size_t add_size, bool &out_of_space)
Allocate additional space in a file after the given starting position.
Definition: flatfile.cpp:51
bool Flush(const FlatFilePos &pos, bool finalize=false)
Commit a file to disk, and optionally truncate off extra pre-allocated bytes if final.
Definition: flatfile.cpp:80
const char *const m_prefix
Definition: flatfile.h:52
FlatFileSeq(fs::path dir, const char *prefix, size_t chunk_size)
Constructor.
Definition: flatfile.cpp:13
FILE * Open(const FlatFilePos &pos, bool read_only=false)
Open a handle to the file at the given position.
Definition: flatfile.cpp:28
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:30
#define LogPrint(category,...)
Definition: logging.h:210
#define LogPrintf(...)
Definition: logging.h:206
@ VALIDATION
Definition: logging.h:61
static bool create_directories(const std::filesystem::path &p)
Create directory (and if necessary its parents), unless the leaf directory already exists or is a sym...
Definition: fs.h:179
static std::string PathToString(const path &path)
Convert path object to byte string.
Definition: fs.h:142
FILE * fopen(const fs::path &p, const char *mode)
Definition: fs.cpp:28
Implement std::hash so RCUPtr can be used as a key for maps or sets.
Definition: rcu.h:257
const char * prefix
Definition: rest.cpp:819
int nFile
Definition: flatfile.h:15
std::string ToString() const
Definition: flatfile.cpp:20
unsigned int nPos
Definition: flatfile.h:16
bool IsNull() const
Definition: flatfile.h:40
void AllocateFileRange(FILE *file, unsigned int offset, unsigned int length)
This function tries to make a particular range of a file allocated (corresponding to disk space) it i...
Definition: system.cpp:1306
bool CheckDiskSpace(const fs::path &dir, uint64_t additional_bytes)
Definition: system.cpp:145
bool TruncateFile(FILE *file, unsigned int length)
Definition: system.cpp:1267
bool FileCommit(FILE *file)
Definition: system.cpp:1231
bool error(const char *fmt, const Args &...args)
Definition: system.h:45
#define strprintf
Format arguments and return the string or write to given std::ostream (see tinyformat::format doc for...
Definition: tinyformat.h:1202