]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/locale/doc/html/charset_handling.html
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / locale / doc / html / charset_handling.html
CommitLineData
7c673cae
FG
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5<meta http-equiv="X-UA-Compatible" content="IE=9"/>
6<meta name="generator" content="Doxygen 1.8.6"/>
7<title>Boost.Locale: Character Set Conversions</title>
8<link href="tabs.css" rel="stylesheet" type="text/css"/>
9<script type="text/javascript" src="jquery.js"></script>
10<script type="text/javascript" src="dynsections.js"></script>
11<link href="navtree.css" rel="stylesheet" type="text/css"/>
12<script type="text/javascript" src="resize.js"></script>
13<script type="text/javascript" src="navtree.js"></script>
14<script type="text/javascript">
15 $(document).ready(initResizable);
16 $(window).load(resizeHeight);
17</script>
18<link href="doxygen.css" rel="stylesheet" type="text/css" />
19</head>
20<body>
21<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
22<div id="titlearea">
23<table cellspacing="0" cellpadding="0">
24 <tbody>
25 <tr style="height: 56px;">
26 <td id="projectlogo"><img alt="Logo" src="boost-small.png"/></td>
27 <td style="padding-left: 0.5em;">
28 <div id="projectname">Boost.Locale
29 </div>
30 </td>
31 </tr>
32 </tbody>
33</table>
34</div>
35<!-- end header part -->
36<!-- Generated by Doxygen 1.8.6 -->
37 <div id="navrow1" class="tabs">
38 <ul class="tablist">
39 <li><a href="index.html"><span>Main&#160;Page</span></a></li>
40 <li class="current"><a href="pages.html"><span>Related&#160;Pages</span></a></li>
41 <li><a href="modules.html"><span>Modules</span></a></li>
42 <li><a href="namespaces.html"><span>Namespaces</span></a></li>
43 <li><a href="annotated.html"><span>Classes</span></a></li>
44 <li><a href="files.html"><span>Files</span></a></li>
45 <li><a href="examples.html"><span>Examples</span></a></li>
46 </ul>
47 </div>
48</div><!-- top -->
49<div id="side-nav" class="ui-resizable side-nav-resizable">
50 <div id="nav-tree">
51 <div id="nav-tree-contents">
52 <div id="nav-sync" class="sync"></div>
53 </div>
54 </div>
55 <div id="splitbar" style="-moz-user-select:none;"
56 class="ui-resizable-handle">
57 </div>
58</div>
59<script type="text/javascript">
60$(document).ready(function(){initNavTree('charset_handling.html','');});
61</script>
62<div id="doc-content">
63<div class="header">
64 <div class="headertitle">
65<div class="title">Character Set Conversions </div> </div>
66</div><!--header-->
67<div class="contents">
68<div class="textblock"><h1><a class="anchor" id="codecvt"></a>
69Convenience Interface</h1>
70<p>Boost.Locale provides <a class="el" href="group__codepage.html#ga2ca59a735ca28c9d5103e37ef2373ca1">to_utf</a>, <a class="el" href="group__codepage.html#gaef8fb7771dce60511d081770547a4139">from_utf</a> and <a class="el" href="group__codepage.html#gaf0ad39959911b000706e0538ec059d44">utf_to_utf</a> functions in the <code><a class="el" href="namespaceboost_1_1locale_1_1conv.html" title="Namespace that contains all functions related to character set conversion. ">boost::locale::conv</a></code> namespace. They are simple and convenient functions to convert a string to and from UTF-8/16/32 strings and strings using other encodings.</p>
71<p>For example:</p>
72<div class="fragment"><div class="line">std::string utf8_string = to_utf&lt;char&gt;(latin1_string,<span class="stringliteral">&quot;Latin1&quot;</span>);</div>
73<div class="line">std::wstring wide_string = to_utf&lt;wchar_t&gt;(latin1_string,<span class="stringliteral">&quot;Latin1&quot;</span>);</div>
74<div class="line">std::string latin1_string = <a class="code" href="group__codepage.html#gaef8fb7771dce60511d081770547a4139">from_utf</a>(wide_string,<span class="stringliteral">&quot;Latin1&quot;</span>);</div>
75<div class="line">std::string utf8_string2 = utf_to_utf&lt;char&gt;(wide_string);</div>
76</div><!-- fragment --><p>This function may use an explicit encoding name like "Latin1" or "ISO-8859-8", or use std::locale as a parameter to fetch this information from it. It also receives a policy parameter that tells it how to behave if the conversion can't be performed (i.e. an illegal or unsupported character is found). By default this function skips all illegal characters and tries to do the best it can, however, it is possible ask it to throw a <a class="el" href="classboost_1_1locale_1_1conv_1_1conversion__error.html">conversion_error</a> exception by passing the <code>stop</code> flag to it:</p>
77<div class="fragment"><div class="line">std::wstring s=to_utf&lt;wchar_t&gt;(<span class="stringliteral">&quot;\xFF\xFF&quot;</span>,<span class="stringliteral">&quot;UTF-8&quot;</span>,<a class="code" href="group__codepage.html#gga8e3c5a274f57107ec5745e227c26ba84aab08f9ee241c405ef40bd3cedb43b383">stop</a>); </div>
78<div class="line"><span class="comment">// Throws because this string is illegal in UTF-8</span></div>
79</div><!-- fragment --><h1><a class="anchor" id="codecvt_codecvt"></a>
80std::codecvt facet</h1>
81<p>Boost.Locale provides stream codepage conversion facets based on the <code>std::codecvt</code> facet. This allows conversion between wide-character encodings and 8-bit encodings like UTF-8, ISO-8859 or Shift-JIS.</p>
82<p>Most of compilers provide such facets, but:</p>
83<ul>
84<li>Under Windows MSVC does not support UTF-8 encodings at all.</li>
85<li>Under Linux the encodings are supported only if the required locales are generated. For example it may be impossible to create a <code>he_IL.CP1255</code> locale even when the <code>he_IL</code> locale is available.</li>
86</ul>
87<p>Thus Boost.Locale provides an option to generate code-page conversion facets for use with Boost.Iostreams filters or <code>std::wfstream</code>. For example:</p>
88<div class="fragment"><div class="line">std::locale loc= generator().generate(<span class="stringliteral">&quot;he_IL.UTF-8&quot;</span>);</div>
89<div class="line">std::wofstream file.</div>
90<div class="line">file.imbue(loc);</div>
91<div class="line">file.open(<span class="stringliteral">&quot;hello.txt&quot;</span>);</div>
92<div class="line">file &lt;&lt; L<span class="stringliteral">&quot;שלום!&quot;</span> &lt;&lt; endl;</div>
93</div><!-- fragment --><p>Would create a file <code>hello.txt</code> encoded as UTF-8 with "שלום!" (shalom) in it.</p>
94<h1><a class="anchor" id="codecvt_iostreams_integration"></a>
95Integration with Boost.Iostreams</h1>
96<p>You can use the <code>std::codecvt</code> facet directly, but this is quite tricky and requires accurate buffer and error management.</p>
97<p>You can use the <code>boost::iostreams::code_converter</code> class for stream-oriented conversions between the wide-character set and narrow locale character set.</p>
98<p>This is a sample program that converts wide to narrow characters for an arbitrary stream:</p>
99<div class="fragment"><div class="line"><span class="preprocessor">#include &lt;boost/iostreams/stream.hpp&gt;</span></div>
100<div class="line"><span class="preprocessor">#include &lt;boost/iostreams/categories.hpp&gt;</span> </div>
101<div class="line"><span class="preprocessor">#include &lt;boost/iostreams/code_converter.hpp&gt;</span></div>
102<div class="line"></div>
103<div class="line"><span class="preprocessor">#include &lt;boost/locale.hpp&gt;</span></div>
104<div class="line"><span class="preprocessor">#include &lt;iostream&gt;</span></div>
105<div class="line"></div>
106<div class="line"><span class="keyword">namespace </span>io = boost::iostreams;</div>
107<div class="line"></div>
108<div class="line"><span class="comment">// Device that consumes the converted text,</span></div>
109<div class="line"><span class="comment">// In our case it just writes to standard output</span></div>
110<div class="line"><span class="keyword">class </span>consumer {</div>
111<div class="line"><span class="keyword">public</span>:</div>
112<div class="line"> <span class="keyword">typedef</span> <span class="keywordtype">char</span> char_type;</div>
113<div class="line"> <span class="keyword">typedef</span> io::sink_tag category;</div>
114<div class="line"> std::streamsize write(<span class="keyword">const</span> <span class="keywordtype">char</span>* s, std::streamsize n)</div>
115<div class="line"> {</div>
116<div class="line"> std::cout.write(s,n);</div>
117<div class="line"> <span class="keywordflow">return</span> n;</div>
118<div class="line"> }</div>
119<div class="line">};</div>
120<div class="line"></div>
121<div class="line"></div>
122<div class="line"><span class="keywordtype">int</span> main()</div>
123<div class="line">{ </div>
124<div class="line"> <span class="comment">// the device that converts wide characters</span></div>
125<div class="line"> <span class="comment">// to narrow</span></div>
126<div class="line"> <span class="keyword">typedef</span> io::code_converter&lt;consumer&gt; converter_device;</div>
127<div class="line"> <span class="comment">// the stream that uses this device</span></div>
128<div class="line"> <span class="keyword">typedef</span> io::stream&lt;converter_device&gt; converter_stream;</div>
129<div class="line"></div>
130<div class="line"></div>
131<div class="line"> consumer cons;</div>
132<div class="line"> <span class="comment">// setup out converter to work</span></div>
133<div class="line"> <span class="comment">// with he_IL.UTF-8 locale </span></div>
134<div class="line"> converter_device dev;</div>
135<div class="line"> <a class="code" href="classboost_1_1locale_1_1generator.html">boost::locale::generator</a> gen;</div>
136<div class="line"> dev.imbue(gen(<span class="stringliteral">&quot;he_IL.UTF-8&quot;</span>));</div>
137<div class="line"> dev.open(cons);</div>
138<div class="line"> converter_stream stream;</div>
139<div class="line"> stream.open(dev);</div>
140<div class="line"> <span class="comment">// Now wide characters that are written</span></div>
141<div class="line"> <span class="comment">// to the stream would be given to</span></div>
142<div class="line"> <span class="comment">// our consumer as narrow characters </span></div>
143<div class="line"> <span class="comment">// in UTF-8 encoding</span></div>
144<div class="line"> stream &lt;&lt; L<span class="stringliteral">&quot;שלום&quot;</span> &lt;&lt; std::flush;</div>
145<div class="line">}</div>
146</div><!-- fragment --><h1><a class="anchor" id="codecvt_limitations"></a>
147Limitations of std::codecvt</h1>
148<p>The Standard does not provide any information about <code>std::mbstate_t</code> that could be used to save intermediate code-page conversion states. It leaves the definition up to the compiler implementation, making it impossible to reimplement <code>std::codecvt&lt;wchar_t,char,mbstate_t&gt;</code> for stateful encodings. Thus, Boost.Locale's <code>codecvt</code> facet implementation may be used with stateless encodings like UTF-8, ISO-8859, and Shift-JIS, but not with stateful encodings like UTF-7 or SCSU.</p>
149<p><b>Recommendation:</b> Prefer the Unicode UTF-8 encoding for <code>char</code> based strings and files in your application.</p>
150<dl class="section note"><dt>Note</dt><dd></dd></dl>
151<p>The implementation of codecvt for single byte encodings like ISO-8859-X and for UTF-8 is very efficent and would allow fast conversion of the content, however its performance may be sub-optimal for double-width encodings like Shift-JIS, due to the stateless problem described above. </p>
152</div></div><!-- contents -->
153</div><!-- doc-content -->
154
155 <li class="footer">
156&copy; Copyright 2009-2012 Artyom Beilis, Distributed under the <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License</a>, Version 1.0.
157 </li>
158 </ul>
159 </div>
160</body>
161</html>