OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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/fxfa/parser/cxfa_simple_parser.h" | 7 #include "xfa/fxfa/parser/cxfa_simple_parser.h" |
8 | 8 |
9 #include "core/fxcrt/fx_ext.h" | 9 #include "core/fxcrt/fx_ext.h" |
10 #include "xfa/fgas/crt/fgas_codepage.h" | 10 #include "xfa/fgas/crt/fgas_codepage.h" |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 m_pRootNode(nullptr), | 270 m_pRootNode(nullptr), |
271 m_ePacketID(XFA_XDPPACKET_UNKNOWN), | 271 m_ePacketID(XFA_XDPPACKET_UNKNOWN), |
272 m_bDocumentParser(bDocumentParser) {} | 272 m_bDocumentParser(bDocumentParser) {} |
273 | 273 |
274 CXFA_SimpleParser::~CXFA_SimpleParser() {} | 274 CXFA_SimpleParser::~CXFA_SimpleParser() {} |
275 | 275 |
276 void CXFA_SimpleParser::SetFactory(CXFA_Document* pFactory) { | 276 void CXFA_SimpleParser::SetFactory(CXFA_Document* pFactory) { |
277 m_pFactory = pFactory; | 277 m_pFactory = pFactory; |
278 } | 278 } |
279 | 279 |
280 int32_t CXFA_SimpleParser::StartParse(IFX_FileRead* pStream, | 280 int32_t CXFA_SimpleParser::StartParse(IFX_SeekableReadStream* pStream, |
281 XFA_XDPPACKET ePacketID) { | 281 XFA_XDPPACKET ePacketID) { |
282 CloseParser(); | 282 CloseParser(); |
283 m_pFileRead = pStream; | 283 m_pFileRead = pStream; |
284 m_pStream.reset(IFX_Stream::CreateStream( | 284 m_pStream.reset(IFX_Stream::CreateStream( |
285 pStream, FX_STREAMACCESS_Read | FX_STREAMACCESS_Text)); | 285 pStream, FX_STREAMACCESS_Read | FX_STREAMACCESS_Text)); |
286 if (!m_pStream) | 286 if (!m_pStream) |
287 return XFA_PARSESTATUS_StreamErr; | 287 return XFA_PARSESTATUS_StreamErr; |
288 | 288 |
289 uint16_t wCodePage = m_pStream->GetCodePage(); | 289 uint16_t wCodePage = m_pStream->GetCodePage(); |
290 if (wCodePage != FX_CODEPAGE_UTF16LE && wCodePage != FX_CODEPAGE_UTF16BE && | 290 if (wCodePage != FX_CODEPAGE_UTF16LE && wCodePage != FX_CODEPAGE_UTF16BE && |
(...skipping 1009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1300 pXFANode->GetDocument()->SetFlag(XFA_DOCFLAG_StrictScoping, TRUE); | 1300 pXFANode->GetDocument()->SetFlag(XFA_DOCFLAG_StrictScoping, TRUE); |
1301 } | 1301 } |
1302 } | 1302 } |
1303 } | 1303 } |
1304 } | 1304 } |
1305 | 1305 |
1306 void CXFA_SimpleParser::CloseParser() { | 1306 void CXFA_SimpleParser::CloseParser() { |
1307 m_pXMLDoc.reset(); | 1307 m_pXMLDoc.reset(); |
1308 m_pStream.reset(); | 1308 m_pStream.reset(); |
1309 } | 1309 } |
OLD | NEW |