Blame test/random_sizes_allocator.h

Packit 345191
/*
Packit 345191
 * Copyright (C) 2017 - 2018 Intel Corporation.
Packit 345191
 * All rights reserved.
Packit 345191
 *
Packit 345191
 * Redistribution and use in source and binary forms, with or without
Packit 345191
 * modification, are permitted provided that the following conditions are met:
Packit 345191
 * 1. Redistributions of source code must retain the above copyright notice(s),
Packit 345191
 *    this list of conditions and the following disclaimer.
Packit 345191
 * 2. Redistributions in binary form must reproduce the above copyright notice(s),
Packit 345191
 *    this list of conditions and the following disclaimer in the documentation
Packit 345191
 *    and/or other materials provided with the distribution.
Packit 345191
 *
Packit 345191
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY EXPRESS
Packit 345191
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
Packit 345191
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
Packit 345191
 * EVENT SHALL THE COPYRIGHT HOLDER(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
Packit 345191
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Packit 345191
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Packit 345191
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Packit 345191
 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
Packit 345191
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
Packit 345191
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 345191
 */
Packit 345191
Packit 345191
#pragma once
Packit 345191
#include "memory_manager.h"
Packit 345191
#include <vector>
Packit 345191
#include <random>
Packit 345191
Packit 345191
class RandomSizesAllocator
Packit 345191
{
Packit 345191
private:
Packit 345191
    std::vector<MemoryManager> allocated_memory;
Packit 345191
    memkind_t kind;
Packit 345191
    std::default_random_engine generator;
Packit 345191
    std::uniform_int_distribution<int> memory_distribution;
Packit 345191
Packit 345191
    size_t get_random_size()
Packit 345191
    {
Packit 345191
        return memory_distribution(generator);
Packit 345191
    }
Packit 345191
Packit 345191
public:
Packit 345191
    RandomSizesAllocator(memkind_t kind, size_t min_size, size_t max_size,
Packit 345191
                         int max_allocations_number) :
Packit 345191
        kind(kind),
Packit 345191
        memory_distribution(min_size, max_size)
Packit 345191
    {
Packit 345191
        allocated_memory.reserve(max_allocations_number);
Packit 345191
    }
Packit 345191
Packit 345191
    size_t malloc_random_memory()
Packit 345191
    {
Packit 345191
        size_t size = get_random_size();
Packit 345191
        allocated_memory.emplace_back(kind, size);
Packit 345191
        return size;
Packit 345191
    }
Packit 345191
Packit 345191
    size_t free_random_memory()
Packit 345191
    {
Packit 345191
        if (empty())
Packit 345191
            return 0;
Packit 345191
        std::uniform_int_distribution<int> distribution(0, allocated_memory.size() - 1);
Packit 345191
        int random_index = distribution(generator);
Packit 345191
        auto it = std::begin(allocated_memory) + random_index;
Packit 345191
        size_t size = it->size();
Packit 345191
        allocated_memory.erase(it);
Packit 345191
        return size;
Packit 345191
    }
Packit 345191
Packit 345191
    bool empty()
Packit 345191
    {
Packit 345191
        return allocated_memory.empty();
Packit 345191
    }
Packit 345191
};
Packit 345191