X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=src%2Fio%2Frecord.h;h=28a9b1e710da79be26bbff034207328bf7fd86aa;hb=ecdc4c456ebcc3e0871b765d1f4d15e73520d2a3;hp=27c40c13e0aa2717c59ae53b6d7541c839fdee90;hpb=5e63f619c0ea0d16babd26d98d14489c311c5ebe;p=cassiopeia.git diff --git a/src/io/record.h b/src/io/record.h index 27c40c1..28a9b1e 100644 --- a/src/io/record.h +++ b/src/io/record.h @@ -57,13 +57,21 @@ public: } template - static void read( std::string::iterator& it, T&& val ) { - char* data = reinterpret_cast( &val ); + static void read( std::string::const_iterator& it, T& val ) { + union typeConversion { + char buf[sizeof( T )]; + T value; + + typeConversion( const T& v ) : value( v ) {} + }; + + typeConversion data( 0 ); for( size_t i = 0; i < sizeof( T ); i++ ) { - data[i] = *it; - it++; + data.buf[i] = *it++; } + + val = data.value; } std::string packToString() { @@ -79,12 +87,12 @@ public: return res; } - void unpackFromString( std::string str ) { + void unpackFromString( const std::string& str ) { if( str.size() != RECORD_HEADER_SIZE ) { throw "Invalid string length"; } - auto it = str.begin(); + auto it = str.cbegin(); read( it, command ); read( it, flags ); read( it, sessid ); @@ -96,6 +104,6 @@ public: }; -std::string parseCommand( RecordHeader& head, const std::string& input, std::shared_ptr log ); +std::string parseCommand( RecordHeader& head, const std::string& input ); -void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr bio, std::shared_ptr log ); +void sendCommand( RecordHeader& head, const std::string& data, std::shared_ptr bio );