summaryrefslogtreecommitdiff
path: root/core/src/fxcodec/jbig2/JBig2_List.h
blob: 6f6169064da12aa5603b42045732ba1cd85e3a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#ifndef CORE_SRC_FXCODEC_JBIG2_JBIG2_LIST_H_
#define CORE_SRC_FXCODEC_JBIG2_JBIG2_LIST_H_

#include <stdlib.h>

#include <vector>

// A poor man's ScopedVector for pointers of TYPE.
// Owns all the pointers contained within and deletes them on destruction.
template <class TYPE>
class CJBig2_List {
 public:
  CJBig2_List() {}
  explicit CJBig2_List(size_t count) { resize(count); }

  ~CJBig2_List() {
    clear();
  }

  TYPE* get(size_t index) const { return m_vector[index]; }
  TYPE* back() const { return m_vector.back(); }
  size_t size() const { return m_vector.size(); }

  // Deletes all the pointers contained within.
  void clear() {
    for (size_t i = 0; i < m_vector.size(); ++i)
      delete m_vector[i];
    m_vector.clear();
  }

  // Takes ownership of |pItem|.
  void push_back(TYPE* pItem) { m_vector.push_back(pItem); }

  // Takes ownership of |pItem|.
  void set(size_t index, TYPE* pItem) {
    delete m_vector[index];
    m_vector[index] = pItem;
  }

  void resize(size_t count) {
    for (size_t i = count; i < size(); ++i)
      delete m_vector[i];
    m_vector.resize(count);
  }

 private:
  std::vector<TYPE*> m_vector;
};

#endif  // CORE_SRC_FXCODEC_JBIG2_JBIG2_LIST_H_