mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
84 lines
2.2 KiB
C++
84 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include <map>
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
#include <Core/Defines.h>
|
|
#include <Storages/IStorage.h>
|
|
#include <Common/FileChecker.h>
|
|
#include <Common/escapeForFileName.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/** Implements a table engine that is suitable for small chunks of the log.
|
|
* It differs from StorageLog in the absence of mark files.
|
|
*/
|
|
class StorageTinyLog final : public ext::shared_ptr_helper<StorageTinyLog>, public IStorage
|
|
{
|
|
friend class TinyLogSource;
|
|
friend class TinyLogBlockOutputStream;
|
|
friend struct ext::shared_ptr_helper<StorageTinyLog>;
|
|
|
|
public:
|
|
String getName() const override { return "TinyLog"; }
|
|
|
|
Pipes 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 Context & context) override;
|
|
|
|
void rename(
|
|
const String & new_path_to_table_data,
|
|
const String & new_database_name,
|
|
const String & new_table_name,
|
|
TableStructureWriteLockHolder &) override;
|
|
|
|
CheckResults checkData(const ASTPtr & /* query */, const Context & /* context */) override;
|
|
|
|
Strings getDataPaths() const override { return {DB::fullPath(disk, table_path)}; }
|
|
|
|
void truncate(const ASTPtr &, const Context &, TableStructureWriteLockHolder &) override;
|
|
|
|
void drop(TableStructureWriteLockHolder &) override;
|
|
|
|
protected:
|
|
StorageTinyLog(
|
|
DiskPtr disk_,
|
|
const String & relative_path_,
|
|
const StorageID & table_id_,
|
|
const ColumnsDescription & columns_,
|
|
const ConstraintsDescription & constraints_,
|
|
bool attach,
|
|
size_t max_compress_block_size_);
|
|
|
|
private:
|
|
struct ColumnData
|
|
{
|
|
String data_file_path;
|
|
};
|
|
using Files = std::map<String, ColumnData>; /// file name -> column data
|
|
|
|
DiskPtr disk;
|
|
String table_path;
|
|
|
|
size_t max_compress_block_size;
|
|
|
|
Files files;
|
|
|
|
FileChecker file_checker;
|
|
mutable std::shared_mutex rwlock;
|
|
|
|
Logger * log;
|
|
|
|
void addFiles(const String & column_name, const IDataType & type);
|
|
};
|
|
|
|
}
|