mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
41 lines
810 B
C++
41 lines
810 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/** Struct containing a pipe with lazy initialization.
|
|
* Use `open` and `close` methods to manipulate pipe and `fds_rw` field to access
|
|
* pipe's file descriptors.
|
|
*/
|
|
struct LazyPipeFDs
|
|
{
|
|
int fds_rw[2] = {-1, -1};
|
|
|
|
void open();
|
|
void close();
|
|
|
|
/// Set O_NONBLOCK to different ends of pipe preserving existing flags.
|
|
/// Throws an exception if fcntl was not successful.
|
|
void setNonBlockingWrite();
|
|
void setNonBlockingRead();
|
|
void setNonBlockingReadWrite();
|
|
|
|
void tryIncreaseSize(int desired_size);
|
|
|
|
~LazyPipeFDs();
|
|
};
|
|
|
|
|
|
/** Struct which opens new pipe on creation and closes it on destruction.
|
|
* Use `fds_rw` field to access pipe's file descriptors.
|
|
*/
|
|
struct PipeFDs : public LazyPipeFDs
|
|
{
|
|
PipeFDs();
|
|
};
|
|
|
|
}
|