Menu

[r1]: / trunk / boost / network / message / wrappers / headers.hpp  Maximize  Restore  History

Download this file

68 lines (52 with data), 2.4 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright Dean Michael Berris 2007.
// Distributed under 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)
#ifndef __NETWORK_MESSAGE_WRAPPERS_HEADERS_HPP__
#define __NETWORK_MESSAGE_WRAPPERS_HEADERS_HPP__
namespace boost { namespace network {
// Forward declaration
template <class Message>
struct headers_range ;
/** headers wrapper for messages.
*
* This exposes an interface similar to a map, indexable
* using operator[] taking a string as the index and returns
* a range of iterators (std::pair<iterator, iterator>)
* whose keys are all equal to the index string.
*/
namespace impl {
template <class Tag>
struct headers_wrapper : public detail::wrapper_base<Tag> {
typedef Tag tag;
typedef basic_message<tag> message_type;
typedef typename headers_range<message_type>::type range_type;
explicit headers_wrapper(basic_message<tag> & message_)
: detail::wrapper_base<tag>(message_)
{ };
range_type operator[] (std::string const & key) const {
return _message.headers().equal_range(key);
};
typename message_type::headers_container_type::size_type count(std::string const & key) const {
return _message.headers().count(key);
};
};
}; // namespace impl
/// Factory method to create the right wrapper object
template <class Tag, template <class> class Message>
inline impl::headers_wrapper<Tag>
headers(Message<Tag> & message_) {
return impl::headers_wrapper<Tag>(message_);
};
/// Template metaprogram to get the range type for a message
template <class Message>
struct headers_range {
typedef typename
std::pair<
typename Message::headers_container_type::const_iterator,
typename Message::headers_container_type::const_iterator>
type;
};
}; // namespace network
}; // namespace boost
#endif // __NETWORK_MESSAGE_WRAPPERS_HEADERS_HPP__