]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/property_map/doc/dynamic_property_map.html
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / property_map / doc / dynamic_property_map.html
CommitLineData
7c673cae
FG
1<?xml version="1.0" encoding="utf-8" ?>
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" xml:lang="en" lang="en">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6<meta name="generator" content="Docutils 0.6: http://docutils.sourceforge.net/" />
7<title>Boost Dynamic Property Maps</title>
8<link rel="stylesheet" href="../../parameter/doc/html/rst.css" type="text/css" />
9</head>
10<body>
11<div class="document" id="logo-dynamic-property-maps">
12<h1 class="title"><a class="reference external" href="../../../index.htm"><img align="middle" alt="Boost" class="align-middle" src="../../../boost.png" /></a> Dynamic Property Maps</h1>
13
14<!-- Copyright 2004-5 The Trustees of Indiana University.
15
16Use, modification and distribution is subject to the Boost Software
17License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
18http://www.boost.org/LICENSE_1_0.txt) -->
19<div class="section" id="summary">
20<h1><a class="toc-backref" href="#id2">Summary</a></h1>
21<p>The dynamic property map interfaces provides access to a collection of
22property maps through a dynamically-typed interface. An algorithm can
23use it to manipulate property maps without knowing their key or
24value types at compile-time. Type-safe codes can use dynamic property
25maps to interface more easily and completely with scripting languages
26and other text-based representations of key-value data.</p>
27<div class="contents topic" id="contents">
28<p class="topic-title first">Contents</p>
29<ul class="simple">
30<li><a class="reference internal" href="#summary" id="id2">Summary</a></li>
31<li><a class="reference internal" href="#introduction" id="id3">Introduction</a><ul>
32<li><a class="reference internal" href="#fred-s-info-revisited" id="id4">&quot;Fred's Info&quot; Revisited</a></li>
33</ul>
34</li>
35<li><a class="reference internal" href="#reference" id="id5">Reference</a><ul>
36<li><a class="reference internal" href="#member-functions" id="id6">Member Functions</a></li>
37<li><a class="reference internal" href="#free-functions" id="id7">Free functions</a></li>
38<li><a class="reference internal" href="#exceptions" id="id8">Exceptions</a></li>
39</ul>
40</li>
41</ul>
42</div>
43</div>
44<div class="section" id="introduction">
45<h1><a class="toc-backref" href="#id3">Introduction</a></h1>
46<p>The Boost Property Map library specifies statically type-safe
47interfaces through which key-value pairs can be manipulated by
48generic algorithms. Typically, an algorithm that uses property maps is
49parameterized on the types of the property maps it uses, and it
50manipulates them using the interfaces specified by the
51Boost Property Map Library.</p>
52<p>The following generic function illustrates property map basics.</p>
53<pre class="literal-block">
54template &lt;typename AgeMap, typename GPAMap&gt;
55void
56manipulate_freds_info(AgeMap ages, GPAMap gpas) {
57
58 typedef typename boost::property_traits&lt;AgeMap&gt;::key_type name_type;
59 typedef typename boost::property_traits&lt;AgeMap&gt;::value_type age_type;
60 typedef typename boost::property_traits&lt;GPAMap&gt;::value_type gpa_type;
61
62 name_type fred = &quot;Fred&quot;;
63
64 age_type old_age = get(ages, fred);
65 gpa_type old_gpa = get(gpas, fred);
66
67 std::cout &lt;&lt; &quot;Fred's old age: &quot; &lt;&lt; old_age &lt;&lt; &quot;\n&quot;
68 &lt;&lt; &quot;Fred's old gpa: &quot; &lt;&lt; old_gpa &lt;&lt; &quot;\n&quot;;
69
70 age_type new_age = 18;
71 gpa_type new_gpa = 3.9;
72 put(ages, fred, new_age);
73 put(gpas, fred, new_gpa);
74}
75</pre>
76<p>The function is parameterized on two property map types, <tt class="docutils literal"><span class="pre">AgeMap</span></tt> and
77<tt class="docutils literal"><span class="pre">GPAMap</span></tt>, and takes a value parameter for each of those types. The
78function uses the <tt class="docutils literal"><span class="pre">property_traits</span></tt> interface to ascertain, at
79compile-time, the value and key types of the property maps. The code
80then retrieves Fred's old information, using the <tt class="docutils literal"><span class="pre">get</span></tt> function, and
81updates it using the <tt class="docutils literal"><span class="pre">put</span></tt> function. The <tt class="docutils literal"><span class="pre">get</span></tt> function is required by the
82Readable Property Map concept and both <tt class="docutils literal"><span class="pre">get</span></tt> and <tt class="docutils literal"><span class="pre">put</span></tt> are required by the
83Read/Write Property Map concept.</p>
84<p>The above function not only requires the two type parameters to model
85property map concepts, but also makes some extra assumptions.
86<tt class="docutils literal"><span class="pre">AgeMap</span></tt> and <tt class="docutils literal"><span class="pre">GPAMap</span></tt> must have the same key type, and that type must be
87constructable from a string. Furthermore, <tt class="docutils literal"><span class="pre">AgeMap</span></tt>'s value type must be
88constructable from an <tt class="docutils literal"><span class="pre">int</span></tt>. Although these requirements are not
89explicitly stated, they are statically checked during compilation and
90failure to meet them yields compile-time errors.</p>
91<p>Although the static typing of property map interfaces usually provides
92desirable compile-time safety, some algorithms require a more dynamic
93interface to property maps. For example, the Boost Graph Library (BGL)
94provides functions that can initialize a graph by interpreting the
95contents of a textual graph description (i.e. a GraphML file). Such
96general-purpose graph description languages can specify an arbitrary
97number of edge and vertex properties, using strings to represent the
98key-value pairs. A graph reader function should capture these
99arbitrary properties, but since function templates can only be
100parameterized on a fixed number of property maps, the traditional
101techniques for handling property maps do not suffice to implement them.</p>
102<p>Dynamic property maps specifically address the need for an interface
103to property maps whose checking is delayed to runtime. Several
104components combine to provide support for dynamic property maps. The
105<tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> class collects a
106group of heterogenous objects that model concepts from
107the Boost Property Map library. Each property map is assigned a
108string-based key when it is added to the collection, and it can be
109addressed using that key. Internally, <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> adapts
110each contained property map with the dynamic property map interface,
111which provides <tt class="docutils literal"><span class="pre">get</span></tt> and <tt class="docutils literal"><span class="pre">put</span></tt> functions that
112can be called using values of any type that meets a few requirements.
113Internally, the dynamic property map converts key and value pairs to
114meet the requirements of the underlying property map or signals a
115runtime exception if it cannot.</p>
116<div class="section" id="fred-s-info-revisited">
117<h2><a class="toc-backref" href="#id4">&quot;Fred's Info&quot; Revisited</a></h2>
118<p>Here's what the example above looks like using the
119<tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> interface:</p>
120<pre class="literal-block">
121void manipulate_freds_info(boost::dynamic_properties&amp; properties)
122{
123 using boost::get;
124 std::string fred = &quot;Fred&quot;;
125
126 int old_age = get&lt;int&gt;(&quot;age&quot;, properties, fred);
127 std::string old_gpa = get(&quot;gpa&quot;, properties, fred);
128
129 std::cout &lt;&lt; &quot;Fred's old age: &quot; &lt;&lt; old_age &lt;&lt; &quot;\n&quot;
130 &lt;&lt; &quot;Fred's old gpa: &quot; &lt;&lt; old_gpa &lt;&lt; &quot;\n&quot;;
131
132 std::string new_age = &quot;18&quot;;
133 double new_gpa = 3.9;
134 put(&quot;age&quot;,properties,fred,new_age);
135 put(&quot;gpa&quot;,properties,fred,new_gpa);
136}
137</pre>
138<p>The new function is not a template parameterized on the property map
139types but instead a concrete function that takes a <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt>
140object. Furthermore, the code no longer makes reference to key or
141value types: keys and values are represented with strings.
142Nonetheless the function still uses non-string types where they are
143useful. For instance, Fred's old age is represented using an <tt class="docutils literal"><span class="pre">int</span></tt>.
144It's value is retreived by calling <tt class="docutils literal"><span class="pre">get</span></tt> with a
145type parameter, which determines its return type. Finally, the
146<tt class="docutils literal"><span class="pre">get</span></tt> and <tt class="docutils literal"><span class="pre">put</span></tt> functions are each supplied a string-based key that
147differs depending on the property of concern.</p>
148<p>Here's an example of how the above function might be called.</p>
149<pre class="literal-block">
150int main()
151{
152 using boost::get;
153
154 // build property maps using associative_property_map
155 std::map&lt;std::string, int&gt; name2age;
156 std::map&lt;std::string, double&gt; name2gpa;
157 boost::associative_property_map&lt; std::map&lt;std::string, int&gt; &gt;
158 age_map(name2age);
159 boost::associative_property_map&lt; std::map&lt;std::string, double&gt; &gt;
160 gpa_map(name2gpa);
161
162 std::string fred(&quot;Fred&quot;);
163 // add key-value information
164 name2age.insert(make_pair(fred,17));
165 name2gpa.insert(make_pair(fred,2.7));
166
167 // build and populate dynamic interface
168 boost::dynamic_properties properties;
169 properties.property(&quot;age&quot;,age_map);
170 properties.property(&quot;gpa&quot;,gpa_map);
171
172 manipulate_freds_info(properties);
173
174 std::cout &lt;&lt; &quot;Fred's age: &quot; &lt;&lt; get(age_map,fred) &lt;&lt; &quot;\n&quot;
175 &lt;&lt; &quot;Fred's gpa: &quot; &lt;&lt; get(gpa_map,fred) &lt;&lt; &quot;\n&quot;;
176}
177</pre>
178<p>The code first creates two property maps using <tt class="docutils literal"><span class="pre">std::map</span></tt> and the
179<tt class="docutils literal"><span class="pre">associative_property_map</span></tt> adaptor. After initializing the
180property maps with key-value data, it constructs a
181<tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object and adds to it both property maps,
182keyed on the strings &quot;age&quot; and &quot;gpa&quot;. Finally <tt class="docutils literal"><span class="pre">manipulate_freds_info</span></tt>
183is passed the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object and the results of its changes are
184displayed.</p>
185<p>As shown above, the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object provides, where needed, a
186dynamically-typed interface to property maps yet preserves the static
187typing of property map uses elsewhere in an application.</p>
188</div>
189</div>
190<div class="section" id="reference">
191<h1><a class="toc-backref" href="#id5">Reference</a></h1>
192<pre class="literal-block">
193class dynamic_properties
194</pre>
195<p>The <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> class provides a dynamically-typed interface to
196a set of property maps. To use it, one must populate
197an object of this class with property maps using the <tt class="docutils literal"><span class="pre">property</span></tt> member
198function.</p>
199<div class="section" id="member-functions">
200<h2><a class="toc-backref" href="#id6">Member Functions</a></h2>
201<pre class="literal-block">
202dynamic_properties()
203dynamic_properties(
204 const boost::function&lt;
205 boost::shared_ptr&lt;dynamic_property_map&gt; (
206 const std::string&amp;, const boost::any&amp;, const boost::any&amp;)
207 &gt;&amp; fn)
208</pre>
209<p>A <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object can be constructed with a function object
210that, when called, creates a new property map. The library provides the
211<tt class="docutils literal"><span class="pre">ignore_other_properties</span></tt> function object, which lets the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object ignore any properties that it hasn't been prepared to record.
212If an attempt is made
213to <tt class="docutils literal"><span class="pre">put</span></tt> a key-value pair to a nonexistent <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> key,
214then this function is called with the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> key and the
215intended property key and value . If <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> is
216default-constructed, such a <tt class="docutils literal"><span class="pre">put</span></tt> attempt throws
217<tt class="docutils literal"><span class="pre">property_not_found</span></tt>.</p>
218<pre class="literal-block">
219template&lt;typename PropertyMap&gt;
220dynamic_properties&amp;
221property(const std::string&amp; name, PropertyMap property_map)
222</pre>
223<p>This member function adds a property map to the set of maps contained,
224using <tt class="docutils literal"><span class="pre">name</span></tt> as its key.</p>
225<p>Requirements: <tt class="docutils literal"><span class="pre">PropertyMap</span></tt> must model Readable Property Map or
226Read/Write Property Map.</p>
227<pre class="literal-block">
228void insert(const std::string&amp; name, boost::shared_ptr&lt;dynamic_property_map&gt; pm)
229</pre>
230<p>This member function directly adds a <tt class="docutils literal"><span class="pre">dynamic_property_map</span></tt>
231to the collection, using <tt class="docutils literal"><span class="pre">name</span></tt> as its key.</p>
232<pre class="literal-block">
233iterator begin()
234const_iterator begin() const
235</pre>
236<p>This member function returns an iterator over the set of property maps
237held by the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object.</p>
238<pre class="literal-block">
239iterator end()
240const_iterator end() const
241</pre>
242<p>This member function returns a terminal iterator over the set of
243dynamic property maps held by the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object. It is used to
244terminate traversals over the set of dynamic property maps</p>
245<pre class="literal-block">
246iterator lower_bound(const std::string&amp; name)
247</pre>
248<p>This member function returns an iterator that points to the first
249property map whose <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> key is <tt class="docutils literal"><span class="pre">name</span></tt>.
250Bear in mind that multiple property maps may have the same
251<tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> key, so long as their property map key types differ.</p>
252<p>Invariant: The range [ lower_bound(name), end() ) contains every
253property map that has name for its <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> key.</p>
254</div>
255<div class="section" id="free-functions">
256<h2><a class="toc-backref" href="#id7">Free functions</a></h2>
257<pre class="literal-block">
258boost::shared_ptr&lt;boost::dynamic_property_map&gt;
259ignore_other_properties(const std::string&amp;,
260 const boost::any&amp;,
261 const boost::any&amp;)
262</pre>
263<p>When passed to the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> constructor, this function
264allows the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object to disregard attempts to put
265values to unknown keys without signaling an error.</p>
266<pre class="literal-block">
267template&lt;typename Key, typename Value&gt;
268bool put(const std::string&amp; name, dynamic_properties&amp; dp, const Key&amp; key,
269 const Value&amp; value)
270</pre>
271<p>This function adds a key-value pair to the property map with the
272matching name and key type. If no matching property map is found,
273behavior depends on the availability of a property map generator. If
274a property map generator was supplied when the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt>
275object was constructed, then that function is used to create a new
276property map. If the generator fails to generate a property map
277(returns a null <tt class="docutils literal"><span class="pre">shared_ptr</span></tt>), then the <tt class="docutils literal"><span class="pre">put</span></tt> function returns
278<tt class="docutils literal"><span class="pre">false</span></tt>. If, on the other hand, the <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> object
279has no property map generator (meaning it was default-constructed),
280then <tt class="docutils literal"><span class="pre">property_not_found</span></tt> is thrown. If a candidate property map is
281found but it does not support <tt class="docutils literal"><span class="pre">put</span></tt>, <tt class="docutils literal"><span class="pre">dynamic_const_put_error</span></tt> is
282thrown.</p>
283<pre class="literal-block">
284template&lt;typename Value, typename Key&gt;
285Value get(const std::string&amp; name, const dynamic_properties&amp; dp,
286 const Key&amp; key)
287</pre>
288<p>This function gets the value from the property-map whose namee is
289given and whose key type matches. If <tt class="docutils literal"><span class="pre">Value</span></tt> is <tt class="docutils literal"><span class="pre">std::string</span></tt>, then the
290property map's value type must either be <tt class="docutils literal"><span class="pre">std::string</span></tt> or model
291OutputStreamable. In the latter case, the <tt class="docutils literal"><span class="pre">get</span></tt> function converts the
292value to a string. If no matching property map is found,
293<tt class="docutils literal"><span class="pre">dynamic_get_failure</span></tt> is thrown.</p>
294<hr class="docutils" />
295<pre class="literal-block">
296class dynamic_property_map
297</pre>
298<p>This class describes the interface used by <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> to
299interact with a user's property maps polymorphically.</p>
300<pre class="literal-block">
301boost::any get(const any&amp; key)
302</pre>
303<p>Given a representation of a key, return the value associated with that key.</p>
304<p>Requirement:
3051) The object passed as the key must be convertible to a value of the
306map's key type. Details of that conversion are unspecified.
3072) For this expression to be valid, the key must be
308associated with some value, otherwise the result is undefined.</p>
309<pre class="literal-block">
310std::string get_string(const any&amp; key)
311</pre>
312<p>Given a representation of a key, return the string representation
313of the value associated with that key.</p>
314<p>Requirements:
3151) The object passed as the key must be convertible to the
316property map's key type. Details of that conversion are unspecified.
3172) For this expression to be valid, the key must be
318associated with some value, otherwise the result is undefined.
3193) The value type of the property map must model Output Streamable.</p>
320<pre class="literal-block">
321void put(const any&amp; key, const any&amp; value)
322</pre>
323<p>Given a representation of a key and a representation of a value, the
324key and value are associated in the property map.</p>
325<p>Requirements:
3261) The object passed as the key must be convertible to the
327property map's key type. Details of that conversion are unspecified.
3282) The object passed as the value must be convertible to the
329property map's value type. Details of that conversion are unspecified.
3303) The property map need not support this member function, in which
331case an error will be signaled. This is the runtime analogue of the
332Readable Property Map concept.</p>
333<pre class="literal-block">
334const std::type_info&amp; key() const
335</pre>
336<p>Returns a <tt class="docutils literal"><span class="pre">type_info</span></tt> object that represents the property map's key type.</p>
337<pre class="literal-block">
338const std::type_info&amp; value() const
339</pre>
340<p>Returns a <tt class="docutils literal"><span class="pre">type_info</span></tt> object that represents the property map's value type.</p>
341</div>
342<div class="section" id="exceptions">
343<h2><a class="toc-backref" href="#id8">Exceptions</a></h2>
344<pre class="literal-block">
345struct dynamic_property_exception : public std::exception {
346 virtual ~dynamic_property_exception() throw() {}
347};
348
349struct property_not_found : public std::exception {
350 std::string property;
351 property_not_found(const std::string&amp; property);
352 virtual ~property_not_found() throw();
353
354 const char* what() const throw();
355};
356
357struct dynamic_get_failure : public std::exception {
358 std::string property;
359 dynamic_get_failure(const std::string&amp; property);
360 virtual ~dynamic_get_failure() throw();
361
362 const char* what() const throw();
363};
364
365struct dynamic_const_put_error : public std::exception {
366 virtual ~dynamic_const_put_error() throw();
367
368 const char* what() const throw();
369};
370</pre>
371<p>Under certain circumstances, calls to <tt class="docutils literal"><span class="pre">dynamic_properties</span></tt> member
372functions will throw one of the above exceptions. The three concrete
373exceptions can all be caught using the general
374<tt class="docutils literal"><span class="pre">dynamic_property_exception</span></tt> moniker when greater precision is not
375needed. In addition, all of the above exceptions derive from the
376standard <tt class="docutils literal"><span class="pre">std::exception</span></tt> for even more generalized error handling.
377The specific circumstances that result in these exceptions are
378described above.</p>
379</div>
380</div>
381</div>
382<div class="footer">
383<hr class="footer" />
384Generated on: 2010-03-29 18:04 UTC.
385Generated by <a class="reference external" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference external" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
386
387</div>
388</body>
389</html>