Avoid potential negative array index access to cached text.
[LibreOffice.git] / sc / inc / funcuno.hxx
blob912201ac4bb71468019c0af9796311af40193eb5
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 #pragma once
22 #include <memory>
23 #include <com/sun/star/lang/XServiceInfo.hpp>
24 #include <com/sun/star/sheet/XFunctionAccess.hpp>
25 #include <com/sun/star/beans/XPropertySet.hpp>
26 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
27 #include <cppuhelper/implbase.hxx>
28 #include <svl/lstner.hxx>
29 #include "document.hxx"
30 #include <svl/itemprop.hxx>
32 class ScDocOptions;
34 css::uno::Reference< css::uno::XInterface > SAL_CALL
35 ScFunctionAccess_CreateInstance(
36 const css::uno::Reference< css::lang::XMultiServiceFactory >& );
38 class ScTempDocCache
40 private:
41 ScDocumentUniquePtr xDoc;
42 bool bInUse;
44 public:
45 ScTempDocCache();
47 ScDocument* GetDocument() const { return xDoc.get(); }
48 bool IsInUse() const { return bInUse; }
49 void SetInUse( bool bSet ) { bInUse = bSet; }
51 void SetDocument( ScDocument* pNew );
52 void Clear();
55 class ScFunctionAccess final : public cppu::WeakImplHelper<
56 css::sheet::XFunctionAccess,
57 css::beans::XPropertySet,
58 css::lang::XServiceInfo>,
59 public SfxListener
61 private:
62 ScTempDocCache aDocCache;
63 std::unique_ptr<ScDocOptions> pOptions;
64 SfxItemPropertyMap aPropertyMap;
65 bool mbArray;
66 bool mbValid;
67 bool mbSpellOnline;
69 public:
70 ScFunctionAccess();
71 virtual ~ScFunctionAccess() override;
73 virtual void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override;
75 // XFunctionAccess
76 virtual css::uno::Any SAL_CALL callFunction(
77 const OUString& aName,
78 const css::uno::Sequence< css::uno::Any >& aArguments ) override;
80 // XPropertySet
81 virtual css::uno::Reference< css::beans::XPropertySetInfo >
82 SAL_CALL getPropertySetInfo() override;
83 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName,
84 const css::uno::Any& aValue ) override;
85 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
86 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName,
87 const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
88 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName,
89 const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
90 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName,
91 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
92 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName,
93 const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
95 // XServiceInfo
96 virtual OUString SAL_CALL getImplementationName() override;
97 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
98 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */