blob: ff84f81610a20563fe306b36a4a11636cb0a9f0f (
plain) (
blame)
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
|
#pragma once
#include <IO/ReadBufferFromFileBase.h>
#include <IO/MMappedFileCache.h>
#include <IO/MMapReadBufferFromFileDescriptor.h>
namespace DB
{
class MMapReadBufferFromFileWithCache : public ReadBufferFromFileBase
{
public:
MMapReadBufferFromFileWithCache(MMappedFileCache & cache, const std::string & file_name, size_t offset, size_t length);
/// Map till end of file.
MMapReadBufferFromFileWithCache(MMappedFileCache & cache, const std::string & file_name, size_t offset);
off_t getPosition() override;
std::string getFileName() const override;
off_t seek(off_t offset, int whence) override;
private:
MMappedFileCache::MappedPtr mapped;
void init();
};
}
|