1 | /* Copyright (C) 2011 Jan Källman
|
---|
2 | *
|
---|
3 | * This library is free software; you can redistribute it and/or
|
---|
4 | * modify it under the terms of the GNU Lesser General Public
|
---|
5 | * License as published by the Free Software Foundation; either
|
---|
6 | * version 2.1 of the License, or (at your option) any later version.
|
---|
7 |
|
---|
8 | * This library is distributed in the hope that it will be useful,
|
---|
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
11 | * See the GNU Lesser General Public License for more details.
|
---|
12 | *
|
---|
13 | * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
|
---|
14 | * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
|
---|
15 | *
|
---|
16 | * All code and executables are provided "as is" with no warranty either express or implied.
|
---|
17 | * The author accepts no liability for any damage or loss of business that this product may cause.
|
---|
18 | *
|
---|
19 | * Code change notes:
|
---|
20 | *
|
---|
21 | * Author Change Date
|
---|
22 | *******************************************************************************
|
---|
23 | * Mats Alm Added 2013-12-03
|
---|
24 | *******************************************************************************/
|
---|
25 | using System;
|
---|
26 | using System.Collections.Generic;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using OfficeOpenXml.FormulaParsing.Exceptions;
|
---|
30 |
|
---|
31 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions
|
---|
32 | {
|
---|
33 | /// <summary>
|
---|
34 | /// Base class for functions that needs to handle cells that is not visible.
|
---|
35 | /// </summary>
|
---|
36 | public abstract class HiddenValuesHandlingFunction : ExcelFunction
|
---|
37 | {
|
---|
38 | /// <summary>
|
---|
39 | /// Set to true or false to indicate whether the function should ignore hidden values.
|
---|
40 | /// </summary>
|
---|
41 | public bool IgnoreHiddenValues
|
---|
42 | {
|
---|
43 | get;
|
---|
44 | set;
|
---|
45 | }
|
---|
46 |
|
---|
47 | protected override IEnumerable<double> ArgsToDoubleEnumerable(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
48 | {
|
---|
49 | return ArgsToDoubleEnumerable(arguments, context, true);
|
---|
50 | }
|
---|
51 |
|
---|
52 | protected IEnumerable<double> ArgsToDoubleEnumerable(IEnumerable<FunctionArgument> arguments, ParsingContext context, bool ignoreErrors)
|
---|
53 | {
|
---|
54 | if (!arguments.Any())
|
---|
55 | {
|
---|
56 | return Enumerable.Empty<double>();
|
---|
57 | }
|
---|
58 | if (IgnoreHiddenValues)
|
---|
59 | {
|
---|
60 | var nonHidden = arguments.Where(x => !x.ExcelStateFlagIsSet(ExcelCellState.HiddenCell));
|
---|
61 | return base.ArgsToDoubleEnumerable(IgnoreHiddenValues, nonHidden, context);
|
---|
62 | }
|
---|
63 | return base.ArgsToDoubleEnumerable(IgnoreHiddenValues, ignoreErrors, arguments, context);
|
---|
64 | }
|
---|
65 |
|
---|
66 | protected bool ShouldIgnore(ExcelDataProvider.ICellInfo c, ParsingContext context)
|
---|
67 | {
|
---|
68 | return CellStateHelper.ShouldIgnore(IgnoreHiddenValues, c, context);
|
---|
69 | }
|
---|
70 | protected bool ShouldIgnore(FunctionArgument arg)
|
---|
71 | {
|
---|
72 | if (IgnoreHiddenValues && arg.ExcelStateFlagIsSet(ExcelCellState.HiddenCell))
|
---|
73 | {
|
---|
74 | return true;
|
---|
75 | }
|
---|
76 | return false;
|
---|
77 | }
|
---|
78 |
|
---|
79 | }
|
---|
80 | }
|
---|