/* * 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 _HLL8ARRAY_INTERNAL_HPP_ #define _HLL8ARRAY_INTERNAL_HPP_ #include "Hll8Array.hpp" namespace datasketches { template Hll8Array::Hll8Array(const int lgConfigK, const bool startFullSize, const A& allocator): HllArray(lgConfigK, target_hll_type::HLL_8, startFullSize, allocator) { const int numBytes = this->hll8ArrBytes(lgConfigK); this->hllByteArr.resize(numBytes, 0); } template std::function*)> Hll8Array::get_deleter() const { return [](HllSketchImpl* ptr) { Hll8Array* hll = static_cast*>(ptr); using Hll8Alloc = typename std::allocator_traits::template rebind_alloc>; Hll8Alloc hll8Alloc(hll->getAllocator()); hll->~Hll8Array(); hll8Alloc.deallocate(hll, 1); }; } template Hll8Array* Hll8Array::copy() const { using Hll8Alloc = typename std::allocator_traits::template rebind_alloc>; Hll8Alloc hll8Alloc(this->getAllocator()); return new (hll8Alloc.allocate(1)) Hll8Array(*this); } template uint8_t Hll8Array::getSlot(const int slotNo) const { return this->hllByteArr[slotNo]; } template void Hll8Array::putSlot(const int slotNo, uint8_t value) { this->hllByteArr[slotNo] = value; } template int Hll8Array::getHllByteArrBytes() const { return this->hll8ArrBytes(this->lgConfigK); } template HllSketchImpl* Hll8Array::couponUpdate(int coupon) { internalCouponUpdate(coupon); return this; } template void Hll8Array::internalCouponUpdate(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 Hll8Array::mergeList(const CouponList& src) { for (auto coupon: src) { internalCouponUpdate(coupon); } } template void Hll8Array::mergeHll(const HllArray& src) { // at this point src_k >= dst_k const int src_k = 1 << src.getLgConfigK(); const int dst_mask = (1 << this->getLgConfigK()) - 1; // duplication below is to avoid a virtual method call in a loop if (src.getTgtHllType() == target_hll_type::HLL_8) { for (int i = 0; i < src_k; i++) { const uint8_t new_v = static_cast&>(src).getSlot(i); const int j = i & dst_mask; const uint8_t old_v = this->hllByteArr[j]; if (new_v > old_v) { this->hllByteArr[j] = new_v; this->hipAndKxQIncrementalUpdate(old_v, new_v); if (old_v == 0) { this->numAtCurMin--; } } } } else if (src.getTgtHllType() == target_hll_type::HLL_6) { for (int i = 0; i < src_k; i++) { const uint8_t new_v = static_cast&>(src).getSlot(i); const int j = i & dst_mask; const uint8_t old_v = this->hllByteArr[j]; if (new_v > old_v) { this->hllByteArr[j] = new_v; this->hipAndKxQIncrementalUpdate(old_v, new_v); if (old_v == 0) { this->numAtCurMin--; } } } } else { // HLL_4 for (int i = 0; i < src_k; i++) { const uint8_t new_v = static_cast&>(src).get_value(i); const int j = i & dst_mask; const uint8_t old_v = this->hllByteArr[j]; if (new_v > old_v) { this->hllByteArr[j] = new_v; this->hipAndKxQIncrementalUpdate(old_v, new_v); if (old_v == 0) { this->numAtCurMin--; } } } } } } #endif // _HLL8ARRAY_INTERNAL_HPP_