| 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" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 break; | 58 break; |
| 59 | 59 |
| 60 word = parser.GetNextWord(nullptr); | 60 word = parser.GetNextWord(nullptr); |
| 61 if (word != "obj") | 61 if (word != "obj") |
| 62 break; | 62 break; |
| 63 | 63 |
| 64 CPDF_Object* pObj = parser.GetObject(this, objnum, 0, true); | 64 CPDF_Object* pObj = parser.GetObject(this, objnum, 0, true); |
| 65 if (!pObj) | 65 if (!pObj) |
| 66 break; | 66 break; |
| 67 | 67 |
| 68 InsertIndirectObject(objnum, pObj); | 68 ReplaceIndirectObjectIfHigherGeneration(objnum, pObj); |
| 69 word = parser.GetNextWord(nullptr); | 69 word = parser.GetNextWord(nullptr); |
| 70 if (word != "endobj") | 70 if (word != "endobj") |
| 71 break; | 71 break; |
| 72 } else { | 72 } else { |
| 73 if (word != "trailer") | 73 if (word != "trailer") |
| 74 break; | 74 break; |
| 75 | 75 |
| 76 if (CPDF_Dictionary* pMainDict = | 76 if (CPDF_Dictionary* pMainDict = |
| 77 ToDictionary(parser.GetObject(this, 0, 0, true))) { | 77 ToDictionary(parser.GetObject(this, 0, 0, true))) { |
| 78 m_pRootDict = pMainDict->GetDictBy("Root"); | 78 m_pRootDict = pMainDict->GetDictBy("Root"); |
| 79 pMainDict->Release(); | 79 pMainDict->Release(); |
| 80 } | 80 } |
| 81 break; | 81 break; |
| 82 } | 82 } |
| 83 } | 83 } |
| 84 } | 84 } |
| 85 | 85 |
| 86 FX_BOOL CFDF_Document::WriteBuf(CFX_ByteTextBuf& buf) const { | 86 FX_BOOL CFDF_Document::WriteBuf(CFX_ByteTextBuf& buf) const { |
| 87 if (!m_pRootDict) { | 87 if (!m_pRootDict) { |
| 88 return FALSE; | 88 return FALSE; |
| 89 } | 89 } |
| 90 buf << "%FDF-1.2\r\n"; | 90 buf << "%FDF-1.2\r\n"; |
| 91 for (const auto& pair : m_IndirectObjs) { | 91 for (const auto& pair : m_IndirectObjs) { |
| 92 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; | 92 buf << pair.first << " 0 obj\r\n" << pair.second << "\r\nendobj\r\n\r\n"; |
| 93 } | 93 } |
| 94 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() | 94 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() |
| 95 << " 0 R>>\r\n%%EOF\r\n"; | 95 << " 0 R>>\r\n%%EOF\r\n"; |
| 96 return TRUE; | 96 return TRUE; |
| 97 } | 97 } |
| OLD | NEW |