Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: core/fpdfapi/parser/cpdf_dictionary.cpp

Issue 2385293002: Make CPDF_Object containers hold objects via unique pointers (Closed)
Patch Set: Remove duplicated line Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/fpdfapi/parser/cpdf_dictionary.h ('k') | core/fpdfapi/parser/cpdf_object_unittest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_dictionary.h" 7 #include "core/fpdfapi/parser/cpdf_dictionary.h"
8 8
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
11 11
12 #include "core/fpdfapi/parser/cpdf_array.h" 12 #include "core/fpdfapi/parser/cpdf_array.h"
13 #include "core/fpdfapi/parser/cpdf_boolean.h" 13 #include "core/fpdfapi/parser/cpdf_boolean.h"
14 #include "core/fpdfapi/parser/cpdf_name.h" 14 #include "core/fpdfapi/parser/cpdf_name.h"
15 #include "core/fpdfapi/parser/cpdf_number.h" 15 #include "core/fpdfapi/parser/cpdf_number.h"
16 #include "core/fpdfapi/parser/cpdf_reference.h" 16 #include "core/fpdfapi/parser/cpdf_reference.h"
17 #include "core/fpdfapi/parser/cpdf_stream.h" 17 #include "core/fpdfapi/parser/cpdf_stream.h"
18 #include "core/fpdfapi/parser/cpdf_string.h" 18 #include "core/fpdfapi/parser/cpdf_string.h"
19 #include "third_party/base/logging.h" 19 #include "third_party/base/logging.h"
20 #include "third_party/base/stl_util.h" 20 #include "third_party/base/stl_util.h"
21 21
22 CPDF_Dictionary::CPDF_Dictionary() 22 CPDF_Dictionary::CPDF_Dictionary()
23 : CPDF_Dictionary(CFX_WeakPtr<CFX_ByteStringPool>()) {} 23 : CPDF_Dictionary(CFX_WeakPtr<CFX_ByteStringPool>()) {}
24 24
25 CPDF_Dictionary::CPDF_Dictionary(const CFX_WeakPtr<CFX_ByteStringPool>& pPool) 25 CPDF_Dictionary::CPDF_Dictionary(const CFX_WeakPtr<CFX_ByteStringPool>& pPool)
26 : m_pPool(pPool) {} 26 : m_pPool(pPool) {}
27 27
28 CPDF_Dictionary::~CPDF_Dictionary() { 28 CPDF_Dictionary::~CPDF_Dictionary() {
29 // Mark the object as deleted so that it will not be deleted again 29 // Mark the object as deleted so that it will not be deleted again
30 // in case of cyclic references. 30 // in case of cyclic references, then break cycles.
31 m_ObjNum = kInvalidObjNum; 31 m_ObjNum = kInvalidObjNum;
32 for (const auto& it : m_Map) { 32 for (auto& it : m_Map) {
33 if (it.second && it.second->GetObjNum() != kInvalidObjNum) 33 if (it.second && it.second->GetObjNum() == kInvalidObjNum)
34 it.second->Release(); 34 it.second.release();
35 } 35 }
36 } 36 }
37 37
38 CPDF_Object::Type CPDF_Dictionary::GetType() const { 38 CPDF_Object::Type CPDF_Dictionary::GetType() const {
39 return DICTIONARY; 39 return DICTIONARY;
40 } 40 }
41 41
42 CPDF_Dictionary* CPDF_Dictionary::GetDict() const { 42 CPDF_Dictionary* CPDF_Dictionary::GetDict() const {
43 // The method should be made non-const if we want to not be const. 43 // The method should be made non-const if we want to not be const.
44 // See bug #234. 44 // See bug #234.
(...skipping 13 matching lines...) Expand all
58 } 58 }
59 59
60 CPDF_Object* CPDF_Dictionary::Clone() const { 60 CPDF_Object* CPDF_Dictionary::Clone() const {
61 return CloneObjectNonCyclic(false); 61 return CloneObjectNonCyclic(false);
62 } 62 }
63 63
64 CPDF_Object* CPDF_Dictionary::CloneNonCyclic( 64 CPDF_Object* CPDF_Dictionary::CloneNonCyclic(
65 bool bDirect, 65 bool bDirect,
66 std::set<const CPDF_Object*>* pVisited) const { 66 std::set<const CPDF_Object*>* pVisited) const {
67 pVisited->insert(this); 67 pVisited->insert(this);
68 CPDF_Dictionary* pCopy = new CPDF_Dictionary(m_pPool); 68 UniqueDictionary pCopy = UniqueDictionary(new CPDF_Dictionary(m_pPool));
69 for (const auto& it : *this) { 69 for (const auto& it : *this) {
70 CPDF_Object* value = it.second; 70 if (!pdfium::ContainsKey(*pVisited, it.second.get())) {
71 if (!pdfium::ContainsKey(*pVisited, value)) { 71 pCopy->m_Map[it.first] =
72 pCopy->m_Map.insert( 72 UniqueObject(it.second->CloneNonCyclic(bDirect, pVisited));
73 std::make_pair(it.first, value->CloneNonCyclic(bDirect, pVisited)));
74 } 73 }
75 } 74 }
76 return pCopy; 75 return pCopy.release();
77 } 76 }
78 77
79 CPDF_Object* CPDF_Dictionary::GetObjectFor(const CFX_ByteString& key) const { 78 CPDF_Object* CPDF_Dictionary::GetObjectFor(const CFX_ByteString& key) const {
80 auto it = m_Map.find(key); 79 auto it = m_Map.find(key);
81 return it != m_Map.end() ? it->second : nullptr; 80 return it != m_Map.end() ? it->second.get() : nullptr;
82 } 81 }
83 82
84 CPDF_Object* CPDF_Dictionary::GetDirectObjectFor( 83 CPDF_Object* CPDF_Dictionary::GetDirectObjectFor(
85 const CFX_ByteString& key) const { 84 const CFX_ByteString& key) const {
86 CPDF_Object* p = GetObjectFor(key); 85 CPDF_Object* p = GetObjectFor(key);
87 return p ? p->GetDirect() : nullptr; 86 return p ? p->GetDirect() : nullptr;
88 } 87 }
89 88
90 CFX_ByteString CPDF_Dictionary::GetStringFor(const CFX_ByteString& key) const { 89 CFX_ByteString CPDF_Dictionary::GetStringFor(const CFX_ByteString& key) const {
91 CPDF_Object* p = GetObjectFor(key); 90 CPDF_Object* p = GetObjectFor(key);
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 } 166 }
168 167
169 bool CPDF_Dictionary::IsSignatureDict() const { 168 bool CPDF_Dictionary::IsSignatureDict() const {
170 CPDF_Object* pType = GetDirectObjectFor("Type"); 169 CPDF_Object* pType = GetDirectObjectFor("Type");
171 if (!pType) 170 if (!pType)
172 pType = GetDirectObjectFor("FT"); 171 pType = GetDirectObjectFor("FT");
173 return pType && pType->GetString() == "Sig"; 172 return pType && pType->GetString() == "Sig";
174 } 173 }
175 174
176 void CPDF_Dictionary::SetFor(const CFX_ByteString& key, CPDF_Object* pObj) { 175 void CPDF_Dictionary::SetFor(const CFX_ByteString& key, CPDF_Object* pObj) {
177 CHECK(!pObj || pObj->IsInline()); 176 if (!pObj) {
178 auto it = m_Map.find(key); 177 m_Map.erase(key);
179 if (it == m_Map.end()) {
180 if (pObj)
181 m_Map.insert(std::make_pair(MaybeIntern(key), pObj));
182 return; 178 return;
183 } 179 }
184 180 ASSERT(pObj->IsInline());
185 if (it->second == pObj) 181 m_Map[key] = UniqueObject(pObj);
186 return;
187 it->second->Release();
188
189 if (pObj)
190 it->second = pObj;
191 else
192 m_Map.erase(it);
193 } 182 }
194 183
195 void CPDF_Dictionary::ConvertToIndirectObjectFor( 184 void CPDF_Dictionary::ConvertToIndirectObjectFor(
196 const CFX_ByteString& key, 185 const CFX_ByteString& key,
197 CPDF_IndirectObjectHolder* pHolder) { 186 CPDF_IndirectObjectHolder* pHolder) {
198 auto it = m_Map.find(key); 187 auto it = m_Map.find(key);
199 if (it == m_Map.end() || it->second->IsReference()) 188 if (it == m_Map.end() || it->second->IsReference())
200 return; 189 return;
201 190
202 uint32_t objnum = pHolder->AddIndirectObject(it->second); 191 uint32_t objnum = pHolder->AddIndirectObject(it->second.release());
203 it->second = new CPDF_Reference(pHolder, objnum); 192 it->second = UniqueReference(new CPDF_Reference(pHolder, objnum));
204 } 193 }
205 194
206 void CPDF_Dictionary::RemoveFor(const CFX_ByteString& key) { 195 void CPDF_Dictionary::RemoveFor(const CFX_ByteString& key) {
207 auto it = m_Map.find(key); 196 m_Map.erase(key);
208 if (it == m_Map.end())
209 return;
210
211 it->second->Release();
212 m_Map.erase(it);
213 } 197 }
214 198
215 void CPDF_Dictionary::ReplaceKey(const CFX_ByteString& oldkey, 199 void CPDF_Dictionary::ReplaceKey(const CFX_ByteString& oldkey,
216 const CFX_ByteString& newkey) { 200 const CFX_ByteString& newkey) {
201 if (oldkey == newkey)
202 return;
203
217 auto old_it = m_Map.find(oldkey); 204 auto old_it = m_Map.find(oldkey);
218 if (old_it == m_Map.end()) 205 if (old_it == m_Map.end())
219 return; 206 return;
220 207
221 auto new_it = m_Map.find(newkey); 208 m_Map[newkey] = std::move(old_it->second);
222 if (new_it == old_it)
223 return;
224
225 if (new_it != m_Map.end()) {
226 new_it->second->Release();
227 new_it->second = old_it->second;
228 } else {
229 m_Map.insert(std::make_pair(MaybeIntern(newkey), old_it->second));
230 }
231 m_Map.erase(old_it); 209 m_Map.erase(old_it);
232 } 210 }
233 211
234 void CPDF_Dictionary::SetIntegerFor(const CFX_ByteString& key, int i) { 212 void CPDF_Dictionary::SetIntegerFor(const CFX_ByteString& key, int i) {
235 SetFor(key, new CPDF_Number(i)); 213 SetFor(key, new CPDF_Number(i));
236 } 214 }
237 215
238 void CPDF_Dictionary::SetNameFor(const CFX_ByteString& key, 216 void CPDF_Dictionary::SetNameFor(const CFX_ByteString& key,
239 const CFX_ByteString& name) { 217 const CFX_ByteString& name) {
240 SetFor(key, new CPDF_Name(MaybeIntern(name))); 218 SetFor(key, new CPDF_Name(MaybeIntern(name)));
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 pArray->AddNumber(matrix.c); 255 pArray->AddNumber(matrix.c);
278 pArray->AddNumber(matrix.d); 256 pArray->AddNumber(matrix.d);
279 pArray->AddNumber(matrix.e); 257 pArray->AddNumber(matrix.e);
280 pArray->AddNumber(matrix.f); 258 pArray->AddNumber(matrix.f);
281 SetFor(key, pArray); 259 SetFor(key, pArray);
282 } 260 }
283 261
284 CFX_ByteString CPDF_Dictionary::MaybeIntern(const CFX_ByteString& str) { 262 CFX_ByteString CPDF_Dictionary::MaybeIntern(const CFX_ByteString& str) {
285 return m_pPool ? m_pPool->Intern(str) : str; 263 return m_pPool ? m_pPool->Intern(str) : str;
286 } 264 }
OLDNEW
« no previous file with comments | « core/fpdfapi/parser/cpdf_dictionary.h ('k') | core/fpdfapi/parser/cpdf_object_unittest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698