blob: 86c65ed3180f0b6b198647797efc568e1b3fb51d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2026
//
// 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
#include "td/utils/buffer.h"
#include "td/utils/common.h"
#include "td/utils/port/detail/PollableFd.h"
#include "td/utils/port/FileFd.h"
#include "td/utils/Status.h"
#include <limits>
#include <memory>
namespace td {
FileFd &Stdin();
FileFd &Stdout();
FileFd &Stderr();
namespace detail {
class BufferedStdinImpl;
class BufferedStdinImplDeleter {
public:
void operator()(BufferedStdinImpl *impl);
};
} // namespace detail
class BufferedStdin {
public:
BufferedStdin();
BufferedStdin(const BufferedStdin &) = delete;
BufferedStdin &operator=(const BufferedStdin &) = delete;
BufferedStdin(BufferedStdin &&) noexcept;
BufferedStdin &operator=(BufferedStdin &&) noexcept;
~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;
private:
std::unique_ptr<detail::BufferedStdinImpl, detail::BufferedStdinImplDeleter> impl_;
};
} // namespace td
|