| 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/include/cfdf_document.h" | 7 #include "core/fpdfapi/fpdf_parser/include/cfdf_document.h" |
| 8 | 8 |
| 9 #include "core/fpdfapi/fpdf_edit/include/cpdf_creator.h" | 9 #include "core/fpdfapi/fpdf_edit/include/cpdf_creator.h" |
| 10 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" | 10 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" |
| 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" | 11 #include "core/fpdfapi/fpdf_parser/include/cpdf_dictionary.h" |
| 12 | 12 |
| 13 CFDF_Document::CFDF_Document() : CPDF_IndirectObjectHolder(nullptr) { | 13 CFDF_Document::CFDF_Document() |
| 14 m_pRootDict = nullptr; | 14 : CPDF_IndirectObjectHolder(), |
| 15 m_pFile = nullptr; | 15 m_pRootDict(nullptr), |
| 16 m_bOwnFile = FALSE; | 16 m_pFile(nullptr), |
| 17 m_bOwnFile(FALSE) {} |
| 18 |
| 19 CFDF_Document::~CFDF_Document() { |
| 20 if (m_bOwnFile && m_pFile) |
| 21 m_pFile->Release(); |
| 17 } | 22 } |
| 18 CFDF_Document::~CFDF_Document() { | 23 |
| 19 if (m_bOwnFile && m_pFile) { | |
| 20 m_pFile->Release(); | |
| 21 } | |
| 22 } | |
| 23 CFDF_Document* CFDF_Document::CreateNewDoc() { | 24 CFDF_Document* CFDF_Document::CreateNewDoc() { |
| 24 CFDF_Document* pDoc = new CFDF_Document; | 25 CFDF_Document* pDoc = new CFDF_Document; |
| 25 pDoc->m_pRootDict = new CPDF_Dictionary; | 26 pDoc->m_pRootDict = new CPDF_Dictionary; |
| 26 pDoc->AddIndirectObject(pDoc->m_pRootDict); | 27 pDoc->AddIndirectObject(pDoc->m_pRootDict); |
| 27 CPDF_Dictionary* pFDFDict = new CPDF_Dictionary; | 28 CPDF_Dictionary* pFDFDict = new CPDF_Dictionary; |
| 28 pDoc->m_pRootDict->SetAt("FDF", pFDFDict); | 29 pDoc->m_pRootDict->SetAt("FDF", pFDFDict); |
| 29 return pDoc; | 30 return pDoc; |
| 30 } | 31 } |
| 31 | 32 |
| 32 CFDF_Document* CFDF_Document::ParseFile(IFX_FileRead* pFile, FX_BOOL bOwnFile) { | 33 CFDF_Document* CFDF_Document::ParseFile(IFX_FileRead* pFile, FX_BOOL bOwnFile) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 58 break; | 59 break; |
| 59 | 60 |
| 60 word = parser.GetNextWord(nullptr); | 61 word = parser.GetNextWord(nullptr); |
| 61 if (word != "obj") | 62 if (word != "obj") |
| 62 break; | 63 break; |
| 63 | 64 |
| 64 CPDF_Object* pObj = parser.GetObject(this, objnum, 0, true); | 65 CPDF_Object* pObj = parser.GetObject(this, objnum, 0, true); |
| 65 if (!pObj) | 66 if (!pObj) |
| 66 break; | 67 break; |
| 67 | 68 |
| 68 InsertIndirectObject(objnum, pObj); | 69 ReplaceIndirectObjectIfHigherGeneration(objnum, pObj); |
| 69 word = parser.GetNextWord(nullptr); | 70 word = parser.GetNextWord(nullptr); |
| 70 if (word != "endobj") | 71 if (word != "endobj") |
| 71 break; | 72 break; |
| 72 } else { | 73 } else { |
| 73 if (word != "trailer") | 74 if (word != "trailer") |
| 74 break; | 75 break; |
| 75 | 76 |
| 76 if (CPDF_Dictionary* pMainDict = | 77 if (CPDF_Dictionary* pMainDict = |
| 77 ToDictionary(parser.GetObject(this, 0, 0, true))) { | 78 ToDictionary(parser.GetObject(this, 0, 0, true))) { |
| 78 m_pRootDict = pMainDict->GetDictBy("Root"); | 79 m_pRootDict = pMainDict->GetDictBy("Root"); |
| 79 pMainDict->Release(); | 80 pMainDict->Release(); |
| 80 } | 81 } |
| 81 break; | 82 break; |
| 82 } | 83 } |
| 83 } | 84 } |
| 84 } | 85 } |
| 85 | 86 |
| 86 FX_BOOL CFDF_Document::WriteBuf(CFX_ByteTextBuf& buf) const { | 87 FX_BOOL CFDF_Document::WriteBuf(CFX_ByteTextBuf& buf) const { |
| 87 if (!m_pRootDict) { | 88 if (!m_pRootDict) { |
| 88 return FALSE; | 89 return FALSE; |
| 89 } | 90 } |
| 90 buf << "%FDF-1.2\r\n"; | 91 buf << "%FDF-1.2\r\n"; |
| 91 for (const auto& pair : m_IndirectObjs) { | 92 for (const auto& pair : *this) |
| 92 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; | 93 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; |
| 93 } | 94 |
| 94 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() | 95 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() |
| 95 << " 0 R>>\r\n%%EOF\r\n"; | 96 << " 0 R>>\r\n%%EOF\r\n"; |
| 96 return TRUE; | 97 return TRUE; |
| 97 } | 98 } |
| OLD | NEW |