mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
29 lines
683 B
C++
29 lines
683 B
C++
#pragma once
|
|
|
|
#include <IO/ReadBufferFromMemory.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Allows to read from std::string-like object.
|
|
class ReadBufferFromString : public ReadBufferFromMemory
|
|
{
|
|
public:
|
|
/// std::string or something similar
|
|
template <typename S>
|
|
explicit ReadBufferFromString(const S & s) : ReadBufferFromMemory(s.data(), s.size()) {}
|
|
|
|
explicit ReadBufferFromString(std::string_view s) : ReadBufferFromMemory(s.data(), s.size()) {}
|
|
};
|
|
|
|
class ReadBufferFromOwnString : public String, public ReadBufferFromString
|
|
{
|
|
public:
|
|
template <typename S>
|
|
explicit ReadBufferFromOwnString(S && s_) : String(std::forward<S>(s_)), ReadBufferFromString(*this)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|