OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
6 | 6 |
7 #include "core/fpdfapi/parser/cpdf_array.h" | 7 #include "core/fpdfapi/parser/cpdf_array.h" |
8 | 8 |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "core/fpdfapi/parser/cpdf_name.h" | 11 #include "core/fpdfapi/parser/cpdf_name.h" |
12 #include "core/fpdfapi/parser/cpdf_number.h" | 12 #include "core/fpdfapi/parser/cpdf_number.h" |
13 #include "core/fpdfapi/parser/cpdf_reference.h" | 13 #include "core/fpdfapi/parser/cpdf_reference.h" |
14 #include "core/fpdfapi/parser/cpdf_stream.h" | 14 #include "core/fpdfapi/parser/cpdf_stream.h" |
15 #include "core/fpdfapi/parser/cpdf_string.h" | 15 #include "core/fpdfapi/parser/cpdf_string.h" |
16 #include "third_party/base/logging.h" | 16 #include "third_party/base/logging.h" |
17 #include "third_party/base/stl_util.h" | 17 #include "third_party/base/stl_util.h" |
18 | 18 |
19 CPDF_Array::CPDF_Array() {} | 19 CPDF_Array::CPDF_Array() {} |
20 | 20 |
21 CPDF_Array::~CPDF_Array() { | 21 CPDF_Array::~CPDF_Array() { |
22 // Mark the object as deleted so that it will not be deleted again | 22 // Mark the object as deleted so that it will not be deleted again |
23 // in case of cyclic references. | 23 // in case of cyclic references. |
24 m_ObjNum = kInvalidObjNum; | 24 m_ObjNum = kInvalidObjNum; |
25 for (auto& it : m_Objects) { | 25 for (auto& it : m_Objects) { |
26 if (it && it->GetObjNum() != kInvalidObjNum) | 26 if (it && it->GetObjNum() != kInvalidObjNum) |
27 delete it; | 27 it->Release(); |
28 } | 28 } |
29 } | 29 } |
30 | 30 |
31 CPDF_Object::Type CPDF_Array::GetType() const { | 31 CPDF_Object::Type CPDF_Array::GetType() const { |
32 return ARRAY; | 32 return ARRAY; |
33 } | 33 } |
34 | 34 |
35 bool CPDF_Array::IsArray() const { | 35 bool CPDF_Array::IsArray() const { |
36 return true; | 36 return true; |
37 } | 37 } |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 return ToArray(GetDirectObjectAt(i)); | 132 return ToArray(GetDirectObjectAt(i)); |
133 } | 133 } |
134 | 134 |
135 void CPDF_Array::RemoveAt(size_t i, size_t nCount) { | 135 void CPDF_Array::RemoveAt(size_t i, size_t nCount) { |
136 if (i >= m_Objects.size()) | 136 if (i >= m_Objects.size()) |
137 return; | 137 return; |
138 | 138 |
139 if (nCount <= 0 || nCount > m_Objects.size() - i) | 139 if (nCount <= 0 || nCount > m_Objects.size() - i) |
140 return; | 140 return; |
141 | 141 |
142 for (size_t j = 0; j < nCount; ++j) | 142 for (size_t j = 0; j < nCount; ++j) { |
143 delete m_Objects[i + j]; | 143 if (CPDF_Object* p = m_Objects[i + j]) |
144 | 144 p->Release(); |
| 145 } |
145 m_Objects.erase(m_Objects.begin() + i, m_Objects.begin() + i + nCount); | 146 m_Objects.erase(m_Objects.begin() + i, m_Objects.begin() + i + nCount); |
146 } | 147 } |
147 | 148 |
148 void CPDF_Array::ConvertToIndirectObjectAt(size_t i, | 149 void CPDF_Array::ConvertToIndirectObjectAt(size_t i, |
149 CPDF_IndirectObjectHolder* pHolder) { | 150 CPDF_IndirectObjectHolder* pHolder) { |
150 if (i >= m_Objects.size()) | 151 if (i >= m_Objects.size()) |
151 return; | 152 return; |
152 | 153 |
153 CPDF_Object* pObj = m_Objects[i]; | 154 CPDF_Object* pObj = m_Objects[i]; |
154 if (!pObj || pObj->IsReference()) | 155 if (!pObj || pObj->IsReference()) |
155 return; | 156 return; |
156 | 157 |
157 uint32_t dwObjNum = pHolder->AddIndirectObject(pObj); | 158 uint32_t dwObjNum = pHolder->AddIndirectObject(pObj); |
158 m_Objects[i] = new CPDF_Reference(pHolder, dwObjNum); | 159 m_Objects[i] = new CPDF_Reference(pHolder, dwObjNum); |
159 } | 160 } |
160 | 161 |
161 void CPDF_Array::SetAt(size_t i, CPDF_Object* pObj) { | 162 void CPDF_Array::SetAt(size_t i, CPDF_Object* pObj) { |
162 ASSERT(IsArray()); | 163 ASSERT(IsArray()); |
163 CHECK(!pObj || pObj->IsInline()); | 164 CHECK(!pObj || pObj->IsInline()); |
164 if (i >= m_Objects.size()) { | 165 if (i >= m_Objects.size()) { |
165 ASSERT(false); | 166 ASSERT(false); |
166 return; | 167 return; |
167 } | 168 } |
168 delete m_Objects[i]; | 169 if (CPDF_Object* pOld = m_Objects[i]) |
| 170 pOld->Release(); |
| 171 |
169 m_Objects[i] = pObj; | 172 m_Objects[i] = pObj; |
170 } | 173 } |
171 | 174 |
172 void CPDF_Array::InsertAt(size_t index, CPDF_Object* pObj) { | 175 void CPDF_Array::InsertAt(size_t index, CPDF_Object* pObj) { |
173 ASSERT(IsArray()); | 176 ASSERT(IsArray()); |
174 CHECK(!pObj || pObj->IsInline()); | 177 CHECK(!pObj || pObj->IsInline()); |
175 if (index >= m_Objects.size()) { | 178 if (index >= m_Objects.size()) { |
176 // Allocate space first. | 179 // Allocate space first. |
177 m_Objects.resize(index + 1, nullptr); | 180 m_Objects.resize(index + 1, nullptr); |
178 m_Objects[index] = pObj; | 181 m_Objects[index] = pObj; |
(...skipping 22 matching lines...) Expand all Loading... |
201 } | 204 } |
202 | 205 |
203 void CPDF_Array::AddNumber(FX_FLOAT f) { | 206 void CPDF_Array::AddNumber(FX_FLOAT f) { |
204 Add(new CPDF_Number(f)); | 207 Add(new CPDF_Number(f)); |
205 } | 208 } |
206 | 209 |
207 void CPDF_Array::AddReference(CPDF_IndirectObjectHolder* pDoc, | 210 void CPDF_Array::AddReference(CPDF_IndirectObjectHolder* pDoc, |
208 uint32_t objnum) { | 211 uint32_t objnum) { |
209 Add(new CPDF_Reference(pDoc, objnum)); | 212 Add(new CPDF_Reference(pDoc, objnum)); |
210 } | 213 } |
OLD | NEW |