Make FunctionLoopCallback available outside of EventBase.cpp
[folly.git] / folly / io / async / EventBase.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __STDC_FORMAT_MACROS
18 #define __STDC_FORMAT_MACROS
19 #endif
20
21 #include <folly/io/async/EventBase.h>
22
23 #include <folly/ThreadName.h>
24 #include <folly/io/async/NotificationQueue.h>
25 #include <folly/portability/Unistd.h>
26
27 #include <condition_variable>
28 #include <fcntl.h>
29 #include <mutex>
30 #include <pthread.h>
31
32 namespace folly {
33
34 /*
35  * EventBase::FunctionRunner
36  */
37
38 class EventBase::FunctionRunner
39     : public NotificationQueue<EventBase::Func>::Consumer {
40  public:
41   void messageAvailable(Func&& msg) override {
42     // In libevent2, internal events do not break the loop.
43     // Most users would expect loop(), followed by runInEventBaseThread(),
44     // to break the loop and check if it should exit or not.
45     // To have similar bejaviour to libevent1.4, tell the loop to break here.
46     // Note that loop() may still continue to loop, but it will also check the
47     // stop_ flag as well as runInLoop callbacks, etc.
48     event_base_loopbreak(getEventBase()->evb_);
49
50     if (!msg) {
51       // terminateLoopSoon() sends a null message just to
52       // wake up the loop.  We can ignore these messages.
53       return;
54     }
55
56     // The function should never throw an exception, because we have no
57     // way of knowing what sort of error handling to perform.
58     //
59     // If it does throw, log a message and abort the program.
60     try {
61       msg();
62     } catch (const std::exception& ex) {
63       LOG(ERROR) << "runInEventBaseThread() function threw a "
64                  << typeid(ex).name() << " exception: " << ex.what();
65       abort();
66     } catch (...) {
67       LOG(ERROR) << "runInEventBaseThread() function threw an exception";
68       abort();
69     }
70   }
71 };
72
73 // The interface used to libevent is not thread-safe.  Calls to
74 // event_init() and event_base_free() directly modify an internal
75 // global 'current_base', so a mutex is required to protect this.
76 //
77 // event_init() should only ever be called once.  Subsequent calls
78 // should be made to event_base_new().  We can recognise that
79 // event_init() has already been called by simply inspecting current_base.
80 static std::mutex libevent_mutex_;
81
82 /*
83  * EventBase methods
84  */
85
86 EventBase::EventBase(bool enableTimeMeasurement)
87   : runOnceCallbacks_(nullptr)
88   , stop_(false)
89   , loopThread_()
90   , queue_(nullptr)
91   , fnRunner_(nullptr)
92   , maxLatency_(0)
93   , avgLoopTime_(2000000)
94   , maxLatencyLoopTime_(avgLoopTime_)
95   , enableTimeMeasurement_(enableTimeMeasurement)
96   , nextLoopCnt_(uint64_t(-40)) // Early wrap-around so bugs will manifest soon
97   , latestLoopCnt_(nextLoopCnt_)
98   , startWork_(0)
99   , observer_(nullptr)
100   , observerSampleCount_(0)
101   , executionObserver_(nullptr) {
102   struct event ev;
103   {
104     std::lock_guard<std::mutex> lock(libevent_mutex_);
105
106     // The value 'current_base' (libevent 1) or
107     // 'event_global_current_base_' (libevent 2) is filled in by event_set(),
108     // allowing examination of its value without an explicit reference here.
109     // If ev.ev_base is NULL, then event_init() must be called, otherwise
110     // call event_base_new().
111     event_set(&ev, 0, 0, nullptr, nullptr);
112     if (!ev.ev_base) {
113       evb_ = event_init();
114     }
115   }
116
117   if (ev.ev_base) {
118     evb_ = event_base_new();
119   }
120
121   if (UNLIKELY(evb_ == nullptr)) {
122     LOG(ERROR) << "EventBase(): Failed to init event base.";
123     folly::throwSystemError("error in EventBase::EventBase()");
124   }
125   VLOG(5) << "EventBase(): Created.";
126   initNotificationQueue();
127   RequestContext::saveContext();
128 }
129
130 // takes ownership of the event_base
131 EventBase::EventBase(event_base* evb, bool enableTimeMeasurement)
132   : runOnceCallbacks_(nullptr)
133   , stop_(false)
134   , loopThread_()
135   , evb_(evb)
136   , queue_(nullptr)
137   , fnRunner_(nullptr)
138   , maxLatency_(0)
139   , avgLoopTime_(2000000)
140   , maxLatencyLoopTime_(avgLoopTime_)
141   , enableTimeMeasurement_(enableTimeMeasurement)
142   , nextLoopCnt_(uint64_t(-40)) // Early wrap-around so bugs will manifest soon
143   , latestLoopCnt_(nextLoopCnt_)
144   , startWork_(0)
145   , observer_(nullptr)
146   , observerSampleCount_(0)
147   , executionObserver_(nullptr) {
148   if (UNLIKELY(evb_ == nullptr)) {
149     LOG(ERROR) << "EventBase(): Pass nullptr as event base.";
150     throw std::invalid_argument("EventBase(): event base cannot be nullptr");
151   }
152   initNotificationQueue();
153   RequestContext::saveContext();
154 }
155
156 EventBase::~EventBase() {
157   // Keep looping until all keep-alive handles are released. Each keep-alive
158   // handle signals that some external code will still schedule some work on
159   // this EventBase (so it's not safe to destroy it).
160   while (loopKeepAliveCount() > 0) {
161     applyLoopKeepAlive();
162     loopOnce();
163   }
164
165   // Call all destruction callbacks, before we start cleaning up our state.
166   while (!onDestructionCallbacks_.empty()) {
167     LoopCallback* callback = &onDestructionCallbacks_.front();
168     onDestructionCallbacks_.pop_front();
169     callback->runLoopCallback();
170   }
171
172   clearCobTimeouts();
173
174   while (!runBeforeLoopCallbacks_.empty()) {
175     delete &runBeforeLoopCallbacks_.front();
176   }
177
178   (void)runLoopCallbacks();
179
180   if (!fnRunner_->consumeUntilDrained()) {
181     LOG(ERROR) << "~EventBase(): Unable to drain notification queue";
182   }
183
184   // Stop consumer before deleting NotificationQueue
185   fnRunner_->stopConsuming();
186   {
187     std::lock_guard<std::mutex> lock(libevent_mutex_);
188     event_base_free(evb_);
189   }
190
191   {
192     std::lock_guard<std::mutex> lock(localStorageMutex_);
193     for (auto storage : localStorageToDtor_) {
194       storage->onEventBaseDestruction(*this);
195     }
196   }
197   VLOG(5) << "EventBase(): Destroyed.";
198 }
199
200 size_t EventBase::getNotificationQueueSize() const {
201   return queue_->size();
202 }
203
204 void EventBase::setMaxReadAtOnce(uint32_t maxAtOnce) {
205   fnRunner_->setMaxReadAtOnce(maxAtOnce);
206 }
207
208 // Set smoothing coefficient for loop load average; input is # of milliseconds
209 // for exp(-1) decay.
210 void EventBase::setLoadAvgMsec(uint32_t ms) {
211   assert(enableTimeMeasurement_);
212   uint64_t us = 1000 * ms;
213   if (ms > 0) {
214     maxLatencyLoopTime_.setTimeInterval(us);
215     avgLoopTime_.setTimeInterval(us);
216   } else {
217     LOG(ERROR) << "non-positive arg to setLoadAvgMsec()";
218   }
219 }
220
221 void EventBase::resetLoadAvg(double value) {
222   assert(enableTimeMeasurement_);
223   avgLoopTime_.reset(value);
224   maxLatencyLoopTime_.reset(value);
225 }
226
227 static std::chrono::milliseconds
228 getTimeDelta(std::chrono::steady_clock::time_point* prev) {
229   auto result = std::chrono::steady_clock::now() - *prev;
230   *prev = std::chrono::steady_clock::now();
231
232   return std::chrono::duration_cast<std::chrono::milliseconds>(result);
233 }
234
235 void EventBase::waitUntilRunning() {
236   while (!isRunning()) {
237     sched_yield();
238   }
239 }
240
241 // enters the event_base loop -- will only exit when forced to
242 bool EventBase::loop() {
243   return loopBody();
244 }
245
246 bool EventBase::loopOnce(int flags) {
247   return loopBody(flags | EVLOOP_ONCE);
248 }
249
250 bool EventBase::loopBody(int flags) {
251   VLOG(5) << "EventBase(): Starting loop.";
252
253   DCHECK(!invokingLoop_)
254       << "Your code just tried to loop over an event base from inside another "
255       << "event base loop. Since libevent is not reentrant, this leads to "
256       << "undefined behavior in opt builds. Please fix immediately. For the "
257       << "common case of an inner function that needs to do some synchronous "
258       << "computation on an event-base, replace getEventBase() by a new, "
259       << "stack-allocated EvenBase.";
260   invokingLoop_ = true;
261   SCOPE_EXIT {
262     invokingLoop_ = false;
263   };
264
265   int res = 0;
266   bool ranLoopCallbacks;
267   bool blocking = !(flags & EVLOOP_NONBLOCK);
268   bool once = (flags & EVLOOP_ONCE);
269
270   // time-measurement variables.
271   std::chrono::steady_clock::time_point prev;
272   int64_t idleStart = 0;
273   int64_t busy;
274   int64_t idle;
275
276   loopThread_.store(pthread_self(), std::memory_order_release);
277
278   if (!name_.empty()) {
279     setThreadName(name_);
280   }
281
282   if (enableTimeMeasurement_) {
283     prev = std::chrono::steady_clock::now();
284     idleStart = std::chrono::duration_cast<std::chrono::microseconds>(
285       std::chrono::steady_clock::now().time_since_epoch()).count();
286   }
287
288   while (!stop_.load(std::memory_order_acquire)) {
289     applyLoopKeepAlive();
290     ++nextLoopCnt_;
291
292     // Run the before loop callbacks
293     LoopCallbackList callbacks;
294     callbacks.swap(runBeforeLoopCallbacks_);
295
296     while(!callbacks.empty()) {
297       auto* item = &callbacks.front();
298       callbacks.pop_front();
299       item->runLoopCallback();
300     }
301
302     // nobody can add loop callbacks from within this thread if
303     // we don't have to handle anything to start with...
304     if (blocking && loopCallbacks_.empty()) {
305       res = event_base_loop(evb_, EVLOOP_ONCE);
306     } else {
307       res = event_base_loop(evb_, EVLOOP_ONCE | EVLOOP_NONBLOCK);
308     }
309
310     ranLoopCallbacks = runLoopCallbacks();
311
312     if (enableTimeMeasurement_) {
313       busy = std::chrono::duration_cast<std::chrono::microseconds>(
314         std::chrono::steady_clock::now().time_since_epoch()).count() -
315         startWork_;
316       idle = startWork_ - idleStart;
317
318       avgLoopTime_.addSample(idle, busy);
319       maxLatencyLoopTime_.addSample(idle, busy);
320
321       if (observer_) {
322         if (observerSampleCount_++ == observer_->getSampleRate()) {
323           observerSampleCount_ = 0;
324           observer_->loopSample(busy, idle);
325         }
326       }
327
328       VLOG(11) << "EventBase "  << this         << " did not timeout "
329         " loop time guess: "    << busy + idle  <<
330         " idle time: "          << idle         <<
331         " busy time: "          << busy         <<
332         " avgLoopTime: "        << avgLoopTime_.get() <<
333         " maxLatencyLoopTime: " << maxLatencyLoopTime_.get() <<
334         " maxLatency_: "        << maxLatency_ <<
335         " notificationQueueSize: " << getNotificationQueueSize() <<
336         " nothingHandledYet(): "<< nothingHandledYet();
337
338       // see if our average loop time has exceeded our limit
339       if ((maxLatency_ > 0) &&
340           (maxLatencyLoopTime_.get() > double(maxLatency_))) {
341         maxLatencyCob_();
342         // back off temporarily -- don't keep spamming maxLatencyCob_
343         // if we're only a bit over the limit
344         maxLatencyLoopTime_.dampen(0.9);
345       }
346
347       // Our loop run did real work; reset the idle timer
348       idleStart = std::chrono::duration_cast<std::chrono::microseconds>(
349         std::chrono::steady_clock::now().time_since_epoch()).count();
350     } else {
351       VLOG(11) << "EventBase " << this << " did not timeout";
352     }
353
354     // If the event loop indicate that there were no more events, and
355     // we also didn't have any loop callbacks to run, there is nothing left to
356     // do.
357     if (res != 0 && !ranLoopCallbacks) {
358       // Since Notification Queue is marked 'internal' some events may not have
359       // run.  Run them manually if so, and continue looping.
360       //
361       if (getNotificationQueueSize() > 0) {
362         fnRunner_->handlerReady(0);
363       } else {
364         break;
365       }
366     }
367
368     if (enableTimeMeasurement_) {
369       VLOG(5) << "EventBase " << this << " loop time: " <<
370         getTimeDelta(&prev).count();
371     }
372
373     if (once) {
374       break;
375     }
376   }
377   // Reset stop_ so loop() can be called again
378   stop_ = false;
379
380   if (res < 0) {
381     LOG(ERROR) << "EventBase: -- error in event loop, res = " << res;
382     return false;
383   } else if (res == 1) {
384     VLOG(5) << "EventBase: ran out of events (exiting loop)!";
385   } else if (res > 1) {
386     LOG(ERROR) << "EventBase: unknown event loop result = " << res;
387     return false;
388   }
389
390   loopThread_.store({}, std::memory_order_release);
391
392   VLOG(5) << "EventBase(): Done with loop.";
393   return true;
394 }
395
396 ssize_t EventBase::loopKeepAliveCount() {
397   if (loopKeepAliveCountAtomic_.load(std::memory_order_relaxed)) {
398     loopKeepAliveCount_ +=
399         loopKeepAliveCountAtomic_.exchange(0, std::memory_order_relaxed);
400   }
401   DCHECK_GE(loopKeepAliveCount_, 0);
402   return loopKeepAliveCount_;
403 }
404
405 void EventBase::applyLoopKeepAlive() {
406   if (loopKeepAliveActive_ && loopKeepAliveCount() == 0) {
407     // Restore the notification queue internal flag
408     fnRunner_->stopConsuming();
409     fnRunner_->startConsumingInternal(this, queue_.get());
410     loopKeepAliveActive_ = false;
411   } else if (!loopKeepAliveActive_ && loopKeepAliveCount() > 0) {
412     // Update the notification queue event to treat it as a normal
413     // (non-internal) event.  The notification queue event always remains
414     // installed, and the main loop won't exit with it installed.
415     fnRunner_->stopConsuming();
416     fnRunner_->startConsuming(this, queue_.get());
417     loopKeepAliveActive_ = true;
418   }
419 }
420
421 void EventBase::loopForever() {
422   bool ret;
423   {
424     SCOPE_EXIT {
425       applyLoopKeepAlive();
426     };
427     // Make sure notification queue events are treated as normal events.
428     // We can't use loopKeepAlive() here since LoopKeepAlive token can only be
429     // released inside a loop.
430     ++loopKeepAliveCount_;
431     SCOPE_EXIT {
432       --loopKeepAliveCount_;
433     };
434     ret = loop();
435   }
436
437   if (!ret) {
438     folly::throwSystemError("error in EventBase::loopForever()");
439   }
440 }
441
442 void EventBase::bumpHandlingTime() {
443   if (!enableTimeMeasurement_) {
444     return;
445   }
446
447   VLOG(11) << "EventBase " << this << " " << __PRETTY_FUNCTION__ <<
448     " (loop) latest " << latestLoopCnt_ << " next " << nextLoopCnt_;
449   if (nothingHandledYet()) {
450     latestLoopCnt_ = nextLoopCnt_;
451     // set the time
452     startWork_ = std::chrono::duration_cast<std::chrono::microseconds>(
453                      std::chrono::steady_clock::now().time_since_epoch())
454                      .count();
455
456     VLOG(11) << "EventBase " << this << " " << __PRETTY_FUNCTION__
457              << " (loop) startWork_ " << startWork_;
458   }
459 }
460
461 void EventBase::terminateLoopSoon() {
462   VLOG(5) << "EventBase(): Received terminateLoopSoon() command.";
463
464   // Set stop to true, so the event loop will know to exit.
465   // TODO: We should really use an atomic operation here with a release
466   // barrier.
467   stop_ = true;
468
469   // Call event_base_loopbreak() so that libevent will exit the next time
470   // around the loop.
471   event_base_loopbreak(evb_);
472
473   // If terminateLoopSoon() is called from another thread,
474   // the EventBase thread might be stuck waiting for events.
475   // In this case, it won't wake up and notice that stop_ is set until it
476   // receives another event.  Send an empty frame to the notification queue
477   // so that the event loop will wake up even if there are no other events.
478   //
479   // We don't care about the return value of trySendFrame().  If it fails
480   // this likely means the EventBase already has lots of events waiting
481   // anyway.
482   try {
483     queue_->putMessage(nullptr);
484   } catch (...) {
485     // We don't care if putMessage() fails.  This likely means
486     // the EventBase already has lots of events waiting anyway.
487   }
488 }
489
490 void EventBase::runInLoop(LoopCallback* callback, bool thisIteration) {
491   DCHECK(isInEventBaseThread());
492   callback->cancelLoopCallback();
493   callback->context_ = RequestContext::saveContext();
494   if (runOnceCallbacks_ != nullptr && thisIteration) {
495     runOnceCallbacks_->push_back(*callback);
496   } else {
497     loopCallbacks_.push_back(*callback);
498   }
499 }
500
501 void EventBase::runInLoop(Func cob, bool thisIteration) {
502   DCHECK(isInEventBaseThread());
503   auto wrapper = new FunctionLoopCallback(std::move(cob));
504   wrapper->context_ = RequestContext::saveContext();
505   if (runOnceCallbacks_ != nullptr && thisIteration) {
506     runOnceCallbacks_->push_back(*wrapper);
507   } else {
508     loopCallbacks_.push_back(*wrapper);
509   }
510 }
511
512 void EventBase::runOnDestruction(LoopCallback* callback) {
513   std::lock_guard<std::mutex> lg(onDestructionCallbacksMutex_);
514   callback->cancelLoopCallback();
515   onDestructionCallbacks_.push_back(*callback);
516 }
517
518 void EventBase::runBeforeLoop(LoopCallback* callback) {
519   DCHECK(isInEventBaseThread());
520   callback->cancelLoopCallback();
521   runBeforeLoopCallbacks_.push_back(*callback);
522 }
523
524 bool EventBase::runInEventBaseThread(Func fn) {
525   // Send the message.
526   // It will be received by the FunctionRunner in the EventBase's thread.
527
528   // We try not to schedule nullptr callbacks
529   if (!fn) {
530     LOG(ERROR) << "EventBase " << this
531                << ": Scheduling nullptr callbacks is not allowed";
532     return false;
533   }
534
535   // Short-circuit if we are already in our event base
536   if (inRunningEventBaseThread()) {
537     runInLoop(std::move(fn));
538     return true;
539
540   }
541
542   try {
543     queue_->putMessage(std::move(fn));
544   } catch (const std::exception& ex) {
545     LOG(ERROR) << "EventBase " << this << ": failed to schedule function "
546                << "for EventBase thread: " << ex.what();
547     return false;
548   }
549
550   return true;
551 }
552
553 bool EventBase::runInEventBaseThreadAndWait(Func fn) {
554   if (inRunningEventBaseThread()) {
555     LOG(ERROR) << "EventBase " << this << ": Waiting in the event loop is not "
556                << "allowed";
557     return false;
558   }
559
560   bool ready = false;
561   std::mutex m;
562   std::condition_variable cv;
563   runInEventBaseThread([&] {
564       SCOPE_EXIT {
565         std::unique_lock<std::mutex> l(m);
566         ready = true;
567         cv.notify_one();
568         // We cannot release the lock before notify_one, because a spurious
569         // wakeup in the waiting thread may lead to cv and m going out of scope
570         // prematurely.
571       };
572       fn();
573   });
574   std::unique_lock<std::mutex> l(m);
575   cv.wait(l, [&] { return ready; });
576
577   return true;
578 }
579
580 bool EventBase::runImmediatelyOrRunInEventBaseThreadAndWait(Func fn) {
581   if (isInEventBaseThread()) {
582     fn();
583     return true;
584   } else {
585     return runInEventBaseThreadAndWait(std::move(fn));
586   }
587 }
588
589 bool EventBase::runLoopCallbacks() {
590   if (!loopCallbacks_.empty()) {
591     bumpHandlingTime();
592     // Swap the loopCallbacks_ list with a temporary list on our stack.
593     // This way we will only run callbacks scheduled at the time
594     // runLoopCallbacks() was invoked.
595     //
596     // If any of these callbacks in turn call runInLoop() to schedule more
597     // callbacks, those new callbacks won't be run until the next iteration
598     // around the event loop.  This prevents runInLoop() callbacks from being
599     // able to start file descriptor and timeout based events.
600     LoopCallbackList currentCallbacks;
601     currentCallbacks.swap(loopCallbacks_);
602     runOnceCallbacks_ = &currentCallbacks;
603
604     while (!currentCallbacks.empty()) {
605       LoopCallback* callback = &currentCallbacks.front();
606       currentCallbacks.pop_front();
607       folly::RequestContextScopeGuard rctx(callback->context_);
608       callback->runLoopCallback();
609     }
610
611     runOnceCallbacks_ = nullptr;
612     return true;
613   }
614   return false;
615 }
616
617 void EventBase::initNotificationQueue() {
618   // Infinite size queue
619   queue_.reset(new NotificationQueue<Func>());
620
621   // We allocate fnRunner_ separately, rather than declaring it directly
622   // as a member of EventBase solely so that we don't need to include
623   // NotificationQueue.h from EventBase.h
624   fnRunner_.reset(new FunctionRunner());
625
626   // Mark this as an internal event, so event_base_loop() will return if
627   // there are no other events besides this one installed.
628   //
629   // Most callers don't care about the internal notification queue used by
630   // EventBase.  The queue is always installed, so if we did count the queue as
631   // an active event, loop() would never exit with no more events to process.
632   // Users can use loopForever() if they do care about the notification queue.
633   // (This is useful for EventBase threads that do nothing but process
634   // runInEventBaseThread() notifications.)
635   fnRunner_->startConsumingInternal(this, queue_.get());
636 }
637
638 void EventBase::SmoothLoopTime::setTimeInterval(uint64_t timeInterval) {
639   expCoeff_ = -1.0/timeInterval;
640   VLOG(11) << "expCoeff_ " << expCoeff_ << " " << __PRETTY_FUNCTION__;
641 }
642
643 void EventBase::SmoothLoopTime::reset(double value) {
644   value_ = value;
645 }
646
647 void EventBase::SmoothLoopTime::addSample(int64_t idle, int64_t busy) {
648     /*
649      * Position at which the busy sample is considered to be taken.
650      * (Allows to quickly skew our average without editing much code)
651      */
652     enum BusySamplePosition {
653       RIGHT = 0,  // busy sample placed at the end of the iteration
654       CENTER = 1, // busy sample placed at the middle point of the iteration
655       LEFT = 2,   // busy sample placed at the beginning of the iteration
656     };
657
658   // See http://en.wikipedia.org/wiki/Moving_average#Exponential_moving_average
659   // and D676020 for more info on this calculation.
660   VLOG(11) << "idle " << idle << " oldBusyLeftover_ " << oldBusyLeftover_ <<
661               " idle + oldBusyLeftover_ " << idle + oldBusyLeftover_ <<
662               " busy " << busy << " " << __PRETTY_FUNCTION__;
663   idle += oldBusyLeftover_ + busy;
664   oldBusyLeftover_ = (busy * BusySamplePosition::CENTER) / 2;
665   idle -= oldBusyLeftover_;
666
667   double coeff = exp(idle * expCoeff_);
668   value_ *= coeff;
669   value_ += (1.0 - coeff) * busy;
670 }
671
672 bool EventBase::nothingHandledYet() const noexcept {
673   VLOG(11) << "latest " << latestLoopCnt_ << " next " << nextLoopCnt_;
674   return (nextLoopCnt_ != latestLoopCnt_);
675 }
676
677 void EventBase::attachTimeoutManager(AsyncTimeout* obj,
678                                       InternalEnum internal) {
679
680   struct event* ev = obj->getEvent();
681   assert(ev->ev_base == nullptr);
682
683   event_base_set(getLibeventBase(), ev);
684   if (internal == AsyncTimeout::InternalEnum::INTERNAL) {
685     // Set the EVLIST_INTERNAL flag
686     event_ref_flags(ev) |= EVLIST_INTERNAL;
687   }
688 }
689
690 void EventBase::detachTimeoutManager(AsyncTimeout* obj) {
691   cancelTimeout(obj);
692   struct event* ev = obj->getEvent();
693   ev->ev_base = nullptr;
694 }
695
696 bool EventBase::scheduleTimeout(AsyncTimeout* obj,
697                                  TimeoutManager::timeout_type timeout) {
698   assert(isInEventBaseThread());
699   // Set up the timeval and add the event
700   struct timeval tv;
701   tv.tv_sec = long(timeout.count() / 1000LL);
702   tv.tv_usec = long((timeout.count() % 1000LL) * 1000LL);
703
704   struct event* ev = obj->getEvent();
705   if (event_add(ev, &tv) < 0) {
706     LOG(ERROR) << "EventBase: failed to schedule timeout: " << strerror(errno);
707     return false;
708   }
709
710   return true;
711 }
712
713 void EventBase::cancelTimeout(AsyncTimeout* obj) {
714   assert(isInEventBaseThread());
715   struct event* ev = obj->getEvent();
716   if (EventUtil::isEventRegistered(ev)) {
717     event_del(ev);
718   }
719 }
720
721 void EventBase::setName(const std::string& name) {
722   assert(isInEventBaseThread());
723   name_ = name;
724
725   if (isRunning()) {
726     setThreadName(loopThread_.load(std::memory_order_relaxed),
727                   name_);
728   }
729 }
730
731 const std::string& EventBase::getName() {
732   assert(isInEventBaseThread());
733   return name_;
734 }
735
736 const char* EventBase::getLibeventVersion() { return event_get_version(); }
737 const char* EventBase::getLibeventMethod() { return event_get_method(); }
738
739 } // folly