2 * Copyright 2017 Facebook, Inc.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 #include <folly/executors/ManualExecutor.h>
25 void ManualExecutor::add(Func callback) {
26 std::lock_guard<std::mutex> lock(lock_);
27 funcs_.emplace(std::move(callback));
31 size_t ManualExecutor::run() {
37 std::lock_guard<std::mutex> lock(lock_);
39 while (!scheduledFuncs_.empty()) {
40 auto& sf = scheduledFuncs_.top();
44 funcs_.emplace(sf.moveOutFunc());
45 scheduledFuncs_.pop();
51 for (count = 0; count < n; count++) {
53 std::lock_guard<std::mutex> lock(lock_);
58 // Balance the semaphore so it doesn't grow without bound
59 // if nobody is calling wait().
60 // This may fail (with EAGAIN), that's fine.
63 func = std::move(funcs_.front());
72 size_t ManualExecutor::drain() {
74 size_t tasksForSingleRun = 0;
75 while ((tasksForSingleRun = run()) != 0) {
76 tasksRun += tasksForSingleRun;
81 void ManualExecutor::wait() {
84 std::lock_guard<std::mutex> lock(lock_);
85 if (!funcs_.empty()) {
94 void ManualExecutor::advanceTo(TimePoint const& t) {