#pragma once #include #include namespace DB { /** Use ready file descriptor. Does not open or close a file. */ class WriteBufferFromFileDescriptor : public WriteBufferFromFileBase { public: explicit WriteBufferFromFileDescriptor( int fd_ = -1, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE, char * existing_memory = nullptr, ThrottlerPtr throttler_ = {}, size_t alignment = 0, std::string file_name_ = ""); /** Could be used before initialization if needed 'fd' was not passed to constructor. * It's not possible to change 'fd' during work. */ void setFD(int fd_) { fd = fd_; } ~WriteBufferFromFileDescriptor() override; int getFD() const { return fd; } void sync() override; /// clang-tidy wants these methods to be const, but /// they are not const semantically off_t seek(off_t offset, int whence); // NOLINT void truncate(off_t length); // NOLINT /// Name or some description of file. std::string getFileName() const override; off_t size() const; protected: void nextImpl() override; int fd; ThrottlerPtr throttler; /// If file has name contains filename, otherwise contains string "(fd=...)" std::string file_name; void finalizeImpl() override; }; }