| 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/parser/cfdf_document.h" | 7 #include "core/fpdfapi/parser/cfdf_document.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/edit/cpdf_creator.h" | 9 #include "core/fpdfapi/edit/cpdf_creator.h" |
| 10 #include "core/fpdfapi/parser/cpdf_dictionary.h" | 10 #include "core/fpdfapi/parser/cpdf_dictionary.h" |
| 11 #include "core/fpdfapi/parser/cpdf_syntax_parser.h" | 11 #include "core/fpdfapi/parser/cpdf_syntax_parser.h" |
| 12 #include "third_party/base/ptr_util.h" | 12 #include "third_party/base/ptr_util.h" |
| 13 | 13 |
| 14 CFDF_Document::CFDF_Document() | 14 CFDF_Document::CFDF_Document() |
| 15 : CPDF_IndirectObjectHolder(), | 15 : CPDF_IndirectObjectHolder(), |
| 16 m_pRootDict(nullptr), | 16 m_pRootDict(nullptr), |
| 17 m_pFile(nullptr), | 17 m_pFile(nullptr), |
| 18 m_bOwnFile(false) {} | 18 m_bOwnFile(false) {} |
| 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 } | 23 } |
| 24 | 24 |
| 25 CFDF_Document* CFDF_Document::CreateNewDoc() { | 25 CFDF_Document* CFDF_Document::CreateNewDoc() { |
| 26 CFDF_Document* pDoc = new CFDF_Document; | 26 CFDF_Document* pDoc = new CFDF_Document; |
| 27 pDoc->m_pRootDict = | 27 pDoc->m_pRootDict = pDoc->NewIndirect<CPDF_Dictionary>(); |
| 28 pDoc->NewIndirect<CPDF_Dictionary>(pDoc->GetByteStringPool()); | |
| 29 pDoc->m_pRootDict->SetFor("FDF", | 28 pDoc->m_pRootDict->SetFor("FDF", |
| 30 new CPDF_Dictionary(pDoc->GetByteStringPool())); | 29 new CPDF_Dictionary(pDoc->GetByteStringPool())); |
| 31 return pDoc; | 30 return pDoc; |
| 32 } | 31 } |
| 33 | 32 |
| 34 CFDF_Document* CFDF_Document::ParseFile(IFX_SeekableReadStream* pFile, | 33 CFDF_Document* CFDF_Document::ParseFile(IFX_SeekableReadStream* pFile, |
| 35 bool bOwnFile) { | 34 bool bOwnFile) { |
| 36 if (!pFile) | 35 if (!pFile) |
| 37 return nullptr; | 36 return nullptr; |
| 38 | 37 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 95 |
| 97 buf << "%FDF-1.2\r\n"; | 96 buf << "%FDF-1.2\r\n"; |
| 98 for (const auto& pair : *this) | 97 for (const auto& pair : *this) |
| 99 buf << pair.first << " 0 obj\r\n" | 98 buf << pair.first << " 0 obj\r\n" |
| 100 << pair.second.get() << "\r\nendobj\r\n\r\n"; | 99 << pair.second.get() << "\r\nendobj\r\n\r\n"; |
| 101 | 100 |
| 102 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() | 101 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() |
| 103 << " 0 R>>\r\n%%EOF\r\n"; | 102 << " 0 R>>\r\n%%EOF\r\n"; |
| 104 return true; | 103 return true; |
| 105 } | 104 } |
| OLD | NEW |