mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
abd6efe477
* fixed client protocol low level API: enables usage of providing clients along with other websocket protocols * fix: made some c'tors explicit
44 lines
646 B
C++
44 lines
646 B
C++
#include "timeout_watcher.hpp"
|
|
#include <stdexcept>
|
|
|
|
using std::chrono::milliseconds;
|
|
using std::chrono::duration_cast;
|
|
using std::chrono::steady_clock;
|
|
|
|
namespace
|
|
{
|
|
milliseconds now()
|
|
{
|
|
return duration_cast<milliseconds>(steady_clock::now().time_since_epoch());
|
|
}
|
|
}
|
|
|
|
namespace webfuse_test
|
|
{
|
|
|
|
TimeoutWatcher::TimeoutWatcher(milliseconds timeout)
|
|
: startedAt(now())
|
|
, timeout_(timeout)
|
|
{
|
|
|
|
}
|
|
|
|
TimeoutWatcher::~TimeoutWatcher()
|
|
{
|
|
|
|
}
|
|
|
|
bool TimeoutWatcher::isTimeout()
|
|
{
|
|
return (now() - startedAt) > timeout_;
|
|
}
|
|
|
|
void TimeoutWatcher::check()
|
|
{
|
|
if (isTimeout())
|
|
{
|
|
throw std::runtime_error("timeout");
|
|
}
|
|
}
|
|
|
|
} |