I have got function f; I want to throw exception 1s after start f. I can't modify f(). It it possible to do it in c++?
try {
f();
}
catch (TimeoutException& e) {
//timeout
}
I have got function f; I want to throw exception 1s after start f. I can't modify f(). It it possible to do it in c++?
try {
f();
}
catch (TimeoutException& e) {
//timeout
}
You can create a new thread and asynchronously wait for 1s to pass, and then throw an exception. However, exceptions can only be caught in the same thread where they're thrown, so, you cannot catch in the same thread where you called
f()
, like in your example code - but that's not a stated requirement, so it may be OK for you.Only if
f
is guaranteed to return in less than 1s, can you do this synchronously:f()
But it may be quite difficult to prove that
f
in fact does return in time.You can create a separate thread to run the call itself, and wait on a condition variable back in your main thread which will be signalled by the thread doing the call to
f
once it returns. The trick is to wait on the condition variable with your 1s timeout, so that if the call takes longer than the timeout you will still wake up, know about it, and be able to throw the exception - all in the main thread. Here is the code (live demo here):