blob: e5a6a296e001d5aed1f3b7ec2196543ce10020eb [file] [log] [blame]
/*
* 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 _AUXHASHMAP_HPP_
#define _AUXHASHMAP_HPP_
#include "PairIterator.hpp"
#include <memory>
namespace datasketches {
template<typename A = std::allocator<char>>
class AuxHashMap final {
public:
explicit AuxHashMap(int lgAuxArrInts, int lgConfigK);
explicit AuxHashMap(const AuxHashMap<A>& that);
static AuxHashMap* newAuxHashMap(int lgAuxArrInts, int lgConfigK);
static AuxHashMap* newAuxHashMap(const AuxHashMap<A>& that);
static AuxHashMap* deserialize(const void* bytes, size_t len,
int lgConfigK,
int auxCount, int lgAuxArrInts,
bool srcCompact);
static AuxHashMap* deserialize(std::istream& is, int lgConfigK,
int auxCount, int lgAuxArrInts,
bool srcCompact);
virtual ~AuxHashMap();
static std::function<void(AuxHashMap<A>*)> make_deleter();
AuxHashMap* copy() const;
int getUpdatableSizeBytes() const;
int getCompactSizeBytes() const;
int getAuxCount() const;
int* getAuxIntArr();
int getLgAuxArrInts() const;
pair_iterator_with_deleter<A> getIterator() const;
void mustAdd(int slotNo, int value);
int mustFindValueFor(int slotNo);
void mustReplace(int slotNo, int value);
private:
typedef typename std::allocator_traits<A>::template rebind_alloc<AuxHashMap<A>> ahmAlloc;
// static so it can be used when resizing
static int find(const int* auxArr, int lgAuxArrInts, int lgConfigK, int slotNo);
void checkGrow();
void growAuxSpace();
const int lgConfigK;
int lgAuxArrInts;
int auxCount;
int* auxIntArr;
};
}
#include "AuxHashMap-internal.hpp"
#endif /* _AUXHASHMAP_HPP_ */