dsrs 0.6.1

Rusty wrapper for Apache DataSketches
Documentation
/*
 * 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 <iostream>
#include <memory>
#include <functional>

#include "coupon_iterator.hpp"

namespace datasketches {

template<typename A>
class AuxHashMap final {
  public:
    AuxHashMap(uint8_t lgAuxArrInts, uint8_t lgConfigK, const A& allocator);
    static AuxHashMap* newAuxHashMap(uint8_t lgAuxArrInts, uint8_t lgConfigK, const A& allocator);
    static AuxHashMap* newAuxHashMap(const AuxHashMap<A>& that);

    static AuxHashMap* deserialize(const void* bytes, size_t len,
                                   uint8_t lgConfigK,
                                   uint32_t auxCount, uint8_t lgAuxArrInts,
                                   bool srcCompact, const A& allocator);
    static AuxHashMap* deserialize(std::istream& is, uint8_t lgConfigK,
                                   uint32_t auxCount, uint8_t lgAuxArrInts,
                                   bool srcCompact, const A& allocator);
    virtual ~AuxHashMap() = default;
    static std::function<void(AuxHashMap<A>*)> make_deleter();
    
    AuxHashMap* copy() const;
    uint32_t getUpdatableSizeBytes() const;
    uint32_t getCompactSizeBytes() const;

    uint32_t getAuxCount() const;
    uint32_t* getAuxIntArr();
    uint8_t getLgAuxArrInts() const;

    coupon_iterator<A> begin(bool all = false) const;
    coupon_iterator<A> end() const;

    void mustAdd(uint32_t slotNo, uint8_t value);
    uint8_t mustFindValueFor(uint32_t slotNo) const;
    void mustReplace(uint32_t slotNo, uint8_t value);

  private:
    typedef typename std::allocator_traits<A>::template rebind_alloc<AuxHashMap<A>> ahmAlloc;

    using vector_int = std::vector<uint32_t, typename std::allocator_traits<A>::template rebind_alloc<uint32_t>>;

    // static so it can be used when resizing
    static int32_t find(const uint32_t* auxArr, uint8_t lgAuxArrInts, uint8_t lgConfigK, uint32_t slotNo);

    void checkGrow();
    void growAuxSpace();

    const uint8_t lgConfigK;
    uint8_t lgAuxArrInts;
    uint32_t auxCount;
    vector_int entries;
};

}

#include "AuxHashMap-internal.hpp"

#endif /* _AUXHASHMAP_HPP_ */