Channel.cc revision bfe73648
1bfe73648SShuo Chen// excerpts from http://code.google.com/p/muduo/
2bfe73648SShuo Chen//
3bfe73648SShuo Chen// Use of this source code is governed by a BSD-style license
4bfe73648SShuo Chen// that can be found in the License file.
5bfe73648SShuo Chen//
6bfe73648SShuo Chen// Author: Shuo Chen (chenshuo at chenshuo dot com)
7bfe73648SShuo Chen
8bfe73648SShuo Chen#include "Channel.h"
9bfe73648SShuo Chen#include "EventLoop.h"
10bfe73648SShuo Chen#include "logging/Logging.h"
11bfe73648SShuo Chen
12bfe73648SShuo Chen#include <sstream>
13bfe73648SShuo Chen
14bfe73648SShuo Chen#include <poll.h>
15bfe73648SShuo Chen
16bfe73648SShuo Chenusing namespace muduo;
17bfe73648SShuo Chen
18bfe73648SShuo Chenconst int Channel::kNoneEvent = 0;
19bfe73648SShuo Chenconst int Channel::kReadEvent = POLLIN | POLLPRI;
20bfe73648SShuo Chenconst int Channel::kWriteEvent = POLLOUT;
21bfe73648SShuo Chen
22bfe73648SShuo ChenChannel::Channel(EventLoop* loop, int fdArg)
23bfe73648SShuo Chen  : loop_(loop),
24bfe73648SShuo Chen    fd_(fdArg),
25bfe73648SShuo Chen    events_(0),
26bfe73648SShuo Chen    revents_(0),
27bfe73648SShuo Chen    index_(-1)
28bfe73648SShuo Chen{
29bfe73648SShuo Chen}
30bfe73648SShuo Chen
31bfe73648SShuo Chenvoid Channel::update()
32bfe73648SShuo Chen{
33bfe73648SShuo Chen  loop_->updateChannel(this);
34bfe73648SShuo Chen}
35bfe73648SShuo Chen
36bfe73648SShuo Chenvoid Channel::handleEvent()
37bfe73648SShuo Chen{
38bfe73648SShuo Chen  if ((revents_ & POLLHUP) && !(revents_ & POLLIN))
39bfe73648SShuo Chen  {
40bfe73648SShuo Chen    // FIXME handleClose()
41bfe73648SShuo Chen  }
42bfe73648SShuo Chen
43bfe73648SShuo Chen  if (revents_ & POLLNVAL)
44bfe73648SShuo Chen  {
45bfe73648SShuo Chen    LOG_WARN << "Channel::handle_event() POLLNVAL";
46bfe73648SShuo Chen  }
47bfe73648SShuo Chen
48bfe73648SShuo Chen  if (revents_ & (POLLERR | POLLNVAL))
49bfe73648SShuo Chen  {
50bfe73648SShuo Chen    if (errorCallback_) errorCallback_();
51bfe73648SShuo Chen  }
52bfe73648SShuo Chen  if (revents_ & (POLLIN | POLLPRI | POLLRDHUP))
53bfe73648SShuo Chen  {
54bfe73648SShuo Chen    if (readCallback_) readCallback_();
55bfe73648SShuo Chen  }
56bfe73648SShuo Chen  if (revents_ & POLLOUT)
57bfe73648SShuo Chen  {
58bfe73648SShuo Chen    if (writeCallback_) writeCallback_();
59bfe73648SShuo Chen  }
60bfe73648SShuo Chen}
61