-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathIAsyncFile.actor.cpp
203 lines (179 loc) · 6.89 KB
/
IAsyncFile.actor.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
/*
* IAsyncFile.actor.cpp
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013-2024 Apple Inc. and the FoundationDB project authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "flow/IAsyncFile.h"
#include "flow/Error.h"
#include "flow/Knobs.h"
#include "flow/Platform.h"
#include "flow/UnitTest.h"
#include <iostream>
#include "flow/actorcompiler.h" // has to be last include
IAsyncFile::~IAsyncFile() = default;
const static unsigned int ONE_MEGABYTE = 1 << 20;
const static unsigned int FOUR_KILOBYTES = 4 << 10;
ACTOR static Future<Void> zeroRangeHelper(Reference<IAsyncFile> f, int64_t offset, int64_t length, int fixedbyte) {
state int64_t pos = offset;
state void* zeros = aligned_alloc(ONE_MEGABYTE, ONE_MEGABYTE);
memset(zeros, fixedbyte, ONE_MEGABYTE);
while (pos < offset + length) {
state int len = std::min<int64_t>(ONE_MEGABYTE, offset + length - pos);
wait(f->write(zeros, len, pos));
pos += len;
wait(yield());
}
aligned_free(zeros);
return Void();
}
Future<Void> IAsyncFile::zeroRange(int64_t offset, int64_t length) {
return uncancellable(zeroRangeHelper(Reference<IAsyncFile>::addRef(this), offset, length, 0));
}
TEST_CASE("/fileio/zero") {
state std::string filename = "/tmp/__ZEROJUNK__";
state Reference<IAsyncFile> f = wait(IAsyncFileSystem::filesystem()->open(
filename, IAsyncFile::OPEN_ATOMIC_WRITE_AND_CREATE | IAsyncFile::OPEN_CREATE | IAsyncFile::OPEN_READWRITE, 0));
// Verify that we can grow a file with zero().
wait(f->sync());
wait(f->zeroRange(0, ONE_MEGABYTE));
int64_t size = wait(f->size());
ASSERT(ONE_MEGABYTE == size);
// Verify that zero() does, in fact, zero.
wait(zeroRangeHelper(f, 0, ONE_MEGABYTE, 0xff));
wait(f->zeroRange(0, ONE_MEGABYTE));
state uint8_t* page = (uint8_t*)malloc(FOUR_KILOBYTES);
int n = wait(f->read(page, FOUR_KILOBYTES, 0));
ASSERT(n == FOUR_KILOBYTES);
for (int i = 0; i < FOUR_KILOBYTES; i++) {
ASSERT(page[i] == 0);
}
free(page);
// Destruct our file and remove it.
f.clear();
wait(IAsyncFileSystem::filesystem()->deleteFile(filename, true));
return Void();
}
ACTOR static Future<Void> incrementalDeleteHelper(std::string filename,
bool mustBeDurable,
int64_t truncateAmt,
double interval) {
state Reference<IAsyncFile> file;
state int64_t remainingFileSize;
state bool exists = fileExists(filename);
if (exists) {
Reference<IAsyncFile> f = wait(IAsyncFileSystem::filesystem()->open(
filename, IAsyncFile::OPEN_READWRITE | IAsyncFile::OPEN_UNCACHED | IAsyncFile::OPEN_UNBUFFERED, 0));
file = f;
int64_t fileSize = wait(file->size());
remainingFileSize = fileSize;
}
wait(IAsyncFileSystem::filesystem()->deleteFile(filename, mustBeDurable));
if (exists) {
for (; remainingFileSize > 0; remainingFileSize -= truncateAmt) {
wait(file->truncate(remainingFileSize));
wait(file->sync());
wait(delay(interval));
}
}
return Void();
}
Future<Void> IAsyncFileSystem::incrementalDeleteFile(const std::string& filename, bool mustBeDurable) {
return uncancellable(incrementalDeleteHelper(filename,
mustBeDurable,
FLOW_KNOBS->INCREMENTAL_DELETE_TRUNCATE_AMOUNT,
FLOW_KNOBS->INCREMENTAL_DELETE_INTERVAL));
}
TEST_CASE("/fileio/incrementalDelete") {
// about 5GB
state int64_t fileSize = 5e9;
state std::string filename = "/tmp/__JUNK__";
state Reference<IAsyncFile> f = wait(IAsyncFileSystem::filesystem()->open(
filename, IAsyncFile::OPEN_ATOMIC_WRITE_AND_CREATE | IAsyncFile::OPEN_CREATE | IAsyncFile::OPEN_READWRITE, 0));
wait(f->sync());
wait(f->truncate(fileSize));
// close the file by deleting the reference
f.clear();
wait(IAsyncFileSystem::filesystem()->incrementalDeleteFile(filename, true));
return Void();
}
TEST_CASE("/fileio/rename") {
// create a file
state int64_t fileSize = 100e6;
state std::string filename = "/tmp/__JUNK__." + deterministicRandom()->randomUniqueID().toString();
state std::string renamedFile = "/tmp/__RENAMED_JUNK__." + deterministicRandom()->randomUniqueID().toString();
state std::unique_ptr<char[]> data(new char[4096]);
state std::unique_ptr<char[]> readData(new char[4096]);
state Reference<IAsyncFile> f = wait(IAsyncFileSystem::filesystem()->open(
filename,
IAsyncFile::OPEN_ATOMIC_WRITE_AND_CREATE | IAsyncFile::OPEN_CREATE | IAsyncFile::OPEN_READWRITE,
0644));
;
wait(f->sync());
wait(f->truncate(fileSize));
memset(data.get(), 0, 4096);
// write a random string at the beginning of the file which we can verify after rename
for (int i = 0; i < 16; ++i) {
data[i] = deterministicRandom()->randomAlphaNumeric();
}
// write first and block
wait(f->write(data.get(), 4096, 0));
wait(f->write(data.get(), 4096, fileSize - 4096));
wait(f->sync());
// close file
f.clear();
wait(IAsyncFileSystem::filesystem()->renameFile(filename, renamedFile));
Reference<IAsyncFile> _f = wait(IAsyncFileSystem::filesystem()->open(renamedFile, IAsyncFile::OPEN_READONLY, 0));
f = _f;
// verify rename happened
bool renamedExists = false;
auto bName = basename(renamedFile);
auto files = platform::listFiles("/tmp/");
for (const auto& file : files) {
if (file == bName) {
renamedExists = true;
}
ASSERT(file != filename);
}
ASSERT(renamedExists);
// verify magic string at beginning of file
int length = wait(f->read(readData.get(), 4096, 0));
ASSERT(length == 4096);
ASSERT(memcmp(readData.get(), data.get(), 4096) == 0);
// close the file
f.clear();
// clean up
wait(IAsyncFileSystem::filesystem()->deleteFile(renamedFile, true));
return Void();
}
// Truncating to extend size should zero the new data
TEST_CASE("/fileio/truncateAndRead") {
state std::string filename = "/tmp/__JUNK__";
state Reference<IAsyncFile> f = wait(IAsyncFileSystem::filesystem()->open(
filename, IAsyncFile::OPEN_ATOMIC_WRITE_AND_CREATE | IAsyncFile::OPEN_CREATE | IAsyncFile::OPEN_READWRITE, 0));
state std::array<char, 4096> data;
wait(f->sync());
wait(f->truncate(4096));
int length = wait(f->read(&data[0], 4096, 0));
ASSERT(length == 4096);
for (auto c : data) {
ASSERT(c == '\0');
}
// close the file by deleting the reference
f.clear();
wait(IAsyncFileSystem::filesystem()->incrementalDeleteFile(filename, true));
return Void();
}