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.ExpressionGraph;
|
---|
30 |
|
---|
31 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions.Math
|
---|
32 | {
|
---|
33 | public class CountA : HiddenValuesHandlingFunction
|
---|
34 | {
|
---|
35 | public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
36 | {
|
---|
37 | ValidateArguments(arguments, 1);
|
---|
38 | var nItems = 0d;
|
---|
39 | Calculate(arguments, context, ref nItems);
|
---|
40 | return CreateResult(nItems, DataType.Integer);
|
---|
41 | }
|
---|
42 |
|
---|
43 | private void Calculate(IEnumerable<FunctionArgument> items, ParsingContext context, ref double nItems)
|
---|
44 | {
|
---|
45 | foreach (var item in items)
|
---|
46 | {
|
---|
47 | var cs = item.Value as ExcelDataProvider.IRangeInfo;
|
---|
48 | if (cs != null)
|
---|
49 | {
|
---|
50 | foreach (var c in cs)
|
---|
51 | {
|
---|
52 | _CheckForAndHandleExcelError(c, context);
|
---|
53 | if (!ShouldIgnore(c, context) && ShouldCount(c.Value))
|
---|
54 | {
|
---|
55 | nItems++;
|
---|
56 | }
|
---|
57 | }
|
---|
58 | }
|
---|
59 | else if (item.Value is IEnumerable<FunctionArgument>)
|
---|
60 | {
|
---|
61 | Calculate((IEnumerable<FunctionArgument>)item.Value, context, ref nItems);
|
---|
62 | }
|
---|
63 | else
|
---|
64 | {
|
---|
65 | _CheckForAndHandleExcelError(item, context);
|
---|
66 | if (!ShouldIgnore(item) && ShouldCount(item.Value))
|
---|
67 | {
|
---|
68 | nItems++;
|
---|
69 | }
|
---|
70 | }
|
---|
71 |
|
---|
72 | }
|
---|
73 | }
|
---|
74 |
|
---|
75 | private void _CheckForAndHandleExcelError(FunctionArgument arg, ParsingContext context)
|
---|
76 | {
|
---|
77 | if (context.Scopes.Current.IsSubtotal)
|
---|
78 | {
|
---|
79 | CheckForAndHandleExcelError(arg);
|
---|
80 | }
|
---|
81 | }
|
---|
82 |
|
---|
83 | private void _CheckForAndHandleExcelError(ExcelDataProvider.ICellInfo cell, ParsingContext context)
|
---|
84 | {
|
---|
85 | if (context.Scopes.Current.IsSubtotal)
|
---|
86 | {
|
---|
87 | CheckForAndHandleExcelError(cell);
|
---|
88 | }
|
---|
89 | }
|
---|
90 |
|
---|
91 | private bool ShouldCount(object value)
|
---|
92 | {
|
---|
93 | if (value == null) return false;
|
---|
94 | return (!string.IsNullOrEmpty(value.ToString()));
|
---|
95 | }
|
---|
96 | }
|
---|
97 | }
|
---|