2015-11-13 17:17:37 +11:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-11-13 17:17:37 +11:00
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "linear.hpp"
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-12-19 17:55:24 +11:00
|
|
|
#include "traits.hpp"
|
2018-12-19 17:16:57 +11:00
|
|
|
|
2018-12-19 17:55:24 +11:00
|
|
|
#include "../pointer.hpp"
|
|
|
|
#include "../debug.hpp"
|
2015-11-13 17:17:37 +11:00
|
|
|
|
2018-12-19 17:55:24 +11:00
|
|
|
using cruft::alloc::linear;
|
2015-11-13 17:17:37 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-12-19 17:16:57 +11:00
|
|
|
linear::linear (cruft::view<u08*> _data):
|
2018-03-02 12:18:20 +11:00
|
|
|
m_begin (_data.begin ()),
|
|
|
|
m_end (_data.end ()),
|
|
|
|
m_cursor (_data.begin ())
|
|
|
|
{ ; }
|
2015-11-13 17:17:37 +11:00
|
|
|
|
|
|
|
|
2018-09-21 17:00:56 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
linear::linear (linear &&rhs)
|
|
|
|
: m_begin (std::exchange (rhs.m_begin, nullptr))
|
|
|
|
, m_end (std::exchange (rhs.m_end, nullptr))
|
|
|
|
, m_cursor (std::exchange (rhs.m_cursor, nullptr))
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
linear&
|
2018-12-19 17:55:24 +11:00
|
|
|
linear::operator= (linear &&rhs)
|
2018-09-21 17:00:56 +10:00
|
|
|
{
|
|
|
|
m_begin = std::exchange (rhs.m_begin, nullptr);
|
|
|
|
m_end = std::exchange (rhs.m_end, nullptr);
|
|
|
|
m_cursor = std::exchange (rhs.m_cursor, nullptr);
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-12-19 17:16:57 +11:00
|
|
|
u08*
|
2018-02-28 16:19:27 +11:00
|
|
|
linear::data (void)
|
|
|
|
{
|
|
|
|
return m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2018-12-19 17:16:57 +11:00
|
|
|
const u08*
|
2018-02-28 16:19:27 +11:00
|
|
|
linear::data (void) const
|
|
|
|
{
|
|
|
|
return m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-22 19:51:18 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2018-12-19 17:16:57 +11:00
|
|
|
u08*
|
2017-08-31 13:48:33 +10:00
|
|
|
linear::begin (void)
|
2016-06-22 19:51:18 +10:00
|
|
|
{
|
|
|
|
return m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-10-10 20:59:26 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2018-12-19 17:16:57 +11:00
|
|
|
const u08*
|
2017-08-31 13:48:33 +10:00
|
|
|
linear::begin (void) const
|
2016-10-10 20:59:26 +11:00
|
|
|
{
|
|
|
|
return m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-28 17:55:56 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2018-12-19 17:16:57 +11:00
|
|
|
u08*
|
2018-02-28 17:55:56 +11:00
|
|
|
linear::end (void)
|
|
|
|
{
|
|
|
|
return m_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2018-12-19 17:16:57 +11:00
|
|
|
const u08*
|
2018-02-28 17:55:56 +11:00
|
|
|
linear::end (void) const
|
|
|
|
{
|
|
|
|
return m_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-22 19:51:18 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
size_t
|
|
|
|
linear::offset (const void *_ptr) const
|
|
|
|
{
|
2018-12-19 17:16:57 +11:00
|
|
|
auto ptr = reinterpret_cast<const u08*> (_ptr);
|
2016-06-22 19:51:18 +10:00
|
|
|
|
|
|
|
CHECK_GE (ptr, m_begin);
|
|
|
|
return ptr - m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-13 17:17:37 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void
|
|
|
|
linear::reset (void)
|
|
|
|
{
|
|
|
|
m_cursor = m_begin;
|
|
|
|
}
|
2015-11-24 16:48:46 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
size_t
|
|
|
|
linear::capacity (void) const
|
|
|
|
{
|
|
|
|
return m_end - m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
size_t
|
2015-11-30 16:08:07 +11:00
|
|
|
linear::used (void) const
|
2015-11-24 16:48:46 +11:00
|
|
|
{
|
|
|
|
return m_cursor - m_begin;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
size_t
|
|
|
|
linear::remain (void) const
|
|
|
|
{
|
2015-11-30 16:08:07 +11:00
|
|
|
return capacity () - used ();
|
2015-11-24 16:48:46 +11:00
|
|
|
}
|
2018-12-19 17:16:57 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
static_assert (cruft::alloc::is_allocator_v<linear>);
|