| 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 "xfa/src/fxfa/parser/xfa_parser_imp.h" | 7 #include "xfa/fxfa/parser/xfa_parser_imp.h" |
| 8 | 8 |
| 9 #include "xfa/src/fgas/crt/fgas_codepage.h" | 9 #include "xfa/fgas/crt/fgas_codepage.h" |
| 10 #include "xfa/src/fxfa/fm2js/xfa_fm2jsapi.h" | 10 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" |
| 11 #include "xfa/src/fxfa/parser/xfa_basic_imp.h" | 11 #include "xfa/fxfa/parser/xfa_basic_imp.h" |
| 12 #include "xfa/src/fxfa/parser/xfa_docdata.h" | 12 #include "xfa/fxfa/parser/xfa_docdata.h" |
| 13 #include "xfa/src/fxfa/parser/xfa_doclayout.h" | 13 #include "xfa/fxfa/parser/xfa_doclayout.h" |
| 14 #include "xfa/src/fxfa/parser/xfa_document.h" | 14 #include "xfa/fxfa/parser/xfa_document.h" |
| 15 #include "xfa/src/fxfa/parser/xfa_localemgr.h" | 15 #include "xfa/fxfa/parser/xfa_localemgr.h" |
| 16 #include "xfa/src/fxfa/parser/xfa_object.h" | 16 #include "xfa/fxfa/parser/xfa_object.h" |
| 17 #include "xfa/src/fxfa/parser/xfa_parser.h" | 17 #include "xfa/fxfa/parser/xfa_parser.h" |
| 18 #include "xfa/src/fxfa/parser/xfa_script.h" | 18 #include "xfa/fxfa/parser/xfa_script.h" |
| 19 #include "xfa/src/fxfa/parser/xfa_utils.h" | 19 #include "xfa/fxfa/parser/xfa_utils.h" |
| 20 | 20 |
| 21 IXFA_Parser* IXFA_Parser::Create(IXFA_ObjFactory* pFactory, | 21 IXFA_Parser* IXFA_Parser::Create(IXFA_ObjFactory* pFactory, |
| 22 FX_BOOL bDocumentParser) { | 22 FX_BOOL bDocumentParser) { |
| 23 return new CXFA_SimpleParser(pFactory, bDocumentParser); | 23 return new CXFA_SimpleParser(pFactory, bDocumentParser); |
| 24 } | 24 } |
| 25 CXFA_SimpleParser::CXFA_SimpleParser(IXFA_ObjFactory* pFactory, | 25 CXFA_SimpleParser::CXFA_SimpleParser(IXFA_ObjFactory* pFactory, |
| 26 FX_BOOL bDocumentParser) | 26 FX_BOOL bDocumentParser) |
| 27 : m_pXMLParser(nullptr), | 27 : m_pXMLParser(nullptr), |
| 28 m_pXMLDoc(nullptr), | 28 m_pXMLDoc(nullptr), |
| 29 m_pStream(nullptr), | 29 m_pStream(nullptr), |
| (...skipping 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1559 break; | 1559 break; |
| 1560 } | 1560 } |
| 1561 if (pPause && iCount > 500 && pPause->NeedToPauseNow()) { | 1561 if (pPause && iCount > 500 && pPause->NeedToPauseNow()) { |
| 1562 break; | 1562 break; |
| 1563 } | 1563 } |
| 1564 } | 1564 } |
| 1565 return (m_dwStatus == FDE_XMLSYNTAXSTATUS_Error || m_NodeStack.GetSize() != 1) | 1565 return (m_dwStatus == FDE_XMLSYNTAXSTATUS_Error || m_NodeStack.GetSize() != 1) |
| 1566 ? -1 | 1566 ? -1 |
| 1567 : m_pParser->GetStatus(); | 1567 : m_pParser->GetStatus(); |
| 1568 } | 1568 } |
| OLD | NEW |