File: ex_async_8c-example.html

package info (click to toggle)
wiredtiger 3.2.1-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 25,456 kB
  • sloc: ansic: 102,922; python: 52,573; sh: 6,915; java: 6,130; cpp: 2,311; makefile: 1,018; xml: 176
file content (81 lines) | stat: -rw-r--r-- 19,896 bytes parent folder | download
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<title>WiredTiger: ex_async.c</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
  $(document).ready(initResizable);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="wiredtiger.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td id="projectlogo"><a href="http://wiredtiger.com/"><img alt="Logo" src="LogoFinal-header.png" alt="WiredTiger" /></a></td>
  <td style="padding-left: 0.5em;">
   <div id="projectname">
   &#160;<span id="projectnumber">Version 3.2.1</span>
   </div>
   <div id="projectbrief"><!-- 3.2.1 --></div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<div class="banner">
  <a href="https://github.com/wiredtiger/wiredtiger">Fork me on GitHub</a>
  <a class="last" href="http://groups.google.com/group/wiredtiger-users">Join my user group</a>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
  initMenu('',false,false,'search.php','Search');
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
  <div id="nav-tree">
    <div id="nav-tree-contents">
      <div id="nav-sync" class="sync"></div>
    </div>
  </div>
  <div id="splitbar" style="-moz-user-select:none;" 
       class="ui-resizable-handle">
  </div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('ex_async_8c-example.html','');});
</script>
<div id="doc-content">
<div class="header">
  <div class="headertitle">
<div class="title">ex_async.c</div>  </div>
</div><!--header-->
<div class="contents">
<p>Show how to configure and use asynchronous operations.</p>
<div class="fragment"><div class="line"><span class="comment">/*-</span></div><div class="line"><span class="comment"> * Public Domain 2014-2019 MongoDB, Inc.</span></div><div class="line"><span class="comment"> * Public Domain 2008-2014 WiredTiger, Inc.</span></div><div class="line"><span class="comment"> *</span></div><div class="line"><span class="comment"> * This is free and unencumbered software released into the public domain.</span></div><div class="line"><span class="comment"> *</span></div><div class="line"><span class="comment"> * Anyone is free to copy, modify, publish, use, compile, sell, or</span></div><div class="line"><span class="comment"> * distribute this software, either in source code form or as a compiled</span></div><div class="line"><span class="comment"> * binary, for any purpose, commercial or non-commercial, and by any</span></div><div class="line"><span class="comment"> * means.</span></div><div class="line"><span class="comment"> *</span></div><div class="line"><span class="comment"> * In jurisdictions that recognize copyright laws, the author or authors</span></div><div class="line"><span class="comment"> * of this software dedicate any and all copyright interest in the</span></div><div class="line"><span class="comment"> * software to the public domain. We make this dedication for the benefit</span></div><div class="line"><span class="comment"> * of the public at large and to the detriment of our heirs and</span></div><div class="line"><span class="comment"> * successors. We intend this dedication to be an overt act of</span></div><div class="line"><span class="comment"> * relinquishment in perpetuity of all present and future rights to this</span></div><div class="line"><span class="comment"> * software under copyright law.</span></div><div class="line"><span class="comment"> *</span></div><div class="line"><span class="comment"> * THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,</span></div><div class="line"><span class="comment"> * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF</span></div><div class="line"><span class="comment"> * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.</span></div><div class="line"><span class="comment"> * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR</span></div><div class="line"><span class="comment"> * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,</span></div><div class="line"><span class="comment"> * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR</span></div><div class="line"><span class="comment"> * OTHER DEALINGS IN THE SOFTWARE.</span></div><div class="line"><span class="comment"> *</span></div><div class="line"><span class="comment"> * ex_async.c</span></div><div class="line"><span class="comment"> *      demonstrates how to use the asynchronous API.</span></div><div class="line"><span class="comment"> */</span></div><div class="line"><span class="preprocessor">#include &lt;test_util.h&gt;</span></div><div class="line"></div><div class="line"><span class="keyword">static</span> <span class="keyword">const</span> <span class="keywordtype">char</span> *home;</div><div class="line"></div><div class="line"><span class="preprocessor">#if defined(_lint)</span></div><div class="line"><span class="preprocessor">#define ATOMIC_ADD(v, val) ((v) += (val), (v))</span></div><div class="line"><span class="preprocessor">#elif defined(_WIN32)</span></div><div class="line"><span class="preprocessor">#define ATOMIC_ADD(v, val) (_InterlockedExchangeAdd(&amp;(v), val) + val)</span></div><div class="line"><span class="preprocessor">#else</span></div><div class="line"><span class="preprocessor">#define ATOMIC_ADD(v, val) __atomic_add_fetch(&amp;(v), val, __ATOMIC_SEQ_CST)</span></div><div class="line"><span class="preprocessor">#endif</span></div><div class="line"></div><div class="line"><span class="keyword">static</span> <span class="keywordtype">int</span> global_error = 0;</div><div class="line"></div><div class="line"><span class="keyword">typedef</span> <span class="keyword">struct </span>{</div><div class="line">    <a name="_a0"></a><a class="code" href="struct_w_t___a_s_y_n_c___c_a_l_l_b_a_c_k.html">WT_ASYNC_CALLBACK</a> iface;</div><div class="line">    uint32_t num_keys;</div><div class="line">} ASYNC_KEYS;</div><div class="line"></div><div class="line"><span class="keyword">static</span> <span class="keywordtype">int</span></div><div class="line">async_callback(<a class="code" href="struct_w_t___a_s_y_n_c___c_a_l_l_b_a_c_k.html">WT_ASYNC_CALLBACK</a> *cb, <a name="_a1"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html">WT_ASYNC_OP</a> *op, <span class="keywordtype">int</span> wiredtiger_error, uint32_t flags)</div><div class="line">{</div><div class="line">    ASYNC_KEYS *asynckey = (ASYNC_KEYS *)cb;</div><div class="line">    <a class="code" href="group__wt.html#ga24152c6e1509c488192df653d511a82c">WT_ASYNC_OPTYPE</a> type;</div><div class="line">    <a name="_a2"></a><a class="code" href="group__wt.html#struct_w_t___i_t_e_m">WT_ITEM</a> k, v;</div><div class="line">    <span class="keyword">const</span> <span class="keywordtype">char</span> *key, *value;</div><div class="line">    uint64_t id;</div><div class="line"></div><div class="line">    (void)flags; <span class="comment">/* Unused */</span></div><div class="line"></div><div class="line">    <span class="comment">/* Retrieve the operation&#39;s WT_ASYNC_OPTYPE type. */</span></div><div class="line">    type = op-&gt;<a name="a3"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#adb476ee741ca2483fad081c892aea420">get_type</a>(op);</div><div class="line">    <span class="comment">/* Retrieve the operation&#39;s 64-bit identifier. */</span></div><div class="line">    <span class="keywordtype">id</span> = op-&gt;<a name="a4"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#aa10a973cc683c48944f4909e2f18b3b9">get_id</a>(op);</div><div class="line">    <span class="comment">/* Check for a WiredTiger error. */</span></div><div class="line">    <span class="keywordflow">if</span> (wiredtiger_error != 0) {</div><div class="line">        fprintf(stderr, <span class="stringliteral">&quot;ID %&quot;</span> PRIu64 <span class="stringliteral">&quot; error %d: %s\n&quot;</span>, <span class="keywordtype">id</span>, wiredtiger_error,</div><div class="line">          <a name="a5"></a><a class="code" href="group__wt.html#gae8bf720ddb4a7a7390b70424594c40fd">wiredtiger_strerror</a>(wiredtiger_error));</div><div class="line">        global_error = wiredtiger_error;</div><div class="line">        <span class="keywordflow">return</span> (1);</div><div class="line">    }</div><div class="line"></div><div class="line">    <span class="comment">/* If doing a search, retrieve the key/value pair. */</span></div><div class="line">    <span class="keywordflow">if</span> (type == <a name="a6"></a><a class="code" href="group__wt.html#gga24152c6e1509c488192df653d511a82ca0a70cdcda8801256cc086e8ab7d78b44">WT_AOP_SEARCH</a>) {</div><div class="line">        error_check(op-&gt;<a name="a7"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#a3c0ab580d7d7cc18f669ef8259254b8c">get_key</a>(op, &amp;k));</div><div class="line">        key = k.<a name="a8"></a><a class="code" href="group__wt.html#a57f5e62aa968275d7e398cfa70e49450">data</a>;</div><div class="line">        error_check(op-&gt;<a name="a9"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#a46ec0ae7d0294b9f4f206c390dd886b3">get_value</a>(op, &amp;v));</div><div class="line">        value = v.<a class="code" href="group__wt.html#a57f5e62aa968275d7e398cfa70e49450">data</a>;</div><div class="line">        ATOMIC_ADD(asynckey-&gt;num_keys, 1);</div><div class="line">        printf(<span class="stringliteral">&quot;Id %&quot;</span> PRIu64 <span class="stringliteral">&quot; got record: %s : %s\n&quot;</span>, <span class="keywordtype">id</span>, key, value);</div><div class="line">    }</div><div class="line">    <span class="keywordflow">return</span> (0);</div><div class="line">}</div><div class="line"><span class="keyword">static</span> ASYNC_KEYS ex_asynckeys = {{async_callback}, 0};</div><div class="line"></div><div class="line"><span class="preprocessor">#define MAX_KEYS 15</span></div><div class="line"></div><div class="line"><span class="keywordtype">int</span></div><div class="line">main(<span class="keywordtype">int</span> argc, <span class="keywordtype">char</span> *argv[])</div><div class="line">{</div><div class="line">    <a class="code" href="struct_w_t___a_s_y_n_c___o_p.html">WT_ASYNC_OP</a> *op;</div><div class="line">    <a name="_a10"></a><a class="code" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html">WT_CONNECTION</a> *conn;</div><div class="line">    <a name="_a11"></a><a class="code" href="struct_w_t___s_e_s_s_i_o_n.html">WT_SESSION</a> *session;</div><div class="line">    <span class="keywordtype">int</span> i, ret;</div><div class="line">    <span class="keywordtype">char</span> k[MAX_KEYS][16], v[MAX_KEYS][16];</div><div class="line"></div><div class="line">    home = example_setup(argc, argv);</div><div class="line"></div><div class="line">    error_check(<a name="a12"></a><a class="code" href="group__wt.html#gacbe8d118f978f5bfc8ccb4c77c9e8813">wiredtiger_open</a>(home, NULL,</div><div class="line">      <span class="stringliteral">&quot;create,cache_size=100MB,&quot;</span></div><div class="line">      <span class="stringliteral">&quot;async=(enabled=true,ops_max=20,threads=2)&quot;</span>,</div><div class="line">      &amp;conn));</div><div class="line">    error_check(conn-&gt;<a name="a13"></a><a class="code" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#adad5965cd4a60f65b5ac01f7ca6d1fc0">open_session</a>(conn, NULL, NULL, &amp;session));</div><div class="line">    error_check(session-&gt;<a name="a14"></a><a class="code" href="struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb">create</a>(session, <span class="stringliteral">&quot;table:async&quot;</span>, <span class="stringliteral">&quot;key_format=S,value_format=S&quot;</span>));</div><div class="line">    <span class="comment">/* Insert a set of keys asynchronously. */</span></div><div class="line">    <span class="keywordflow">for</span> (i = 0; i &lt; MAX_KEYS; i++) {</div><div class="line">        <span class="keywordflow">while</span> (</div><div class="line">          (ret = conn-&gt;<a name="a15"></a><a class="code" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a0cfd7bfb13c5b2ad8499f44e43d62672">async_new_op</a>(conn, <span class="stringliteral">&quot;table:async&quot;</span>, NULL, &amp;ex_asynckeys.iface, &amp;op)) != 0) {</div><div class="line">            <span class="comment">/*</span></div><div class="line"><span class="comment">             * If we used up all the handles, pause and retry to give the workers a chance to catch</span></div><div class="line"><span class="comment">             * up.</span></div><div class="line"><span class="comment">             */</span></div><div class="line">            fprintf(stderr, <span class="stringliteral">&quot;asynchronous operation handle not available\n&quot;</span>);</div><div class="line">            <span class="keywordflow">if</span> (ret == EBUSY)</div><div class="line">                sleep(1);</div><div class="line">            <span class="keywordflow">else</span></div><div class="line">                <span class="keywordflow">return</span> (EXIT_FAILURE);</div><div class="line">        }</div><div class="line">        <span class="comment">/*</span></div><div class="line"><span class="comment">         * Set the operation&#39;s string key and value, and then do an asynchronous insert.</span></div><div class="line"><span class="comment">         */</span></div><div class="line">        (void)snprintf(k[i], <span class="keyword">sizeof</span>(k), <span class="stringliteral">&quot;key%d&quot;</span>, i);</div><div class="line">        op-&gt;<a name="a16"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#a9931651a57133df0d6d881e0cb9386ab">set_key</a>(op, k[i]);</div><div class="line">        (void)snprintf(v[i], <span class="keyword">sizeof</span>(v), <span class="stringliteral">&quot;value%d&quot;</span>, i);</div><div class="line">        op-&gt;<a name="a17"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#a6cb91888b737850ebffd7e01215bff53">set_value</a>(op, v[i]);</div><div class="line">        error_check(op-&gt;<a name="a18"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#a60ed981eeae3a80b13ca8af708e4704b">insert</a>(op));</div><div class="line">    }</div><div class="line"></div><div class="line">    <span class="comment">/* Wait for all outstanding operations to complete. */</span></div><div class="line">    error_check(conn-&gt;<a name="a19"></a><a class="code" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a43d649d7eca3c9c281a833ec4e73473b">async_flush</a>(conn));</div><div class="line">    <span class="comment">/*</span></div><div class="line"><span class="comment">     * Compact a table asynchronously, limiting the run-time to 5 minutes.</span></div><div class="line"><span class="comment">     */</span></div><div class="line">    error_check(conn-&gt;<a class="code" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a0cfd7bfb13c5b2ad8499f44e43d62672">async_new_op</a>(conn, <span class="stringliteral">&quot;table:async&quot;</span>, <span class="stringliteral">&quot;timeout=300&quot;</span>, &amp;ex_asynckeys.iface, &amp;op));</div><div class="line">    error_check(op-&gt;<a name="a20"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#ae6421d4c43369146502e8c7b54c06ac0">compact</a>(op));</div><div class="line">    <span class="comment">/* Search for the keys we just inserted, asynchronously. */</span></div><div class="line">    <span class="keywordflow">for</span> (i = 0; i &lt; MAX_KEYS; i++) {</div><div class="line">        <span class="keywordflow">while</span> (</div><div class="line">          (ret = conn-&gt;<a class="code" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#a0cfd7bfb13c5b2ad8499f44e43d62672">async_new_op</a>(conn, <span class="stringliteral">&quot;table:async&quot;</span>, NULL, &amp;ex_asynckeys.iface, &amp;op)) != 0) {</div><div class="line">            <span class="comment">/*</span></div><div class="line"><span class="comment">             * If we used up all the handles, pause and retry to give the workers a chance to catch</span></div><div class="line"><span class="comment">             * up.</span></div><div class="line"><span class="comment">             */</span></div><div class="line">            fprintf(stderr, <span class="stringliteral">&quot;asynchronous operation handle not available\n&quot;</span>);</div><div class="line">            <span class="keywordflow">if</span> (ret == EBUSY)</div><div class="line">                sleep(1);</div><div class="line">            <span class="keywordflow">else</span></div><div class="line">                <span class="keywordflow">return</span> (EXIT_FAILURE);</div><div class="line">        }</div><div class="line"></div><div class="line">        <span class="comment">/*</span></div><div class="line"><span class="comment">         * Set the operation&#39;s string key and value, and then do an asynchronous search.</span></div><div class="line"><span class="comment">         */</span></div><div class="line">        (void)snprintf(k[i], <span class="keyword">sizeof</span>(k), <span class="stringliteral">&quot;key%d&quot;</span>, i);</div><div class="line">        op-&gt;<a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#a9931651a57133df0d6d881e0cb9386ab">set_key</a>(op, k[i]);</div><div class="line">        error_check(op-&gt;<a name="a21"></a><a class="code" href="struct_w_t___a_s_y_n_c___o_p.html#a5cd1b495d3796c5318a49422a3f7e220">search</a>(op));</div><div class="line">    }</div><div class="line"></div><div class="line">    <span class="comment">/*</span></div><div class="line"><span class="comment">     * Connection close automatically does an async_flush so it will wait for all queued search</span></div><div class="line"><span class="comment">     * operations to complete.</span></div><div class="line"><span class="comment">     */</span></div><div class="line">    error_check(conn-&gt;<a name="a22"></a><a class="code" href="struct_w_t___c_o_n_n_e_c_t_i_o_n.html#af535c517df851eeac8ebf3594d40b545">close</a>(conn, NULL));</div><div class="line"></div><div class="line">    printf(<span class="stringliteral">&quot;Searched for %&quot;</span> PRIu32 <span class="stringliteral">&quot; keys\n&quot;</span>, ex_asynckeys.num_keys);</div><div class="line"></div><div class="line">    <span class="keywordflow">return</span> (EXIT_SUCCESS);</div><div class="line">}</div></div><!-- fragment --> </div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  <ul>
    <li class="footer">Copyright (c) 2008-2019 MongoDB, Inc.  All rights reserved.  Contact <a href="mailto:info@wiredtiger.com">info@wiredtiger.com</a> for more information.</li>
  </ul>
</div>
</body>
</html>