// 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/Mutex.h" #include "thread/Thread.h" #include "Callbacks.h" #include "TimerId.h" #include #include namespace muduo { class Channel; -class Poller; +class EPoller; class TimerQueue; class EventLoop : boost::noncopyable { public: typedef boost::function Functor; 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_; } /// Runs callback immediately in the loop thread. /// It wakes up the loop, and run the cb. /// If in the same loop thread, cb is run within the function. /// Safe to call from other threads. void runInLoop(const Functor& cb); /// Queues callback in the loop thread. /// Runs after finish pooling. /// Safe to call from other threads. void queueInLoop(const Functor& cb); // timers /// /// Runs callback at 'time'. /// Safe to call from other threads. /// TimerId runAt(const Timestamp& time, const TimerCallback& cb); /// /// Runs callback after @c delay seconds. /// Safe to call from other threads. /// TimerId runAfter(double delay, const TimerCallback& cb); /// /// Runs callback every @c interval seconds. /// Safe to call from other threads. /// TimerId runEvery(double interval, const TimerCallback& cb); void cancel(TimerId timerId); // internal use only void wakeup(); void updateChannel(Channel* channel); void removeChannel(Channel* channel); void assertInLoopThread() { if (!isInLoopThread()) { abortNotInLoopThread(); } } bool isInLoopThread() const { return threadId_ == CurrentThread::tid(); } private: void abortNotInLoopThread(); void handleRead(); // waked up void doPendingFunctors(); typedef std::vector ChannelList; bool looping_; /* atomic */ bool quit_; /* atomic */ bool callingPendingFunctors_; /* atomic */ const pid_t threadId_; Timestamp pollReturnTime_; - boost::scoped_ptr poller_; + boost::scoped_ptr poller_; boost::scoped_ptr timerQueue_; int wakeupFd_; // unlike in TimerQueue, which is an internal class, // we don't expose Channel to client. boost::scoped_ptr wakeupChannel_; ChannelList activeChannels_; MutexLock mutex_; std::vector pendingFunctors_; // @BuardedBy mutex_ }; } #endif // MUDUO_NET_EVENTLOOP_H