OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 |
| 7 #include "xfa/fxfa/parser/cxfa_dataimporter.h" |
| 8 |
| 9 #include <memory> |
| 10 |
| 11 #include "core/fxcrt/include/fx_stream.h" |
| 12 #include "xfa/fde/xml/fde_xml_imp.h" |
| 13 #include "xfa/fxfa/include/fxfa.h" |
| 14 #include "xfa/fxfa/include/fxfa_basic.h" |
| 15 #include "xfa/fxfa/parser/cxfa_document.h" |
| 16 #include "xfa/fxfa/parser/cxfa_simple_parser.h" |
| 17 #include "xfa/fxfa/parser/xfa_object.h" |
| 18 |
| 19 CXFA_DataImporter::CXFA_DataImporter(CXFA_Document* pDocument) |
| 20 : m_pDocument(pDocument) { |
| 21 ASSERT(m_pDocument); |
| 22 } |
| 23 |
| 24 FX_BOOL CXFA_DataImporter::ImportData(IFX_FileRead* pDataDocument) { |
| 25 std::unique_ptr<CXFA_SimpleParser> pDataDocumentParser( |
| 26 new CXFA_SimpleParser(m_pDocument, false)); |
| 27 if (pDataDocumentParser->StartParse(pDataDocument, XFA_XDPPACKET_Datasets) != |
| 28 XFA_PARSESTATUS_Ready) { |
| 29 return FALSE; |
| 30 } |
| 31 if (pDataDocumentParser->DoParse(nullptr) < XFA_PARSESTATUS_Done) |
| 32 return FALSE; |
| 33 |
| 34 CXFA_Node* pImportDataRoot = pDataDocumentParser->GetRootNode(); |
| 35 if (!pImportDataRoot) |
| 36 return FALSE; |
| 37 |
| 38 CXFA_Node* pDataModel = |
| 39 ToNode(m_pDocument->GetXFAObject(XFA_HASHCODE_Datasets)); |
| 40 if (!pDataModel) |
| 41 return FALSE; |
| 42 |
| 43 CXFA_Node* pDataNode = ToNode(m_pDocument->GetXFAObject(XFA_HASHCODE_Data)); |
| 44 if (pDataNode) |
| 45 pDataModel->RemoveChild(pDataNode); |
| 46 |
| 47 if (pImportDataRoot->GetElementType() == XFA_Element::DataModel) { |
| 48 while (CXFA_Node* pChildNode = |
| 49 pImportDataRoot->GetNodeItem(XFA_NODEITEM_FirstChild)) { |
| 50 pImportDataRoot->RemoveChild(pChildNode); |
| 51 pDataModel->InsertChild(pChildNode); |
| 52 } |
| 53 } else { |
| 54 CFDE_XMLNode* pXMLNode = pImportDataRoot->GetXMLMappingNode(); |
| 55 CFDE_XMLNode* pParentXMLNode = pXMLNode->GetNodeItem(CFDE_XMLNode::Parent); |
| 56 if (pParentXMLNode) |
| 57 pParentXMLNode->RemoveChildNode(pXMLNode); |
| 58 pDataModel->InsertChild(pImportDataRoot); |
| 59 } |
| 60 m_pDocument->DoDataRemerge(FALSE); |
| 61 return TRUE; |
| 62 } |
OLD | NEW |