semantic_actions.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
  4. <title>Parser Semantic Actions</title>
  5. <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
  6. <meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
  7. <link rel="home" href="../../index.html" title="Spirit X3 3.0.4">
  8. <link rel="up" href="../tutorials.html" title="Tutorials">
  9. <link rel="prev" href="warming_up.html" title="Warming up">
  10. <link rel="next" href="complex___our_first_complex_parser.html" title="Complex - Our first complex parser">
  11. </head>
  12. <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
  13. <table cellpadding="2" width="100%"><tr>
  14. <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../boost.png"></td>
  15. <td align="center"><a href="../../../../../../../index.html">Home</a></td>
  16. <td align="center"><a href="../../../../../../../libs/libraries.htm">Libraries</a></td>
  17. <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
  18. <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
  19. <td align="center"><a href="../../../../../../../more/index.htm">More</a></td>
  20. </tr></table>
  21. <hr>
  22. <div class="spirit-nav">
  23. <a accesskey="p" href="warming_up.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorials.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="complex___our_first_complex_parser.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
  24. </div>
  25. <div class="section">
  26. <div class="titlepage"><div><div><h3 class="title">
  27. <a name="spirit_x3.tutorials.semantic_actions"></a><a class="link" href="semantic_actions.html" title="Parser Semantic Actions">Parser Semantic
  28. Actions</a>
  29. </h3></div></div></div>
  30. <p>
  31. The example in the previous section was very simplistic. It only recognized
  32. data, but did nothing with it. It answered the question: "Did the input
  33. match?". Now, we want to extract information from what was parsed. For
  34. example, we would want to store the parsed number after a successful match.
  35. To do this, you will need <span class="emphasis"><em>semantic actions</em></span>.
  36. </p>
  37. <p>
  38. Semantic actions may be attached to any point in the grammar specification.
  39. These actions are polymorphic function objects that are called whenever a
  40. part of the parser successfully recognizes a portion of the input. Say you
  41. have a parser <code class="computeroutput"><span class="identifier">p</span></code>, and a polymorphic
  42. C++ function object <code class="computeroutput"><span class="identifier">f</span></code>. You
  43. can make the parser call <code class="computeroutput"><span class="identifier">f</span></code>
  44. whenever it matches an input by attaching <code class="computeroutput"><span class="identifier">f</span></code>:
  45. </p>
  46. <pre class="programlisting"><span class="identifier">p</span><span class="special">[</span><span class="identifier">f</span><span class="special">]</span>
  47. </pre>
  48. <p>
  49. The expression above links <code class="computeroutput"><span class="identifier">f</span></code>
  50. to the parser, <code class="computeroutput"><span class="identifier">p</span></code>. <code class="computeroutput"><span class="identifier">f</span></code> is expected to be a polymorphic function
  51. object with the signature:
  52. </p>
  53. <pre class="programlisting"><span class="keyword">template</span> <span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Context</span><span class="special">&gt;</span>
  54. <span class="keyword">void</span> <span class="keyword">operator</span><span class="special">()(</span><span class="identifier">Context</span> <span class="keyword">const</span><span class="special">&amp;</span> <span class="identifier">ctx</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span>
  55. </pre>
  56. <p>
  57. We can also use C++14 generic lambdas of the form:
  58. </p>
  59. <pre class="programlisting"><span class="special">[](</span><span class="keyword">auto</span><span class="special">&amp;</span> <span class="identifier">ctx</span><span class="special">)</span> <span class="special">{</span> <span class="comment">/*...*/</span> <span class="special">}</span>
  60. </pre>
  61. <p>
  62. From the context, we can extract relevant information:
  63. </p>
  64. <div class="table">
  65. <a name="spirit_x3.tutorials.semantic_actions.parse_context_access_functions"></a><p class="title"><b>Table&#160;2.&#160;Parse Context Access Functions</b></p>
  66. <div class="table-contents"><table class="table" summary="Parse Context Access Functions">
  67. <colgroup>
  68. <col>
  69. <col>
  70. <col>
  71. </colgroup>
  72. <thead><tr>
  73. <th>
  74. <p>
  75. Function
  76. </p>
  77. </th>
  78. <th>
  79. <p>
  80. Description
  81. </p>
  82. </th>
  83. <th>
  84. <p>
  85. Example
  86. </p>
  87. </th>
  88. </tr></thead>
  89. <tbody>
  90. <tr>
  91. <td>
  92. <p>
  93. <code class="computeroutput"><span class="identifier">_val</span></code>
  94. </p>
  95. </td>
  96. <td>
  97. <p>
  98. A reference to the attribute of the innermost rule that directly
  99. or indirectly invokes the parser <code class="computeroutput"><span class="identifier">p</span></code>
  100. </p>
  101. </td>
  102. <td>
  103. <p>
  104. <code class="computeroutput"><span class="identifier">_val</span><span class="special">(</span><span class="identifier">ctx</span><span class="special">)</span>
  105. <span class="special">=</span> <span class="string">"Gotya!"</span></code>
  106. </p>
  107. </td>
  108. </tr>
  109. <tr>
  110. <td>
  111. <p>
  112. <code class="computeroutput"><span class="identifier">_where</span></code>
  113. </p>
  114. </td>
  115. <td>
  116. <p>
  117. Iterator range to the input stream
  118. </p>
  119. </td>
  120. <td>
  121. <p>
  122. <code class="computeroutput"><span class="identifier">_where</span><span class="special">(</span><span class="identifier">ctx</span><span class="special">).</span><span class="identifier">begin</span><span class="special">()</span></code>
  123. </p>
  124. </td>
  125. </tr>
  126. <tr>
  127. <td>
  128. <p>
  129. <code class="computeroutput"><span class="identifier">_attr</span></code>
  130. </p>
  131. </td>
  132. <td>
  133. <p>
  134. A reference to the attribute of the parser <code class="computeroutput"><span class="identifier">p</span></code>
  135. </p>
  136. </td>
  137. <td>
  138. <p>
  139. <code class="computeroutput"><span class="identifier">_val</span><span class="special">(</span><span class="identifier">ctx</span><span class="special">)</span>
  140. <span class="special">+=</span> <span class="identifier">_attr</span><span class="special">(</span><span class="identifier">ctx</span><span class="special">)</span></code>
  141. </p>
  142. </td>
  143. </tr>
  144. <tr>
  145. <td>
  146. <p>
  147. <code class="computeroutput"><span class="identifier">_pass</span></code>
  148. </p>
  149. </td>
  150. <td>
  151. <p>
  152. A reference to a <code class="computeroutput"><span class="keyword">bool</span></code>
  153. flag that can be used to force the <code class="computeroutput"><span class="identifier">p</span></code>
  154. to fail
  155. </p>
  156. </td>
  157. <td>
  158. <p>
  159. <code class="computeroutput"><span class="identifier">_pass</span><span class="special">(</span><span class="identifier">ctx</span><span class="special">)</span>
  160. <span class="special">=</span> <span class="keyword">false</span></code>
  161. </p>
  162. </td>
  163. </tr>
  164. </tbody>
  165. </table></div>
  166. </div>
  167. <br class="table-break"><h5>
  168. <a name="spirit_x3.tutorials.semantic_actions.h0"></a>
  169. <span class="phrase"><a name="spirit_x3.tutorials.semantic_actions.examples_of_semantic_actions"></a></span><a class="link" href="semantic_actions.html#spirit_x3.tutorials.semantic_actions.examples_of_semantic_actions">Examples
  170. of Semantic Actions</a>
  171. </h5>
  172. <p>
  173. Given:
  174. </p>
  175. <pre class="programlisting"><span class="keyword">struct</span> <span class="identifier">print_action</span>
  176. <span class="special">{</span>
  177. <span class="keyword">template</span> <span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Context</span><span class="special">&gt;</span>
  178. <span class="keyword">void</span> <span class="keyword">operator</span><span class="special">()(</span><span class="identifier">Context</span> <span class="keyword">const</span><span class="special">&amp;</span> <span class="identifier">ctx</span><span class="special">)</span> <span class="keyword">const</span>
  179. <span class="special">{</span>
  180. <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">_attr</span><span class="special">(</span><span class="identifier">ctx</span><span class="special">)</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span>
  181. <span class="special">}</span>
  182. <span class="special">};</span>
  183. </pre>
  184. <p>
  185. Take note that with function objects, we need to have an <code class="computeroutput"><span class="keyword">operator</span><span class="special">()</span></code> with the Context argument. If we don't
  186. care about the context, we can use <code class="computeroutput"><span class="identifier">unused_type</span></code>.
  187. We'll see more of <code class="computeroutput"><span class="identifier">unused_type</span></code>
  188. elsewhere. <code class="computeroutput"><span class="identifier">unused_type</span></code> is
  189. a Spirit supplied support class.
  190. </p>
  191. <p>
  192. All examples parse inputs of the form:
  193. </p>
  194. <pre class="programlisting"><span class="string">"{NNN}"</span>
  195. </pre>
  196. <p>
  197. Where NNN is an integer inside the curly braces (e.g. {44}).
  198. </p>
  199. <p>
  200. The first example shows how to attach a function object:
  201. </p>
  202. <pre class="programlisting"><span class="identifier">parse</span><span class="special">(</span><span class="identifier">first</span><span class="special">,</span> <span class="identifier">last</span><span class="special">,</span> <span class="char">'{'</span> <span class="special">&gt;&gt;</span> <span class="identifier">int_</span><span class="special">[</span><span class="identifier">print_action</span><span class="special">()]</span> <span class="special">&gt;&gt;</span> <span class="char">'}'</span><span class="special">);</span>
  203. </pre>
  204. <p>
  205. What's new? Well <code class="computeroutput"><span class="identifier">int_</span></code> is
  206. the sibling of <code class="computeroutput"><span class="identifier">double_</span></code>. I'm
  207. sure you can guess what this parser does.
  208. </p>
  209. <p>
  210. The next example shows how use C++14 lambda:
  211. </p>
  212. <pre class="programlisting"><span class="keyword">auto</span> <span class="identifier">f</span> <span class="special">=</span> <span class="special">[](</span><span class="keyword">auto</span><span class="special">&amp;</span> <span class="identifier">ctx</span><span class="special">){</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">_attr</span><span class="special">(</span><span class="identifier">ctx</span><span class="special">)</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="special">};</span>
  213. <span class="identifier">parse</span><span class="special">(</span><span class="identifier">first</span><span class="special">,</span> <span class="identifier">last</span><span class="special">,</span> <span class="char">'{'</span> <span class="special">&gt;&gt;</span> <span class="identifier">int_</span><span class="special">[</span><span class="identifier">f</span><span class="special">]</span> <span class="special">&gt;&gt;</span> <span class="char">'}'</span><span class="special">);</span>
  214. </pre>
  215. <p>
  216. Attaching semantic actions is the first hurdle one has to tackle when getting
  217. started with parsing with Spirit. Familiarize yourself with this task.
  218. </p>
  219. <p>
  220. The examples above can be found here: <a href="../../../../../example/x3/actions.cpp" target="_top">actions.cpp</a>
  221. </p>
  222. </div>
  223. <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
  224. <td align="left"></td>
  225. <td align="right"><div class="copyright-footer">Copyright &#169; 2001-2018 Joel de Guzman,
  226. Hartmut Kaiser<p>
  227. Distributed under the Boost Software License, Version 1.0. (See accompanying
  228. file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
  229. </p>
  230. </div></td>
  231. </tr></table>
  232. <hr>
  233. <div class="spirit-nav">
  234. <a accesskey="p" href="warming_up.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../tutorials.html"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="complex___our_first_complex_parser.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a>
  235. </div>
  236. </body>
  237. </html>