EVOLUTION-MANAGER
Edit File: BitStuffer.cpp
/* Copyright 2015 Esri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. A local copy of the license and additional notices are located with the source distribution at: http://github.com/Esri/lerc/ Contributors: Thomas Maurer */ #include "BitStuffer.h" #include <cstring> // -------------------------------------------------------------------------- ; using namespace std; NAMESPACE_LERC_START // -------------------------------------------------------------------------- ; // see the old stream IO functions below on how to call. // if you change write(...) / read(...), don't forget to update computeNumBytesNeeded(...). bool BitStuffer::write(Byte** ppByte, const vector<unsigned int>& dataVec) { if (!ppByte || dataVec.empty()) return false; unsigned int maxElem = findMax(dataVec); int numBits = 0; while (maxElem >> numBits) numBits++; Byte numBitsByte = (Byte)numBits; unsigned int numElements = (unsigned int)dataVec.size(); unsigned int numUInts = (numElements * numBits + 31) / 32; // use the upper 2 bits to encode the type used for numElements: Byte, ushort, or uint int n = numBytesUInt(numElements); int bits67 = (n == 4) ? 0 : 3 - n; numBitsByte |= bits67 << 6; **ppByte = numBitsByte; (*ppByte)++; if (!writeUInt(ppByte, numElements, n)) return false; if (numUInts > 0) // numBits can be 0, then we only write the header { unsigned int numBytes = numUInts * sizeof(unsigned int); unsigned int* arr = (unsigned int*)(*ppByte); memset(arr, 0, numBytes); // do the stuffing const unsigned int* srcPtr = &dataVec[0]; unsigned int* dstPtr = arr; int bitPos = 0; for (unsigned int i = 0; i < numElements; i++) { if (32 - bitPos >= numBits) { unsigned int dstValue; memcpy(&dstValue, dstPtr, sizeof(unsigned int)); dstValue |= (*srcPtr++) << (32 - bitPos - numBits); memcpy(dstPtr, &dstValue, sizeof(unsigned int)); bitPos += numBits; if (bitPos == 32) // shift >= 32 is undefined { bitPos = 0; dstPtr++; } } else { int n2 = numBits - (32 - bitPos); unsigned int dstValue; memcpy(&dstValue, dstPtr, sizeof(unsigned int)); dstValue |= (*srcPtr ) >> n2; memcpy(dstPtr, &dstValue, sizeof(unsigned int)); dstPtr++; memcpy(&dstValue, dstPtr, sizeof(unsigned int)); dstValue |= (*srcPtr++) << (32 - n2); memcpy(dstPtr, &dstValue, sizeof(unsigned int)); bitPos = n2; } } // save the 0-3 bytes not used in the last UInt unsigned int numBytesNotNeeded = numTailBytesNotNeeded(numElements, numBits); unsigned int n2 = numBytesNotNeeded; while (n2--) { unsigned int dstValue; memcpy(&dstValue, dstPtr, sizeof(unsigned int)); dstValue >>= 8; memcpy(dstPtr, &dstValue, sizeof(unsigned int)); } dstPtr = arr; for (unsigned int i = 0; i < numUInts; i++) { SWAP_4(*dstPtr); // cppcheck-suppress unreadVariable dstPtr++; } *ppByte += numBytes - numBytesNotNeeded; } return true; } // -------------------------------------------------------------------------- ; bool BitStuffer::read(Byte** ppByte, vector<unsigned int>& dataVec) { if (!ppByte) return false; Byte numBitsByte = **ppByte; (*ppByte)++; int bits67 = numBitsByte >> 6; int n = (bits67 == 0) ? 4 : 3 - bits67; numBitsByte &= 63; // bits 0-5; unsigned int numElements = 0; if (!readUInt(ppByte, numElements, n)) return false; if (numBitsByte >= 32) return false; int numBits = numBitsByte; unsigned int numUInts = (numElements * numBits + 31) / 32; dataVec.resize(numElements, 0); // init with 0 if (numUInts > 0) // numBits can be 0 { unsigned int numBytes = numUInts * sizeof(unsigned int); unsigned int* arr = (unsigned int*)(*ppByte); unsigned int* srcPtr = arr; for (unsigned int i = 0; i < numUInts; i++) { SWAP_4(*srcPtr); srcPtr++; } // needed to save the 0-3 bytes not used in the last UInt srcPtr--; unsigned int lastUInt; memcpy(&lastUInt, srcPtr, sizeof(unsigned int)); unsigned int numBytesNotNeeded = numTailBytesNotNeeded(numElements, numBits); unsigned int n2 = numBytesNotNeeded; while (n2--) { unsigned int srcValue; memcpy(&srcValue, srcPtr, sizeof(unsigned int)); srcValue <<= 8; memcpy(srcPtr, &srcValue, sizeof(unsigned int)); } // do the un-stuffing srcPtr = arr; unsigned int* dstPtr = &dataVec[0]; int bitPos = 0; for (unsigned int i = 0; i < numElements; i++) { if (32 - bitPos >= numBits) { unsigned int srcValue; memcpy(&srcValue, srcPtr, sizeof(unsigned int)); unsigned int n3 = srcValue << bitPos; *dstPtr++ = n3 >> (32 - numBits); bitPos += numBits; // cppcheck-suppress shiftTooManyBits if (bitPos == 32) // shift >= 32 is undefined { bitPos = 0; srcPtr++; } } else { unsigned int srcValue; memcpy(&srcValue, srcPtr, sizeof(unsigned int)); srcPtr ++; unsigned int n3 = srcValue << bitPos; *dstPtr = n3 >> (32 - numBits); bitPos -= (32 - numBits); memcpy(&srcValue, srcPtr, sizeof(unsigned int)); *dstPtr++ |= srcValue >> (32 - bitPos); } } if (numBytesNotNeeded > 0) memcpy(srcPtr, &lastUInt, sizeof(unsigned int)); // restore the last UInt *ppByte += numBytes - numBytesNotNeeded; } return true; } unsigned int BitStuffer::computeNumBytesNeeded(unsigned int numElem, unsigned int maxElem) { int numBits = 0; while (maxElem >> numBits) numBits++; unsigned int numUInts = (numElem * numBits + 31) / 32; unsigned int numBytes = 1 + numBytesUInt(numElem) + numUInts * sizeof(unsigned int) - numTailBytesNotNeeded(numElem, numBits); return numBytes; } // -------------------------------------------------------------------------- ; // -------------------------------------------------------------------------- ; unsigned int BitStuffer::findMax(const vector<unsigned int>& dataVec) { unsigned int maxElem = 0; for (size_t i = 0; i < dataVec.size(); i++) maxElem = max(maxElem, dataVec[i]); return maxElem; } // -------------------------------------------------------------------------- ; bool BitStuffer::writeUInt(Byte** ppByte, unsigned int k, int numBytes) { Byte* ptr = *ppByte; if (numBytes == 1) { *ptr = (Byte)k; } else if (numBytes == 2) { unsigned short s = (unsigned short)k; SWAP_2(s); memcpy(ptr, &s, sizeof(unsigned short)); } else if (numBytes == 4) { SWAP_4(k); memcpy(ptr, &k, sizeof(unsigned int)); } else return false; *ppByte = ptr + numBytes; return true; } // -------------------------------------------------------------------------- ; bool BitStuffer::readUInt(Byte** ppByte, unsigned int& k, int numBytes) { Byte* ptr = *ppByte; if (numBytes == 1) { k = *ptr; } else if (numBytes == 2) { unsigned short s; memcpy(&s, ptr, sizeof(unsigned short)); SWAP_2(s); k = s; } else if (numBytes == 4) { memcpy(&k, ptr, sizeof(unsigned int)); SWAP_4(k); } else return false; *ppByte = ptr + numBytes; return true; } // -------------------------------------------------------------------------- ; unsigned int BitStuffer::numTailBytesNotNeeded(unsigned int numElem, int numBits) { int numBitsTail = (numElem * numBits) & 31; int numBytesTail = (numBitsTail + 7) >> 3; return (numBytesTail > 0) ? 4 - numBytesTail : 0; } // -------------------------------------------------------------------------- ; NAMESPACE_LERC_END