2018-08-17 15:41:51 +02:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
2018-08-17 15:41:51 +02: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)
|
|
|
|
//
|
|
|
|
#include "td/utils/port/StdStreams.h"
|
|
|
|
|
2018-09-12 05:26:05 +02:00
|
|
|
#include "td/utils/logging.h"
|
|
|
|
#include "td/utils/misc.h"
|
2018-09-07 02:41:21 +02:00
|
|
|
#include "td/utils/port/detail/NativeFd.h"
|
2018-09-12 05:26:05 +02:00
|
|
|
#include "td/utils/port/PollFlags.h"
|
2018-09-13 05:08:49 +02:00
|
|
|
#include "td/utils/port/thread.h"
|
2018-09-12 05:26:05 +02:00
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
|
|
|
|
#include <atomic>
|
2018-09-07 02:41:21 +02:00
|
|
|
|
2018-08-17 15:41:51 +02:00
|
|
|
namespace td {
|
|
|
|
|
2018-09-12 03:53:04 +02:00
|
|
|
#if TD_PORT_POSIX
|
|
|
|
template <int id>
|
|
|
|
static FileFd &get_file_fd() {
|
|
|
|
static FileFd result = FileFd::from_native_fd(NativeFd(id, true));
|
|
|
|
return result;
|
2018-08-17 15:41:51 +02:00
|
|
|
}
|
2018-09-12 03:53:04 +02:00
|
|
|
|
2018-08-17 15:41:51 +02:00
|
|
|
FileFd &Stdin() {
|
2018-09-12 03:53:04 +02:00
|
|
|
return get_file_fd<0>();
|
2018-08-17 15:41:51 +02:00
|
|
|
}
|
|
|
|
FileFd &Stdout() {
|
2018-09-12 03:53:04 +02:00
|
|
|
return get_file_fd<1>();
|
2018-08-17 15:41:51 +02:00
|
|
|
}
|
|
|
|
FileFd &Stderr() {
|
2018-09-12 03:53:04 +02:00
|
|
|
return get_file_fd<2>();
|
|
|
|
}
|
2018-08-17 15:41:51 +02:00
|
|
|
#elif TD_PORT_WINDOWS
|
2018-09-12 03:53:04 +02:00
|
|
|
template <DWORD id>
|
|
|
|
static FileFd &get_file_fd() {
|
|
|
|
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
|
|
|
|
static auto handle = GetStdHandle(id);
|
|
|
|
LOG_IF(FATAL, handle == INVALID_HANDLE_VALUE) << "Failed to GetStdHandle " << id;
|
|
|
|
static FileFd result = FileFd::from_native_fd(NativeFd(handle, true));
|
|
|
|
#else
|
|
|
|
static FileFd result;
|
2018-08-17 15:41:51 +02:00
|
|
|
#endif
|
2018-09-12 03:53:04 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileFd &Stdin() {
|
|
|
|
return get_file_fd<STD_INPUT_HANDLE>();
|
|
|
|
}
|
|
|
|
FileFd &Stdout() {
|
|
|
|
return get_file_fd<STD_OUTPUT_HANDLE>();
|
|
|
|
}
|
|
|
|
FileFd &Stderr() {
|
|
|
|
return get_file_fd<STD_ERROR_HANDLE>();
|
2018-08-17 15:41:51 +02:00
|
|
|
}
|
2018-09-12 03:53:04 +02:00
|
|
|
#endif
|
2018-09-10 18:21:34 +02:00
|
|
|
|
2018-09-12 03:53:04 +02:00
|
|
|
#if TD_PORT_WINDOWS
|
2018-09-10 18:21:34 +02:00
|
|
|
namespace detail {
|
|
|
|
class BufferedStdinImpl {
|
|
|
|
public:
|
2018-09-12 03:53:04 +02:00
|
|
|
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_SYSTEM)
|
2018-09-11 16:48:29 +02:00
|
|
|
BufferedStdinImpl() : info_(NativeFd(GetStdHandle(STD_INPUT_HANDLE), true)) {
|
2018-09-10 18:21:34 +02:00
|
|
|
read_thread_ = td::thread([this] { this->read_loop(); });
|
|
|
|
}
|
2018-09-12 03:53:04 +02:00
|
|
|
#else
|
|
|
|
BufferedStdinImpl() {
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
#endif
|
2018-09-10 20:45:34 +02:00
|
|
|
BufferedStdinImpl(const BufferedStdinImpl &) = delete;
|
|
|
|
BufferedStdinImpl &operator=(const BufferedStdinImpl &) = delete;
|
|
|
|
BufferedStdinImpl(BufferedStdinImpl &&) = delete;
|
|
|
|
BufferedStdinImpl &operator=(BufferedStdinImpl &&) = delete;
|
2018-09-10 18:21:34 +02:00
|
|
|
~BufferedStdinImpl() {
|
2018-09-11 16:48:29 +02:00
|
|
|
info_.move_as_native_fd().release();
|
2018-09-10 18:21:34 +02:00
|
|
|
}
|
|
|
|
void close() {
|
|
|
|
close_flag_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ChainBufferReader &input_buffer() {
|
|
|
|
return reader_;
|
|
|
|
}
|
|
|
|
|
|
|
|
PollableFdInfo &get_poll_info() {
|
2018-09-11 16:48:29 +02:00
|
|
|
return info_;
|
2018-09-10 18:21:34 +02:00
|
|
|
}
|
|
|
|
const PollableFdInfo &get_poll_info() const {
|
2018-09-11 16:48:29 +02:00
|
|
|
return info_;
|
2018-09-10 18:21:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Result<size_t> flush_read(size_t max_read = std::numeric_limits<size_t>::max()) TD_WARN_UNUSED_RESULT {
|
2018-09-11 16:48:29 +02:00
|
|
|
info_.get_flags();
|
|
|
|
info_.clear_flags(PollFlags::Read());
|
2018-09-10 18:21:34 +02:00
|
|
|
reader_.sync_with_writer();
|
|
|
|
return reader_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-09-11 16:48:29 +02:00
|
|
|
PollableFdInfo info_;
|
2018-09-10 18:21:34 +02:00
|
|
|
ChainBufferWriter writer_;
|
|
|
|
ChainBufferReader reader_ = writer_.extract_reader();
|
|
|
|
td::thread read_thread_;
|
|
|
|
std::atomic<bool> close_flag_{false};
|
|
|
|
|
|
|
|
void read_loop() {
|
|
|
|
while (!close_flag_) {
|
|
|
|
auto slice = writer_.prepare_append();
|
2018-09-11 16:48:29 +02:00
|
|
|
auto r_size = read(slice);
|
|
|
|
if (r_size.is_error()) {
|
|
|
|
LOG(ERROR) << "Stop read stdin loop: " << r_size.error();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
writer_.confirm_append(r_size.ok());
|
|
|
|
info_.add_flags_from_poll(td::PollFlags::Read());
|
2018-09-10 18:21:34 +02:00
|
|
|
}
|
|
|
|
//TODO delete
|
|
|
|
}
|
2018-09-11 16:48:29 +02:00
|
|
|
|
|
|
|
Result<size_t> read(MutableSlice slice) {
|
2018-09-11 18:57:50 +02:00
|
|
|
auto native_fd = info_.native_fd().fd();
|
2018-09-11 16:48:29 +02:00
|
|
|
DWORD bytes_read = 0;
|
|
|
|
auto res = ReadFile(native_fd, slice.data(), narrow_cast<DWORD>(slice.size()), &bytes_read, nullptr);
|
|
|
|
if (res) {
|
|
|
|
return static_cast<size_t>(bytes_read);
|
|
|
|
}
|
2018-10-07 01:47:50 +02:00
|
|
|
return OS_ERROR(PSLICE() << "Read from " << info_.native_fd() << " has failed");
|
2018-09-11 16:48:29 +02:00
|
|
|
}
|
2018-09-10 18:21:34 +02:00
|
|
|
};
|
|
|
|
void BufferedStdinImplDeleter::operator()(BufferedStdinImpl *impl) {
|
|
|
|
impl->close();
|
|
|
|
}
|
|
|
|
} // namespace detail
|
2018-09-12 03:53:04 +02:00
|
|
|
#elif TD_PORT_POSIX
|
2018-09-10 18:21:34 +02:00
|
|
|
namespace detail {
|
|
|
|
class BufferedStdinImpl {
|
|
|
|
public:
|
|
|
|
BufferedStdinImpl() {
|
2018-09-11 15:27:20 +02:00
|
|
|
file_fd_ = FileFd::from_native_fd(NativeFd(Stdin().get_native_fd().fd()));
|
2018-09-10 18:21:34 +02:00
|
|
|
file_fd_.get_native_fd().set_is_blocking(false);
|
|
|
|
}
|
2018-09-10 20:45:34 +02:00
|
|
|
BufferedStdinImpl(const BufferedStdinImpl &) = delete;
|
|
|
|
BufferedStdinImpl &operator=(const BufferedStdinImpl &) = delete;
|
|
|
|
BufferedStdinImpl(BufferedStdinImpl &&) = delete;
|
|
|
|
BufferedStdinImpl &operator=(BufferedStdinImpl &&) = delete;
|
2018-09-10 18:21:34 +02:00
|
|
|
~BufferedStdinImpl() {
|
2019-03-21 23:59:16 +01:00
|
|
|
file_fd_.get_native_fd().set_is_blocking(true);
|
2018-09-10 18:21:34 +02:00
|
|
|
file_fd_.move_as_native_fd().release();
|
|
|
|
}
|
|
|
|
|
|
|
|
ChainBufferReader &input_buffer() {
|
|
|
|
return reader_;
|
|
|
|
}
|
|
|
|
|
|
|
|
PollableFdInfo &get_poll_info() {
|
|
|
|
return file_fd_.get_poll_info();
|
|
|
|
}
|
|
|
|
const PollableFdInfo &get_poll_info() const {
|
|
|
|
return file_fd_.get_poll_info();
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<size_t> flush_read(size_t max_read = std::numeric_limits<size_t>::max()) TD_WARN_UNUSED_RESULT {
|
|
|
|
size_t result = 0;
|
|
|
|
while (::td::can_read(*this) && max_read) {
|
|
|
|
MutableSlice slice = writer_.prepare_append().truncate(max_read);
|
|
|
|
TRY_RESULT(x, file_fd_.read(slice));
|
|
|
|
slice.truncate(x);
|
|
|
|
writer_.confirm_append(x);
|
|
|
|
result += x;
|
|
|
|
max_read -= x;
|
|
|
|
}
|
|
|
|
if (result) {
|
|
|
|
reader_.sync_with_writer();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
FileFd file_fd_;
|
|
|
|
ChainBufferWriter writer_;
|
|
|
|
ChainBufferReader reader_ = writer_.extract_reader();
|
|
|
|
};
|
|
|
|
void BufferedStdinImplDeleter::operator()(BufferedStdinImpl *impl) {
|
|
|
|
delete impl;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
#endif
|
2018-09-10 20:45:34 +02:00
|
|
|
|
2018-09-27 03:19:03 +02:00
|
|
|
BufferedStdin::BufferedStdin() : impl_(make_unique<detail::BufferedStdinImpl>().release()) {
|
2018-09-10 18:21:34 +02:00
|
|
|
}
|
|
|
|
BufferedStdin::BufferedStdin(BufferedStdin &&) = default;
|
|
|
|
BufferedStdin &BufferedStdin::operator=(BufferedStdin &&) = default;
|
|
|
|
BufferedStdin::~BufferedStdin() = default;
|
|
|
|
|
|
|
|
ChainBufferReader &BufferedStdin::input_buffer() {
|
|
|
|
return impl_->input_buffer();
|
|
|
|
}
|
|
|
|
PollableFdInfo &BufferedStdin::get_poll_info() {
|
|
|
|
return impl_->get_poll_info();
|
|
|
|
}
|
|
|
|
const PollableFdInfo &BufferedStdin::get_poll_info() const {
|
|
|
|
return impl_->get_poll_info();
|
|
|
|
}
|
|
|
|
Result<size_t> BufferedStdin::flush_read(size_t max_read) {
|
|
|
|
return impl_->flush_read(max_read);
|
|
|
|
}
|
|
|
|
|
2018-08-17 15:41:51 +02:00
|
|
|
} // namespace td
|