2018-08-06 13:42:46 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2017,2018 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#ifndef HB_VECTOR_HH
|
|
|
|
#define HB_VECTOR_HH
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
2018-12-17 02:07:44 +01:00
|
|
|
#include "hb-array.hh"
|
2022-05-10 10:00:06 +02:00
|
|
|
#include "hb-meta.hh"
|
2018-12-21 23:35:58 +01:00
|
|
|
#include "hb-null.hh"
|
2018-08-06 13:42:46 +02:00
|
|
|
|
|
|
|
|
2022-01-19 19:32:14 +01:00
|
|
|
template <typename Type,
|
|
|
|
bool sorted=false>
|
2022-11-14 01:23:25 +01:00
|
|
|
struct hb_vector_t
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2018-12-21 07:57:40 +01:00
|
|
|
typedef Type item_t;
|
2019-01-22 12:15:23 +01:00
|
|
|
static constexpr unsigned item_size = hb_static_size (Type);
|
2022-01-19 19:38:37 +01:00
|
|
|
using array_t = typename std::conditional<sorted, hb_sorted_array_t<Type>, hb_array_t<Type>>::type;
|
|
|
|
using c_array_t = typename std::conditional<sorted, hb_sorted_array_t<const Type>, hb_array_t<const Type>>::type;
|
2018-11-09 16:01:50 +01:00
|
|
|
|
2021-11-02 04:15:38 +01:00
|
|
|
hb_vector_t () = default;
|
2021-11-02 04:34:46 +01:00
|
|
|
hb_vector_t (std::initializer_list<Type> lst) : hb_vector_t ()
|
2021-11-02 01:36:57 +01:00
|
|
|
{
|
2023-01-02 03:27:10 +01:00
|
|
|
alloc (lst.size (), true);
|
2021-11-02 04:34:46 +01:00
|
|
|
for (auto&& item : lst)
|
|
|
|
push (item);
|
2021-11-02 01:36:57 +01:00
|
|
|
}
|
2021-11-02 03:18:49 +01:00
|
|
|
template <typename Iterable,
|
|
|
|
hb_requires (hb_is_iterable (Iterable))>
|
|
|
|
hb_vector_t (const Iterable &o) : hb_vector_t ()
|
|
|
|
{
|
2022-11-19 00:46:01 +01:00
|
|
|
auto iter = hb_iter (o);
|
|
|
|
if (iter.is_random_access_iterator)
|
2023-01-02 03:27:10 +01:00
|
|
|
alloc (hb_len (iter), true);
|
2022-11-19 00:46:01 +01:00
|
|
|
hb_copy (iter, *this);
|
2021-11-02 03:18:49 +01:00
|
|
|
}
|
2021-11-02 01:36:57 +01:00
|
|
|
hb_vector_t (const hb_vector_t &o) : hb_vector_t ()
|
2019-03-31 03:13:57 +02:00
|
|
|
{
|
2023-01-02 03:27:10 +01:00
|
|
|
alloc (o.length, true);
|
2022-05-19 23:02:10 +02:00
|
|
|
if (unlikely (in_error ())) return;
|
|
|
|
copy_vector (o);
|
2019-03-31 03:13:57 +02:00
|
|
|
}
|
2019-03-31 03:33:30 +02:00
|
|
|
hb_vector_t (hb_vector_t &&o)
|
|
|
|
{
|
|
|
|
allocated = o.allocated;
|
|
|
|
length = o.length;
|
2019-05-11 03:40:29 +02:00
|
|
|
arrayZ = o.arrayZ;
|
2019-03-31 03:33:30 +02:00
|
|
|
o.init ();
|
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
~hb_vector_t () { fini (); }
|
2018-10-30 01:37:41 +01:00
|
|
|
|
2018-10-05 18:39:48 +02:00
|
|
|
public:
|
2022-05-11 20:49:16 +02:00
|
|
|
int allocated = 0; /* == -1 means allocation failed. */
|
2021-11-02 04:15:38 +01:00
|
|
|
unsigned int length = 0;
|
2019-05-11 03:40:29 +02:00
|
|
|
public:
|
2021-11-02 04:15:38 +01:00
|
|
|
Type *arrayZ = nullptr;
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
void init ()
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2018-12-27 23:56:22 +01:00
|
|
|
allocated = length = 0;
|
2019-05-11 03:40:29 +02:00
|
|
|
arrayZ = nullptr;
|
2018-08-06 13:42:46 +02:00
|
|
|
}
|
2022-11-26 22:31:15 +01:00
|
|
|
void init0 ()
|
|
|
|
{
|
|
|
|
}
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
void fini ()
|
2018-10-30 01:37:41 +01:00
|
|
|
{
|
2022-01-14 21:09:21 +01:00
|
|
|
shrink_vector (0);
|
2021-07-08 18:58:50 +02:00
|
|
|
hb_free (arrayZ);
|
2018-12-27 23:45:05 +01:00
|
|
|
init ();
|
2018-10-30 01:37:41 +01:00
|
|
|
}
|
|
|
|
|
2020-06-29 05:59:01 +02:00
|
|
|
void reset ()
|
|
|
|
{
|
|
|
|
if (unlikely (in_error ()))
|
2022-11-19 01:22:17 +01:00
|
|
|
/* Big Hack! We don't know the true allocated size before
|
|
|
|
* an allocation failure happened. But we know it was at
|
|
|
|
* least as big as length. Restore it to that and continue
|
|
|
|
* as if error did not happen. */
|
|
|
|
allocated = length;
|
2020-06-29 05:59:01 +02:00
|
|
|
resize (0);
|
|
|
|
}
|
2021-10-06 20:12:32 +02:00
|
|
|
|
2021-11-02 00:59:17 +01:00
|
|
|
friend void swap (hb_vector_t& a, hb_vector_t& b)
|
2021-10-06 20:12:32 +02:00
|
|
|
{
|
2021-11-02 00:59:17 +01:00
|
|
|
hb_swap (a.allocated, b.allocated);
|
|
|
|
hb_swap (a.length, b.length);
|
|
|
|
hb_swap (a.arrayZ, b.arrayZ);
|
2021-10-06 20:12:32 +02:00
|
|
|
}
|
2019-03-31 03:13:57 +02:00
|
|
|
|
|
|
|
hb_vector_t& operator = (const hb_vector_t &o)
|
|
|
|
{
|
|
|
|
reset ();
|
2023-01-02 07:07:42 +01:00
|
|
|
alloc (o.length, true);
|
2022-05-19 23:02:10 +02:00
|
|
|
if (unlikely (in_error ())) return *this;
|
|
|
|
|
|
|
|
copy_vector (o);
|
|
|
|
|
2019-03-31 03:13:57 +02:00
|
|
|
return *this;
|
|
|
|
}
|
2019-03-31 03:33:30 +02:00
|
|
|
hb_vector_t& operator = (hb_vector_t &&o)
|
|
|
|
{
|
2021-11-02 03:06:58 +01:00
|
|
|
hb_swap (*this, o);
|
2019-03-31 03:33:30 +02:00
|
|
|
return *this;
|
|
|
|
}
|
2019-03-31 03:13:57 +02:00
|
|
|
|
2019-04-03 05:13:16 +02:00
|
|
|
hb_bytes_t as_bytes () const
|
2022-12-01 22:32:13 +01:00
|
|
|
{ return hb_bytes_t ((const char *) arrayZ, get_size ()); }
|
2019-03-31 04:41:48 +02:00
|
|
|
|
2019-04-03 05:13:16 +02:00
|
|
|
bool operator == (const hb_vector_t &o) const { return as_array () == o.as_array (); }
|
2019-05-16 01:30:08 +02:00
|
|
|
bool operator != (const hb_vector_t &o) const { return !(*this == o); }
|
2019-04-03 05:13:16 +02:00
|
|
|
uint32_t hash () const { return as_array ().hash (); }
|
2019-03-31 04:41:48 +02:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
Type& operator [] (int i_)
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2018-12-01 01:57:12 +01:00
|
|
|
unsigned int i = (unsigned int) i_;
|
2018-12-22 00:46:51 +01:00
|
|
|
if (unlikely (i >= length))
|
2018-08-06 13:42:46 +02:00
|
|
|
return Crap (Type);
|
2019-05-11 03:40:29 +02:00
|
|
|
return arrayZ[i];
|
2018-08-06 13:42:46 +02:00
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
const Type& operator [] (int i_) const
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2018-12-01 01:57:12 +01:00
|
|
|
unsigned int i = (unsigned int) i_;
|
2018-12-22 00:46:51 +01:00
|
|
|
if (unlikely (i >= length))
|
2020-04-20 11:42:45 +02:00
|
|
|
return Null (Type);
|
2019-05-11 03:40:29 +02:00
|
|
|
return arrayZ[i];
|
2018-08-06 13:42:46 +02:00
|
|
|
}
|
|
|
|
|
2019-03-31 01:26:35 +01:00
|
|
|
Type& tail () { return (*this)[length - 1]; }
|
|
|
|
const Type& tail () const { return (*this)[length - 1]; }
|
|
|
|
|
2019-03-29 23:22:46 +01:00
|
|
|
explicit operator bool () const { return length; }
|
2019-03-31 04:16:20 +02:00
|
|
|
unsigned get_size () const { return length * item_size; }
|
2018-12-21 05:15:49 +01:00
|
|
|
|
2019-01-28 22:39:01 +01:00
|
|
|
/* Sink interface. */
|
2019-03-30 04:05:19 +01:00
|
|
|
template <typename T>
|
2021-11-02 07:18:22 +01:00
|
|
|
hb_vector_t& operator << (T&& v) { push (std::forward<T> (v)); return *this; }
|
2019-01-28 22:39:01 +01:00
|
|
|
|
2022-01-19 19:38:37 +01:00
|
|
|
array_t as_array () { return hb_array (arrayZ, length); }
|
|
|
|
c_array_t as_array () const { return hb_array (arrayZ, length); }
|
2018-11-24 07:24:48 +01:00
|
|
|
|
2018-12-27 00:54:15 +01:00
|
|
|
/* Iterator. */
|
2022-01-19 19:38:37 +01:00
|
|
|
typedef c_array_t iter_t;
|
|
|
|
typedef array_t writer_t;
|
2019-01-09 09:32:11 +01:00
|
|
|
iter_t iter () const { return as_array (); }
|
|
|
|
writer_t writer () { return as_array (); }
|
|
|
|
operator iter_t () const { return iter (); }
|
|
|
|
operator writer_t () { return writer (); }
|
2018-12-27 00:54:15 +01:00
|
|
|
|
2022-11-29 23:33:07 +01:00
|
|
|
/* Faster range-based for loop. */
|
2022-11-21 20:00:10 +01:00
|
|
|
Type *begin () const { return arrayZ; }
|
|
|
|
Type *end () const { return arrayZ + length; }
|
|
|
|
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_sorted_array_t<Type> as_sorted_array ()
|
2019-05-11 03:40:29 +02:00
|
|
|
{ return hb_sorted_array (arrayZ, length); }
|
2018-12-17 19:01:01 +01:00
|
|
|
hb_sorted_array_t<const Type> as_sorted_array () const
|
2019-05-11 03:40:29 +02:00
|
|
|
{ return hb_sorted_array (arrayZ, length); }
|
2018-11-23 22:07:43 +01:00
|
|
|
|
2019-05-11 03:40:29 +02:00
|
|
|
template <typename T> explicit operator T * () { return arrayZ; }
|
|
|
|
template <typename T> explicit operator const T * () const { return arrayZ; }
|
2018-10-26 01:50:38 +02:00
|
|
|
|
2019-05-11 03:40:29 +02:00
|
|
|
Type * operator + (unsigned int i) { return arrayZ + i; }
|
|
|
|
const Type * operator + (unsigned int i) const { return arrayZ + i; }
|
2018-10-26 01:50:38 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
Type *push ()
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
if (unlikely (!resize (length + 1)))
|
2020-04-20 11:42:45 +02:00
|
|
|
return &Crap (Type);
|
2022-05-20 01:34:58 +02:00
|
|
|
return std::addressof (arrayZ[length - 1]);
|
2018-08-06 13:42:46 +02:00
|
|
|
}
|
2022-05-20 01:34:58 +02:00
|
|
|
template <typename T,
|
|
|
|
typename T2 = Type,
|
|
|
|
hb_enable_if (!std::is_copy_constructible<T2>::value &&
|
|
|
|
std::is_copy_assignable<T>::value)>
|
2019-03-31 03:30:50 +02:00
|
|
|
Type *push (T&& v)
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
|
|
|
Type *p = push ();
|
2021-03-31 20:23:46 +02:00
|
|
|
if (p == &Crap (Type))
|
|
|
|
// If push failed to allocate then don't copy v, since this may cause
|
|
|
|
// the created copy to leak memory since we won't have stored a
|
|
|
|
// reference to it.
|
|
|
|
return p;
|
2021-11-02 07:18:22 +01:00
|
|
|
*p = std::forward<T> (v);
|
2018-08-06 13:42:46 +02:00
|
|
|
return p;
|
|
|
|
}
|
2022-05-20 01:34:58 +02:00
|
|
|
template <typename T,
|
|
|
|
typename T2 = Type,
|
|
|
|
hb_enable_if (std::is_copy_constructible<T2>::value)>
|
|
|
|
Type *push (T&& v)
|
|
|
|
{
|
|
|
|
if (unlikely (!alloc (length + 1)))
|
|
|
|
// If push failed to allocate then don't copy v, since this may cause
|
|
|
|
// the created copy to leak memory since we won't have stored a
|
|
|
|
// reference to it.
|
|
|
|
return &Crap (Type);
|
|
|
|
|
|
|
|
/* Emplace. */
|
|
|
|
length++;
|
|
|
|
Type *p = std::addressof (arrayZ[length - 1]);
|
|
|
|
return new (p) Type (std::forward<T> (v));
|
|
|
|
}
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2018-12-27 23:45:05 +01:00
|
|
|
bool in_error () const { return allocated < 0; }
|
2018-09-04 05:50:11 +02:00
|
|
|
|
2022-01-14 00:05:42 +01:00
|
|
|
template <typename T = Type,
|
2022-05-10 10:00:06 +02:00
|
|
|
hb_enable_if (hb_is_trivially_copy_assignable(T))>
|
2022-01-14 00:05:42 +01:00
|
|
|
Type *
|
|
|
|
realloc_vector (unsigned new_allocated)
|
|
|
|
{
|
2023-01-02 19:44:29 +01:00
|
|
|
if (!new_allocated)
|
|
|
|
{
|
|
|
|
hb_free (arrayZ);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2022-01-14 00:05:42 +01:00
|
|
|
return (Type *) hb_realloc (arrayZ, new_allocated * sizeof (Type));
|
|
|
|
}
|
|
|
|
template <typename T = Type,
|
2022-05-10 10:00:06 +02:00
|
|
|
hb_enable_if (!hb_is_trivially_copy_assignable(T))>
|
2022-01-14 00:05:42 +01:00
|
|
|
Type *
|
|
|
|
realloc_vector (unsigned new_allocated)
|
|
|
|
{
|
2023-01-02 19:44:29 +01:00
|
|
|
if (!new_allocated)
|
|
|
|
{
|
|
|
|
hb_free (arrayZ);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2022-01-14 00:05:42 +01:00
|
|
|
Type *new_array = (Type *) hb_malloc (new_allocated * sizeof (Type));
|
|
|
|
if (likely (new_array))
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < length; i++)
|
2022-11-19 00:51:24 +01:00
|
|
|
{
|
2022-01-14 00:05:42 +01:00
|
|
|
new (std::addressof (new_array[i])) Type ();
|
|
|
|
new_array[i] = std::move (arrayZ[i]);
|
2022-11-19 01:00:07 +01:00
|
|
|
arrayZ[i].~Type ();
|
2022-11-19 00:51:24 +01:00
|
|
|
}
|
2022-01-14 00:05:42 +01:00
|
|
|
hb_free (arrayZ);
|
|
|
|
}
|
|
|
|
return new_array;
|
|
|
|
}
|
|
|
|
|
2022-12-02 03:40:21 +01:00
|
|
|
template <typename T = Type,
|
|
|
|
hb_enable_if (hb_is_trivially_constructible(T))>
|
|
|
|
void
|
|
|
|
grow_vector (unsigned size)
|
|
|
|
{
|
|
|
|
memset (arrayZ + length, 0, (size - length) * sizeof (*arrayZ));
|
|
|
|
length = size;
|
|
|
|
}
|
|
|
|
template <typename T = Type,
|
|
|
|
hb_enable_if (!hb_is_trivially_constructible(T))>
|
2022-01-16 01:16:40 +01:00
|
|
|
void
|
|
|
|
grow_vector (unsigned size)
|
|
|
|
{
|
|
|
|
while (length < size)
|
|
|
|
{
|
|
|
|
length++;
|
|
|
|
new (std::addressof (arrayZ[length - 1])) Type ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-19 23:02:10 +02:00
|
|
|
template <typename T = Type,
|
|
|
|
hb_enable_if (hb_is_trivially_copyable (T))>
|
|
|
|
void
|
|
|
|
copy_vector (const hb_vector_t &other)
|
|
|
|
{
|
|
|
|
length = other.length;
|
2022-11-25 21:28:53 +01:00
|
|
|
#ifndef HB_OPTIMIZE_SIZE
|
2022-11-25 22:23:57 +01:00
|
|
|
if (sizeof (T) >= sizeof (long long))
|
|
|
|
/* This runs faster because of alignment. */
|
|
|
|
for (unsigned i = 0; i < length; i++)
|
|
|
|
arrayZ[i] = other.arrayZ[i];
|
|
|
|
else
|
2022-11-25 21:28:53 +01:00
|
|
|
#endif
|
2022-11-25 22:23:57 +01:00
|
|
|
hb_memcpy ((void *) arrayZ, (const void *) other.arrayZ, length * item_size);
|
2022-05-19 23:02:10 +02:00
|
|
|
}
|
|
|
|
template <typename T = Type,
|
|
|
|
hb_enable_if (!hb_is_trivially_copyable (T) &&
|
2022-05-19 23:27:52 +02:00
|
|
|
std::is_copy_constructible<T>::value)>
|
2022-05-19 23:02:10 +02:00
|
|
|
void
|
|
|
|
copy_vector (const hb_vector_t &other)
|
|
|
|
{
|
|
|
|
length = 0;
|
|
|
|
while (length < other.length)
|
|
|
|
{
|
|
|
|
length++;
|
|
|
|
new (std::addressof (arrayZ[length - 1])) Type (other.arrayZ[length - 1]);
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 23:28:09 +02:00
|
|
|
template <typename T = Type,
|
|
|
|
hb_enable_if (!hb_is_trivially_copyable (T) &&
|
|
|
|
!std::is_copy_constructible<T>::value &&
|
|
|
|
std::is_default_constructible<T>::value &&
|
|
|
|
std::is_copy_assignable<T>::value)>
|
|
|
|
void
|
|
|
|
copy_vector (const hb_vector_t &other)
|
|
|
|
{
|
|
|
|
length = 0;
|
|
|
|
while (length < other.length)
|
|
|
|
{
|
|
|
|
length++;
|
|
|
|
new (std::addressof (arrayZ[length - 1])) Type ();
|
|
|
|
arrayZ[length - 1] = other.arrayZ[length - 1];
|
|
|
|
}
|
|
|
|
}
|
2022-05-19 23:02:10 +02:00
|
|
|
|
2022-01-14 21:09:21 +01:00
|
|
|
void
|
|
|
|
shrink_vector (unsigned size)
|
|
|
|
{
|
|
|
|
while ((unsigned) length > size)
|
|
|
|
{
|
|
|
|
arrayZ[(unsigned) length - 1].~Type ();
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-16 02:06:03 +01:00
|
|
|
void
|
|
|
|
shift_down_vector (unsigned i)
|
|
|
|
{
|
|
|
|
for (; i < length; i++)
|
|
|
|
arrayZ[i - 1] = std::move (arrayZ[i]);
|
|
|
|
}
|
2022-01-14 21:09:21 +01:00
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
/* Allocate for size but don't adjust length. */
|
2022-12-31 20:27:13 +01:00
|
|
|
bool alloc (unsigned int size, bool exact=false)
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2020-06-29 05:59:01 +02:00
|
|
|
if (unlikely (in_error ()))
|
2018-08-06 13:42:46 +02:00
|
|
|
return false;
|
|
|
|
|
2023-01-02 02:38:28 +01:00
|
|
|
unsigned int new_allocated;
|
|
|
|
if (exact)
|
|
|
|
{
|
|
|
|
/* If exact was specified, we allow shrinking the storage. */
|
|
|
|
size = hb_max (size, length);
|
|
|
|
if (size <= (unsigned) allocated &&
|
|
|
|
size >= (unsigned) allocated >> 2)
|
|
|
|
return true;
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2023-01-02 02:38:28 +01:00
|
|
|
new_allocated = size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (likely (size <= (unsigned) allocated))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
new_allocated = allocated;
|
|
|
|
while (size > new_allocated)
|
|
|
|
new_allocated += (new_allocated >> 1) + 8;
|
|
|
|
}
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2023-01-02 02:38:28 +01:00
|
|
|
|
|
|
|
/* Reallocate */
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2018-12-27 23:56:22 +01:00
|
|
|
bool overflows =
|
2020-06-29 05:59:01 +02:00
|
|
|
(int) in_error () ||
|
2023-01-02 02:38:28 +01:00
|
|
|
(new_allocated < size) ||
|
2018-12-27 23:56:22 +01:00
|
|
|
hb_unsigned_mul_overflows (new_allocated, sizeof (Type));
|
2023-01-02 19:44:29 +01:00
|
|
|
|
|
|
|
if (unlikely (overflows))
|
|
|
|
{
|
|
|
|
allocated = -1;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Type *new_array = realloc_vector (new_allocated);
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2023-01-02 02:38:28 +01:00
|
|
|
if (unlikely (new_allocated && !new_array))
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2023-01-04 19:53:49 +01:00
|
|
|
if (new_allocated <= (unsigned) allocated)
|
2023-01-04 19:33:54 +01:00
|
|
|
return true; // shrinking failed; it's okay; happens in our fuzzer
|
|
|
|
|
2018-12-27 23:45:05 +01:00
|
|
|
allocated = -1;
|
2018-08-06 13:42:46 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-11 03:40:29 +02:00
|
|
|
arrayZ = new_array;
|
2018-08-06 13:42:46 +02:00
|
|
|
allocated = new_allocated;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-03 02:05:43 +01:00
|
|
|
bool resize (int size_, bool initialize = true, bool exact = false)
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
|
|
|
unsigned int size = size_ < 0 ? 0u : (unsigned int) size_;
|
2023-01-03 02:05:43 +01:00
|
|
|
if (!alloc (size, exact))
|
2018-08-06 13:42:46 +02:00
|
|
|
return false;
|
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
if (size > length)
|
2022-11-22 18:20:11 +01:00
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
grow_vector (size);
|
|
|
|
}
|
2022-01-14 20:55:48 +01:00
|
|
|
else if (size < length)
|
2022-11-22 18:20:11 +01:00
|
|
|
{
|
|
|
|
if (initialize)
|
|
|
|
shrink_vector (size);
|
|
|
|
}
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2018-12-22 00:46:51 +01:00
|
|
|
length = size;
|
2018-08-06 13:42:46 +02:00
|
|
|
return true;
|
|
|
|
}
|
2023-01-03 02:05:43 +01:00
|
|
|
bool resize_exact (int size_, bool initialize = true)
|
|
|
|
{
|
|
|
|
return resize (size_, initialize, true);
|
|
|
|
}
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2019-03-31 01:26:35 +01:00
|
|
|
Type pop ()
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2020-04-20 11:42:45 +02:00
|
|
|
if (!length) return Null (Type);
|
2022-11-19 02:03:59 +01:00
|
|
|
Type v {std::move (arrayZ[length - 1])};
|
2022-01-16 02:00:18 +01:00
|
|
|
arrayZ[length - 1].~Type ();
|
|
|
|
length--;
|
|
|
|
return v;
|
2018-08-06 13:42:46 +02:00
|
|
|
}
|
|
|
|
|
2022-11-26 22:48:57 +01:00
|
|
|
void remove_ordered (unsigned int i)
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
2018-12-22 00:46:51 +01:00
|
|
|
if (unlikely (i >= length))
|
2018-10-05 18:39:48 +02:00
|
|
|
return;
|
2022-01-16 02:06:03 +01:00
|
|
|
shift_down_vector (i + 1);
|
2022-05-19 23:52:00 +02:00
|
|
|
arrayZ[length - 1].~Type ();
|
2018-12-22 00:46:51 +01:00
|
|
|
length--;
|
2018-08-06 13:42:46 +02:00
|
|
|
}
|
|
|
|
|
2022-11-26 22:48:57 +01:00
|
|
|
template <bool Sorted = sorted,
|
|
|
|
hb_enable_if (!Sorted)>
|
|
|
|
void remove_unordered (unsigned int i)
|
|
|
|
{
|
|
|
|
if (unlikely (i >= length))
|
|
|
|
return;
|
|
|
|
if (i != length - 1)
|
|
|
|
arrayZ[i] = std::move (arrayZ[length - 1]);
|
|
|
|
arrayZ[length - 1].~Type ();
|
|
|
|
length--;
|
|
|
|
}
|
|
|
|
|
2023-02-01 22:27:45 +01:00
|
|
|
void shrink (int size_, bool shrink_memory = true)
|
2018-08-06 13:42:46 +02:00
|
|
|
{
|
|
|
|
unsigned int size = size_ < 0 ? 0u : (unsigned int) size_;
|
2022-01-14 20:55:48 +01:00
|
|
|
if (size >= length)
|
|
|
|
return;
|
|
|
|
|
2022-01-14 21:09:21 +01:00
|
|
|
shrink_vector (size);
|
2023-01-02 02:38:28 +01:00
|
|
|
|
2023-02-01 22:27:45 +01:00
|
|
|
if (shrink_memory)
|
|
|
|
alloc (size, true); /* To force shrinking memory if needed. */
|
2018-08-06 13:42:46 +02:00
|
|
|
}
|
|
|
|
|
2022-01-19 19:32:14 +01:00
|
|
|
|
|
|
|
/* Sorting API. */
|
2022-11-17 05:21:31 +01:00
|
|
|
void qsort (int (*cmp)(const void*, const void*) = Type::cmp)
|
2018-11-24 07:45:58 +01:00
|
|
|
{ as_array ().qsort (cmp); }
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2022-01-19 19:32:14 +01:00
|
|
|
/* Unsorted search API. */
|
2018-08-06 13:42:46 +02:00
|
|
|
template <typename T>
|
2018-12-16 20:08:10 +01:00
|
|
|
Type *lsearch (const T &x, Type *not_found = nullptr)
|
2018-11-24 07:31:00 +01:00
|
|
|
{ return as_array ().lsearch (x, not_found); }
|
2018-10-05 18:39:48 +02:00
|
|
|
template <typename T>
|
2018-12-16 20:08:10 +01:00
|
|
|
const Type *lsearch (const T &x, const Type *not_found = nullptr) const
|
2018-11-24 07:31:00 +01:00
|
|
|
{ return as_array ().lsearch (x, not_found); }
|
2020-06-28 10:43:25 +02:00
|
|
|
template <typename T>
|
|
|
|
bool lfind (const T &x, unsigned *pos = nullptr) const
|
|
|
|
{ return as_array ().lfind (x, pos); }
|
2022-01-19 19:32:14 +01:00
|
|
|
|
|
|
|
/* Sorted search API. */
|
|
|
|
template <typename T,
|
|
|
|
bool Sorted=sorted, hb_enable_if (Sorted)>
|
|
|
|
Type *bsearch (const T &x, Type *not_found = nullptr)
|
|
|
|
{ return as_array ().bsearch (x, not_found); }
|
|
|
|
template <typename T,
|
|
|
|
bool Sorted=sorted, hb_enable_if (Sorted)>
|
|
|
|
const Type *bsearch (const T &x, const Type *not_found = nullptr) const
|
|
|
|
{ return as_array ().bsearch (x, not_found); }
|
|
|
|
template <typename T,
|
|
|
|
bool Sorted=sorted, hb_enable_if (Sorted)>
|
|
|
|
bool bfind (const T &x, unsigned int *i = nullptr,
|
|
|
|
hb_not_found_t not_found = HB_NOT_FOUND_DONT_STORE,
|
|
|
|
unsigned int to_store = (unsigned int) -1) const
|
|
|
|
{ return as_array ().bfind (x, i, not_found, to_store); }
|
2019-01-08 00:33:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Type>
|
2022-01-19 19:38:37 +01:00
|
|
|
using hb_sorted_vector_t = hb_vector_t<Type, true>;
|
2018-08-06 13:42:46 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#endif /* HB_VECTOR_HH */
|