2020-06-15 02:50:38 +02:00
|
|
|
//
|
2021-01-01 13:57:46 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2021
|
2020-06-15 02:50:38 +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)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
2020-08-07 10:59:21 +02:00
|
|
|
#if TD_PORT_POSIX
|
2020-08-07 21:14:42 +02:00
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Time.h"
|
|
|
|
|
2020-06-15 02:50:38 +02:00
|
|
|
#include <cerrno>
|
|
|
|
#include <type_traits>
|
2020-08-07 10:59:21 +02:00
|
|
|
#endif
|
2020-06-15 02:50:38 +02:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
#if TD_PORT_POSIX
|
|
|
|
namespace detail {
|
|
|
|
template <class F>
|
|
|
|
auto skip_eintr(F &&f) {
|
|
|
|
decltype(f()) res;
|
|
|
|
static_assert(std::is_integral<decltype(res)>::value, "integral type expected");
|
|
|
|
do {
|
|
|
|
errno = 0; // just in case
|
|
|
|
res = f();
|
|
|
|
} while (res < 0 && errno == EINTR);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class F>
|
|
|
|
auto skip_eintr_cstr(F &&f) {
|
|
|
|
char *res;
|
|
|
|
do {
|
|
|
|
errno = 0; // just in case
|
|
|
|
res = f();
|
|
|
|
} while (res == nullptr && errno == EINTR);
|
|
|
|
return res;
|
|
|
|
}
|
2020-08-07 17:50:33 +02:00
|
|
|
|
|
|
|
template <class F>
|
|
|
|
auto skip_eintr_timeout(F &&f, int32 timeout_ms) {
|
|
|
|
decltype(f(timeout_ms)) res;
|
|
|
|
static_assert(std::is_integral<decltype(res)>::value, "integral type expected");
|
|
|
|
|
|
|
|
auto start = Timestamp::now();
|
|
|
|
auto left_timeout_ms = timeout_ms;
|
|
|
|
while (true) {
|
|
|
|
errno = 0; // just in case
|
|
|
|
res = f(left_timeout_ms);
|
|
|
|
if (res >= 0 || errno != EINTR) {
|
|
|
|
break;
|
|
|
|
}
|
2020-08-07 21:14:42 +02:00
|
|
|
left_timeout_ms =
|
2021-03-28 21:33:22 +02:00
|
|
|
static_cast<int32>(td::max((start.at() - Timestamp::now().at()) * 1000 + timeout_ms + 1 - 1e-9, 0.0));
|
2020-08-07 17:50:33 +02:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2020-06-15 02:50:38 +02:00
|
|
|
} // namespace detail
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace td
|