summaryrefslogtreecommitdiff
path: root/src/mongo/db/client_strand.h
blob: 334e29a7c154fca4347897e9ae506d836ea77c39 (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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/**
 *    Copyright (C) 2020-present MongoDB, Inc.
 *
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the Server Side Public License, version 1,
 *    as published by MongoDB, Inc.
 *
 *    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
 *    Server Side Public License for more details.
 *
 *    You should have received a copy of the Server Side Public License
 *    along with this program. If not, see
 *    <http://www.mongodb.com/licensing/server-side-public-license>.
 *
 *    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 Server Side 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.
 */
#pragma once

#include <string>

#include "mongo/db/client.h"
#include "mongo/db/service_context.h"
#include "mongo/platform/atomic_word.h"
#include "mongo/stdx/mutex.h"
#include "mongo/util/concurrency/thread_name.h"
#include "mongo/util/intrusive_counter.h"
#include "mongo/util/out_of_line_executor.h"

namespace mongo {

/**
 * ClientStrand is a reference counted type for loaning Clients to threads.
 *
 * ClientStrand maintains the lifetime of its wrapped Client object and provides functionality to
 * "bind" that Client to one and only one thread at a time. Its functions are synchronized.
 */
class ClientStrand final : public RefCountable {
    static constexpr auto kDiagnosticLogLevel = 3;

public:
    static constexpr auto kUnableToRecoverClient = "Unable to recover Client for ClientStrand";

    /**
     * A simple RAII guard to set and release Clients.
     */
    class Guard {
    public:
        Guard() = default;
        Guard(Guard&&) = default;
        Guard& operator=(Guard&&) = default;

        Guard(const Guard&) = delete;
        Guard& operator=(const Guard&) = delete;

        Guard(ClientStrand* strand) : _strand(strand) {
            // Hold the lock for as long as the Guard is around. This forces other consumers to
            // queue behind the Guard.
            _strand->_mutex.lock();
            _strand->_isBound.store(true);

            _strand->_setCurrent();
        }

        ~Guard() {
            dismiss();
        }

        void dismiss() noexcept {
            auto strand = std::exchange(_strand, {});
            if (!strand) {
                return;
            }

            strand->_releaseCurrent();
            strand->_isBound.store(false);
            strand->_mutex.unlock();
        }

        Client* get() noexcept {
            return _strand->getClientPointer();
        }

        Client* operator->() noexcept {
            return get();
        }

        Client& operator*() noexcept {
            return *get();
        }

    private:
        boost::intrusive_ptr<ClientStrand> _strand;
    };

    /**
     * A simple wrapping executor to run tasks while a Client is bound.
     */
    class Executor final : public OutOfLineExecutor {
    public:
        Executor(ClientStrand* strand, ExecutorPtr exec)
            : _strand(strand), _exec(std::move(exec)) {}
        void schedule(Task task) override;

    private:
        boost::intrusive_ptr<ClientStrand> _strand;
        ExecutorPtr _exec;
    };

    /**
     * Make a new ClientStrand from a UniqueClient.
     */
    static boost::intrusive_ptr<ClientStrand> make(ServiceContext::UniqueClient client);

    /**
     * Acquire an owning ClientStrand given a client.
     *
     * This will return nullptr if the Client does not belong to a ClientStrand.
     */
    static boost::intrusive_ptr<ClientStrand> get(Client* client);

    ClientStrand(ServiceContext::UniqueClient client)
        : _clientPtr(client.get()),
          _client(std::move(client)),
          _threadName(ThreadNameRef{_client->desc()}) {}

    /**
     * Get a pointer to the underlying Client.
     */
    Client* getClientPointer() noexcept {
        return _clientPtr;
    }

    /**
     * Set the current Client for this thread and return a RAII guard to release it eventually.
     *
     * If the Client is currently bound, this function will block until the Client is available.
     */
    auto bind() {
        return Guard(this);
    }

    /**
     * Run a Task with the Client bound to the current thread.
     *
     * This function runs the task inline and assumes that the Client is not already bound to the
     * current thread. If the Client is currently bound, this function will block until it is
     * released.
     */
    template <typename Task, typename... Args>
    void run(Task task, Args&&... args) {
        auto guard = bind();

        return task(std::forward<Args>(args)...);
    }

    /**
     * Make a wrapped executor around another.
     */
    ExecutorPtr makeExecutor(ExecutorPtr exec) {
        return std::make_shared<Executor>(this, std::move(exec));
    }

    /**
     * Return if the strand is currently bound to a Client.
     */
    bool isBound() const noexcept {
        return _isBound.load();
    }

private:
    /**
     * Bind the Client to the current thread.
     *
     * This is only valid to call if no other thread has the Client bound.
     */
    void _setCurrent() noexcept;

    /**
     * Release the Client from the current thread.
     *
     * This is valid to call multiple times on the same thread. It is not valid to mix this with
     * Client::releaseCurrent().
     */
    void _releaseCurrent() noexcept;

    Client* const _clientPtr;

    stdx::mutex _mutex;  // NOLINT

    // Once we have stdx::atomic::wait(), we can get rid of the mutex in favor of this variable.
    AtomicWord<bool> _isBound{false};

    ServiceContext::UniqueClient _client;

    ThreadNameRef _threadName;
    ThreadNameRef _oldThreadName;
};

inline void ClientStrand::Executor::schedule(Task task) {
    _exec->schedule([task = std::forward<Task>(task), strand = _strand](Status status) mutable {
        strand->run(std::move(task), std::move(status));
    });
}

using ClientStrandPtr = boost::intrusive_ptr<ClientStrand>;

}  // namespace mongo