2001-07-07 23:16:38 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/vector.h
|
|
|
|
// Purpose: STL vector clone
|
|
|
|
// Author: Lindsay Mathieson
|
2007-07-07 10:09:42 +00:00
|
|
|
// Modified by: Vaclav Slavik - make it a template
|
2001-07-07 23:16:38 +00:00
|
|
|
// Created: 30.07.2001
|
2007-07-07 10:09:42 +00:00
|
|
|
// Copyright: (c) 2001 Lindsay Mathieson <lindsay@mathieson.org>,
|
|
|
|
// 2007 Vaclav Slavik <vslavik@fastmail.fm>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-07-07 23:16:38 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_VECTOR_H_
|
|
|
|
#define _WX_VECTOR_H_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2007-07-25 10:19:08 +00:00
|
|
|
#if wxUSE_STL
|
2007-07-07 10:09:42 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#define wxVector std::vector
|
|
|
|
|
|
|
|
#else // !wxUSE_STL
|
|
|
|
|
2007-08-21 17:19:33 +00:00
|
|
|
#include "wx/utils.h"
|
|
|
|
|
2007-07-07 10:09:42 +00:00
|
|
|
template<typename T>
|
|
|
|
class wxVector
|
2001-07-07 23:16:38 +00:00
|
|
|
{
|
2002-12-09 18:08:12 +00:00
|
|
|
public:
|
2002-12-08 18:38:46 +00:00
|
|
|
typedef size_t size_type;
|
2007-07-07 10:09:42 +00:00
|
|
|
typedef T value_type;
|
2007-07-25 10:19:08 +00:00
|
|
|
typedef value_type* iterator;
|
2007-08-21 15:47:47 +00:00
|
|
|
typedef const value_type* const_iterator;
|
2007-07-25 10:19:08 +00:00
|
|
|
typedef value_type& reference;
|
2007-07-07 10:09:42 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
wxVector() : m_size(0), m_capacity(0), m_values(NULL) {}
|
2007-07-07 10:09:42 +00:00
|
|
|
|
|
|
|
wxVector(const wxVector& c)
|
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
Copy(c);
|
2007-07-07 10:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~wxVector()
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear()
|
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
delete[] m_values;
|
|
|
|
m_values = NULL;
|
2007-07-07 10:09:42 +00:00
|
|
|
m_size = m_capacity = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reserve(size_type n)
|
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
if ( n <= m_capacity )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// increase the size twice, unless we're already too big or unless
|
|
|
|
// more is requested
|
2007-10-02 11:36:35 +00:00
|
|
|
//
|
|
|
|
// NB: casts to size_t are needed to suppress mingw32 warnings about
|
|
|
|
// mixing enums and ints in the same expression
|
|
|
|
const size_type increment = m_size > 0
|
|
|
|
? wxMin(m_size, (size_type)ALLOC_MAX_SIZE)
|
|
|
|
: (size_type)ALLOC_INITIAL_SIZE;
|
2007-08-21 15:47:47 +00:00
|
|
|
if ( m_capacity + increment > n )
|
|
|
|
n = m_capacity + increment;
|
|
|
|
|
|
|
|
value_type *mem = new value_type[n];
|
|
|
|
|
|
|
|
if ( m_values )
|
2007-07-07 10:09:42 +00:00
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
for ( size_type i = 0; i < m_size; ++i )
|
|
|
|
mem[i] = m_values[i];
|
|
|
|
delete[] m_values;
|
2007-07-07 10:09:42 +00:00
|
|
|
}
|
2007-08-21 15:47:47 +00:00
|
|
|
|
|
|
|
m_values = mem;
|
|
|
|
m_capacity = n;
|
2007-07-07 10:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
size_type size() const
|
|
|
|
{
|
|
|
|
return m_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_type capacity() const
|
|
|
|
{
|
|
|
|
return m_capacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool empty() const
|
|
|
|
{
|
|
|
|
return size() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
wxVector& operator=(const wxVector& vb)
|
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
Copy(vb);
|
2007-07-07 10:09:42 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
void push_back(const value_type& v)
|
2007-07-07 10:09:42 +00:00
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
reserve(size() + 1);
|
|
|
|
m_values[m_size++] = v;
|
2007-07-07 10:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void pop_back()
|
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
erase(end() - 1);
|
2007-07-07 10:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const value_type& at(size_type idx) const
|
|
|
|
{
|
|
|
|
wxASSERT(idx < m_size);
|
2007-08-21 15:47:47 +00:00
|
|
|
return m_values[idx];
|
2007-07-07 10:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
value_type& at(size_type idx)
|
|
|
|
{
|
|
|
|
wxASSERT(idx < m_size);
|
2007-08-21 15:47:47 +00:00
|
|
|
return m_values[idx];
|
2007-07-07 10:09:42 +00:00
|
|
|
}
|
2001-07-07 23:16:38 +00:00
|
|
|
|
2007-07-07 10:09:42 +00:00
|
|
|
const value_type& operator[](size_type idx) const { return at(idx); }
|
|
|
|
value_type& operator[](size_type idx) { return at(idx); }
|
|
|
|
const value_type& front() const { return at(0); }
|
|
|
|
value_type& front() { return at(0); }
|
|
|
|
const value_type& back() const { return at(size() - 1); }
|
|
|
|
value_type& back() { return at(size() - 1); }
|
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
const_iterator begin() const { return m_values; }
|
|
|
|
iterator begin() { return m_values; }
|
|
|
|
const_iterator end() const { return m_values + size(); }
|
|
|
|
iterator end() { return m_values + size(); }
|
2007-07-25 10:19:08 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
iterator insert(iterator it, const value_type& v = value_type())
|
2007-07-27 00:17:27 +00:00
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
size_t idx = it - begin();
|
2007-07-27 00:17:27 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
reserve(size() + 1);
|
2007-08-21 10:59:42 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
// unless we're inserting at the end, move following values out of
|
|
|
|
// the way:
|
|
|
|
for ( size_t n = m_size; n != idx; --n )
|
|
|
|
m_values[n] = m_values[n-1];
|
2007-07-07 10:09:42 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
m_values[idx] = v;
|
|
|
|
m_size++;
|
2001-07-07 23:16:38 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
return begin() + idx;
|
2005-04-02 00:34:04 +00:00
|
|
|
}
|
2001-07-07 23:16:38 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
iterator erase(iterator it)
|
2001-07-07 23:16:38 +00:00
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
return erase(it, it + 1);
|
2005-04-02 00:34:04 +00:00
|
|
|
}
|
2001-07-07 23:16:38 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
iterator erase(iterator first, iterator last)
|
2007-07-25 10:19:08 +00:00
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
if ( first == last )
|
|
|
|
return first;
|
|
|
|
wxASSERT( first < end() && last <= end() );
|
2007-07-27 00:17:27 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
size_type index = first - begin();
|
|
|
|
size_type count = last - first;
|
2007-07-25 10:19:08 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
// move the remaining values over to the freed space:
|
|
|
|
for ( iterator i = last; i < end(); ++i )
|
|
|
|
*(i - count) = *i;
|
|
|
|
|
|
|
|
// erase items behind the new end of m_values:
|
2007-09-16 17:51:52 +00:00
|
|
|
for ( iterator j = end() - count; j < end(); ++j )
|
|
|
|
*j = value_type();
|
2007-07-27 00:17:27 +00:00
|
|
|
|
2007-07-25 10:19:08 +00:00
|
|
|
m_size -= count;
|
2007-08-21 15:47:47 +00:00
|
|
|
|
|
|
|
return begin() + index;
|
2007-07-25 10:19:08 +00:00
|
|
|
}
|
2007-08-21 15:47:47 +00:00
|
|
|
|
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
|
|
|
wxDEPRECATED( size_type erase(size_type n) );
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_8
|
|
|
|
|
|
|
|
private:
|
2007-08-23 12:40:32 +00:00
|
|
|
// VC6 can't compile static const int members
|
|
|
|
enum { ALLOC_INITIAL_SIZE = 16 };
|
|
|
|
enum { ALLOC_MAX_SIZE = 4096 };
|
2007-08-21 15:47:47 +00:00
|
|
|
|
|
|
|
void Copy(const wxVector& vb)
|
2001-07-07 23:16:38 +00:00
|
|
|
{
|
|
|
|
clear();
|
2007-08-21 15:47:47 +00:00
|
|
|
reserve(vb.size());
|
2001-07-07 23:16:38 +00:00
|
|
|
|
2007-08-21 15:47:47 +00:00
|
|
|
for ( const_iterator i = vb.begin(); i != vb.end(); ++i )
|
|
|
|
push_back(*i);
|
2005-04-02 00:34:04 +00:00
|
|
|
}
|
2001-07-07 23:16:38 +00:00
|
|
|
|
2007-07-07 10:09:42 +00:00
|
|
|
private:
|
|
|
|
size_type m_size,
|
|
|
|
m_capacity;
|
2007-08-21 15:47:47 +00:00
|
|
|
value_type *m_values;
|
2001-07-07 23:16:38 +00:00
|
|
|
};
|
|
|
|
|
2007-08-21 10:59:42 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
|
|
|
template<typename T>
|
|
|
|
typename wxVector<T>::size_type wxVector<T>::erase(size_type n)
|
|
|
|
{
|
2007-08-21 15:47:47 +00:00
|
|
|
erase(begin() + n);
|
2007-08-21 10:59:42 +00:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_8
|
|
|
|
|
2007-07-07 10:09:42 +00:00
|
|
|
#endif // wxUSE_STL/!wxUSE_STL
|
2002-12-08 18:38:46 +00:00
|
|
|
|
2007-07-07 10:09:42 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
|
|
|
#define WX_DECLARE_VECTORBASE(obj, cls) typedef wxVector<obj> cls
|
|
|
|
#define _WX_DECLARE_VECTOR(obj, cls, exp) WX_DECLARE_VECTORBASE(obj, cls)
|
|
|
|
#define WX_DECLARE_VECTOR(obj, cls) WX_DECLARE_VECTORBASE(obj, cls)
|
|
|
|
#endif // WXWIN_COMPATIBILITY_2_8
|
2001-07-07 23:16:38 +00:00
|
|
|
|
2007-07-07 10:09:42 +00:00
|
|
|
#endif // _WX_VECTOR_H_
|