aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/IO/ReadBufferFromMemory.h
blob: ad96e4bfa28623e41c27aa1c4bac7cd6e1afe62c (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
#pragma once

#include "SeekableReadBuffer.h"


namespace DB
{
/** Allows to read from memory range.
  * In comparison with just ReadBuffer, it only adds convenient constructors, that do const_cast.
  * In fact, ReadBuffer will not modify data in buffer, but it requires non-const pointer.
  */
class ReadBufferFromMemory : public SeekableReadBuffer
{
public:
    template <typename CharT>
    requires (sizeof(CharT) == 1)
    ReadBufferFromMemory(const CharT * buf, size_t size)
        : SeekableReadBuffer(const_cast<char *>(reinterpret_cast<const char *>(buf)), size, 0) {}
    explicit ReadBufferFromMemory(const std::string_view&& str)
        : SeekableReadBuffer(const_cast<char *>(str.data()), str.size(), 0) {}

    off_t seek(off_t off, int whence) override;

    off_t getPosition() override;
};

}