]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libstdc++-v3/contrib/libstdc++-v3-4.3.3/doc/html/manual/bk01pt11ch25.html
update
[l4.git] / l4 / pkg / libstdc++-v3 / contrib / libstdc++-v3-4.3.3 / doc / html / manual / bk01pt11ch25.html
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Chapter 25. Stream Buffers</title><meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /><meta name="keywords" content="&#10;      ISO C++&#10;    , &#10;      library&#10;    " /><link rel="start" href="../spine.html" title="The GNU C++ Library Documentation" /><link rel="up" href="io.html" title="Part XI. Input and Output" /><link rel="prev" href="bk01pt11ch24.html" title="Chapter 24. Iostream Objects" /><link rel="next" href="bk01pt11ch25s02.html" title="Buffering" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 25. Stream Buffers</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="bk01pt11ch24.html">Prev</a> </td><th width="60%" align="center">Part XI. Input and Output</th><td width="20%" align="right"> <a accesskey="n" href="bk01pt11ch25s02.html">Next</a></td></tr></table><hr /></div><div class="chapter" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title"><a id="manual.io.streambufs"></a>Chapter 25. Stream Buffers</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="bk01pt11ch25.html#io.streambuf.derived">Derived streambuf Classes</a></span></dt><dt><span class="sect1"><a href="bk01pt11ch25s02.html">Buffering</a></span></dt></dl></div><div class="sect1" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="io.streambuf.derived"></a>Derived streambuf Classes</h2></div></div></div><p>
4     </p><p>Creating your own stream buffers for I/O can be remarkably easy.
5       If you are interested in doing so, we highly recommend two very
6       excellent books:
7       <a class="ulink" href="http://www.langer.camelot.de/iostreams.html" target="_top">Standard C++
8       IOStreams and Locales</a> by Langer and Kreft, ISBN 0-201-18395-1, and
9       <a class="ulink" href="http://www.josuttis.com/libbook/" target="_top">The C++ Standard Library</a>
10       by Nicolai Josuttis, ISBN 0-201-37926-0.  Both are published by
11       Addison-Wesley, who isn't paying us a cent for saying that, honest.
12    </p><p>Here is a simple example, io/outbuf1, from the Josuttis text.  It
13       transforms everything sent through it to uppercase.  This version
14       assumes many things about the nature of the character type being
15       used (for more information, read the books or the newsgroups):
16    </p><pre class="programlisting">
17     #include &lt;iostream&gt;
18     #include &lt;streambuf&gt;
19     #include &lt;locale&gt;
20     #include &lt;cstdio&gt;
21
22     class outbuf : public std::streambuf
23     {
24       protected:
25         /* central output function
26          * - print characters in uppercase mode
27          */
28         virtual int_type overflow (int_type c) {
29             if (c != EOF) {
30                 // convert lowercase to uppercase
31                 c = std::toupper(static_cast&lt;char&gt;(c),getloc());
32
33                 // and write the character to the standard output
34                 if (putchar(c) == EOF) {
35                     return EOF;
36                 }
37             }
38             return c;
39         }
40     };
41
42     int main()
43     {
44         // create special output buffer
45         outbuf ob;
46         // initialize output stream with that output buffer
47         std::ostream out(&amp;ob);
48
49         out &lt;&lt; "31 hexadecimal: "
50             &lt;&lt; std::hex &lt;&lt; 31 &lt;&lt; std::endl;
51         return 0;
52     }
53    </pre><p>Try it yourself!  More examples can be found in 3.1.x code, in
54       <code class="code">include/ext/*_filebuf.h</code>, and on
55       <a class="ulink" href="http://www.informatik.uni-konstanz.de/~kuehl/c++/iostream/" target="_top">Dietmar
56       Kühl's IOStreams page</a>.
57    </p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="bk01pt11ch24.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="io.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="bk01pt11ch25s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 24. Iostream Objects </td><td width="20%" align="center"><a accesskey="h" href="../spine.html">Home</a></td><td width="40%" align="right" valign="top"> Buffering</td></tr></table></div></body></html>