Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / C++

Wave: a Standard conformant C++ preprocessor library

Rate me:
Please Sign up or sign in to vote.
4.96/5 (58 votes)
10 Jan 200413 min read 396.2K   4.4K   81  
Describes a free and fully Standard conformant C++ preprocessor library
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Quick Start</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="theme/style.css" rel="stylesheet" type="text/css">
</head>

<body text="#000000" background="theme/bkd.gif">
<table width="100%" border="0" cellspacing="2" background="theme/bkd2.gif">
  <tr> 
    <td width="21"> <h1></h1></td>
    <td width="885"> <font face="Verdana, Arial, Helvetica, sans-serif"><b><font size="6">Quick 
      Start </font></b></font></td>
    <td width="96"><a href="http://spirit.sf.net"><img src="theme/wave.gif" width="93" height="68" align="right" border="0"></a></td>
  </tr>
</table>
<br>
<table border="0">
  <tr> 
    <td width="10"></td>
    <td width="30"><a href="index.html"><img src="theme/u_arr.gif" border="0"></a></td>
    <td width="30"><a href="introduction.html"><img src="theme/l_arr.gif" width="20" height="19" border="0"></a></td>
    <td width="30"><a href="class_reference_context.html"><img src="theme/r_arr.gif" border="0"></a></td>
  </tr>
</table>
<p>The actual preprocessing itself is a highly configurable process, so obviously 
  you have to define a couple of parameters to&nbsp;control this process, such 
  as:</p>
<BLOCKQUOTE dir="ltr" style="MARGIN-RIGHT: 0px"> 
  <P><STRONG><IMG id="IMG1" height="13" src="theme/bullet.gif" width="13"></STRONG>&nbsp;include 
    search pathes, which define, where to search for files to be included with 
    <tt>#include&nbsp;&lt;...&gt;</tt> and <tt>#include&nbsp;"..."</tt> directives<br>
    <STRONG><img src="theme/bullet.gif" width="13" height="13">&nbsp;</STRONG>which 
    macros to predefine and which of the predefined macros to undefine<br>
    <STRONG><img src="theme/bullet.gif" width="13" height="13">&nbsp;</STRONG>several 
    other options as for instance to control, whether to enable several extensions 
    to the C++ Standard (as for instance variadics and placemarkers) or not.</P>
</BLOCKQUOTE>
<p>You can access all these processing parameters through the <tt>wave::context</tt> 
  object. So you have to instantiate one object of this type to use the <tt>Wave</tt> 
  library. For more information about the context template class please refer 
  to the class reference <a href="class_reference_context.html">here</a>. To instantiate 
  the <tt>wave::context</tt> object you have to supply at least two template parameters: 
  the iterator type of the underlying input stream to use and the type of the 
  token to be returned from the preprocessing engine.</p>
<P dir="ltr">The main preprocessing iterators are not to be instantiated directly, 
  but should be generated through this context object too. </P>
<pre><span class="comment">    // The following preprocesses a given input file.
    // Open the file and read it into a string variable</span>
    <span class="keyword">std::ifstream</span> instream(<span class="string">&quot;input.cpp&quot;</span>);<br>    <span class="keyword">std::string </span>input<span class="keyword">(
        std::istreambuf_iterator&lt;char&gt;</span>(instream.rdbuf());
        <span class="keyword">std::istreambuf_iterator&lt;char&gt;</span>());

    <span class="comment">// The template wave::cpplexer::lex_token&lt;&gt; is the token 
    // type to be used by the Wave library.
    // This token type is one of the central types throughout 
    // the library, because it is a template parameter to many 
    // of the public classes and templates and it is returned 
    // from the iterators itself.</span>
    <span class="keyword">typedef</span> wave::context&lt;<span class=keyword>std::string::iterator</span>, 
                wave::cpplexer::lex_token&lt;&gt; &gt;
            context_t;

    <span class="comment">// The C++ preprocessor iterators shouldn't be constructed 
    // directly. These are to be generated through a 
    // wave::context&lt;&gt; object. Additionally this wave::context&lt;&gt; 
    // object is to be used to initialize and define different 
    // parameters of the actual preprocessing.
</span>    context_t ctx(input.begin(), input.end(), <span class="string">&quot;input.cpp&quot;</span>);
    context_t::iterator_t first = ctx.begin();
    context_t::iterator_t last = ctx.end();

<span class="comment">    // The preprocessing of the input stream is done on the fly 
    // behind the scenes during the iteration over the 
    // context_t::iterator_t based stream. </span>
       <span class="keyword">while</span> (first != last) {
           <span class="keyword">std::cout</span> &lt;&lt; (*first).get_value();
           ++first;
       }

</pre>
<P dir="ltr">The constructor of the <tt>wave::context&lt;&gt;</tt> object can 
  take a pair of arbitrary iterator types (at least <tt>input_iterator</tt> type 
  iterators) to the input stream, from where should be read the data to be preprocessed. 
  The third parameter supplies a filename, which is used subsequently inside the 
  preprocessed tokens returned from the preprocessing to indicate the token position 
  inside the underlying input stream. Note though, that this filename is used 
  only as long no <tt>#include</tt> or <tt>#line</tt> directives are encountered, 
  which in turn will alter the current filename.</P>
<P dir="ltr">The iteration over the preprocessed tokens is relativly straight 
  forward. Just get the starting and the ending iterators from the context object 
  (maybe after initializing some include search paths) and you are done! The dereferencing 
  of the iterator will return the preprocessed tokens, which are generated on 
  the fly from the input stream. To get further information about the token type, 
  you may want to look <a href="class_reference_tokentype.html">here</a>.</P>
<table border="0">
  <tr> 
    <td width="10"></td>
    <td width="30"><a href="index.html"><img src="theme/u_arr.gif" border="0"></a></td>
    <td width="30"><a href="introduction.html"><img src="theme/l_arr.gif" width="20" height="19" border="0"></a></td>
    <td width="30"><a href="class_reference_context.html"><img src="theme/r_arr.gif" border="0"></a></td>
  </tr>
</table>
<hr size="1">
<p class="copyright">Copyright &copy; 2003-2004 Hartmut Kaiser<br>
  <br>
  <font size="2">Use, modification and distribution is subject to the Boost Software 
  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 
  </font> </p>
<span class="updated">Last updated: 
  <!-- #BeginDate format:fcAm1m -->Monday, January 5, 2004  14:57<!-- #EndDate -->
  </span></body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
Actively involved in Boost and the development of the Spirit parser construction framework.

Comments and Discussions