| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 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/fpdf_parser/cfdf_document.h" | 7 #include "core/fpdfapi/fpdf_parser/cfdf_document.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_edit/cpdf_creator.h" | 9 #include "core/fpdfapi/fpdf_edit/cpdf_creator.h" |
| 10 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" | 10 #include "core/fpdfapi/fpdf_parser/cpdf_dictionary.h" |
| 11 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" | 11 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" |
| 12 | 12 |
| 13 CFDF_Document::CFDF_Document() | 13 CFDF_Document::CFDF_Document() |
| 14 : CPDF_IndirectObjectHolder(), | 14 : CPDF_IndirectObjectHolder(), |
| 15 m_pRootDict(nullptr), | 15 m_pRootDict(nullptr), |
| 16 m_pFile(nullptr), | 16 m_pFile(nullptr), |
| 17 m_bOwnFile(FALSE), | 17 m_bOwnFile(FALSE), |
| 18 m_pByteStringPool(WrapUnique(new CFX_ByteStringPool)) {} | 18 m_pByteStringPool(WrapUnique(new CFX_ByteStringPool)) {} |
| 19 | 19 |
| 20 CFDF_Document::~CFDF_Document() { | 20 CFDF_Document::~CFDF_Document() { |
| 21 if (m_bOwnFile && m_pFile) | 21 if (m_bOwnFile && m_pFile) |
| 22 m_pFile->Release(); | 22 m_pFile->Release(); |
| 23 m_pByteStringPool.Clear(); // Make weak. | 23 m_pByteStringPool.DeleteObject(); // Make weak. |
| 24 } | 24 } |
| 25 | 25 |
| 26 CFDF_Document* CFDF_Document::CreateNewDoc() { | 26 CFDF_Document* CFDF_Document::CreateNewDoc() { |
| 27 CFDF_Document* pDoc = new CFDF_Document; | 27 CFDF_Document* pDoc = new CFDF_Document; |
| 28 pDoc->m_pRootDict = new CPDF_Dictionary(pDoc->GetByteStringPool()); | 28 pDoc->m_pRootDict = new CPDF_Dictionary(pDoc->GetByteStringPool()); |
| 29 pDoc->AddIndirectObject(pDoc->m_pRootDict); | 29 pDoc->AddIndirectObject(pDoc->m_pRootDict); |
| 30 pDoc->m_pRootDict->SetFor("FDF", | 30 pDoc->m_pRootDict->SetFor("FDF", |
| 31 new CPDF_Dictionary(pDoc->GetByteStringPool())); | 31 new CPDF_Dictionary(pDoc->GetByteStringPool())); |
| 32 return pDoc; | 32 return pDoc; |
| 33 } | 33 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 | 92 |
| 93 buf << "%FDF-1.2\r\n"; | 93 buf << "%FDF-1.2\r\n"; |
| 94 for (const auto& pair : *this) | 94 for (const auto& pair : *this) |
| 95 buf << pair.first << " 0 obj\r\n" | 95 buf << pair.first << " 0 obj\r\n" |
| 96 << pair.second.get() << "\r\nendobj\r\n\r\n"; | 96 << pair.second.get() << "\r\nendobj\r\n\r\n"; |
| 97 | 97 |
| 98 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() | 98 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() |
| 99 << " 0 R>>\r\n%%EOF\r\n"; | 99 << " 0 R>>\r\n%%EOF\r\n"; |
| 100 return TRUE; | 100 return TRUE; |
| 101 } | 101 } |
| OLD | NEW |