LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / xmloff / source / text / XMLAutoTextEventImport.cxx
blobb1873e4c47a5d5e7754c063c151906dca3cc45bd
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 "XMLAutoTextEventImport.hxx"
21 #include <com/sun/star/uno/Reference.hxx>
22 #include <com/sun/star/document/XEventsSupplier.hpp>
23 #include <com/sun/star/uno/XInterface.hpp>
24 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
25 #include "XMLAutoTextContainerEventImport.hxx"
26 #include <xmloff/xmlnamespace.hxx>
27 #include <xmloff/xmltoken.hxx>
28 #include <tools/debug.hxx>
29 #include <comphelper/processfactory.hxx>
31 using namespace ::com::sun::star;
33 using ::com::sun::star::uno::Any;
34 using ::com::sun::star::uno::Reference;
35 using ::com::sun::star::uno::Sequence;
36 using ::com::sun::star::uno::Type;
37 using ::com::sun::star::uno::XInterface;
38 using ::com::sun::star::document::XEventsSupplier;
39 using ::com::sun::star::container::XNameReplace;
40 using ::com::sun::star::lang::XMultiServiceFactory;
41 using ::xmloff::token::XML_AUTO_TEXT_EVENTS;
43 XMLAutoTextEventImport::XMLAutoTextEventImport(
44 const css::uno::Reference<css::uno::XComponentContext>& xContext)
45 : SvXMLImport(xContext, "")
49 XMLAutoTextEventImport::~XMLAutoTextEventImport() noexcept {}
51 void XMLAutoTextEventImport::initialize(const Sequence<Any>& rArguments)
53 // The events may come as either an XNameReplace or XEventsSupplier.
55 for (const auto& rArgument : rArguments)
57 const Type& rType = rArgument.getValueType();
58 if (rType == cppu::UnoType<XEventsSupplier>::get())
60 Reference<XEventsSupplier> xSupplier;
61 rArgument >>= xSupplier;
62 DBG_ASSERT(xSupplier.is(), "need XEventsSupplier or XNameReplace");
64 xEvents = xSupplier->getEvents();
66 else if (rType == cppu::UnoType<XNameReplace>::get())
68 rArgument >>= xEvents;
69 DBG_ASSERT(xEvents.is(), "need XEventsSupplier or XNameReplace");
73 // call parent
74 SvXMLImport::initialize(rArguments);
77 SvXMLImportContext* XMLAutoTextEventImport::CreateFastContext(
78 sal_Int32 nElement, const Reference<css::xml::sax::XFastAttributeList>& /*xAttrList*/)
80 if (xEvents.is() && nElement == XML_ELEMENT(OOO, XML_AUTO_TEXT_EVENTS))
82 return new XMLAutoTextContainerEventImport(*this, xEvents);
84 return nullptr;
87 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
88 com_sun_star_comp_Writer_XMLOasisAutotextEventsImporter_get_implementation(
89 css::uno::XComponentContext* context, css::uno::Sequence<css::uno::Any> const&)
91 return cppu::acquire(new XMLAutoTextEventImport(context));
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */