-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsequential_file_reader.h
42 lines (32 loc) · 1.37 KB
/
sequential_file_reader.h
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
#pragma once
#include <string>
#include <cstdint>
#include <memory>
#include <functional>
// SequentialFileReader: Read a file using using mmap(). Attempt to overlap reads of the file and writes by the user's code
// by reading the next segment
class SequentialFileReader {
public:
SequentialFileReader(SequentialFileReader&&);
SequentialFileReader& operator=(SequentialFileReader&&);
~SequentialFileReader();
// TODO: Provide some way to log non-critical errors which don't prevent the actual reading
// of data, but could hurt performance
// Read the file, calling OnChunkAvailable() whenever data are available. It blocks until the reading
// is complete.
void Read(size_t max_chunk_size);
std::string GetFilePath() const
{
return m_file_path;
}
protected:
// Constructor. Attempts to open the file, and throws std::system_error if it fails to do so.
SequentialFileReader(const std::string& file_name);
// TODO: Also provide a constructor that doesn't open the file, and a separate Open method.
// OnChunkAvailable: The user needs to override this function to get called when data become available.
virtual void OnChunkAvailable(const void* data, size_t size) = 0;
private:
std::string m_file_path;
std::unique_ptr< const std::uint8_t, std::function<void(const std::uint8_t*)> > m_data;
size_t m_size;
};