ExternalTable.h 2.7 KB
Newer Older
1 2 3
#pragma once

#include <Client/Connection.h>
4
#include <Core/Block.h>
5
#include <IO/ReadBuffer.h>
6 7 8 9 10 11
#include <Server/HTTP/HTMLForm.h>

#include <iosfwd>
#include <memory>
#include <string>
#include <vector>
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


namespace Poco
{
    namespace Net
    {
        class NameValueCollection;
        class MessageHeader;
    }
}

namespace boost
{
    namespace program_options
    {
        class variables_map;
    }
}


namespace DB
{

class Context;


/// The base class containing the basic information about external table and
/// basic functions for extracting this information from text fields.
class BaseExternalTable
{
public:
    std::string file;       /// File with data or '-' if stdin
    std::string name;       /// The name of the table
    std::string format;     /// Name of the data storage format

    /// Description of the table structure: (column name, data type name)
    std::vector<std::pair<std::string, std::string>> structure;

    std::unique_ptr<ReadBuffer> read_buffer;
    Block sample_block;

53
    virtual ~BaseExternalTable() = default;
54 55 56 57 58

    /// Initialize read_buffer, depending on the data source. By default, does nothing.
    virtual void initReadBuffer() {}

    /// Get the table data - a pair (a stream with the contents of the table, the name of the table)
59
    ExternalTableDataPtr getData(const Context & context);
60 61 62

protected:
    /// Clear all accumulated information
A
Alexey Milovidov 已提交
63
    void clear();
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83

    /// Construct the `structure` vector from the text field `structure`
    virtual void parseStructureFromStructureField(const std::string & argument);

    /// Construct the `structure` vector from the text field `types`
    virtual void parseStructureFromTypesField(const std::string & argument);

private:
    /// Initialize sample_block according to the structure of the table stored in the `structure`
    void initSampleBlock();
};


/// Parsing of external table used in the tcp client.
class ExternalTable : public BaseExternalTable
{
public:
    void initReadBuffer() override;

    /// Extract parameters from variables_map, which is built on the client command line
84
    explicit ExternalTable(const boost::program_options::variables_map & external_options);
85 86 87 88 89 90
};


/// Parsing of external table used when sending tables via http
/// The `handlePart` function will be called for each table passed,
/// so it's also necessary to call `clean` at the end of the `handlePart`.
91
class ExternalTablesHandler : public HTMLForm::PartHandler, BaseExternalTable
92 93 94 95
{
public:
    ExternalTablesHandler(Context & context_, const Poco::Net::NameValueCollection & params_) : context(context_), params(params_) {}

96
    void handlePart(const Poco::Net::MessageHeader & header, ReadBuffer & stream) override;
97 98 99 100 101 102 103 104

private:
    Context & context;
    const Poco::Net::NameValueCollection & params;
};


}