// excerpts from http://code.google.com/p/muduo/ // // Use of this source code is governed by a BSD-style license // that can be found in the License file. // // Author: Shuo Chen (chenshuo at chenshuo dot com) #ifndef MUDUO_NET_EVENTLOOP_H #define MUDUO_NET_EVENTLOOP_H #include "datetime/Timestamp.h" #include "thread/Thread.h" #include "Callbacks.h" #include "TimerId.h" #include #include namespace muduo { class Channel; class Poller; class TimerQueue; class EventLoop : boost::noncopyable { public: EventLoop(); // force out-line dtor, for scoped_ptr members. ~EventLoop(); /// /// Loops forever. /// /// Must be called in the same thread as creation of the object. /// void loop(); void quit(); /// /// Time when poll returns, usually means data arrivial. /// Timestamp pollReturnTime() const { return pollReturnTime_; } // timers /// /// Runs callback at 'time'. /// TimerId runAt(const Timestamp& time, const TimerCallback& cb); /// /// Runs callback after @c delay seconds. /// TimerId runAfter(double delay, const TimerCallback& cb); /// /// Runs callback every @c interval seconds. /// TimerId runEvery(double interval, const TimerCallback& cb); // void cancel(TimerId timerId); // internal use only void updateChannel(Channel* channel); // void removeChannel(Channel* channel); void assertInLoopThread() { if (!isInLoopThread()) { abortNotInLoopThread(); } } bool isInLoopThread() const { return threadId_ == CurrentThread::tid(); } private: typedef std::vector ChannelList; void abortNotInLoopThread(); bool looping_; /* atomic */ bool quit_; /* atomic */ const pid_t threadId_; Timestamp pollReturnTime_; boost::scoped_ptr poller_; boost::scoped_ptr timerQueue_; ChannelList activeChannels_; }; } #endif // MUDUO_NET_EVENTLOOP_H