LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / basic / source / classes / errobject.cxx
blob85423101b8278d472b6512a3f81827e0a4397a54
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 <mutex>
24 #include <errobject.hxx>
25 #include <sbxbase.hxx>
27 #include <cppuhelper/implbase.hxx>
28 #include <com/sun/star/script/XDefaultProperty.hpp>
29 #include <sbintern.hxx>
30 #include <runtime.hxx>
32 using namespace ::com::sun::star;
33 using namespace ::ooo;
35 class ErrObject : public ::cppu::WeakImplHelper< vba::XErrObject,
36 script::XDefaultProperty >
38 OUString m_sHelpFile;
39 OUString m_sSource;
40 OUString m_sDescription;
41 sal_Int32 m_nNumber;
42 sal_Int32 m_nHelpContext;
44 public:
45 ErrObject();
47 // Attributes
48 virtual ::sal_Int32 SAL_CALL getNumber() override;
49 virtual void SAL_CALL setNumber( ::sal_Int32 _number ) override;
50 virtual ::sal_Int32 SAL_CALL getHelpContext() override;
51 virtual void SAL_CALL setHelpContext( ::sal_Int32 _helpcontext ) override;
52 virtual OUString SAL_CALL getHelpFile() override;
53 virtual void SAL_CALL setHelpFile( const OUString& _helpfile ) override;
54 virtual OUString SAL_CALL getDescription() override;
55 virtual void SAL_CALL setDescription( const OUString& _description ) override;
56 virtual OUString SAL_CALL getSource() override;
57 virtual void SAL_CALL setSource( const OUString& _source ) override;
59 // Methods
60 virtual void SAL_CALL Clear( ) override;
61 virtual void SAL_CALL Raise( const uno::Any& Number, const uno::Any& Source, const uno::Any& Description, const uno::Any& HelpFile, const uno::Any& HelpContext ) override;
62 // XDefaultProperty
63 virtual OUString SAL_CALL getDefaultPropertyName( ) override;
65 // Helper method
66 /// @throws css::uno::RuntimeException
67 void setData( const uno::Any& Number, const uno::Any& Source, const uno::Any& Description,
68 const uno::Any& HelpFile, const uno::Any& HelpContext );
71 ErrObject::ErrObject() : m_nNumber(0), m_nHelpContext(0)
75 sal_Int32 SAL_CALL
76 ErrObject::getNumber()
78 return m_nNumber;
81 void SAL_CALL
82 ErrObject::setNumber( ::sal_Int32 _number )
84 GetSbData()->pInst->setErrorVB( _number );
85 OUString _description = GetSbData()->pInst->GetErrorMsg();
86 setData( uno::Any( _number ), uno::Any(), uno::Any( _description ), uno::Any(), uno::Any() );
89 ::sal_Int32 SAL_CALL
90 ErrObject::getHelpContext()
92 return m_nHelpContext;
94 void SAL_CALL
95 ErrObject::setHelpContext( ::sal_Int32 _helpcontext )
97 m_nHelpContext = _helpcontext;
100 OUString SAL_CALL
101 ErrObject::getHelpFile()
103 return m_sHelpFile;
106 void SAL_CALL
107 ErrObject::setHelpFile( const OUString& _helpfile )
109 m_sHelpFile = _helpfile;
112 OUString SAL_CALL
113 ErrObject::getDescription()
115 return m_sDescription;
118 void SAL_CALL
119 ErrObject::setDescription( const OUString& _description )
121 m_sDescription = _description;
124 OUString SAL_CALL
125 ErrObject::getSource()
127 return m_sSource;
130 void SAL_CALL
131 ErrObject::setSource( const OUString& _source )
133 m_sSource = _source;
136 // Methods
137 void SAL_CALL
138 ErrObject::Clear( )
140 m_sHelpFile.clear();
141 m_sSource = m_sHelpFile;
142 m_sDescription = m_sSource;
143 m_nNumber = 0;
144 m_nHelpContext = 0;
147 void SAL_CALL
148 ErrObject::Raise( const uno::Any& Number, const uno::Any& Source, const uno::Any& Description, const uno::Any& HelpFile, const uno::Any& HelpContext )
150 setData( Number, Source, Description, HelpFile, HelpContext );
151 if ( m_nNumber )
152 GetSbData()->pInst->ErrorVB( m_nNumber, m_sDescription );
155 // XDefaultProperty
156 OUString SAL_CALL
157 ErrObject::getDefaultPropertyName( )
159 return "Number";
162 void ErrObject::setData( const uno::Any& Number, const uno::Any& Source, const uno::Any& Description, const uno::Any& HelpFile, const uno::Any& HelpContext )
164 if ( !Number.hasValue() )
165 throw uno::RuntimeException("Missing Required Parameter" );
166 Number >>= m_nNumber;
167 Description >>= m_sDescription;
168 Source >>= m_sSource;
169 HelpFile >>= m_sHelpFile;
170 HelpContext >>= m_nHelpContext;
173 // SbxErrObject
174 SbxErrObject::SbxErrObject( const OUString& rName, const uno::Any& rUnoObj )
175 : SbUnoObject( rName, rUnoObj )
176 , m_pErrObject( nullptr )
178 rUnoObj >>= m_xErr;
179 if ( m_xErr.is() )
181 SetDfltProperty( uno::Reference< script::XDefaultProperty >( m_xErr, uno::UNO_QUERY_THROW )->getDefaultPropertyName() ) ;
182 m_pErrObject = static_cast< ErrObject* >( m_xErr.get() );
186 SbxErrObject::~SbxErrObject()
190 uno::Reference< vba::XErrObject > const &
191 SbxErrObject::getUnoErrObject()
193 SbxErrObject* pGlobErr = static_cast< SbxErrObject* >( getErrObject().get() );
194 return pGlobErr->m_xErr;
197 SbxVariableRef const &
198 SbxErrObject::getErrObject()
200 SbxVariableRef& rGlobErr = GetSbxData_Impl().m_aGlobErr;
202 static std::mutex aMutex;
203 std::scoped_lock aGuard(aMutex);
204 if (!rGlobErr)
205 rGlobErr = new SbxErrObject("Err",
206 uno::Any(uno::Reference<vba::XErrObject>(new ErrObject())));
208 return rGlobErr;
211 void SbxErrObject::setNumberAndDescription( ::sal_Int32 _number, const OUString& _description )
213 if( m_pErrObject != nullptr )
215 m_pErrObject->setData( uno::Any( _number ), uno::Any(), uno::Any( _description ), uno::Any(), uno::Any() );
219 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */