//pack_uint.h // /* The MIT License (MIT) Copyright (c) 2012-2017 HouSisong Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef __PACK_UINT_H_ #define __PACK_UINT_H_ #include #include "../../HPatch/patch_types.h" //hpatch_packUIntWithTag #include //std::runtime_error #include namespace hdiff_private{ template inline static void packUIntWithTag(std::vector& out_code,_UInt uValue, int highTag,const int kTagBit){ unsigned char codeBuf[hpatch_kMaxPackedUIntBytes]; unsigned char* codeEnd=codeBuf; if (!hpatch_packUIntWithTag(&codeEnd,codeBuf+hpatch_kMaxPackedUIntBytes,uValue,highTag,kTagBit)) throw std::runtime_error("packUIntWithTag<_UInt>() hpatch_packUIntWithTag() error!"); out_code.insert(out_code.end(),codeBuf,codeEnd); } template inline static void packUInt(std::vector& out_code,_UInt uValue){ packUIntWithTag(out_code,uValue,0,0); } inline static void pushBack(std::vector& out_buf, const unsigned char* data,const unsigned char* data_end){ out_buf.insert(out_buf.end(),data,data_end); } inline static void pushBack(std::vector& out_buf, const unsigned char* data,size_t dataSize){ pushBack(out_buf,data,data+dataSize); } inline static void pushBack(std::vector& out_buf,const std::vector& data){ out_buf.insert(out_buf.end(),data.begin(),data.end()); } static void pushBack(std::vector& out_buf,const hpatch_TStreamInput* data){ const size_t kStepSize=hpatch_kStreamCacheSize*4; unsigned char buf[kStepSize]; out_buf.reserve(out_buf.size()+(size_t)data->streamSize); hpatch_StreamPos_t curPos=0; while (curPosstreamSize){ size_t len=kStepSize; if (curPos+len>data->streamSize) len=(size_t)(data->streamSize-curPos); if (!data->read(data,curPos,buf,buf+len)) throw std::runtime_error("pushBack() data->read() error!"); pushBack(out_buf,buf,len); curPos+=len; } } template inline static void pushUInt(std::vector& out_buf,TUInt v){ unsigned char buf[sizeof(TUInt)]; for (size_t i=0; i1) v>>=8; } pushBack(out_buf,buf,sizeof(TUInt)); } inline static void pushUInt(std::vector& out_buf,unsigned char v){ out_buf.insert(out_buf.end(),v); } inline static void pushCStr(std::vector& out_buf,const char* cstr){ const unsigned char* data=(const unsigned char*)cstr; pushBack(out_buf,data,data+strlen(cstr)); } inline static void pushString(std::vector& out_buf,const std::string& str){ const unsigned char* data=(const unsigned char*)str.c_str(); pushBack(out_buf,data,data+str.size()); } struct TPlaceholder{ hpatch_StreamPos_t pos; hpatch_StreamPos_t pos_end; inline TPlaceholder(hpatch_StreamPos_t _pos,hpatch_StreamPos_t _pos_end) :pos(_pos),pos_end(_pos_end){ assert(_pos<=_pos_end); } inline hpatch_StreamPos_t size()const{ return pos_end-pos; } inline bool isNullPos()const{ return (pos_end==0)&&(pos_end==pos); } }; hpatch_inline static void packUInt_fixSize(unsigned char* out_code,unsigned char* out_code_fixEnd, hpatch_StreamPos_t uValue){ if (out_code>=out_code_fixEnd) throw std::runtime_error("packUInt_fixSize() out_code size error!"); --out_code_fixEnd; *out_code_fixEnd=uValue&((1<<7)-1); uValue>>=7; while (out_code>=7; } if (uValue!=0) throw std::runtime_error("packUInt_fixSize() out_code too small error!"); } }//namespace hdiff_private #endif //__PACK_UINT_H_