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

Side by Side Diff: core/fpdfapi/fpdf_parser/cfdf_document.cpp

Issue 1832173003: Remove FX_DWORD from core/ and delete definition (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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/fpdf_page/pageint.h ('k') | core/fpdfapi/fpdf_parser/cpdf_array.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 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 22 matching lines...) Expand all
33 return NULL; 33 return NULL;
34 } 34 }
35 CFDF_Document* pDoc = new CFDF_Document; 35 CFDF_Document* pDoc = new CFDF_Document;
36 pDoc->ParseStream(pFile, bOwnFile); 36 pDoc->ParseStream(pFile, bOwnFile);
37 if (!pDoc->m_pRootDict) { 37 if (!pDoc->m_pRootDict) {
38 delete pDoc; 38 delete pDoc;
39 return NULL; 39 return NULL;
40 } 40 }
41 return pDoc; 41 return pDoc;
42 } 42 }
43 CFDF_Document* CFDF_Document::ParseMemory(const uint8_t* pData, FX_DWORD size) { 43 CFDF_Document* CFDF_Document::ParseMemory(const uint8_t* pData, uint32_t size) {
44 return CFDF_Document::ParseFile(FX_CreateMemoryStream((uint8_t*)pData, size), 44 return CFDF_Document::ParseFile(FX_CreateMemoryStream((uint8_t*)pData, size),
45 TRUE); 45 TRUE);
46 } 46 }
47 void CFDF_Document::ParseStream(IFX_FileRead* pFile, FX_BOOL bOwnFile) { 47 void CFDF_Document::ParseStream(IFX_FileRead* pFile, FX_BOOL bOwnFile) {
48 m_pFile = pFile; 48 m_pFile = pFile;
49 m_bOwnFile = bOwnFile; 49 m_bOwnFile = bOwnFile;
50 CPDF_SyntaxParser parser; 50 CPDF_SyntaxParser parser;
51 parser.InitParser(m_pFile, 0); 51 parser.InitParser(m_pFile, 0);
52 while (1) { 52 while (1) {
53 bool bNumber; 53 bool bNumber;
54 CFX_ByteString word = parser.GetNextWord(&bNumber); 54 CFX_ByteString word = parser.GetNextWord(&bNumber);
55 if (bNumber) { 55 if (bNumber) {
56 FX_DWORD objnum = FXSYS_atoui(word); 56 uint32_t objnum = FXSYS_atoui(word);
57 word = parser.GetNextWord(&bNumber); 57 word = parser.GetNextWord(&bNumber);
58 if (!bNumber) { 58 if (!bNumber) {
59 break; 59 break;
60 } 60 }
61 word = parser.GetNextWord(nullptr); 61 word = parser.GetNextWord(nullptr);
62 if (word != "obj") { 62 if (word != "obj") {
63 break; 63 break;
64 } 64 }
65 CPDF_Object* pObj = parser.GetObject(this, objnum, 0, true); 65 CPDF_Object* pObj = parser.GetObject(this, objnum, 0, true);
66 if (!pObj) { 66 if (!pObj) {
(...skipping 22 matching lines...) Expand all
89 return FALSE; 89 return FALSE;
90 } 90 }
91 buf << "%FDF-1.2\r\n"; 91 buf << "%FDF-1.2\r\n";
92 for (const auto& pair : m_IndirectObjs) { 92 for (const auto& pair : m_IndirectObjs) {
93 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";
94 } 94 }
95 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum() 95 buf << "trailer\r\n<</Root " << m_pRootDict->GetObjNum()
96 << " 0 R>>\r\n%%EOF\r\n"; 96 << " 0 R>>\r\n%%EOF\r\n";
97 return TRUE; 97 return TRUE;
98 } 98 }
OLDNEW
« no previous file with comments | « core/fpdfapi/fpdf_page/pageint.h ('k') | core/fpdfapi/fpdf_parser/cpdf_array.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698