2018-08-17 16:41:51 +03:00
|
|
|
//
|
2023-01-01 00:28:08 +03:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
|
2018-08-17 16:41:51 +03:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
2018-09-07 03:41:21 +03:00
|
|
|
|
2018-09-10 21:45:34 +03:00
|
|
|
#include "td/utils/buffer.h"
|
2018-09-12 06:26:05 +03:00
|
|
|
#include "td/utils/common.h"
|
2018-09-10 21:45:34 +03:00
|
|
|
#include "td/utils/port/detail/PollableFd.h"
|
2018-08-17 16:41:51 +03:00
|
|
|
#include "td/utils/port/FileFd.h"
|
2018-09-12 06:26:05 +03:00
|
|
|
#include "td/utils/Status.h"
|
|
|
|
|
|
|
|
#include <limits>
|
2018-09-27 04:19:03 +03:00
|
|
|
#include <memory>
|
2018-08-17 16:41:51 +03:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
FileFd &Stdin();
|
|
|
|
FileFd &Stdout();
|
|
|
|
FileFd &Stderr();
|
|
|
|
|
2018-09-10 19:21:34 +03:00
|
|
|
namespace detail {
|
|
|
|
class BufferedStdinImpl;
|
|
|
|
class BufferedStdinImplDeleter {
|
2018-09-10 18:09:08 +03:00
|
|
|
public:
|
2018-09-10 19:21:34 +03:00
|
|
|
void operator()(BufferedStdinImpl *impl);
|
|
|
|
};
|
|
|
|
} // namespace detail
|
2018-09-10 18:09:08 +03:00
|
|
|
|
2018-09-10 19:21:34 +03:00
|
|
|
class BufferedStdin {
|
|
|
|
public:
|
|
|
|
BufferedStdin();
|
|
|
|
BufferedStdin(const BufferedStdin &) = delete;
|
|
|
|
BufferedStdin &operator=(const BufferedStdin &) = delete;
|
2021-10-18 14:36:15 +03:00
|
|
|
BufferedStdin(BufferedStdin &&) noexcept;
|
|
|
|
BufferedStdin &operator=(BufferedStdin &&) noexcept;
|
2018-09-10 19:21:34 +03:00
|
|
|
~BufferedStdin();
|
|
|
|
ChainBufferReader &input_buffer();
|
|
|
|
PollableFdInfo &get_poll_info();
|
|
|
|
const PollableFdInfo &get_poll_info() const;
|
|
|
|
Result<size_t> flush_read(size_t max_read = std::numeric_limits<size_t>::max()) TD_WARN_UNUSED_RESULT;
|
2018-09-10 18:09:08 +03:00
|
|
|
|
|
|
|
private:
|
2018-09-10 19:21:34 +03:00
|
|
|
std::unique_ptr<detail::BufferedStdinImpl, detail::BufferedStdinImplDeleter> impl_;
|
2018-09-10 18:09:08 +03:00
|
|
|
};
|
|
|
|
|
2018-08-17 16:41:51 +03:00
|
|
|
} // namespace td
|