/usr/include/ola/io/BigEndianStream.h is in libola-dev 0.9.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | /*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* BigEndianStream.h
* Wraps another {Input,Output}StreamInterface object and converts from Big
* Endian to host order.
* Copyright (C) 2012 Simon Newton
*/
#ifndef INCLUDE_OLA_IO_BIGENDIANSTREAM_H_
#define INCLUDE_OLA_IO_BIGENDIANSTREAM_H_
#include <ola/io/InputStream.h>
#include <ola/io/OutputStream.h>
#include <ola/network/NetworkUtils.h>
#include <string>
namespace ola {
namespace io {
// An abstract class that guarantees byte order will be converted.
class BigEndianInputStreamInterface: public InputStreamInterface {};
/**
* BigEndianInputStreamAdaptor.
* Wraps a InputStreamInterface object and converts from Big Endian to
* host order.
*/
class BigEndianInputStreamAdaptor: public BigEndianInputStreamInterface {
public:
// Ownership of the stream is not transferred.
explicit BigEndianInputStreamAdaptor(InputStreamInterface *stream)
: m_stream(stream) {
}
~BigEndianInputStreamAdaptor() {}
bool operator>>(int8_t &val) { return ExtractAndConvert(&val); }
bool operator>>(uint8_t &val) { return ExtractAndConvert(&val); }
bool operator>>(int16_t &val) { return ExtractAndConvert(&val); }
bool operator>>(uint16_t &val) { return ExtractAndConvert(&val); }
bool operator>>(int32_t &val) { return ExtractAndConvert(&val); }
bool operator>>(uint32_t &val) { return ExtractAndConvert(&val); }
unsigned int ReadString(std::string *output, unsigned int size) {
return m_stream->ReadString(output, size);
}
private:
InputStreamInterface *m_stream;
template <typename T>
bool ExtractAndConvert(T *val) {
bool ok = (*m_stream) >> *val;
*val = ola::network::NetworkToHost(*val);
return ok;
}
BigEndianInputStreamAdaptor(const BigEndianInputStreamAdaptor&);
BigEndianInputStreamAdaptor& operator=(const BigEndianInputStreamAdaptor&);
};
/**
* A Big Endian Input stream that wraps an InputBufferInterface
*/
class BigEndianInputStream: public BigEndianInputStreamInterface {
public:
// Ownership of the InputBuffer is not transferred.
explicit BigEndianInputStream(InputBufferInterface *buffer)
: m_input_stream(buffer),
m_adaptor(&m_input_stream) {
}
~BigEndianInputStream() {}
bool operator>>(int8_t &val) { return m_adaptor >> val; }
bool operator>>(uint8_t &val) { return m_adaptor >> val; }
bool operator>>(int16_t &val) { return m_adaptor >> val; }
bool operator>>(uint16_t &val) { return m_adaptor >> val; }
bool operator>>(int32_t &val) { return m_adaptor >> val; }
bool operator>>(uint32_t &val) { return m_adaptor >> val; }
unsigned int ReadString(std::string *output, unsigned int size) {
return m_adaptor.ReadString(output, size);
}
private:
InputStream m_input_stream;
BigEndianInputStreamAdaptor m_adaptor;
BigEndianInputStream(const BigEndianInputStream&);
BigEndianInputStream& operator=(const BigEndianInputStream&);
};
// An abstract class that guarantees byte order will be converted.
class BigEndianOutputStreamInterface: public OutputStreamInterface {};
/**
* BigEndianOutputStreamAdaptor.
* Wraps a OutputStreamInterface object and converts from Big Endian to
* host order.
*/
class BigEndianOutputStreamAdaptor: public BigEndianOutputStreamInterface {
public:
// Ownership of the stream is not transferred.
explicit BigEndianOutputStreamAdaptor(OutputStreamInterface *stream)
: m_stream(stream) {
}
~BigEndianOutputStreamAdaptor() {}
void Write(const uint8_t *data, unsigned int length) {
m_stream->Write(data, length);
}
BigEndianOutputStreamAdaptor& operator<<(int8_t val) {
return ConvertAndWrite(val);
}
BigEndianOutputStreamAdaptor& operator<<(uint8_t val) {
return ConvertAndWrite(val);
}
BigEndianOutputStreamAdaptor& operator<<(int16_t val) {
return ConvertAndWrite(val);
}
BigEndianOutputStreamAdaptor& operator<<(uint16_t val) {
return ConvertAndWrite(val);
}
BigEndianOutputStreamAdaptor& operator<<(int32_t val) {
return ConvertAndWrite(val);
}
BigEndianOutputStreamAdaptor& operator<<(uint32_t val) {
return ConvertAndWrite(val);
}
private:
OutputStreamInterface *m_stream;
template <typename T>
BigEndianOutputStreamAdaptor& ConvertAndWrite(const T &val) {
(*m_stream) << ola::network::HostToNetwork(val);
return *this;
}
BigEndianOutputStreamAdaptor(const BigEndianOutputStreamAdaptor&);
BigEndianOutputStreamAdaptor& operator=(
const BigEndianOutputStreamAdaptor&);
};
/**
* A Big Endian Input stream that wraps an OutputBufferInterface
*/
class BigEndianOutputStream: public BigEndianOutputStreamInterface {
public:
// Ownership of the OutputBuffer is not transferred.
explicit BigEndianOutputStream(OutputBufferInterface *buffer)
: m_output_stream(buffer),
m_adaptor(&m_output_stream) {
}
~BigEndianOutputStream() {}
void Write(const uint8_t *data, unsigned int length) {
m_adaptor.Write(data, length);
}
BigEndianOutputStream& operator<<(int8_t val) { return Output(val); }
BigEndianOutputStream& operator<<(uint8_t val) { return Output(val); }
BigEndianOutputStream& operator<<(int16_t val) { return Output(val); }
BigEndianOutputStream& operator<<(uint16_t val) { return Output(val); }
BigEndianOutputStream& operator<<(int32_t val) { return Output(val); }
BigEndianOutputStream& operator<<(uint32_t val) { return Output(val); }
private:
OutputStream m_output_stream;
BigEndianOutputStreamAdaptor m_adaptor;
template <typename T>
BigEndianOutputStream& Output(T val) {
m_adaptor << val;
return *this;
}
BigEndianOutputStream(const BigEndianOutputStream&);
BigEndianOutputStream& operator=(const BigEndianOutputStream&);
};
} // namespace io
} // namespace ola
#endif // INCLUDE_OLA_IO_BIGENDIANSTREAM_H_
|