summaryrefslogtreecommitdiff
path: root/src/mongo/util/periodic_runner_asio.cpp
blob: 1fd59ede31c598cd855f93f2b8be34c50733bf2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/**
 *    Copyright (C) 2017 MongoDB Inc.
 *
 *    This program is free software: you can redistribute it and/or  modify
 *    it under the terms of the GNU Affero General Public License, version 3,
 *    as published by the Free Software Foundation.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU Affero General Public License for more details.
 *
 *    You should have received a copy of the GNU Affero General Public License
 *    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the GNU Affero General Public License in all respects
 *    for all of the code used other than as permitted herein. If you modify
 *    file(s) with this exception, you may extend this exception to your
 *    version of the file(s), but you are not obligated to do so. If you do not
 *    wish to do so, delete this exception statement from your version. If you
 *    delete this exception statement from all source files in the program,
 *    then also delete it in the license file.
 */

#define MONGO_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kControl

#include "mongo/platform/basic.h"

#include <memory>

#include "mongo/util/periodic_runner_asio.h"

#include "mongo/util/log.h"

namespace mongo {

PeriodicRunnerASIO::PeriodicRunnerASIO(
    std::unique_ptr<executor::AsyncTimerFactoryInterface> timerFactory)
    : _io_service(),
      _strand(_io_service),
      _timerFactory(std::move(timerFactory)),
      _state(State::kReady) {}

PeriodicRunnerASIO::~PeriodicRunnerASIO() {
    // We must call shutdown here to join our background thread.
    shutdown();
}

void PeriodicRunnerASIO::scheduleJob(PeriodicJob job) {
    // The interval we use here will get written over by _scheduleJob_inlock.
    auto uniqueTimer = _timerFactory->make(&_strand, Milliseconds{0});
    std::shared_ptr<executor::AsyncTimerInterface> timer{std::move(uniqueTimer)};

    auto asioJob = std::make_shared<PeriodicJobASIO>(std::move(job), _timerFactory->now(), timer);
    _jobs.insert(_jobs.end(), asioJob);

    {
        stdx::unique_lock<stdx::mutex> lk(_stateMutex);
        if (_state == State::kRunning) {
            _scheduleJob(asioJob);
        }
    }
}

void PeriodicRunnerASIO::_scheduleJob(std::weak_ptr<PeriodicJobASIO> job) {
    auto lockedJob = job.lock();
    if (!lockedJob) {
        return;
    }

    // Adjust the timer to expire at the correct time.
    auto adjustedMS = lockedJob->start + lockedJob->interval - _timerFactory->now();
    lockedJob->timer->expireAfter(adjustedMS);
    lockedJob->timer->asyncWait([this, job](std::error_code ec) mutable {
        if (ec) {
            severe() << "Encountered an error in PeriodicRunnerASIO: " << ec.message();
            return;
        }

        stdx::unique_lock<stdx::mutex> lk(_stateMutex);
        if (_state != State::kRunning) {
            return;
        }

        auto lockedJob = job.lock();
        if (!lockedJob) {
            return;
        }

        lockedJob->start = _timerFactory->now();
        lockedJob->job();

        _io_service.post([this, job]() mutable { _scheduleJob(job); });
    });
}

Status PeriodicRunnerASIO::startup() {
    stdx::unique_lock<stdx::mutex> lk(_stateMutex);
    if (_state != State::kReady) {
        return {ErrorCodes::ShutdownInProgress, "startup() already called"};
    }

    _state = State::kRunning;
    _thread = stdx::thread([this]() {
        try {
            asio::io_service::work workItem(_io_service);
            std::error_code ec;
            _io_service.run(ec);
            if (ec) {
                severe() << "Failure in PeriodicRunnerASIO: " << ec.message();
                fassertFailed(40438);
            }
        } catch (...) {
            severe() << "Uncaught exception in PeriodicRunnerASIO: " << exceptionToStatus();
            fassertFailed(40439);
        }
    });

    // schedule any jobs that we have
    for (auto& job : _jobs) {
        job->start = _timerFactory->now();
        _scheduleJob(job);
    }

    return Status::OK();
}

void PeriodicRunnerASIO::shutdown() {
    stdx::unique_lock<stdx::mutex> lk(_stateMutex);
    if (_state == State::kRunning) {
        _state = State::kComplete;

        _io_service.stop();

        _jobs.clear();
        _thread.join();
    }
}

}  // namespace mongo