Asio Extensions
Additional functionality built on top of (Boost.)Asio
is_raw_byte_container.hpp
1 /// @file
2 /// Defines the asioext::is_raw_byte_container trait.
3 ///
4 /// @copyright Copyright (c) 2016 Tim Niederhausen (tim@rnc-ag.de)
5 /// Distributed under the Boost Software License, Version 1.0.
6 /// (See accompanying file LICENSE_1_0.txt or copy at
7 /// http://www.boost.org/LICENSE_1_0.txt)
8 
9 #ifndef ASIOEXT_ISRAWBYTECONTAINER_HPP
10 #define ASIOEXT_ISRAWBYTECONTAINER_HPP
11 
12 #include "asioext/detail/config.hpp"
13 
14 #if ASIOEXT_HAS_PRAGMA_ONCE
15 # pragma once
16 #endif
17 
18 #include <string>
19 #include <vector>
20 #include <type_traits>
21 
22 ASIOEXT_NS_BEGIN
23 
24 /// @ingroup concepts
25 /// @defgroup concept-RawByteContainer RawByteContainer
26 /// A `RawByteContainer` is a special ContiguousContainer that stores POD-type
27 /// objects with a size of 1 byte.
28 ///
29 /// ## Requirements
30 ///
31 /// The type X satisfies RawByteContainer if
32 /// * The type X satisfies SequenceContainer, and
33 /// * The type X satisfies ContiguousContainer and
34 /// * The type @c X::value_type satisfies PODType and
35 /// * The type @c X::value_type has a size of 1 byte
36 /// (<code>sizeof(X::value_type) == 1</code>) and
37 ///
38 /// Given:
39 ///
40 /// * @c a, rvalue expression of type of type X
41 /// * @c n, a value of type @c X::size_type
42 ///
43 /// The following expressions must be valid and have their specified effects:
44 ///
45 /// | expression | return type | effects | precondition | postcondition |
46 /// | ---------- | ----------- | ------- | ------------ | ------------- |
47 /// | `a.resize(n)` | void | erases or appends elements to meet `size() == n` | | `a.size() == n` |
48 ///
49 /// @{
50 
51 #if defined(ASIOEXT_IS_DOCUMENTATION)
52 /// @brief Determines whether T satisfies the @ref concept-RawByteContainer
53 /// requirements.
54 ///
55 /// @note Currently there is no automatic way of determining conformance,
56 /// so by default @c value is false. There are partial specializations for
57 /// std::vector and std::basic_string that define value as @c true if the
58 /// contained type is one of `char`, `unsigned char`, `signed char`.
59 template <class T>
61 {
62  /// @c true if T satisfies the @ref concept-RawByteContainer requirements,
63  /// @c false otherwise.
64  static const bool value;
65 };
66 #else
67 template <class T>
69 {};
70 
71 template <class Traits, class Allocator>
72 struct is_raw_byte_container<std::basic_string<char, Traits, Allocator> >
74 {};
75 
76 template <class Traits, class Allocator>
77 struct is_raw_byte_container<std::basic_string<unsigned char, Traits, Allocator> >
79 {};
80 
81 template <class Traits, class Allocator>
82 struct is_raw_byte_container<std::basic_string<signed char, Traits, Allocator> >
84 {};
85 
86 template <class Allocator>
87 struct is_raw_byte_container<std::vector<char, Allocator> >
89 {};
90 
91 template <class Allocator>
92 struct is_raw_byte_container<std::vector<unsigned char, Allocator> >
94 {};
95 
96 template <class Allocator>
97 struct is_raw_byte_container<std::vector<signed char, Allocator> >
99 {};
100 #endif
101 
102 /// @}
103 
104 ASIOEXT_NS_END
105 
106 #endif
Determines whether T satisfies the RawByteContainer requirements.
Definition: is_raw_byte_container.hpp:60
STL namespace.
static const bool value
Definition: is_raw_byte_container.hpp:64