-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScanFile.cpp
390 lines (318 loc) · 12.3 KB
/
ScanFile.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
#include "ScanFile.h"
#include <assert.h>
#include <algorithm>
namespace
{
// This is a dirty hack for speedup inter-thread communication on hyperthreading CPUs
// We could choose any other paid of logical CPUs based on the same physical CPU and sharing the same cache
// I'm sure it will give no effect in the current task because we are switching too rarely between threads.
const int PreferedCpuForMainThread = 0;
const int PreferedCpuForWorkerThread = PreferedCpuForMainThread + 1;
static_assert(PreferedCpuForMainThread % 2 == 0);
const DWORD ThreadPriority = THREAD_PRIORITY_TIME_CRITICAL;
# define ENABLE_THREAD_PREFERRED_AFFINITY 0
# define ENABLE_THREAD_FIXED_AFFINITY 0
# define ENABLE_THREAD_PRIORITY 0
}
CScanFile::~CScanFile()
{
this->Close();
}
bool CScanFile::Open(const wchar_t* const filename, const bool asyncMode)
{
if (filename == nullptr || this->_hFile != nullptr)
{
return false;
}
assert(this->_hAsyncEvent == nullptr);
const DWORD dwDesiredAccess = FILE_READ_DATA | FILE_READ_ATTRIBUTES; // minimal required rights
// FILE_READ_ATTRIBUTES is needed to get file size for mapping file to memory
const DWORD dwShareMode = FILE_SHARE_READ; // allow parallel reading. And do not allow appending to log. Algorithm will not work correctly in this case.
const DWORD dwCreationDisposition = OPEN_EXISTING;
const DWORD dwFlagsAndAttributes = FILE_FLAG_SEQUENTIAL_SCAN | (asyncMode ? FILE_FLAG_OVERLAPPED : 0); // read the comment below
// FILE_FLAG_SEQUENTIAL_SCAN gives a cache speed optimization for pattern when file is read once from the beginning to the end
// According to my tests FILE_FLAG_SEQUENTIAL_SCAN does no measurable impact but I would prefer to keep it here.
this->_hFile = CreateFileW(filename, dwDesiredAccess, dwShareMode, nullptr, dwCreationDisposition, dwFlagsAndAttributes, nullptr);
if (this->_hFile == INVALID_HANDLE_VALUE)
{
this->_hFile = nullptr;
return false;
}
// Init data for async IO:
this->_hAsyncEvent = CreateEventW(nullptr, TRUE, FALSE, nullptr);
if (this->_hAsyncEvent == nullptr)
{
CloseHandle(this->_hFile);
this->_hFile = nullptr;
return false;
}
this->_asyncOverlapped.hEvent = this->_hAsyncEvent;
this->_asyncFileOffset.QuadPart = 0;
this->_asyncOperationInProgress = false;
return true;
}
void CScanFile::Close()
{
this->SpinlockClean();
if (this->_pViewOfFile != nullptr)
{
UnmapViewOfFile(this->_pViewOfFile);
this->_pViewOfFile = nullptr;
}
if (this->_hFileMapping != nullptr)
{
CloseHandle(this->_hFileMapping);
this->_hFileMapping = nullptr;
}
if (this->_hFile != nullptr)
{
CloseHandle(this->_hFile);
this->_hFile = nullptr;
}
if (this->_hAsyncEvent != nullptr)
{
CloseHandle(this->_hAsyncEvent);
this->_hAsyncEvent = nullptr;
}
this->_asyncOperationInProgress = false;
}
//////////////////////////////////////////////////////////////////////////
/// Implementation of mapping file to memory
//////////////////////////////////////////////////////////////////////////
std::optional<std::string_view> CScanFile::MapToMemory()
{
if (this->_hFile == nullptr || this->_hFileMapping != nullptr)
{
return {};
}
assert(this->_pViewOfFile == nullptr);
LARGE_INTEGER fileSize = {};
const bool gotSizeOk = GetFileSizeEx(this->_hFile, &fileSize);
if (!gotSizeOk)
{
return {};
}
if (fileSize.QuadPart == 0)
{
// MSDN: An attempt to map a file with a length of 0 (zero) fails with an error code of ERROR_FILE_INVALID.
// Applications should test for files with a length of 0 (zero) and reject those files.
return std::string_view();
}
const size_t fileSizeAsSizeT = static_cast<size_t>(fileSize.QuadPart);
if (fileSize.QuadPart > SIZE_MAX)
{
// 32 bit application can have problems with mapping of big files into address space
return {};
}
this->_hFileMapping = CreateFileMappingW(this->_hFile, nullptr, PAGE_READONLY, fileSize.HighPart, fileSize.LowPart, nullptr);
if (this->_hFileMapping == nullptr)
{
return {};
}
this->_pViewOfFile = MapViewOfFile(this->_hFileMapping, FILE_MAP_READ, 0, 0, fileSizeAsSizeT);
if (this->_pViewOfFile == nullptr)
{
CloseHandle(this->_hFileMapping);
this->_hFileMapping = nullptr;
return {};
}
return std::string_view(static_cast<const char*>(this->_pViewOfFile), fileSizeAsSizeT);
}
//////////////////////////////////////////////////////////////////////////
/// Implementation of synchronous file API
//////////////////////////////////////////////////////////////////////////
__declspec(noinline) // noinline is added to help CPU profiling in release version
bool CScanFile::Read(char* const buffer, const size_t bufferLength, size_t& readBytes)
{
if (this->_hFile == nullptr || buffer == nullptr)
{
return false;
}
if (bufferLength == 0)
{
readBytes = 0;
return true;
}
const DWORD usedBufferLength = static_cast<DWORD>(min(bufferLength, MAXDWORD));
DWORD numberOfBytesRead = 0;
const bool succeeded = !!ReadFile(this->_hFile, buffer, usedBufferLength, &numberOfBytesRead, nullptr);
readBytes = numberOfBytesRead;
return !!succeeded;
}
//////////////////////////////////////////////////////////////////////////
/// Implementation of Asynchronous file API
//////////////////////////////////////////////////////////////////////////
__declspec(noinline) // noinline is added to help CPU profiling in release version
bool CScanFile::AsyncReadStart(char* const buffer, const size_t bufferLength)
{
if (this->_hFile == nullptr || buffer == nullptr || this->_asyncOperationInProgress)
{
return false;
}
assert(this->_hAsyncEvent != nullptr);
const DWORD usedBufferLength = static_cast<DWORD>(min(bufferLength, MAXDWORD));
this->_asyncOverlapped.Offset = this->_asyncFileOffset.LowPart;
this->_asyncOverlapped.OffsetHigh = this->_asyncFileOffset.HighPart;
const bool readOk = !!ReadFile(this->_hFile, buffer, usedBufferLength, nullptr, &this->_asyncOverlapped);
if (!readOk && GetLastError() != ERROR_IO_PENDING)
{
return false;
}
this->_asyncOperationInProgress = true;
return true;
}
__declspec(noinline) // noinline is added to help CPU profiling in release version
bool CScanFile::AsyncReadWait(size_t& readBytes)
{
if (!this->_asyncOperationInProgress)
{
return false;
}
assert(this->_hFile != nullptr);
assert(this->_hAsyncEvent != nullptr);
DWORD numberOfBytesRead = 0;
const bool overlappedOk = !!GetOverlappedResult(this->_hFile, &this->_asyncOverlapped, &numberOfBytesRead, TRUE);
if (!overlappedOk)
{
this->_asyncOperationInProgress = false; // I'm not sure this is correct
if (GetLastError() == ERROR_HANDLE_EOF)
{
assert(numberOfBytesRead == 0);
// Emulate usual ReadFile() logic when reading at the end succeeds with zero bytes read
readBytes = 0;
return true;
}
return false;
}
this->_asyncFileOffset.QuadPart += numberOfBytesRead;
this->_asyncOperationInProgress = false;
readBytes = numberOfBytesRead;
return true;
}
//////////////////////////////////////////////////////////////////////////
/// Implementation of file API executed in a separate thread with the help of spinlocks
//////////////////////////////////////////////////////////////////////////
bool CScanFile::SpinlockInit()
{
if (this->_hThread != nullptr)
{
return false;
}
this->_threadFinishSpinlock.store(false, std::memory_order_relaxed);
this->_threadOperationReadStartSpinlock.store(false, std::memory_order_relaxed);
this->_threadOperationReadCompletedSpinlock.store(false, std::memory_order_relaxed);
this->_pThreadReadBuffer = nullptr;
this->_threadReadBufferSize = 0;
this->_threadActuallyReadBytes = 0;
this->_threadReadSucceeded = false;
// no need to synchronize before worker thread is started
// This is a dirty hack for speedup inter-thread communication on hyperthreading CPUs
#if ENABLE_THREAD_PREFERRED_AFFINITY
SetThreadIdealProcessor(GetCurrentThread(), PreferedCpuForMainThread);
#endif
#if ENABLE_THREAD_FIXED_AFFINITY
SetThreadAffinityMask(GetCurrentThread(), 1 << PreferedCpuForMainThread);
#endif
#if ENABLE_THREAD_PRIORITY
SetThreadPriority(GetCurrentThread(), ThreadPriority);
#endif
using ThreadProcType = unsigned __stdcall(void*);
ThreadProcType* const threadProc = [](void* p) -> unsigned
{
// This is a dirty hack for speedup inter-thread communication on hyperthreading CPUs
#if ENABLE_THREAD_PREFERRED_AFFINITY
SetThreadIdealProcessor(GetCurrentThread(), PreferedCpuForWorkerThread);
#endif
#if ENABLE_THREAD_FIXED_AFFINITY
SetThreadAffinityMask(GetCurrentThread(), 1 << PreferedCpuForWorkerThread);
#endif
#if ENABLE_THREAD_PRIORITY
SetThreadPriority(GetCurrentThread(), ThreadPriority);
#endif
CScanFile* const that = static_cast<CScanFile*>(p);
that->SpinlockThreadProc();
_endthreadex(0);
return 0;
};
unsigned threadID = 0;
this->_hThread = reinterpret_cast<HANDLE>(_beginthreadex(nullptr, 0, threadProc, this, 0, &threadID));
if (this->_hThread == nullptr)
{
return false;
}
return true;
}
void CScanFile::SpinlockClean()
{
if (this->_hThread != nullptr)
{
this->_threadFinishSpinlock.store(true, std::memory_order_relaxed); // we won't reorder after WaitForSingleObject
WaitForSingleObject(this->_hThread, INFINITE); // ignore return value in this case
this->_hThread = nullptr;
}
}
__declspec(noinline) // noinline is added to help CPU profiling in release version
bool CScanFile::SpinlockReadStart(char* const buffer, const size_t bufferLength)
{
if (this->_hThread == nullptr || this->_threadOperationInProgress)
{
return false;
}
this->_threadOperationInProgress = true;
assert(this->_threadOperationReadStartSpinlock.load(std::memory_order_relaxed) == false);
assert(this->_threadOperationReadCompletedSpinlock.load(std::memory_order_relaxed) == false);
this->_pThreadReadBuffer = buffer;
this->_threadReadBufferSize = bufferLength;
this->_threadActuallyReadBytes = 0;
this->_threadReadSucceeded = false;
this->_threadOperationReadStartSpinlock.store(true, std::memory_order_release);
return true;
}
__declspec(noinline) // noinline is added to help CPU profiling in release version
bool CScanFile::SpinlockReadWait(size_t& readBytes)
{
if (this->_hThread == nullptr || !this->_threadOperationInProgress)
{
return false;
}
this->_threadOperationInProgress = false;
// Wait for _threadOperationReadCompletedSpinlock == True and reset it:
while (true)
{
bool operationCompleted = true;
if (this->_threadOperationReadCompletedSpinlock.compare_exchange_weak(operationCompleted, false, std::memory_order_acquire, std::memory_order_relaxed))
{
break;
}
}
readBytes = this->_threadActuallyReadBytes;
if (!this->_threadReadSucceeded)
{
return false;
}
return true;
}
void CScanFile::SpinlockThreadProc()
{
while (true)
{
if (this->_threadFinishSpinlock.load(std::memory_order_relaxed))
{
// thread exit signal is caught
break;
}
// Check for _threadOperationReadStartSpinlock == True and reset it:
bool operationStarted = true;
if (!this->_threadOperationReadStartSpinlock.compare_exchange_weak(operationStarted, false, std::memory_order_acquire, std::memory_order_relaxed))
{
// nothing to do
continue;
}
size_t readBytes = 0;
const bool readOk = this->Read(this->_pThreadReadBuffer, this->_threadReadBufferSize, readBytes);
this->_threadActuallyReadBytes = readBytes;
this->_threadReadSucceeded = readOk;
this->_threadOperationReadCompletedSpinlock.store(true, std::memory_order_release);
}
}
//////////////////////////////////////////////////////////////////////////