1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 /* Function descriptions for function wizard / autopilot */
24 #include "scfuncs.hxx"
26 #include <formula/IFunctionDescription.hxx>
27 #include <sal/types.h>
28 #include <rtl/ustring.hxx>
33 #define MAX_FUNCCAT 12 /* maximum number of categories for functions */
34 #define LRU_MAX 10 /* maximal number of last recently used functions */
37 Stores and generates human readable descriptions for spreadsheet-functions,
38 e.g.\ functions used in formulas in calc
40 class ScFuncDesc final
: public formula::IFunctionDescription
44 virtual ~ScFuncDesc();
49 Deletes all objects referenced by the pointers in the class,
50 sets pointers to NULL, and all numerical variables to 0
55 Fills a mapping with indexes for non-suppressed arguments
57 Fills mapping from visible arguments to real arguments, e.g. if of 4
58 parameters the second one is suppressed {0,2,3}. For VAR_ARGS
59 parameters only one element is added to the end of the sequence.
62 Vector, which the indices are written to
64 virtual void fillVisibleArgumentMapping(::std::vector
<sal_uInt16
>& _rArguments
) const override
;
67 Returns the category of the function
69 @return the category of the function
71 virtual const formula::IFunctionCategory
* getCategory() const override
;
74 Returns the description of the function
76 @return the description of the function, or an empty OUString if there is no description
78 virtual OUString
getDescription() const override
;
81 Returns the function signature with parameters from the passed string array.
83 @return function signature with parameters
85 virtual OUString
getFormula(const ::std::vector
< OUString
>& _aArguments
) const override
;
88 Returns the name of the function
90 @return the name of the function, or an empty OUString if there is no name
92 virtual OUString
getFunctionName() const override
;
95 Returns the help id of the function
97 @return help id of the function
99 virtual OString
getHelpId() const override
;
101 /** Returns whether function is hidden and not offered in the Function
102 Wizard unless used in an expression.
104 @return flag whether function is hidden
106 virtual bool isHidden() const override
;
109 Returns number of arguments
111 @return number of arguments
113 virtual sal_uInt32
getParameterCount() const override
;
116 Returns start of variable arguments
118 @return start of variable arguments
120 virtual sal_uInt32
getVarArgsStart() const override
;
123 Returns maximum number of (variable) arguments
125 @return maximum number of arguments, or 0 if there is no specific limit other than the general limit
127 virtual sal_uInt32
getVarArgsLimit() const override
;
130 Returns description of parameter at given position
133 Position of the parameter
135 @return OUString description of the parameter
137 virtual OUString
getParameterDescription(sal_uInt32 _nPos
) const override
;
140 Returns name of parameter at given position
143 Position of the parameter
145 @return OUString name of the parameter
147 virtual OUString
getParameterName(sal_uInt32 _nPos
) const override
;
150 Returns list of all parameter names
152 @return OUString containing separated list of all parameter names
154 OUString
GetParamList() const;
157 Returns the full function signature
159 @return OUString of the form "FUNCTIONNAME( parameter list )"
161 virtual OUString
getSignature() const override
;
164 Returns the number of non-suppressed arguments
166 In case there are variable arguments the number of fixed non-suppressed
167 arguments plus VAR_ARGS, same as for nArgCount (variable arguments can't
168 be suppressed). The two functions are equal apart from return type and
171 @return number of non-suppressed arguments
173 sal_uInt16
GetSuppressedArgCount() const;
174 virtual sal_Int32
getSuppressedArgumentCount() const override
;
177 Requests function data from AddInCollection
179 Logs error message on failure for debugging purposes
181 virtual void initArgumentInfo() const override
;
184 Returns true if parameter at given position is optional
187 Position of the parameter
189 @return true if optional, false if not optional
191 virtual bool isParameterOptional(sal_uInt32 _nPos
) const override
;
194 Compares functions by name, respecting special characters
197 pointer to first function descriptor
200 pointer to second function descriptor
204 static bool compareByName(const ScFuncDesc
* a
, const ScFuncDesc
* b
);
207 Stores whether a parameter is optional or suppressed
209 struct ParameterFlags
211 bool bOptional
:1; /**< Parameter is optional */
213 ParameterFlags() : bOptional(false) {}
216 std::optional
<OUString
> mxFuncName
; /**< Function name */
217 std::optional
<OUString
> mxFuncDesc
; /**< Description of function */
218 std::vector
<OUString
> maDefArgNames
; /**< Parameter name(s) */
219 std::vector
<OUString
> maDefArgDescs
; /**< Description(s) of parameter(s) */
220 ParameterFlags
*pDefArgFlags
; /**< Flags for each parameter */
221 sal_uInt16 nFIndex
; /**< Unique function index */
222 sal_uInt16 nCategory
; /**< Function category */
223 sal_uInt16 nArgCount
; /**< All parameter count, suppressed and unsuppressed */
224 sal_uInt16 nVarArgsStart
; /**< Start of variable arguments, for numbering */
225 sal_uInt16 nVarArgsLimit
; /**< Limit maximum of (variable) arguments, for numbering */
226 OString sHelpId
; /**< HelpId of function */
227 bool bIncomplete
:1; /**< Incomplete argument info (set for add-in info from configuration) */
228 bool mbHidden
:1; /**< Whether function is hidden */
232 List of spreadsheet functions.
233 Generated by retrieving functions from resources, AddIns and StarOne AddIns,
234 and storing these in one linked list. Functions can be retrieved by index and
235 by iterating through the list, starting at the First element, and retrieving
236 the Next elements one by one.
238 The length of the longest function name can be retrieved for easier
239 processing (i.e printing a function list).
247 sal_uInt32
GetCount() const
248 { return aFunctionList
.size(); }
250 const ScFuncDesc
* First();
252 const ScFuncDesc
* Next();
254 const ScFuncDesc
* GetFunction( sal_uInt32 nIndex
) const;
257 ::std::vector
<const ScFuncDesc
*> aFunctionList
; /**< List of functions */
258 ::std::vector
<const ScFuncDesc
*>::iterator aFunctionListIter
; /**< position in function list */
262 Category of spreadsheet functions.
264 Contains the name, index and function manager of a category,
265 as well as a list of functions in the category
267 class ScFunctionCategory final
: public formula::IFunctionCategory
270 ScFunctionCategory(const ::std::vector
<const ScFuncDesc
*>& _rCategory
,sal_uInt32 _nCategory
)
271 : m_rCategory(_rCategory
),m_nCategory(_nCategory
){}
272 virtual ~ScFunctionCategory(){}
275 @return count of functions in this category
277 virtual sal_uInt32
getCount() const override
;
280 Gives the _nPos'th function in this category.
283 position of function in this category.
285 @return function at the _nPos position in this category, null if _nPos out of bounds.
287 virtual const formula::IFunctionDescription
* getFunction(sal_uInt32 _nPos
) const override
;
290 @return index number of this category.
292 virtual sal_uInt32
getNumber() const override
;
293 virtual OUString
getName() const override
;
296 const ::std::vector
<const ScFuncDesc
*>& m_rCategory
; /**< list of functions in this category */
297 mutable OUString m_sName
; /**< name of this category */
298 sal_uInt32 m_nCategory
; /**< index number of this category */
301 #define SC_FUNCGROUP_COUNT ID_FUNCTION_GRP_ADDINS
303 Stores spreadsheet functions in categories, including a cumulative ('All') category and makes them accessible.
305 class ScFunctionMgr final
: public formula::IFunctionManager
309 Retrieves all calc functions, generates cumulative ('All') category, and the categories.
311 The function lists of the categories are sorted by (case insensitive) function name
314 virtual ~ScFunctionMgr();
317 Returns name of category.
319 @param _nCategoryNumber
322 @return name of the category specified by _nCategoryNumber, empty string if _nCategoryNumber out of bounds
324 static OUString
GetCategoryName(sal_uInt32 _nCategoryNumber
);
327 Returns function by index.
329 Searches for a function with the function index nFIndex.
332 index of the function
334 @return pointer to function with the index nFIndex, null if no such function was found.
336 const ScFuncDesc
* Get( sal_uInt16 nFIndex
) const;
339 Returns the first function in category nCategory.
341 Selects nCategory as current category and returns first element of this.
344 index of requested category
346 @return pointer to first element in current category, null if nCategory out of bounds
348 const ScFuncDesc
* First( sal_uInt16 nCategory
= 0 ) const;
351 Returns the next function of the current category.
353 @return pointer to the next function in current category, null if current category not set.
355 const ScFuncDesc
* Next() const;
358 @return number of categories, not counting the cumulative category ('All')
360 virtual sal_uInt32
getCount() const override
;
365 Returns an IFunctionCategory object for a category specified by nPos.
368 the index of the category, note that 0 maps to the first category not the cumulative ('All') category.
370 @return pointer to an IFunctionCategory object, null if nPos out of bounds.
372 virtual const formula::IFunctionCategory
* getCategory(sal_uInt32 nPos
) const override
;
375 Appends the last recently used functions.
377 Takes the last recently used functions, but maximal LRU_MAX, and appends them to the given vector _rLastRUFunctions.
379 @param _rLastRUFunctions
380 a vector of pointer to IFunctionDescription, by reference.
382 virtual void fillLastRecentlyUsedFunctions(::std::vector
< const formula::IFunctionDescription
*>& _rLastRUFunctions
) const override
;
385 Maps Etoken to character
387 Used for retrieving characters for parentheses and separators.
390 token for which, the corresponding character is retrieved
394 virtual sal_Unicode
getSingleToken(const formula::IFunctionManager::EToken _eToken
) const override
;
397 std::vector
<const ScFuncDesc
*> aCatLists
[MAX_FUNCCAT
]; /**< array of all categories, 0 is the cumulative ('All') category */
398 mutable std::map
< sal_uInt32
, std::shared_ptr
<ScFunctionCategory
> > m_aCategories
; /**< map of category pos to IFunctionCategory */
399 mutable std::vector
<const ScFuncDesc
*>::const_iterator pCurCatListIter
; /**< position in current category */
400 mutable std::vector
<const ScFuncDesc
*>::const_iterator pCurCatListEnd
; /**< end of current category */
403 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */