2017
[folly.git] / folly / futures / ManualExecutor.cpp
1 /*
2  * Copyright 2017 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 #include <folly/futures/ManualExecutor.h>
18
19 #include <string.h>
20 #include <string>
21 #include <tuple>
22
23 namespace folly {
24
25 void ManualExecutor::add(Func callback) {
26   std::lock_guard<std::mutex> lock(lock_);
27   funcs_.emplace(std::move(callback));
28   sem_.post();
29 }
30
31 size_t ManualExecutor::run() {
32   size_t count;
33   size_t n;
34   Func func;
35
36   {
37     std::lock_guard<std::mutex> lock(lock_);
38
39     while (!scheduledFuncs_.empty()) {
40       auto& sf = scheduledFuncs_.top();
41       if (sf.time > now_)
42         break;
43       funcs_.emplace(sf.moveOutFunc());
44       scheduledFuncs_.pop();
45     }
46
47     n = funcs_.size();
48   }
49
50   for (count = 0; count < n; count++) {
51     {
52       std::lock_guard<std::mutex> lock(lock_);
53       if (funcs_.empty()) {
54         break;
55       }
56
57       // Balance the semaphore so it doesn't grow without bound
58       // if nobody is calling wait().
59       // This may fail (with EAGAIN), that's fine.
60       sem_.tryWait();
61
62       func = std::move(funcs_.front());
63       funcs_.pop();
64     }
65     func();
66   }
67
68   return count;
69 }
70
71 void ManualExecutor::wait() {
72   while (true) {
73     {
74       std::lock_guard<std::mutex> lock(lock_);
75       if (!funcs_.empty())
76         break;
77     }
78
79     sem_.wait();
80   }
81 }
82
83 void ManualExecutor::advanceTo(TimePoint const& t) {
84   if (t > now_) {
85     now_ = t;
86   }
87   run();
88 }
89
90 } // folly