Commit fe93ddaf authored by Davis King's avatar Davis King

Added lambda function support to the timeout object.

parent 96e1a7c8
...@@ -40,6 +40,15 @@ namespace dlib ...@@ -40,6 +40,15 @@ namespace dlib
virtual ~bind() {} virtual ~bind() {}
}; };
template <typename T>
class functor : public bind
{
public:
functor(const T& f) : function(f) {}
T function;
void go() { function(); }
};
template <typename T, typename R> template <typename T, typename R>
class zero : public bind class zero : public bind
{ {
...@@ -65,6 +74,20 @@ namespace dlib ...@@ -65,6 +74,20 @@ namespace dlib
// This typedef is here for backwards compatibility with previous versions of dlib. // This typedef is here for backwards compatibility with previous versions of dlib.
typedef timeout kernel_1a; typedef timeout kernel_1a;
template <
typename T
>
timeout (
T callback_function,
unsigned long ms_to_timeout
) :
t(*this,&timeout::trigger_timeout)
{
b = new functor<T>(callback_function);
t.set_delay_time(ms_to_timeout);
t.start();
}
template < template <
typename T typename T
> >
......
...@@ -12,29 +12,63 @@ namespace dlib ...@@ -12,29 +12,63 @@ namespace dlib
{ {
/*! /*!
WHAT THIS OBJECT REPRESENTS WHAT THIS OBJECT REPRESENTS
This object provides a simple way to implement a timeout. An example will make This object provides a simple way to implement a timeout. An example will
its use clear. Suppose we want to read from a socket but we want to terminate the make its use clear. Suppose we want to read from a socket but we want to
connection if the read takes longer than 10 seconds. This could be accomplished terminate the connection if the read takes longer than 10 seconds. This
as follows: could be accomplished as follows:
connection* con = a connection from somewhere; connection* con = a connection from somewhere;
{ {
// setup a timer that will call con->shutdown() in 10 seconds // setup a timer that will call con->shutdown() in 10 seconds
timeout t(*con,&connection::shutdown,10000); timeout t(*con,&connection::shutdown,10000);
// Now call read on the connection. If this call to read() takes // Now call read on the connection. If this call to read() takes more
// more than 10 seconds then the t timeout will trigger and shutdown // than 10 seconds then the t timeout will trigger and shutdown the
// the connection. If read completes in less than 10 seconds then // connection. If read completes in less than 10 seconds then the t
// the t object will be destructed on the next line due to the } // object will be destructed on the next line due to the } and then the
// and then the timeout won't trigger. // timeout won't trigger.
con->read(buf,100); con->read(buf,100);
} }
Alternatively, if you have a compiler capable of using C++11 lambda
functions, you can use a syntax like this:
{
timeout t([con](){ con->shutdown(); }, 10000);
con->read(buf,100);
}
More generally, you can use this with things other than sockets. For
example, the following statement will print "Hello world!" after 1000ms:
timeout t([](){ cout << "Hello world!" << endl; }, 1000);
THREAD SAFETY THREAD SAFETY
All methods of this class are thread safe. All methods of this class are thread safe.
!*/ !*/
public: public:
template <
typename T
>
timeout (
T callback_function,
unsigned long ms_to_timeout
);
/*!
requires
- callback_function does not throw
ensures
- does not block.
- #*this is properly initialized
- if (this object isn't destructed in ms_to_timeout milliseconds) then
- callback_function() will be called in ms_to_timeout milliseconds.
throws
- std::bad_alloc
- dlib::thread_error
!*/
template < template <
typename T typename T
> >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment