binary_o_stream.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #include "io_common.h"
00044 #include "binary_o_stream.h"
00045
00046
00047
00048 #if LASS_COMPILER_TYPE == LASS_COMPILER_TYPE_MSVC
00049 # pragma warning(disable: 4311) // 'reinterpret_cast' : 'reinterpret_cast' : pointer truncation from 'const void *' to 'lass::num::TintPtr'
00050 #endif
00051
00052 namespace lass
00053 {
00054 namespace io
00055 {
00056
00057
00058
00059 BinaryOStream::BinaryOStream():
00060 BinaryStreamBase()
00061 {
00062 }
00063
00064
00065
00066 BinaryOStream::~BinaryOStream()
00067 {
00068 }
00069
00070
00071
00072 long BinaryOStream::tellp() const
00073 {
00074 return doTellp();
00075 }
00076
00077
00078
00079 BinaryOStream& BinaryOStream::seekp(long position)
00080 {
00081 doSeekp(position, std::ios_base::beg);
00082 return *this;
00083 }
00084
00085
00086
00087 BinaryOStream& BinaryOStream::seekp(long offset, std::ios_base::seekdir direction)
00088 {
00089 doSeekp(offset, direction);
00090 return *this;
00091 }
00092
00093
00094
00095 void BinaryOStream::flush()
00096 {
00097 doFlush();
00098 }
00099
00100
00101
00102 BinaryOStream& BinaryOStream::operator<<( char x )
00103 {
00104 return writeValue(x);
00105 }
00106
00107
00108
00109 BinaryOStream& BinaryOStream::operator<<( num::Tint8 x )
00110 {
00111 return writeValue(x);
00112 }
00113
00114
00115
00116 BinaryOStream& BinaryOStream::operator<<( num::Tuint8 x )
00117 {
00118 return writeValue(x);
00119 }
00120
00121
00122
00123 BinaryOStream& BinaryOStream::operator<<( num::Tint16 x )
00124 {
00125 return writeValue(x);
00126 }
00127
00128
00129
00130 BinaryOStream& BinaryOStream::operator<<( num::Tuint16 x )
00131 {
00132 return writeValue(x);
00133 }
00134
00135
00136
00137 BinaryOStream& BinaryOStream::operator<<( num::Tint32 x )
00138 {
00139 return writeValue(x);
00140 }
00141
00142
00143
00144 BinaryOStream& BinaryOStream::operator<<( num::Tuint32 x )
00145 {
00146 return writeValue(x);
00147 }
00148
00149
00150
00151 BinaryOStream& BinaryOStream::operator<<( num::Tint64 x )
00152 {
00153 return writeValue(x);
00154 }
00155
00156
00157
00158 BinaryOStream& BinaryOStream::operator<<( num::Tuint64 x )
00159 {
00160 return writeValue(x);
00161 }
00162
00163
00164
00165 BinaryOStream& BinaryOStream::operator<<( num::Tfloat32 x )
00166 {
00167 return writeValue(x);
00168 }
00169
00170
00171
00172 BinaryOStream& BinaryOStream::operator<<( num::Tfloat64 x )
00173 {
00174 return writeValue(x);
00175 }
00176
00177
00178
00179 BinaryOStream& BinaryOStream::operator<<(bool x)
00180 {
00181 return *this << (x ? num::Tuint8(1) : num::Tuint8(0));
00182 }
00183
00184
00185
00186 BinaryOStream& BinaryOStream::operator<<(const void* x)
00187 {
00188 LASS_META_ASSERT(sizeof(num::TintPtr) == sizeof(const void*), TintPtr_should_be_of_pointer_size);
00189 return *this << static_cast<num::Tint64>(reinterpret_cast<num::TintPtr>(x));
00190 }
00191
00192
00193
00194 BinaryOStream& BinaryOStream::operator<<(const char* x)
00195 {
00196 return writeString(x, strlen(x));
00197 }
00198
00199
00200
00201 BinaryOStream& BinaryOStream::operator<<(const std::string& x)
00202 {
00203 return writeString(x.data(), x.length());
00204 }
00205
00206
00207
00208
00209
00210
00211
00212 void BinaryOStream::write(const void* bytes, size_t numBytes)
00213 {
00214 doWrite(bytes, numBytes);
00215 }
00216
00217
00218
00219 template <typename T>
00220 BinaryOStream& BinaryOStream::writeValue(T x)
00221 {
00222 const T temp = num::fixEndianness(x, endianness());
00223 doWrite(&temp, sizeof(T));
00224 return *this;
00225 }
00226
00227
00228
00229 BinaryOStream& BinaryOStream::writeString(const char* string, size_t length)
00230 {
00231 const num::Tuint64 n = static_cast<num::Tuint64>(length);
00232 LASS_ASSERT(length == static_cast<size_t>(n));
00233 *this << n;
00234 doWrite(string, length);
00235 return *this;
00236 }
00237
00238 }
00239
00240 }
00241