/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. */ #ifndef _HLL6ARRAY_INTERNAL_HPP_ #define _HLL6ARRAY_INTERNAL_HPP_ #include #include "Hll6Array.hpp" namespace datasketches { template Hll6Array::Hll6Array(const int lgConfigK, const bool startFullSize, const A& allocator): HllArray(lgConfigK, target_hll_type::HLL_6, startFullSize, allocator) { const int numBytes = this->hll6ArrBytes(lgConfigK); this->hllByteArr.resize(numBytes, 0); } template std::function*)> Hll6Array::get_deleter() const { return [](HllSketchImpl* ptr) { using Hll6Alloc = typename std::allocator_traits::template rebind_alloc>; Hll6Array* hll = static_cast*>(ptr); Hll6Alloc hll6Alloc(hll->getAllocator()); hll->~Hll6Array(); hll6Alloc.deallocate(hll, 1); }; } template Hll6Array* Hll6Array::copy() const { using Hll6Alloc = typename std::allocator_traits::template rebind_alloc>; Hll6Alloc hll6Alloc(this->getAllocator()); return new (hll6Alloc.allocate(1)) Hll6Array(*this); } template uint8_t Hll6Array::getSlot(int slotNo) const { const int startBit = slotNo * 6; const int shift = startBit & 0x7; const int byteIdx = startBit >> 3; const uint16_t twoByteVal = (this->hllByteArr[byteIdx + 1] << 8) | this->hllByteArr[byteIdx]; return (twoByteVal >> shift) & HllUtil::VAL_MASK_6; } template void Hll6Array::putSlot(int slotNo, uint8_t value) { const int startBit = slotNo * 6; const int shift = startBit & 0x7; const int byteIdx = startBit >> 3; const uint16_t valShifted = (value & 0x3F) << shift; uint16_t curMasked = (this->hllByteArr[byteIdx + 1] << 8) | this->hllByteArr[byteIdx]; curMasked &= (~(HllUtil::VAL_MASK_6 << shift)); const uint16_t insert = curMasked | valShifted; this->hllByteArr[byteIdx] = insert & 0xFF; this->hllByteArr[byteIdx + 1] = (insert & 0xFF00) >> 8; } template int Hll6Array::getHllByteArrBytes() const { return this->hll6ArrBytes(this->lgConfigK); } template HllSketchImpl* Hll6Array::couponUpdate(const int coupon) { internalCouponUpdate(coupon); return this; } template void Hll6Array::internalCouponUpdate(const int coupon) { const int configKmask = (1 << this->lgConfigK) - 1; const int slotNo = HllUtil::getLow26(coupon) & configKmask; const int newVal = HllUtil::getValue(coupon); const int curVal = getSlot(slotNo); if (newVal > curVal) { putSlot(slotNo, newVal); this->hipAndKxQIncrementalUpdate(curVal, newVal); if (curVal == 0) { this->numAtCurMin--; // interpret numAtCurMin as num zeros } } } template void Hll6Array::mergeHll(const HllArray& src) { for (auto coupon: src) { internalCouponUpdate(coupon); } } } #endif // _HLL6ARRAY_INTERNAL_HPP_