mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
42 lines
932 B
C++
42 lines
932 B
C++
#include <iostream>
|
|
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
#include <DB/IO/WriteBufferFromFileDescriptor.h>
|
|
#include <DB/IO/ReadBufferFromFileDescriptor.h>
|
|
#include <DB/IO/CompressedWriteBuffer.h>
|
|
#include <DB/IO/CompressedReadBuffer.h>
|
|
#include <DB/IO/copyData.h>
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
if (argc > 2 || (argc == 2 && strcmp(argv[1], "-d")))
|
|
{
|
|
std::cerr << "Usage: " << argv[0] << " [-d] < in > out" << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
Poco::SharedPtr<DB::ReadBuffer> rb = new DB::ReadBufferFromFileDescriptor(STDIN_FILENO);
|
|
Poco::SharedPtr<DB::WriteBuffer> wb = new DB::WriteBufferFromFileDescriptor(STDOUT_FILENO);
|
|
Poco::SharedPtr<DB::ReadBuffer> from;
|
|
Poco::SharedPtr<DB::WriteBuffer> to;
|
|
|
|
if (argc == 1)
|
|
{
|
|
/// Сжатие
|
|
from = rb;
|
|
to = new DB::CompressedWriteBuffer(*wb);
|
|
}
|
|
else
|
|
{
|
|
/// Разжатие
|
|
from = new DB::CompressedReadBuffer(*rb);
|
|
to = wb;
|
|
}
|
|
|
|
DB::copyData(*from, *to);
|
|
|
|
return 0;
|
|
}
|