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 a165b42575 Minor fixes.
GitOrigin-RevId: 793bc74ee1c82b5a86e044be65e4be0e5ce00336
2018-09-10 21:45:34 +03:00

46 lines
1.2 KiB
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2018
//
// 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/port/detail/PollableFd.h"
#include "td/utils/port/FileFd.h"
#include "td/utils/port/thread.h"
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