blob: fa899cf2c5ee521b6731c60f9d1ecf8eab63e036 (
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
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
|
#pragma once
#include <IO/ReadBufferFromFileBase.h>
#include <IO/BufferWithOwnMemory.h>
#include <IO/ReadSettings.h>
#include <Interpreters/Context.h>
#include <Poco/Net/HTTPBasicCredentials.h>
namespace DB
{
/* Read buffer, which reads via http, but is used as ReadBufferFromFileBase.
* Used to read files, hosted on a web server with static files.
*/
class ReadBufferFromWebServer : public ReadBufferFromFileBase
{
public:
explicit ReadBufferFromWebServer(
const String & url_,
ContextPtr context_,
const ReadSettings & settings_ = {},
bool use_external_buffer_ = false,
size_t read_until_position = 0);
bool nextImpl() override;
off_t seek(off_t off, int whence) override;
off_t getPosition() override;
String getFileName() const override { return url; }
void setReadUntilPosition(size_t position) override;
size_t getFileOffsetOfBufferEnd() const override { return offset; }
bool supportsRightBoundedReads() const override { return true; }
private:
std::unique_ptr<ReadBuffer> initialize();
Poco::Logger * log;
ContextPtr context;
const String url;
size_t buf_size;
std::unique_ptr<ReadBuffer> impl;
ReadSettings read_settings;
Poco::Net::HTTPBasicCredentials credentials{};
bool use_external_buffer;
off_t offset = 0;
off_t read_until_position = 0;
};
}
|