#ifndef WebVector_h
#define WebVector_h
#include "WebCommon.h"
#include <algorithm>
namespace blink {
template <typename T>
class WebVector {
public:
typedef T ValueType;
~WebVector()
{
destroy();
}
explicit WebVector(size_t size = 0)
{
initialize(size);
}
template <typename U>
WebVector(const U* values, size_t size)
{
initializeFrom(values, size);
}
WebVector(const WebVector<T>& other)
{
initializeFrom(other.m_ptr, other.m_size);
}
template <typename C>
WebVector(const C& other)
{
initializeFrom(other.size() ? &other[0] : 0, other.size());
}
WebVector& operator=(const WebVector& other)
{
if (this != &other)
assign(other);
return *this;
}
template <typename C>
WebVector<T>& operator=(const C& other)
{
if (this != reinterpret_cast<const WebVector<T>*>(&other))
assign(other);
return *this;
}
template <typename C>
void assign(const C& other)
{
assign(other.size() ? &other[0] : 0, other.size());
}
template <typename U>
void assign(const U* values, size_t size)
{
destroy();
initializeFrom(values, size);
}
size_t size() const { return m_size; }
bool isEmpty() const { return !m_size; }
T& operator[](size_t i)
{
BLINK_ASSERT(i < m_size);
return m_ptr[i];
}
const T& operator[](size_t i) const
{
BLINK_ASSERT(i < m_size);
return m_ptr[i];
}
bool contains(const T& value) const
{
for (size_t i = 0; i < m_size; i++) {
if (m_ptr[i] == value)
return true;
}
return false;
}
T* data() { return m_ptr; }
const T* data() const { return m_ptr; }
void swap(WebVector<T>& other)
{
std::swap(m_ptr, other.m_ptr);
std::swap(m_size, other.m_size);
}
private:
void initialize(size_t size)
{
m_size = size;
if (!m_size)
m_ptr = 0;
else {
m_ptr = static_cast<T*>(::operator new(sizeof(T) * m_size));
for (size_t i = 0; i < m_size; ++i)
new (&m_ptr[i]) T();
}
}
template <typename U>
void initializeFrom(const U* values, size_t size)
{
m_size = size;
if (!m_size)
m_ptr = 0;
else {
m_ptr = static_cast<T*>(::operator new(sizeof(T) * m_size));
for (size_t i = 0; i < m_size; ++i)
new (&m_ptr[i]) T(values[i]);
}
}
void destroy()
{
for (size_t i = 0; i < m_size; ++i)
m_ptr[i].~T();
::operator delete(m_ptr);
}
T* m_ptr;
size_t m_size;
};
}
#endif