summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/async/async_op.c
blob: 3faa53808c83ec337b20ccd335d10ce1b39e8dc0 (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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
/*-
 * Copyright (c) 2014-2020 MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

#include "wt_internal.h"

/*
 * __async_get_key --
 *     WT_ASYNC_OP->get_key implementation for op handles.
 */
static int
__async_get_key(WT_ASYNC_OP *asyncop, ...)
{
    WT_DECL_RET;
    va_list ap;

    va_start(ap, asyncop);
    ret = __wt_cursor_get_keyv(&asyncop->c, asyncop->c.flags, ap);
    va_end(ap);
    return (ret);
}

/*
 * __async_set_key --
 *     WT_ASYNC_OP->set_key implementation for op handles.
 */
static void
__async_set_key(WT_ASYNC_OP *asyncop, ...)
{
    WT_CURSOR *c;
    va_list ap;

    c = &asyncop->c;
    va_start(ap, asyncop);
    WT_IGNORE_RET(__wt_cursor_set_keyv(c, c->flags, ap));
    if (!WT_DATA_IN_ITEM(&c->key) && !WT_CURSOR_RECNO(c))
        c->saved_err =
          __wt_buf_set(O2S((WT_ASYNC_OP_IMPL *)asyncop), &c->key, c->key.data, c->key.size);
    va_end(ap);
}

/*
 * __async_get_value --
 *     WT_ASYNC_OP->get_value implementation for op handles.
 */
static int
__async_get_value(WT_ASYNC_OP *asyncop, ...)
{
    WT_DECL_RET;
    va_list ap;

    va_start(ap, asyncop);
    ret = __wt_cursor_get_valuev(&asyncop->c, ap);
    va_end(ap);
    return (ret);
}

/*
 * __async_set_value --
 *     WT_ASYNC_OP->set_value implementation for op handles.
 */
static void
__async_set_value(WT_ASYNC_OP *asyncop, ...)
{
    WT_CURSOR *c;
    va_list ap;

    c = &asyncop->c;
    va_start(ap, asyncop);
    WT_IGNORE_RET(__wt_cursor_set_valuev(c, ap));
    /* Copy the data, if it is pointing at data elsewhere. */
    if (!WT_DATA_IN_ITEM(&c->value))
        c->saved_err =
          __wt_buf_set(O2S((WT_ASYNC_OP_IMPL *)asyncop), &c->value, c->value.data, c->value.size);
    va_end(ap);
}

/*
 * __async_op_wrap --
 *     Common wrapper for all async operations.
 */
static int
__async_op_wrap(WT_ASYNC_OP_IMPL *op, WT_ASYNC_OPTYPE type)
{
    op->optype = type;
    return (__wt_async_op_enqueue(O2S(op), op));
}

/*
 * __async_search --
 *     WT_ASYNC_OP->search implementation for op handles.
 */
static int
__async_search(WT_ASYNC_OP *asyncop)
{
    WT_ASYNC_OP_IMPL *op;
    WT_DECL_RET;
    WT_SESSION_IMPL *session;

    op = (WT_ASYNC_OP_IMPL *)asyncop;
    ASYNCOP_API_CALL(O2C(op), session, search);
    WT_STAT_CONN_INCR(O2S(op), async_op_search);
    WT_ERR(__async_op_wrap(op, WT_AOP_SEARCH));
err:
    API_END_RET(session, ret);
}

/*
 * __async_insert --
 *     WT_ASYNC_OP->insert implementation for op handles.
 */
static int
__async_insert(WT_ASYNC_OP *asyncop)
{
    WT_ASYNC_OP_IMPL *op;
    WT_DECL_RET;
    WT_SESSION_IMPL *session;

    op = (WT_ASYNC_OP_IMPL *)asyncop;
    ASYNCOP_API_CALL(O2C(op), session, insert);
    WT_STAT_CONN_INCR(O2S(op), async_op_insert);
    WT_ERR(__async_op_wrap(op, WT_AOP_INSERT));
err:
    API_END_RET(session, ret);
}

/*
 * __async_update --
 *     WT_ASYNC_OP->update implementation for op handles.
 */
static int
__async_update(WT_ASYNC_OP *asyncop)
{
    WT_ASYNC_OP_IMPL *op;
    WT_DECL_RET;
    WT_SESSION_IMPL *session;

    op = (WT_ASYNC_OP_IMPL *)asyncop;
    ASYNCOP_API_CALL(O2C(op), session, update);
    WT_STAT_CONN_INCR(O2S(op), async_op_update);
    WT_ERR(__async_op_wrap(op, WT_AOP_UPDATE));
err:
    API_END_RET(session, ret);
}

/*
 * __async_remove --
 *     WT_ASYNC_OP->remove implementation for op handles.
 */
static int
__async_remove(WT_ASYNC_OP *asyncop)
{
    WT_ASYNC_OP_IMPL *op;
    WT_DECL_RET;
    WT_SESSION_IMPL *session;

    op = (WT_ASYNC_OP_IMPL *)asyncop;
    ASYNCOP_API_CALL(O2C(op), session, remove);
    WT_STAT_CONN_INCR(O2S(op), async_op_remove);
    WT_ERR(__async_op_wrap(op, WT_AOP_REMOVE));
err:
    API_END_RET(session, ret);
}

/*
 * __async_compact --
 *     WT_ASYNC_OP->compact implementation for op handles.
 */
static int
__async_compact(WT_ASYNC_OP *asyncop)
{
    WT_ASYNC_OP_IMPL *op;
    WT_DECL_RET;
    WT_SESSION_IMPL *session;

    op = (WT_ASYNC_OP_IMPL *)asyncop;
    ASYNCOP_API_CALL(O2C(op), session, compact);
    WT_STAT_CONN_INCR(O2S(op), async_op_compact);
    WT_ERR(__async_op_wrap(op, WT_AOP_COMPACT));
err:
    API_END_RET(session, ret);
}

/*
 * __async_get_id --
 *     WT_ASYNC_OP->get_id implementation for op handles.
 */
static uint64_t
__async_get_id(WT_ASYNC_OP *asyncop)
{
    return (((WT_ASYNC_OP_IMPL *)asyncop)->unique_id);
}

/*
 * __async_get_type --
 *     WT_ASYNC_OP->get_type implementation for op handles.
 */
static WT_ASYNC_OPTYPE
__async_get_type(WT_ASYNC_OP *asyncop)
{
    return (((WT_ASYNC_OP_IMPL *)asyncop)->optype);
}

/*
 * __async_op_init --
 *     Initialize all the op handle fields.
 */
static void
__async_op_init(WT_CONNECTION_IMPL *conn, WT_ASYNC_OP_IMPL *op, uint32_t id)
{
    WT_ASYNC_OP *asyncop;

    asyncop = (WT_ASYNC_OP *)op;
    asyncop->connection = (WT_CONNECTION *)conn;
    asyncop->key_format = asyncop->value_format = NULL;
    asyncop->c.key_format = asyncop->c.value_format = NULL;
    asyncop->get_key = __async_get_key;
    asyncop->get_value = __async_get_value;
    asyncop->set_key = __async_set_key;
    asyncop->set_value = __async_set_value;
    asyncop->search = __async_search;
    asyncop->insert = __async_insert;
    asyncop->update = __async_update;
    asyncop->remove = __async_remove;
    asyncop->compact = __async_compact;
    asyncop->get_id = __async_get_id;
    asyncop->get_type = __async_get_type;
    /*
     * The cursor needs to have the get/set key/value functions initialized. It also needs the
     * key/value related fields set up.
     */
    asyncop->c.get_key = __wt_cursor_get_key;
    asyncop->c.set_key = __wt_cursor_set_key;
    asyncop->c.get_value = __wt_cursor_get_value;
    asyncop->c.set_value = __wt_cursor_set_value;
    asyncop->c.recno = WT_RECNO_OOB;
    memset(asyncop->c.raw_recno_buf, 0, sizeof(asyncop->c.raw_recno_buf));
    memset(&asyncop->c.key, 0, sizeof(asyncop->c.key));
    memset(&asyncop->c.value, 0, sizeof(asyncop->c.value));
    asyncop->c.session = (WT_SESSION *)conn->default_session;
    asyncop->c.saved_err = 0;
    asyncop->c.flags = 0;

    op->internal_id = id;
    op->state = WT_ASYNCOP_FREE;
}

/*
 * __wt_async_op_enqueue --
 *     Enqueue an operation onto the work queue.
 */
int
__wt_async_op_enqueue(WT_SESSION_IMPL *session, WT_ASYNC_OP_IMPL *op)
{
    WT_ASYNC *async;
    WT_CONNECTION_IMPL *conn;
    uint64_t cur_head, cur_tail, my_alloc, my_slot;
#ifdef HAVE_DIAGNOSTIC
    WT_ASYNC_OP_IMPL *my_op;
#endif

    conn = S2C(session);
    async = conn->async;

    /*
     * If an application re-uses a WT_ASYNC_OP, we end up here with an invalid object.
     */
    if (op->state != WT_ASYNCOP_READY)
        WT_RET_MSG(session, EINVAL, "application error: WT_ASYNC_OP already in use");

    /*
     * Enqueue op at the tail of the work queue. We get our slot in the ring buffer to use.
     */
    my_alloc = __wt_atomic_add64(&async->alloc_head, 1);
    my_slot = my_alloc % async->async_qsize;

    /*
     * Make sure we haven't wrapped around the queue. If so, wait for the tail to advance off this
     * slot.
     */
    WT_ORDERED_READ(cur_tail, async->tail_slot);
    while (cur_tail == my_slot) {
        __wt_yield();
        WT_ORDERED_READ(cur_tail, async->tail_slot);
    }

#ifdef HAVE_DIAGNOSTIC
    WT_ORDERED_READ(my_op, async->async_queue[my_slot]);
    if (my_op != NULL)
        return (__wt_panic(session, WT_PANIC, "async failure"));
#endif
    WT_PUBLISH(async->async_queue[my_slot], op);
    op->state = WT_ASYNCOP_ENQUEUED;
    if (__wt_atomic_add32(&async->cur_queue, 1) > async->max_queue)
        WT_PUBLISH(async->max_queue, async->cur_queue);
    /*
     * Multiple threads may be adding ops to the queue. We need to wait our turn to make our slot
     * visible to workers.
     */
    WT_ORDERED_READ(cur_head, async->head);
    while (cur_head != (my_alloc - 1)) {
        __wt_yield();
        WT_ORDERED_READ(cur_head, async->head);
    }
    WT_PUBLISH(async->head, my_alloc);
    return (0);
}

/*
 * __wt_async_op_init --
 *     Initialize all the op handles.
 */
int
__wt_async_op_init(WT_SESSION_IMPL *session)
{
    WT_ASYNC *async;
    WT_ASYNC_OP_IMPL *op;
    WT_CONNECTION_IMPL *conn;
    WT_DECL_RET;
    uint32_t i;

    conn = S2C(session);
    async = conn->async;

    /*
     * Initialize the flush op structure.
     */
    __async_op_init(conn, &async->flush_op, OPS_INVALID_INDEX);

    /*
     * Allocate and initialize the work queue. This is sized so that the ring buffer is known to be
     * big enough such that the head can never overlap the tail. Include extra for the flush op.
     */
    async->async_qsize = conn->async_size + 2;
    WT_RET(__wt_calloc_def(session, async->async_qsize, &async->async_queue));
    /*
     * Allocate and initialize all the user ops.
     */
    WT_ERR(__wt_calloc_def(session, conn->async_size, &async->async_ops));
    for (i = 0; i < conn->async_size; i++) {
        op = &async->async_ops[i];
        __async_op_init(conn, op, i);
    }
    return (0);

err:
    __wt_free(session, async->async_ops);
    __wt_free(session, async->async_queue);
    return (ret);
}