This repository has been archived on 2020-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
tdlib-fork/tdutils/td/utils/port/StdStreams.h
levlam eaebfad034 Update copyright year.
GitOrigin-RevId: 359e2b43322222922c44c430d3814b0a4c778dc6
2019-01-01 01:02:34 +03:00

50 lines
1.3 KiB
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
//
// 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 &&);
BufferedStdin &operator=(BufferedStdin &&);
~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