mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
80 lines
2.1 KiB
C++
80 lines
2.1 KiB
C++
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
#ifndef SKY_ENGINE_WTF_TERMINATEDARRAYBUILDER_H_
|
|
#define SKY_ENGINE_WTF_TERMINATEDARRAYBUILDER_H_
|
|
|
|
#include "sky/engine/wtf/OwnPtr.h"
|
|
|
|
namespace WTF {
|
|
|
|
template<typename T, template <typename> class ArrayType = TerminatedArray>
|
|
class TerminatedArrayBuilder {
|
|
DISALLOW_ALLOCATION();
|
|
WTF_MAKE_NONCOPYABLE(TerminatedArrayBuilder);
|
|
public:
|
|
explicit TerminatedArrayBuilder(typename ArrayType<T>::Allocator::PassPtr array)
|
|
: m_array(array)
|
|
, m_count(0)
|
|
, m_capacity(0)
|
|
{
|
|
if (!m_array)
|
|
return;
|
|
m_capacity = m_count = m_array->size();
|
|
}
|
|
|
|
void grow(size_t count)
|
|
{
|
|
ASSERT(count);
|
|
if (!m_array) {
|
|
ASSERT(!m_count);
|
|
ASSERT(!m_capacity);
|
|
m_capacity = count;
|
|
m_array = ArrayType<T>::Allocator::create(m_capacity);
|
|
return;
|
|
}
|
|
m_capacity += count;
|
|
m_array = ArrayType<T>::Allocator::resize(m_array.release(), m_capacity);
|
|
m_array->at(m_count - 1).setLastInArray(false);
|
|
}
|
|
|
|
void append(const T& item)
|
|
{
|
|
RELEASE_ASSERT(m_count < m_capacity);
|
|
ASSERT(!item.isLastInArray());
|
|
m_array->at(m_count++) = item;
|
|
}
|
|
|
|
typename ArrayType<T>::Allocator::PassPtr release()
|
|
{
|
|
RELEASE_ASSERT(m_count == m_capacity);
|
|
if (m_array)
|
|
m_array->at(m_count - 1).setLastInArray(true);
|
|
assertValid();
|
|
return m_array.release();
|
|
}
|
|
|
|
private:
|
|
#if ENABLE(ASSERT)
|
|
void assertValid()
|
|
{
|
|
for (size_t i = 0; i < m_count; ++i) {
|
|
bool isLastInArray = (i + 1 == m_count);
|
|
ASSERT(m_array->at(i).isLastInArray() == isLastInArray);
|
|
}
|
|
}
|
|
#else
|
|
void assertValid() { }
|
|
#endif
|
|
|
|
typename ArrayType<T>::Allocator::Ptr m_array;
|
|
size_t m_count;
|
|
size_t m_capacity;
|
|
};
|
|
|
|
} // namespace WTF
|
|
|
|
using WTF::TerminatedArrayBuilder;
|
|
|
|
#endif // SKY_ENGINE_WTF_TERMINATEDARRAYBUILDER_H_
|