]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/serialization/include/boost/archive/iterators/transform_width.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / serialization / include / boost / archive / iterators / transform_width.hpp
CommitLineData
7c673cae
FG
1#ifndef BOOST_ARCHIVE_ITERATORS_TRANSFORM_WIDTH_HPP
2#define BOOST_ARCHIVE_ITERATORS_TRANSFORM_WIDTH_HPP
3
4// MS compatible compilers support #pragma once
5#if defined(_MSC_VER)
6# pragma once
7#endif
8
9/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10// transform_width.hpp
11
12// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
13// Use, modification and distribution is subject to the Boost Software
14// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15// http://www.boost.org/LICENSE_1_0.txt)
16
17// See http://www.boost.org for updates, documentation, and revision history.
18
19// iterator which takes elements of x bits and returns elements of y bits.
20// used to change streams of 8 bit characters into streams of 6 bit characters.
21// and vice-versa for implementing base64 encodeing/decoding. Be very careful
22// when using and end iterator. end is only reliable detected when the input
23// stream length is some common multiple of x and y. E.G. Base64 6 bit
24// character and 8 bit bytes. Lowest common multiple is 24 => 4 6 bit characters
25// or 3 8 bit characters
26
27#include <boost/iterator/iterator_adaptor.hpp>
28#include <boost/iterator/iterator_traits.hpp>
29
30#include <algorithm> // std::min
31
32namespace boost {
33namespace archive {
34namespace iterators {
35
36/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
37// class used by text archives to translate char strings to wchar_t
38// strings of the currently selected locale
39template<
40 class Base,
41 int BitsOut,
42 int BitsIn,
43 class CharType = typename boost::iterator_value<Base>::type // output character
44>
45class transform_width :
46 public boost::iterator_adaptor<
47 transform_width<Base, BitsOut, BitsIn, CharType>,
48 Base,
49 CharType,
50 single_pass_traversal_tag,
51 CharType
52 >
53{
54 friend class boost::iterator_core_access;
55 typedef typename boost::iterator_adaptor<
56 transform_width<Base, BitsOut, BitsIn, CharType>,
57 Base,
58 CharType,
59 single_pass_traversal_tag,
60 CharType
61 > super_t;
62
63 typedef transform_width<Base, BitsOut, BitsIn, CharType> this_t;
64 typedef typename iterator_value<Base>::type base_value_type;
65
66 void fill();
67
68 CharType dereference() const {
69 if(!m_buffer_out_full)
70 const_cast<this_t *>(this)->fill();
71 return m_buffer_out;
72 }
73
74 bool equal_impl(const this_t & rhs){
75 if(BitsIn < BitsOut) // discard any left over bits
76 return this->base_reference() == rhs.base_reference();
77 else{
78 // BitsIn > BitsOut // zero fill
79 if(this->base_reference() == rhs.base_reference()){
80 m_end_of_sequence = true;
81 return 0 == m_remaining_bits;
82 }
83 return false;
84 }
85 }
86
87 // standard iterator interface
88 bool equal(const this_t & rhs) const {
89 return const_cast<this_t *>(this)->equal_impl(rhs);
90 }
91
92 void increment(){
93 m_buffer_out_full = false;
94 }
95
96 bool m_buffer_out_full;
97 CharType m_buffer_out;
98
99 // last read element from input
100 base_value_type m_buffer_in;
101
102 // number of bits to left in the input buffer.
103 unsigned int m_remaining_bits;
104
105 // flag to indicate we've reached end of data.
106 bool m_end_of_sequence;
107
108public:
109 // make composible buy using templated constructor
110 template<class T>
111 transform_width(T start) :
112 super_t(Base(static_cast< T >(start))),
113 m_buffer_out_full(false),
114 // To disable GCC warning, but not truly necessary
115 //(m_buffer_in will be initialized later before being
116 //used because m_remaining_bits == 0)
117 m_buffer_in(0),
118 m_remaining_bits(0),
119 m_end_of_sequence(false)
120 {}
121 // intel 7.1 doesn't like default copy constructor
122 transform_width(const transform_width & rhs) :
123 super_t(rhs.base_reference()),
124 m_buffer_out_full(rhs.m_buffer_out_full),
125 m_buffer_out(rhs.m_buffer_out),
126 m_buffer_in(rhs.m_buffer_in),
127 m_remaining_bits(rhs.m_remaining_bits),
128 m_end_of_sequence(false)
129 {}
130};
131
132template<
133 class Base,
134 int BitsOut,
135 int BitsIn,
136 class CharType
137>
138void transform_width<Base, BitsOut, BitsIn, CharType>::fill() {
139 unsigned int missing_bits = BitsOut;
140 m_buffer_out = 0;
141 do{
142 if(0 == m_remaining_bits){
143 if(m_end_of_sequence){
144 m_buffer_in = 0;
145 m_remaining_bits = missing_bits;
146 }
147 else{
148 m_buffer_in = * this->base_reference()++;
149 m_remaining_bits = BitsIn;
150 }
151 }
152
153 // append these bits to the next output
154 // up to the size of the output
155 unsigned int i = (std::min)(missing_bits, m_remaining_bits);
156 // shift interesting bits to least significant position
157 base_value_type j = m_buffer_in >> (m_remaining_bits - i);
158 // and mask off the un interesting higher bits
159 // note presumption of twos complement notation
160 j &= (1 << i) - 1;
161 // append then interesting bits to the output value
162 m_buffer_out <<= i;
163 m_buffer_out |= j;
164
165 // and update counters
166 missing_bits -= i;
167 m_remaining_bits -= i;
168 }while(0 < missing_bits);
169 m_buffer_out_full = true;
170}
171
172} // namespace iterators
173} // namespace archive
174} // namespace boost
175
176#endif // BOOST_ARCHIVE_ITERATORS_TRANSFORM_WIDTH_HPP