-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMigrationTransaction.cpp
165 lines (139 loc) · 4.15 KB
/
MigrationTransaction.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// bt-migrate, torrent state migration tool
// Copyright (C) 2014 Mike Gelfand <[email protected]>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "MigrationTransaction.h"
#include "Common/Exception.h"
#include "Common/Logger.h"
#include <fmt/chrono.h>
#include <fmt/format.h>
#include <fmt/std.h>
#include <chrono>
#include <filesystem>
#include <fstream>
#include <locale>
#include <sstream>
namespace fs = std::filesystem;
MigrationTransaction::MigrationTransaction(bool writeThrough, bool dryRun) :
m_writeThrough(writeThrough),
m_dryRun(dryRun),
m_transactionId(fmt::format("{:%FT%T%z}", std::chrono::system_clock::now())),
m_safePaths(),
m_safePathsMutex()
{
//
}
MigrationTransaction::~MigrationTransaction() noexcept(false)
{
if (m_writeThrough || m_dryRun)
{
return;
}
if (m_safePaths.empty())
{
return;
}
Logger(Logger::Info) << "Reverting changes";
for (fs::path const& safePath : m_safePaths)
{
if (!fs::exists(safePath) && fs::exists(GetBackupPath(safePath)))
{
fs::rename(GetBackupPath(safePath), safePath);
}
fs::remove(GetTemporaryPath(safePath));
}
}
void MigrationTransaction::Commit()
{
if (m_writeThrough || m_dryRun)
{
return;
}
Logger(Logger::Info) << "Committing changes";
for (fs::path const& safePath : m_safePaths)
{
if (fs::exists(safePath))
{
fs::rename(safePath, GetBackupPath(safePath));
}
fs::rename(GetTemporaryPath(safePath), safePath);
}
m_safePaths.clear();
}
IReadStreamPtr MigrationTransaction::GetReadStream(fs::path const& path) const
{
auto result = std::make_unique<std::ifstream>();
result->exceptions(std::ios_base::failbit | std::ios_base::badbit);
try
{
if (m_safePaths.find(path) != m_safePaths.end())
{
result->open(GetTemporaryPath(path), std::ios_base::in | std::ios_base::binary);
}
else
{
result->open(path, std::ios_base::in | std::ios_base::binary);
}
}
catch (std::exception const&)
{
throw Exception(fmt::format("Unable to open file for reading: {}", path));
}
return result;
}
IWriteStreamPtr MigrationTransaction::GetWriteStream(fs::path const& path)
{
static std::string const BlackHoleFilename =
#ifdef _WIN32
"nul";
#else
"/dev/null";
#endif
auto result = std::make_unique<std::ofstream>();
result->exceptions(std::ios_base::failbit | std::ios_base::badbit);
try
{
if (m_dryRun)
{
result->open(BlackHoleFilename, std::ios_base::out | std::ios_base::binary);
}
else if (m_writeThrough)
{
result->open(path, std::ios_base::out | std::ios_base::binary | std::ios_base::trunc);
}
else
{
std::lock_guard<std::mutex> lock(m_safePathsMutex);
result->open(GetTemporaryPath(path), std::ios_base::out | std::ios_base::binary | std::ios_base::trunc);
m_safePaths.insert(path);
}
}
catch (std::exception const&)
{
throw Exception(fmt::format("Unable to open file for writing: {}", path));
}
return result;
}
fs::path MigrationTransaction::GetTemporaryPath(fs::path const& path) const
{
fs::path result = path;
result += ".tmp." + m_transactionId;
return result;
}
fs::path MigrationTransaction::GetBackupPath(fs::path const& path) const
{
fs::path result = path;
result += ".bak." + m_transactionId;
return result;
}