]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/serialization/doc/headers.html
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / serialization / doc / headers.html
CommitLineData
7c673cae
FG
1<!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<!--
4(C) Copyright 2002-4 Robert Ramey - http://www.rrsd.com .
5Use, modification and distribution is subject to the Boost Software
6License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7http://www.boost.org/LICENSE_1_0.txt)
8-->
9<head>
10<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
11<link rel="stylesheet" type="text/css" href="../../../boost.css">
12<link rel="stylesheet" type="text/css" href="style.css">
13<title>Serialization - Code Structure</title>
14</head>
15<body link="#0000ff" vlink="#800080">
16<table border="0" cellpadding="7" cellspacing="0" width="100%" summary="header">
17 <tr>
18 <td valign="top" width="300">
19 <h3><a href="../../../index.htm"><img height="86" width="277" alt="C++ Boost" src="../../../boost.png" border="0"></a></h3>
20 </td>
21 <td valign="top">
22 <h1 align="center">Serialization</h1>
23 <h2 align="center">Code Structure</h2>
24 </td>
25 </tr>
26</table>
27<hr>
28
29<dl class="page-index">
30 <dt><a href="#userincludes">Files Included by User Programs</a>
31 <dl class="page-index">
32 <dt><a href="#archiveimplementations">Archive Implementations</a>
33 <dt><a href="#serializationdeclarations">Serialization Declarations</a>
34 <dt><a href="#serializationimplementations">Serialization Implementations</a>
35 </dl>
36 <dt><a href="#libraryimplementation">Files Which Implement the Library</a>
37 <dl class="page-index">
38 <dt><a href="#archivedevelopment">Archive Development</a>
39 <dt><a href="#archiveinternals">Archive Internals</a>
40 <dt><a href="#codemodules">Archive Library Code Modules</a>
41 <dt><a href="#dataflowiterators">Dataflow Iterators</a>
42 </dl>
43</dl>
44
45This library includes a large number of files. They are organized and classified
46according to the purposes listed in the above index.
47<p>
48<code style="white-space: normal">namespace</code> of classes and templates is synchronized
49with the directory in which the file is found. For example, the class declaration
50<pre><code>
51boost::archive::text_oarchive
52</code></pre>
53is included with the following declaration
54<pre><code>
55#include &lt;boost/archive/text_oarchive.hpp&gt;
56</code></pre>
57
58<a name="userincludes">
59<h3>Files Included by User Programs</h3>
60Using this library entails including headers listed in this section.
61It should not be necessary to explictly include any other header files.
62
63<a name="archiveimplementations">
64<h4>Archive Implementations</h4>
65These header files contain declarations used to save and restore data to each type
66of archive. Include the archives according to the facilities the code module requires.
67
68<dl>
69
70<dt><a target="archive_exception" href="../../../boost/archive/archive_exception.hpp">
71boost/archive/archive_exception.hpp
72</a>
73<dd>Exceptions which might be invoked by the library.</dd>
74
75<dt><a target="binary_iarchive" href="../../../boost/archive/binary_iarchive.hpp">
76boost/archive/binary_iarchive.hpp
77</a>
78<dd>native binary input archive used for loading.</dd>
79
80<dt><a target="binary_oarchive" href="../../../boost/archive/binary_oarchive.hpp">
81boost/archive/binary_oarchive.hpp
82</a>
83<dd>native binary output archive used for saving.</dd>
84
85<dt><a target="text_iarchive" href="../../../boost/archive/text_iarchive.hpp">
86boost/archive/text_iarchive.hpp
87</a>
88<dd>text input archive used for loading.</dd>
89
90<dt><a target="text_oarchive" href="../../../boost/archive/text_oarchive.hpp">
91boost/archive/text_oarchive.hpp
92</a>
93<dd>text output archive used for saving.</dd>
94
95<dt><a target="text_wiarchive" href="../../../boost/archive/text_wiarchive.hpp">
96boost/archive/text_wiarchive.hpp
97</a>
98<dd>wide character text input archive used for loading.</dd>
99
100<dt><a target="text_woarchive" href="../../../boost/archive/text_woarchive.hpp">
101boost/archive/text_woarchive.hpp
102</a>
103<dd>wide character text input archive used for saving.</dd>
104
105<dt><a target="xml_iarchive" href="../../../boost/archive/xml_iarchive.hpp">
106boost/archive/xml_iarchive.hpp
107</a>
108<dd>xml input archive used for loading.</dd>
109
110<dt><a target="text_oarchive" href="../../../boost/archive/xml_oarchive.hpp">
111boost/archive/xml_oarchive.hpp
112</a>
113<dd>xml output archive used for saving.</dd>
114
115<dt><a target="text_wiarchive" href="../../../boost/archive/xml_wiarchive.hpp">
116boost/archive/xml_wiarchive.hpp
117</a>
118<dd>wide character xml input archive used for loading.</dd>
119
120<dt><a target="text_woarchive" href="../../../boost/archive/xml_woarchive.hpp">
121boost/archive/xml_woarchive.hpp
122</a>
123<dd>wide character xml output archive used for saving.</dd>
124
125</dl>
126
127<a name="serializationdeclarations">
128<h4>Serialization Declarations</h4>
129To specify how a type is serialized, one codes templates for serialization functions.
130In the simplest cases, this does not require the inclusion of any header files for this purpose.
131In most cases one or more of the following header files will have to be included in order
132to complete or refine the description of the serializaition implementation for a given class.
133
134<dl>
135
136<dt><a target="base_object" href="../../../boost/serialization/base_object.hpp">
137boost/serialization/base_object.hpp
138</a>
139<dd>For serialization of base classes.</dd>
140
141<dt><a target="nvp" href="../../../boost/serialization/nvp.hpp">
142boost/serialization/nvp.hpp
143</a>
144<dd>To associate a name tag with a serializable object. This is necessary to
145properly render an xml archive which includes the object name.</dd>
146
147<dt><a target="split_free" href="../../../boost/serialization/split_free.hpp">
148boost/serialization/split_free.hpp
149</a>
150<dd>To divide implementation of <em>non-intrusive</em> serialization into separate
151save and load functions.</dd>
152
153<dt><a target="split_member" href="../../../boost/serialization/split_member.hpp">
154boost/serialization/split_member.hpp
155</a>
156<dd>To divide implementation of <em>intrusive</em> serialization into separate
157save and load functions.</dd>
158
159<dt><a target="export" href="../../../boost/serialization/export.hpp">
160boost/serialization/export.hpp
161</a>
162<dd>For serialization of pointers to derived classes via key export.</dd>
163
164<dt><a target="assume_abstract" href="../../../boost/serialization/assume_abstract.hpp">
165boost/serialization/assume_abstract.hpp
166</a>
167<dd>This is just a thin wrapper which permits one to explicitly specify that a
168particular type is an abstract base class. It is necessary to use this
169for compilers which don't support the boost type traits implementation of
170is_abstact.
171</dd>
172
173</dl>
174
175This group will be required less frequently. The are used to override aspects of
176the default implementation of the serialization process for specified types.
177
178<dl>
179
180<dt><a target="version" href="../../../boost/serialization/version.hpp">
181boost/serialization/version.hpp
182</a>
183<dd>To override the default version index (0) assigned to a class.</dd>
184
185<dt><a target="level" href="../../../boost/serialization/level.hpp">
186boost/serialization/level.hpp
187</a>
188<dd>To override the default implementaton level trait for a type.</dd>
189
190<dt><a target="tracking" href="../../../boost/serialization/tracking.hpp">
191boost/serialization/tracking.hpp
192</a>
193<dd>To override the default tracking trait for a type.</dd>
194
195<dt><a target="type_info_implementation" href="../../../boost/serialization/type_info_implementation.hpp">
196boost/serialization/type_info_implementation.hpp
197</a>
198<dd>By default, the library uses RTTI, to identify types at runtime. In some cases, E.G.
199such as a platform which doesn't implement RTTI, this header can be included to permit
200the override of the default runtime type identification system.</dd>
201
202</dl>
203
204<a name="serializationimplementations">
205<h4>Serialization Implementations</h4>
206This group of headers includes templates which implement serialization for Standard
207Library or Boost Library templates. Any program which uses these templates can
208invoke serialization of objects of these types just by including the corresponding header.
209<p>
210By convention these header files are named:
211
212boost/serialization/xxx.hpp
213
214where xxx is the name of the header file which contains the type to be serialized.
215For example, the declaration
216<pre><code>
217#include &lt;boost/serialization/list.hpp&gt;
218</code></pre>
219
220includes the code to implement serialization of the STL
221<code style="white-space: normal">std::list</code> type. While
222
223<pre><code>
224#include &lt;boost/serialization/shared_ptr.hpp&gt;
225</code></pre>
226
227includes code to implement serialization of the BOOST <code style="white-space: normal">boost::shared_ptr</code> type.
228
229Note that including the serialization header for a type automatically includes the
230appropriate header of the type to be serialized.
231
232As of this writing, the library includes templates of all STL library templates as well
233as templates for <code style="white-space: normal">boost::optional</code>,
234<code style="white-space: normal">boost::shared_ptr</code>, and
235<code style="white-space: normal">boost::scoped_ptr</code>.
236Presumably, this list will expand with the passage of time.
237
238<a name="libraryimplementation">
239<h3>Files Which Implement the Library</h3>
240
241<a name="archivedevelopment">
242<h4>Archive Development</h4>
243These header files contain declarations for basic types used to create
244concrete archive types that are made available to users above. Users wishing
245to make their own type of archive may want to examine these headers to
246see how the archives included with the libary have been constructed.
247
248<dl>
249
250<dt><a target="basic_archive" href="../../../boost/archive/basic_archive.hpp">
251boost/archive/basic_archive.hpp
252</a>
253</dt>
254<dd>
255This file includes declarations for certain types that have to be accounted
256for in all archive implementations. The serialization system relies on
257certain special types such as <code style="white-space: normal">class_id_type</code> and others to
258record information in archives that is required to reconstruct the original
259data structure. These are handled exactly as any other serializable type.
260That is, they can be handled as simple primitives such as they are in simple
261text files, or with special code as they are in xml archives.
262</dd>
263
264<dt><a target="basic_text_oprimitive" href="../../../boost/archive/basic_text_oprimitive.hpp">
265boost/archive/basic_text_oprimitive.hpp
266</a>
267<dt><a target="basic_text_iprimitive" href="../../../boost/archive/basic_text_iprimitive.hpp">
268boost/archive/basic_text_iprimitive.hpp
269</a>
270</dt>
271<dd>
272Implementation of serialization of primitive types in terms of character
273or wide character text streams. This is used in the implementation of text and
274xml archives. Presumably this would be useful for implementations of other variations
275of text archives such as user friendly text or windows ini files.
276</dd>
277
278<dt><a target="basic_binary_oprimitive" href="../../../boost/archive/basic_binary_oprimitive.hpp">
279boost/archive/basic_binary_oprimitive.hpp
280</a>
281<dt><a target="basic_binary_iprimitive" href="../../../boost/archive/basic_binary_iprimitive.hpp">
282boost/archive/basic_binary_iprimitive.hpp
283</a>
284</dt>
285<dd>
286Implementation of serialization of primitive types in terms of character
287or wide character binary streams.
288</dd>
289
290<dt><a target="basic_binary_oarchive" href="../../../boost/archive/basic_binary_oarchive.hpp">
291boost/archive/basic_binary_oarchive.hpp
292</a>
293<dt><a target="basic_binary_iarchive" href="../../../boost/archive/basic_binary_iarchive.hpp">
294boost/archive/basic_binary_iarchive.hpp
295</a>
296<dd>
297Implementation of serialization of all types in terms of character
298or wide character binary streams. This is factored out separately from the
299implementation of binary primitives above. This may facilitate the creation of
300other types of binary archives in the future. It also preserves analogy and symmetry with
301the rest of the library which aids in understanding.
302</dd>
303<dt><a target="basic_text_oarchive" href="../../../boost/archive/basic_text_oarchive.hpp">
304boost/archive/basic_text_oarchive.hpp
305</a>
306<dt><a target="basic_te't_iarchive" href="../../../boost/archive/basic_text_iarchive.hpp">
307boost/archive/basic_text_iarchive.hpp
308</a>
309</dt>
310<dt><a target="basic_xml_oarchive" href="../../../boost/archive/basic_xml_oarchive.hpp">
311boost/archive/basic_xml_oarchive.hpp
312</a>
313<dt><a target="basic_xml_iarchive" href="../../../boost/archive/basic_xml_iarchive.hpp">
314boost/archive/basic_xml_iarchive.hpp
315</a>
316</dt>
317<dd>
318Implementation of serialization of all types in terms of character
319or wide character text streams. These classes specify archive type specific
320behavior on a type by type basis. For example, <code style="white-space: normal">basic_xml_oarchive.hpp</code>
321includes code to guarantee that any object not attached to a name will
322trap during compile time. On the other hand, <code style="white-space: normal">basic_text_oarchive.hpp</code>
323contains code to strip out and ingore any names attached to objects.
324<p>
325<dt><a target="common_iarchive" href="../../../boost/archive/detail/common_iarchive.hpp">
326boost/archive/detail/common_iarchive.hpp
327</a>
328<dt><a target="common_oarchive" href="../../../boost/archive/detail/common_oarchive.hpp">
329boost/archive/detail/common_oarchive.hpp
330</a>
331<dd>
332All archive implementations are derived from these header files. They provide
333the interface to the internal implementation details of the library.
334</dd>
335
336</dl>
337
338<a name="archiveinternals">
339<h4>Archive Internals</h4>
340
341The interface (see <a target="detail" href="archives.html">Archive Concepts</a>)
342and implementation are factored out into separate classes to minimize code duplication.
343
344These files are found in the directory
345<a target="boost_archive_detail" href="../../../boost/archive/detail">boost/archive/detail</a>.
346These are included as necessary by the archive class implemenations listed above.
347This has the unfortunate side effect of making the implementation less transparent.
348Users should never find it necessary to change these files.
349<p>
350The following discussion is based on the
351<a target="class_diagram" href="class_diagram.html">class diagram</a>.
352<p>
353<dt><a target="interface_iarchive" href="../../../boost/archive/detail/interface_iarchive.hpp">
354boost/archive/detail/interface_iarchive.hpp</a>
355<dt><a target="interface_iarchive" href="../../../boost/archive/detail/interface_iarchive.hpp">
356boost/archive/detail/interface_iarchive.hpp</a>
357<dd>
358Here are the declarations and definitions for the
359<a href="archives.html">archive_concept</a>. This class redirects calls to the
360archive interface to a function named <code>save_override</code> in the most derived
361archive class.
362</dd>
363<code>save_override</code> is declared and implemented in each class in
364the archive hierarchy.
365
366<pre><code>
367template<class T>
368void save_override(T & t, BOOST_PFTO int){
369 // All for otherwise unhandled types are forwarded to the base class.
370 // This emulates behavior for function overloading.
371 this->base::save_override(t, 0);
372}
373void save_override(const some_type & t, int){
374 // any special handling for some type
375 // this will usually entail forwarding some other operation
376 // in the most derived class.
377 this->This()->...
378 // or in one of its parents basic_text_oprimitive
379 this->This()->save(static_cast&lt;int&gt;(t));
380}
381... // other special type handling
382</code></pre>
383
384Note the usage of
385<a target="detail" href="implementation.html#functiontemplateordering">Partial Function Template Ordering</a>
386to permit the correct save implementation to be selected.
387</dd>
388
389<a name="codemodules">
390<h4>Archive Library Code Modules</h4>
391Parts of the library are implemented as library code. All of this code is to be found in
392<a target="src" href="../../../libs/serialization/src">libs/serialization/src</a>.
393in the form of *.cpp. The directory
394<a target="src" href="../../../boost/archive/impl">boost/archive/impl</a>
395contains *.ipp files which implement templates. These templates are instantiated
396only by archive implementation so are generally not included in user code modules.
397<p>
398The trade offs related to library implementation via pre-compiled code and templated
399headers are well known. This library uses both. It uses templated headers
400to generate code to serialize user and primitive types and it uses pre-compiled
401library code for that part of the code which only depends upon the archive type.
402Building of the library generates and compiles code for all archives implemented.
403
404<ul>
405 <li>Serialization of user and primitive types runs at top speed. This is a noticeable
406 difference with a previous version of the library which did not use templates for archives.
407 <li>Library implementation code that never changes need only be compiled once
408 rather than each time a user's program is recompiled. This can save much
409 development time.
410 <li>Headers which solely related to implementation need only be included
411 in the library code modules. This prevents a user program from accidently
412 depending on an implementation feature of the serialization library.
413 <li>In building the library I came to the conclusions that there can arise
414 situations regarding static code/data instantiation that could not be
415 satisfactorily addressed without a code module. Unfortunately, I've forgotten
416 the circumstances which led me to this conclusion.
417</ul>
418An example of this is the usage of the spirit library in the library.
419It takes a long time to compile and includes lots of other files. Having this
420only in the library is much more convenient that having to include it in every
421program which uses xml serialization.
422
423<a name="dataflowiterators">
424<h4>Dataflow Iterators</h4>
425In the course of developing this library, it became convenient to make a set
426of composable iterator adaptors for handling archive text. Applications include
427escaping and unescaping xml text and implementing to/from base64 conversion among
428others.
429<p>
430This is a ripe topic in itself. It's touched upon by the
431<a href="../../../libs/iterator/doc/index.html">boost iterator</a> libraries,
432<a href="http://www.zib.de/weiser/vtl/index.html">View Template Library</a>, and others.
433<p>
434The code for these iterators is really independent of this library. But since it
435hasn't been and probably won't be reviewed outside of this context. I've left it in a directory
436local to the serialization library:
437<a target="archiveiterators" href="../../../boost/archive/iterators">boost/archive/iterators</a>.
438These iterators are described in
439<a href="dataflow.html">Dataflow Iterators</a>.
440<hr>
441<p><i>&copy; Copyright <a href="http://www.rrsd.com">Robert Ramey</a> 2002-2004.
442Distributed under the Boost Software License, Version 1.0. (See
443accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
444</i></p>
445</body>
446</html>