Avoid potential negative array index access to cached text.
[LibreOffice.git] / xmloff / source / core / XMLEmbeddedObjectImportContext.cxx
blob980dd8e0572d0b79c7f69229a72469e6b11cebcd
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <sal/config.h>
22 #include <string_view>
23 #include <tuple>
25 #include <sal/log.hxx>
26 #include <com/sun/star/document/XImporter.hpp>
27 #include <com/sun/star/uno/XComponentContext.hpp>
28 #include <com/sun/star/util/XModifiable2.hpp>
29 #include <tools/globname.hxx>
30 #include <comphelper/classids.hxx>
31 #include <xmloff/namespacemap.hxx>
32 #include <xmloff/xmlimp.hxx>
33 #include <xmloff/xmlnamespace.hxx>
34 #include <xmloff/xmltoken.hxx>
35 #include <xmloff/XMLFilterServiceNames.h>
36 #include <XMLEmbeddedObjectImportContext.hxx>
38 using namespace ::com::sun::star::uno;
39 using namespace ::com::sun::star::util;
40 using namespace ::com::sun::star::beans;
41 using namespace ::com::sun::star::lang;
42 using namespace ::com::sun::star::document;
43 using namespace ::com::sun::star::xml::sax;
44 using namespace ::xmloff::token;
46 namespace {
48 class XMLEmbeddedObjectImportContext_Impl : public SvXMLImportContext
50 css::uno::Reference< css::xml::sax::XFastDocumentHandler > mxFastHandler;
52 public:
54 XMLEmbeddedObjectImportContext_Impl( SvXMLImport& rImport,
55 const css::uno::Reference< css::xml::sax::XFastDocumentHandler >& rHandler );
57 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL createFastChildContext(
58 sal_Int32 nElement,
59 const css::uno::Reference< css::xml::sax::XFastAttributeList >& AttrList ) override;
61 virtual void SAL_CALL startFastElement(
62 sal_Int32 nElement,
63 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList ) override;
65 virtual void SAL_CALL endFastElement(sal_Int32 nElement) override;
67 virtual void SAL_CALL characters( const OUString& rChars ) override;
72 XMLEmbeddedObjectImportContext_Impl::XMLEmbeddedObjectImportContext_Impl(
73 SvXMLImport& rImport,
74 const Reference< XFastDocumentHandler >& rHandler ) :
75 SvXMLImportContext( rImport ),
76 mxFastHandler( rHandler )
78 assert(mxFastHandler);
81 css::uno::Reference< css::xml::sax::XFastContextHandler > XMLEmbeddedObjectImportContext_Impl::createFastChildContext(
82 sal_Int32 ,
83 const css::uno::Reference< css::xml::sax::XFastAttributeList >& )
85 return new XMLEmbeddedObjectImportContext_Impl(GetImport(), mxFastHandler);
88 void XMLEmbeddedObjectImportContext_Impl::startFastElement(
89 sal_Int32 nElement,
90 const Reference< XFastAttributeList >& xAttrList )
92 mxFastHandler->startFastElement( nElement, xAttrList );
95 void XMLEmbeddedObjectImportContext_Impl::endFastElement(sal_Int32 nElement)
97 mxFastHandler->endFastElement( nElement );
100 void XMLEmbeddedObjectImportContext_Impl::characters( const OUString& rChars )
102 mxFastHandler->characters( rChars );
106 void XMLEmbeddedObjectImportContext::SetComponent( Reference< XComponent > const & rComp )
108 if( !rComp.is() || sFilterService.isEmpty() )
109 return;
111 Sequence<Any> aArgs( 0 );
113 Reference< XComponentContext > xContext( GetImport().GetComponentContext() );
115 Reference<XInterface> xFilter =
116 xContext->getServiceManager()->createInstanceWithArgumentsAndContext(sFilterService, aArgs, xContext);
117 SAL_WARN_IF(!xFilter, "xmloff", "could not create filter " << sFilterService);
118 if( !xFilter.is() )
119 return;
121 assert(dynamic_cast<SvXMLImport*>(xFilter.get()));
122 SvXMLImport *pFastHandler = dynamic_cast<SvXMLImport*>(xFilter.get());
123 mxFastHandler = pFastHandler;
127 Reference < XModifiable2 > xModifiable2( rComp, UNO_QUERY_THROW );
128 xModifiable2->disableSetModified();
130 catch( Exception& )
134 Reference < XImporter > xImporter( mxFastHandler, UNO_QUERY );
135 xImporter->setTargetDocument( rComp );
137 xComp = rComp; // keep ref to component only if there is a handler
139 // #i34042: copy namespace declarations
140 // We created a new instance of XMLImport, so we need to propagate the namespace
141 // declarations to it.
142 pFastHandler->GetNamespaceMap() = GetImport().GetNamespaceMap();
145 XMLEmbeddedObjectImportContext::XMLEmbeddedObjectImportContext(
146 SvXMLImport& rImport, sal_Int32 nElement,
147 const Reference< XFastAttributeList >& xAttrList ) :
148 SvXMLImportContext( rImport )
150 SvGlobalName aName;
152 if( nElement == XML_ELEMENT(MATH, XML_MATH) )
154 sFilterService = XML_IMPORT_FILTER_MATH;
155 aName = SvGlobalName(SO3_SM_CLASSID);
157 else if( nElement == XML_ELEMENT(OFFICE, XML_DOCUMENT) )
159 OUString sMime;
161 for( auto& aIter : sax_fastparser::castToFastAttributeList(xAttrList) )
163 switch (aIter.getToken())
165 case XML_ELEMENT(OFFICE, XML_MIMETYPE):
166 sMime = aIter.toString();
167 break;
168 default:
169 XMLOFF_WARN_UNKNOWN("xmloff", aIter);
173 std::u16string_view sClass;
174 static std::u16string_view const prefixes[] = {
175 u"application/vnd.oasis.openoffice.",
176 u"application/x-vnd.oasis.openoffice.",
177 u"application/vnd.oasis.opendocument.",
178 u"application/x-vnd.oasis.opendocument."};
179 for (auto const & p: prefixes)
181 if (o3tl::starts_with(sMime, p, &sClass))
183 break;
187 if( !sClass.empty() )
189 static const std::tuple<XMLTokenEnum, OUString, SvGUID> aServiceMap[] = {
190 { XML_TEXT, XML_IMPORT_FILTER_WRITER, { SO3_SW_CLASSID } },
191 { XML_ONLINE_TEXT, XML_IMPORT_FILTER_WRITER, { SO3_SWWEB_CLASSID } },
192 { XML_SPREADSHEET, XML_IMPORT_FILTER_CALC, { SO3_SC_CLASSID } },
193 { XML_DRAWING, XML_IMPORT_FILTER_DRAW, { SO3_SDRAW_CLASSID } },
194 { XML_GRAPHICS, XML_IMPORT_FILTER_DRAW, { SO3_SDRAW_CLASSID } },
195 { XML_PRESENTATION, XML_IMPORT_FILTER_IMPRESS, { SO3_SIMPRESS_CLASSID } },
196 { XML_CHART, XML_IMPORT_FILTER_CHART, { SO3_SCH_CLASSID } },
198 for (auto const& [eClass, sMatchingFilterService, rCLASSID] : aServiceMap)
200 if (IsXMLToken(sClass, eClass))
202 sFilterService = sMatchingFilterService;
203 aName = SvGlobalName(rCLASSID);
204 break;
210 sCLSID = aName.GetHexName();
213 XMLEmbeddedObjectImportContext::~XMLEmbeddedObjectImportContext()
217 css::uno::Reference< css::xml::sax::XFastContextHandler > XMLEmbeddedObjectImportContext::createFastChildContext(
218 sal_Int32 ,
219 const css::uno::Reference< css::xml::sax::XFastAttributeList >& )
221 if( mxFastHandler.is() )
222 return new XMLEmbeddedObjectImportContext_Impl( GetImport(), mxFastHandler );
223 return nullptr;
226 void XMLEmbeddedObjectImportContext::startFastElement(
227 sal_Int32 nElement,
228 const Reference< XFastAttributeList >& rAttrList )
230 if( !mxFastHandler.is() )
231 return;
233 mxFastHandler->startDocument();
234 mxFastHandler->startFastElement( nElement, rAttrList );
237 void XMLEmbeddedObjectImportContext::endFastElement(sal_Int32 nElement)
239 if( !mxFastHandler.is() )
240 return;
242 mxFastHandler->endFastElement( nElement );
243 mxFastHandler->endDocument();
247 Reference < XModifiable2 > xModifiable2( xComp, UNO_QUERY_THROW );
248 xModifiable2->enableSetModified();
249 xModifiable2->setModified( true ); // trigger new replacement image generation
251 catch( Exception& )
256 void XMLEmbeddedObjectImportContext::characters( const OUString& rChars )
258 if( mxFastHandler.is() )
259 mxFastHandler->characters( rChars );
262 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */