mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
81 lines
2.1 KiB
C++
81 lines
2.1 KiB
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <shared_mutex>
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
#include <Poco/File.h>
|
|
|
|
#include <Storages/IStorage.h>
|
|
#include <Common/FileChecker.h>
|
|
#include <Common/escapeForFileName.h>
|
|
#include <Core/Defines.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Implements a table engine that is suitable for small chunks of the log.
|
|
* In doing so, stores all the columns in a single Native file, with a nearby index.
|
|
*/
|
|
class StorageStripeLog : public ext::shared_ptr_helper<StorageStripeLog>, public IStorage
|
|
{
|
|
friend class StripeLogBlockInputStream;
|
|
friend class StripeLogBlockOutputStream;
|
|
|
|
public:
|
|
std::string getName() const override { return "StripeLog"; }
|
|
std::string getTableName() const override { return name; }
|
|
|
|
const NamesAndTypesList & getColumnsListImpl() const override { return *columns; }
|
|
|
|
BlockInputStreams read(
|
|
const Names & column_names,
|
|
const SelectQueryInfo & query_info,
|
|
const Context & context,
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
size_t max_block_size,
|
|
unsigned num_streams) override;
|
|
|
|
BlockOutputStreamPtr write(const ASTPtr & query, const Settings & settings) override;
|
|
|
|
void rename(const String & new_path_to_db, const String & new_database_name, const String & new_table_name) override;
|
|
|
|
bool checkData() const override;
|
|
|
|
/// Data of the file.
|
|
struct ColumnData
|
|
{
|
|
Poco::File data_file;
|
|
};
|
|
using Files_t = std::map<String, ColumnData>;
|
|
|
|
std::string full_path() { return path + escapeForFileName(name) + '/';}
|
|
|
|
private:
|
|
String path;
|
|
String name;
|
|
NamesAndTypesListPtr columns;
|
|
|
|
size_t max_compress_block_size;
|
|
|
|
FileChecker file_checker;
|
|
mutable std::shared_mutex rwlock;
|
|
|
|
Logger * log;
|
|
|
|
protected:
|
|
StorageStripeLog(
|
|
const std::string & path_,
|
|
const std::string & name_,
|
|
NamesAndTypesListPtr columns_,
|
|
const NamesAndTypesList & materialized_columns_,
|
|
const NamesAndTypesList & alias_columns_,
|
|
const ColumnDefaults & column_defaults_,
|
|
bool attach,
|
|
size_t max_compress_block_size_ = DEFAULT_MAX_COMPRESS_BLOCK_SIZE);
|
|
};
|
|
|
|
}
|