Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Unified Diff: runtime/bin/eventhandler_linux.cc

Issue 1800863002: Cleanup in //runtime/bin (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/eventhandler_linux.h ('k') | runtime/bin/eventhandler_macos.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/eventhandler_linux.cc
diff --git a/runtime/bin/eventhandler_linux.cc b/runtime/bin/eventhandler_linux.cc
index 4c605ce060ea9e5797f35f0d1f5a395787a36b0e..6b69ffcc1e7494842949c808c62cdbbf6646345f 100644
--- a/runtime/bin/eventhandler_linux.cc
+++ b/runtime/bin/eventhandler_linux.cc
@@ -9,6 +9,7 @@
#include "bin/eventhandler_linux.h"
#include <errno.h> // NOLINT
+#include <fcntl.h> // NOLINT
#include <pthread.h> // NOLINT
#include <stdio.h> // NOLINT
#include <string.h> // NOLINT
@@ -16,7 +17,6 @@
#include <sys/stat.h> // NOLINT
#include <sys/timerfd.h> // NOLINT
#include <unistd.h> // NOLINT
-#include <fcntl.h> // NOLINT
#include "bin/dartutils.h"
#include "bin/fdutils.h"
@@ -26,11 +26,9 @@
#include "bin/thread.h"
#include "platform/utils.h"
-
namespace dart {
namespace bin {
-
intptr_t DescriptorInfo::GetPollEvents() {
// Do not ask for EPOLLERR and EPOLLHUP explicitly as they are
// triggered anyway.
@@ -138,11 +136,11 @@ EventHandlerImplementation::~EventHandlerImplementation() {
void EventHandlerImplementation::UpdateEpollInstance(intptr_t old_mask,
DescriptorInfo *di) {
intptr_t new_mask = di->Mask();
- if (old_mask != 0 && new_mask == 0) {
+ if ((old_mask != 0) && (new_mask == 0)) {
RemoveFromEpollInstance(epoll_fd_, di);
- } else if (old_mask == 0 && new_mask != 0) {
+ } else if ((old_mask == 0) && (new_mask != 0)) {
AddToEpollInstance(epoll_fd_, di);
- } else if (old_mask != 0 && new_mask != 0 && old_mask != new_mask) {
+ } else if ((old_mask != 0) && (new_mask != 0) && (old_mask != new_mask)) {
ASSERT(!di->IsListeningSocket());
RemoveFromEpollInstance(epoll_fd_, di);
AddToEpollInstance(epoll_fd_, di);
@@ -156,8 +154,7 @@ DescriptorInfo* EventHandlerImplementation::GetDescriptorInfo(
HashMap::Entry* entry = socket_map_.Lookup(
GetHashmapKeyFromFd(fd), GetHashmapHashFromFd(fd), true);
ASSERT(entry != NULL);
- DescriptorInfo* di =
- reinterpret_cast<DescriptorInfo*>(entry->value);
+ DescriptorInfo* di = reinterpret_cast<DescriptorInfo*>(entry->value);
if (di == NULL) {
// If there is no data in the hash map for this file descriptor a
// new DescriptorInfo for the file descriptor is inserted.
@@ -282,15 +279,28 @@ void EventHandlerImplementation::HandleInterruptFd() {
}
}
+
#ifdef DEBUG_POLL
static void PrintEventMask(intptr_t fd, intptr_t events) {
Log::Print("%d ", fd);
- if ((events & EPOLLIN) != 0) Log::Print("EPOLLIN ");
- if ((events & EPOLLPRI) != 0) Log::Print("EPOLLPRI ");
- if ((events & EPOLLOUT) != 0) Log::Print("EPOLLOUT ");
- if ((events & EPOLLERR) != 0) Log::Print("EPOLLERR ");
- if ((events & EPOLLHUP) != 0) Log::Print("EPOLLHUP ");
- if ((events & EPOLLRDHUP) != 0) Log::Print("EPOLLRDHUP ");
+ if ((events & EPOLLIN) != 0) {
+ Log::Print("EPOLLIN ");
+ }
+ if ((events & EPOLLPRI) != 0) {
+ Log::Print("EPOLLPRI ");
+ }
+ if ((events & EPOLLOUT) != 0) {
+ Log::Print("EPOLLOUT ");
+ }
+ if ((events & EPOLLERR) != 0) {
+ Log::Print("EPOLLERR ");
+ }
+ if ((events & EPOLLHUP) != 0) {
+ Log::Print("EPOLLHUP ");
+ }
+ if ((events & EPOLLRDHUP) != 0) {
+ Log::Print("EPOLLRDHUP ");
+ }
int all_events = EPOLLIN | EPOLLPRI | EPOLLOUT |
EPOLLERR | EPOLLHUP | EPOLLRDHUP;
if ((events & ~all_events) != 0) {
@@ -302,19 +312,26 @@ static void PrintEventMask(intptr_t fd, intptr_t events) {
}
#endif
+
intptr_t EventHandlerImplementation::GetPollEvents(intptr_t events,
DescriptorInfo* di) {
#ifdef DEBUG_POLL
PrintEventMask(di->fd(), events);
#endif
- if (events & EPOLLERR) {
+ if ((events & EPOLLERR) != 0) {
// Return error only if EPOLLIN is present.
- return (events & EPOLLIN) ? (1 << kErrorEvent) : 0;
+ return ((events & EPOLLIN) != 0) ? (1 << kErrorEvent) : 0;
}
intptr_t event_mask = 0;
- if (events & EPOLLIN) event_mask |= (1 << kInEvent);
- if (events & EPOLLOUT) event_mask |= (1 << kOutEvent);
- if (events & (EPOLLHUP | EPOLLRDHUP)) event_mask |= (1 << kCloseEvent);
+ if ((events & EPOLLIN) != 0) {
+ event_mask |= (1 << kInEvent);
+ }
+ if ((events & EPOLLOUT) != 0) {
+ event_mask |= (1 << kOutEvent);
+ }
+ if ((events & (EPOLLHUP | EPOLLRDHUP)) != 0) {
+ event_mask |= (1 << kCloseEvent);
+ }
return event_mask;
}
« no previous file with comments | « runtime/bin/eventhandler_linux.h ('k') | runtime/bin/eventhandler_macos.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698