LibreOffice Module xmloff (master) 1
XFormsInstanceContext.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20
22
23#include <DomBuilderContext.hxx>
24
25#include <rtl/ustring.hxx>
26#include <sal/log.hxx>
27#include <com/sun/star/uno/Reference.hxx>
28#include <com/sun/star/beans/PropertyValue.hpp>
29#include <com/sun/star/xml/dom/XDocument.hpp>
30#include <com/sun/star/xforms/XModel2.hpp>
31#include <osl/diagnose.h>
32
33#include <xmloff/xmltoken.hxx>
34#include <xmloff/xmlimp.hxx>
35#include <xmloff/xmlerror.hxx>
37
38
40using com::sun::star::uno::Any;
42using com::sun::star::xforms::XModel2;
43using com::sun::star::beans::PropertyValue;
44
47
49 SvXMLImport& rImport,
50 const Reference<XModel2> & xModel ) :
51 TokenContext( rImport ),
53{
54 SAL_WARN_IF( !mxModel.is(), "xmloff", "need model" );
55}
56
57css::uno::Reference< css::xml::sax::XFastContextHandler > XFormsInstanceContext::createFastChildContext(
58 sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList >& )
59{
60 SvXMLImportContext* pContext = nullptr;
61
62 // only the first element child of an xforms:instance element
63 // is used as an instance. The other children remainder must be
64 // ignored.
65 if( mxInstance.is() )
66 {
67 const OUString& rLocalName = SvXMLImport::getNameFromToken( nElement );
69 }
70 else
71 {
72 // create new DomBuilderContext. Save reference to tree in Model.
73 DomBuilderContext* pInstance = new DomBuilderContext( GetImport(), nElement );
74 mxInstance = pInstance->getTree();
75 pContext = pInstance;
76 }
77
78 SAL_WARN_IF( pContext == nullptr, "xmloff", "no context!" );
79 return pContext;
80
81}
82
83css::uno::Reference< css::xml::sax::XFastContextHandler > XFormsInstanceContext::createUnknownChildContext(
84 const OUString & rNamespace, const OUString &rName, const css::uno::Reference< css::xml::sax::XFastAttributeList > & /*Attribs*/)
85{
86 SvXMLImportContext* pContext = nullptr;
87
88 // only the first element child of an xforms:instance element
89 // is used as an instance. The other children remainder must be
90 // ignored.
91 if( mxInstance.is() )
92 {
94 }
95 else
96 {
97 // create new DomBuilderContext. Save reference to tree in Model.
98 DomBuilderContext* pInstance = new DomBuilderContext( GetImport(), rNamespace, rName );
99 mxInstance = pInstance->getTree();
100 pContext = pInstance;
101 }
102
103 SAL_WARN_IF( pContext == nullptr, "xmloff", "no context!" );
104 return pContext;
105
106}
107
109{
110 Sequence<PropertyValue> aSequence( 3 );
111 PropertyValue* pSequence = aSequence.getArray();
112 pSequence[0].Name = "Instance";
113 pSequence[0].Value <<= mxInstance;
114 pSequence[1].Name = "ID";
115 pSequence[1].Value <<= msId;
116 pSequence[2].Name = "URL";
117 pSequence[2].Value <<= msURL;
118
119 mxModel->getInstances()->insert( Any( aSequence ) );
120}
121
122void XFormsInstanceContext::endUnknownElement(const OUString & /*Namespace*/, const OUString & /*Name*/)
123{
124 Sequence<PropertyValue> aSequence( 3 );
125 PropertyValue* pSequence = aSequence.getArray();
126 pSequence[0].Name = "Instance";
127 pSequence[0].Value <<= mxInstance;
128 pSequence[1].Name = "ID";
129 pSequence[1].Value <<= msId;
130 pSequence[2].Name = "URL";
131 pSequence[2].Value <<= msURL;
132
133 mxModel->getInstances()->insert( Any( aSequence ) );
134}
135
137{
138 switch( aIter.getToken() & TOKEN_MASK )
139 {
140 case XML_SRC:
141 msURL = aIter.toString();
142 break;
143 case XML_ID:
144 msId = aIter.toString();
145 break;
146 default:
147 XMLOFF_WARN_UNKNOWN("xmloff", aIter);
148 assert( false && "this should not happen" );
149 break;
150 }
151}
152
154 sal_Int32,
156{
157 assert( false && "to be handled by CreateChildContext" );
158 return nullptr;
159}
160
161/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
css::uno::Reference< css::frame::XModel2 > mxModel
DomBuilderContext creates a DOM tree suitable for in-memory processing of XML data from a sequence of...
css::uno::Reference< css::xml::dom::XDocument > getTree()
access the DOM tree
This class deliberately does not support XWeak, to improve performance when loading large documents.
Definition: xmlictxt.hxx:48
SvXMLImport & GetImport()
Definition: xmlictxt.hxx:60
handle attributes through an SvXMLTokenMap
css::uno::Reference< css::xml::dom::XDocument > mxInstance
virtual SvXMLImportContext * HandleChild(sal_Int32 nElementToken, const css::uno::Reference< css::xml::sax::XFastAttributeList > &xAttrList) override
will be called for each child element
XFormsInstanceContext(SvXMLImport &rImport, const css::uno::Reference< css::xforms::XModel2 > &xModel)
virtual void SAL_CALL endFastElement(sal_Int32 nElement) override
endFastElement is called before a context will be destructed, but after an elements context has been ...
virtual void SAL_CALL endUnknownElement(const OUString &Namespace, const OUString &Name) override
css::uno::Reference< css::xforms::XModel2 > mxModel
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(sal_Int32 nElement, const css::uno::Reference< css::xml::sax::XFastAttributeList > &AttrList) override
call HandleChild for each child element in the token map; create a warning for all others.
virtual void HandleAttribute(const sax_fastparser::FastAttributeList::FastAttributeIter &aIter) override
will be called for each attribute
virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createUnknownChildContext(const OUString &Namespace, const OUString &Name, const css::uno::Reference< css::xml::sax::XFastAttributeList > &Attribs) override
#define SAL_WARN_IF(condition, area, stream)
Reference< XModel > xModel
#define XMLERROR_XFORMS_ONLY_ONE_INSTANCE_ELEMENT
Definition: xmlerror.hxx:61
#define XMLOFF_WARN_UNKNOWN(area, rIter)
Definition: xmlictxt.hxx:114
constexpr sal_Int32 TOKEN_MASK
Definition: xmlimp.hxx:94