Ap4Array.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:4k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*****************************************************************
  2. |
  3. |    AP4 - Arrays
  4. |
  5. |    Copyright 2002 Gilles Boccon-Gibod
  6. |
  7. |
  8. |    This file is part of Bento4/AP4 (MP4 Atom Processing Library).
  9. |
  10. |    Unless you have obtained Bento4 under a difference license,
  11. |    this version of Bento4 is Bento4|GPL.
  12. |    Bento4|GPL is free software; you can redistribute it and/or modify
  13. |    it under the terms of the GNU General Public License as published by
  14. |    the Free Software Foundation; either version 2, or (at your option)
  15. |    any later version.
  16. |
  17. |    Bento4|GPL is distributed in the hope that it will be useful,
  18. |    but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. |    GNU General Public License for more details.
  21. |
  22. |    You should have received a copy of the GNU General Public License
  23. |    along with Bento4|GPL; see the file COPYING.  If not, write to the
  24. |    Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  25. |    02111-1307, USA.
  26. |
  27.  ****************************************************************/
  28. #ifndef _AP4_ARRAY_H_
  29. #define _AP4_ARRAY_H_
  30. /*----------------------------------------------------------------------
  31. |       includes
  32. +---------------------------------------------------------------------*/
  33. #include "Ap4Types.h"
  34. #include "Ap4Results.h"
  35. /*----------------------------------------------------------------------
  36. |       constants
  37. +---------------------------------------------------------------------*/
  38. const int AP4_ARRAY_INITIAL_COUNT = 64;
  39. /*----------------------------------------------------------------------
  40. |       AP4_Array
  41. +---------------------------------------------------------------------*/
  42. template <typename T> 
  43. class AP4_Array 
  44. {
  45. public:
  46.     // methods
  47.              AP4_Array<T>(): m_AllocatedCount(0), m_ItemCount(0), m_Items(0) {}
  48.     virtual ~AP4_Array<T>();
  49.     AP4_Cardinal ItemCount() { return m_ItemCount; }
  50.     AP4_Result   Append(const T& item);
  51.     T& operator[](unsigned long idx);
  52.     AP4_Result EnsureCapacity(AP4_Cardinal count);
  53. protected:
  54.     // members
  55.     AP4_Cardinal m_AllocatedCount;
  56.     AP4_Cardinal m_ItemCount;
  57.     T*           m_Items;
  58.     T            m_OverflowItem;
  59. };
  60. /*----------------------------------------------------------------------
  61. |       AP4_Array<T>::~AP4_Array<T>
  62. +---------------------------------------------------------------------*/
  63. template <typename T>
  64. AP4_Array<T>::~AP4_Array<T>()
  65. {
  66.     delete[] m_Items;
  67. }
  68. /*----------------------------------------------------------------------
  69. |       AP4_Array<T>::EnsureCapacity
  70. +---------------------------------------------------------------------*/
  71. template <typename T>
  72. AP4_Result
  73. AP4_Array<T>::EnsureCapacity(AP4_Cardinal count)
  74. {
  75.     if (count <= m_AllocatedCount) return AP4_SUCCESS;
  76.     unsigned long new_count;
  77.     if (m_AllocatedCount) {
  78.         new_count = 2*m_AllocatedCount;
  79.     } else {
  80.         new_count = AP4_ARRAY_INITIAL_COUNT;
  81.     }
  82.     // (re)allocate the items
  83.     T* new_items = new T[new_count];
  84.     if (new_items == NULL) {
  85.         return AP4_ERROR_OUT_OF_MEMORY;
  86.     }
  87.     if (m_ItemCount && m_Items) {
  88.         for (unsigned int i=0; i<m_ItemCount; i++) {
  89.             new_items[i] = m_Items[i];
  90.         }
  91.         delete[] m_Items;
  92.     }
  93.     m_Items = new_items;
  94.     m_AllocatedCount = new_count;
  95.     return AP4_SUCCESS;
  96. }
  97. /*----------------------------------------------------------------------
  98. |       AP4_Array<T>::operator[]
  99. +---------------------------------------------------------------------*/
  100. template <typename T>
  101. T&
  102. AP4_Array<T>::operator[](unsigned long idx)
  103. {
  104.     if (idx >= m_ItemCount) {
  105.         return m_OverflowItem;
  106.     } else {
  107.         return m_Items[idx];
  108.     }
  109. }
  110. /*----------------------------------------------------------------------
  111. |       AP4_Array<T>::Append
  112. +---------------------------------------------------------------------*/
  113. template <typename T>
  114. AP4_Result
  115. AP4_Array<T>::Append(const T& item)
  116. {
  117.     // ensure capacity
  118.     AP4_Result result = EnsureCapacity(m_ItemCount+1);
  119.     if (result != AP4_SUCCESS) return result;
  120.     
  121.     // store the item
  122.     m_Items[m_ItemCount++] = item;
  123.     return AP4_SUCCESS;
  124. }
  125. #endif // _AP4_ARRAY_H_