Is it possible to set timeout for std::cin?

c++, stdin, timeout

Solution

It isn't possible to set a time out for `std::cin` in a portable way. Even when resorting to non-portable techniques, it isn't entirely trivial to do so: you will need to replace `std::cin`'s stream buffer.

On a UNIX system I would replace the default stream buffer used by `std::cin` by a custom one which uses file descriptor `0` to read the input. To actually read the input I would use `poll()` to detect presence of input and set a timeout on this function. Depending on the result of `poll()` I would either read the available input or fail. To possibly cope with typed characters which aren't forwarded to the file descriptor, yet, it may be reasonable to also turn off the buffering done until a newline is entered.

When using multiple threads you can create a portable filtering stream buffer which uses on thread to read the actual data and another thread to use a timed condition variable waiting either for the first thread to signal that it received data or for the time out to expire. Note that you need to guard against spurious wake-ups to make sure that the timeout is indeed reached when there is no input. This would avoid having to tinker with the actual way data is read from `std::cin` although it still replaces the stream buffer used by `std::cin` to make the functionality accessible via this name.

Problem

Is it possible to set timeout for std::cin? For example, std::cin doesn't receive any data during 10 seconds - it throws an exception or returns an error. Edited: And what about timer from `Boost library`? As far as I know, it is portable library. Is it possible to ask timer of Boost library to throw exceptions after predefined period of time? I guess it can solve this problem.

Original source

Related problems