2017-04-23 14:11:21 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2017, Timothy Stack
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* * Neither the name of Timothy Stack nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ''AS IS'' AND ANY
|
|
|
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
2022-03-16 22:38:08 +00:00
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
2017-04-23 14:11:21 +00:00
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @file big_array.hh
|
|
|
|
*/
|
|
|
|
|
2020-11-15 05:39:12 +00:00
|
|
|
#ifndef lnav_big_array_hh
|
|
|
|
#define lnav_big_array_hh
|
2017-04-23 14:11:21 +00:00
|
|
|
|
|
|
|
#include <sys/mman.h>
|
2022-03-16 22:38:08 +00:00
|
|
|
#include <unistd.h>
|
2017-04-23 14:11:21 +00:00
|
|
|
|
2020-11-20 05:36:51 +00:00
|
|
|
#include "base/math_util.hh"
|
2017-04-23 14:11:21 +00:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct big_array {
|
|
|
|
static const size_t DEFAULT_INCREMENT = 100 * 1000;
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
big_array()
|
|
|
|
: ba_ptr(nullptr), ba_size(0), ba_capacity(0){
|
2017-04-23 14:11:21 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
};
|
2017-04-23 14:11:21 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
bool reserve(size_t size)
|
|
|
|
{
|
2017-04-23 14:11:21 +00:00
|
|
|
if (size < this->ba_capacity) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->ba_ptr) {
|
|
|
|
munmap(this->ba_ptr,
|
|
|
|
roundup_size(this->ba_capacity * sizeof(T), getpagesize()));
|
|
|
|
}
|
|
|
|
|
|
|
|
this->ba_capacity = size + DEFAULT_INCREMENT;
|
2022-03-16 22:38:08 +00:00
|
|
|
void* result
|
|
|
|
= mmap(nullptr,
|
|
|
|
roundup_size(this->ba_capacity * sizeof(T), getpagesize()),
|
|
|
|
PROT_READ | PROT_WRITE,
|
|
|
|
MAP_ANONYMOUS | MAP_PRIVATE,
|
|
|
|
-1,
|
|
|
|
0);
|
2017-04-23 14:11:21 +00:00
|
|
|
|
|
|
|
ensure(result != MAP_FAILED);
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
this->ba_ptr = (T*) result;
|
2017-04-23 14:11:21 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void clear()
|
|
|
|
{
|
2017-04-23 14:11:21 +00:00
|
|
|
this->ba_size = 0;
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
size_t size() const
|
|
|
|
{
|
2017-04-23 14:11:21 +00:00
|
|
|
return this->ba_size;
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void shrink_to(size_t new_size)
|
|
|
|
{
|
2021-04-24 21:38:26 +00:00
|
|
|
require(new_size <= this->ba_size);
|
|
|
|
|
|
|
|
this->ba_size = new_size;
|
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
bool empty() const
|
|
|
|
{
|
2018-03-29 14:32:57 +00:00
|
|
|
return this->ba_size == 0;
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
void push_back(const T& val)
|
|
|
|
{
|
2017-04-23 14:11:21 +00:00
|
|
|
this->ba_ptr[this->ba_size] = val;
|
|
|
|
this->ba_size += 1;
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
T& operator[](size_t index)
|
|
|
|
{
|
2017-04-23 14:11:21 +00:00
|
|
|
return this->ba_ptr[index];
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
const T& operator[](size_t index) const
|
|
|
|
{
|
2021-03-21 15:53:21 +00:00
|
|
|
return this->ba_ptr[index];
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
T& back()
|
|
|
|
{
|
2018-03-29 14:32:57 +00:00
|
|
|
return this->ba_ptr[this->ba_size - 1];
|
|
|
|
}
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
typedef T* iterator;
|
2017-04-23 14:11:21 +00:00
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
iterator begin()
|
|
|
|
{
|
2017-04-23 14:11:21 +00:00
|
|
|
return this->ba_ptr;
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
iterator end()
|
|
|
|
{
|
2017-04-23 14:11:21 +00:00
|
|
|
return this->ba_ptr + this->ba_size;
|
|
|
|
};
|
|
|
|
|
2022-03-16 22:38:08 +00:00
|
|
|
T* ba_ptr;
|
2017-04-23 14:11:21 +00:00
|
|
|
size_t ba_size;
|
|
|
|
size_t ba_capacity;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|