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.Globalization;
|
---|
28 | using System.Linq;
|
---|
29 | using System.Text;
|
---|
30 | using OfficeOpenXml.FormulaParsing.ExpressionGraph;
|
---|
31 |
|
---|
32 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions.Math
|
---|
33 | {
|
---|
34 | public class Count : HiddenValuesHandlingFunction
|
---|
35 | {
|
---|
36 | private enum ItemContext
|
---|
37 | {
|
---|
38 | InRange,
|
---|
39 | InArray,
|
---|
40 | SingleArg
|
---|
41 | }
|
---|
42 |
|
---|
43 | public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
44 | {
|
---|
45 | ValidateArguments(arguments, 1);
|
---|
46 | var nItems = 0d;
|
---|
47 | Calculate(arguments, ref nItems, context, ItemContext.SingleArg);
|
---|
48 | return CreateResult(nItems, DataType.Integer);
|
---|
49 | }
|
---|
50 |
|
---|
51 | private void Calculate(IEnumerable<FunctionArgument> items, ref double nItems, ParsingContext context, ItemContext itemContext)
|
---|
52 | {
|
---|
53 | foreach (var item in items)
|
---|
54 | {
|
---|
55 | var cs = item.Value as ExcelDataProvider.IRangeInfo;
|
---|
56 | if (cs != null)
|
---|
57 | {
|
---|
58 | foreach (var c in cs)
|
---|
59 | {
|
---|
60 | _CheckForAndHandleExcelError(c, context);
|
---|
61 | if (ShouldIgnore(c, context) == false && ShouldCount(c.Value, ItemContext.InRange))
|
---|
62 | {
|
---|
63 | nItems++;
|
---|
64 | }
|
---|
65 | }
|
---|
66 | }
|
---|
67 | else
|
---|
68 | {
|
---|
69 | var value = item.Value as IEnumerable<FunctionArgument>;
|
---|
70 | if (value != null)
|
---|
71 | {
|
---|
72 | Calculate(value, ref nItems, context, ItemContext.InArray);
|
---|
73 | }
|
---|
74 | else
|
---|
75 | {
|
---|
76 | _CheckForAndHandleExcelError(item, context);
|
---|
77 | if (ShouldIgnore(item) == false && ShouldCount(item.Value, itemContext))
|
---|
78 | {
|
---|
79 | nItems++;
|
---|
80 | }
|
---|
81 | }
|
---|
82 | }
|
---|
83 | }
|
---|
84 | }
|
---|
85 |
|
---|
86 | private void _CheckForAndHandleExcelError(FunctionArgument arg, ParsingContext context)
|
---|
87 | {
|
---|
88 | //if (context.Scopes.Current.IsSubtotal)
|
---|
89 | //{
|
---|
90 | // CheckForAndHandleExcelError(arg);
|
---|
91 | //}
|
---|
92 | }
|
---|
93 |
|
---|
94 | private void _CheckForAndHandleExcelError(ExcelDataProvider.ICellInfo cell, ParsingContext context)
|
---|
95 | {
|
---|
96 | //if (context.Scopes.Current.IsSubtotal)
|
---|
97 | //{
|
---|
98 | // CheckForAndHandleExcelError(cell);
|
---|
99 | //}
|
---|
100 | }
|
---|
101 |
|
---|
102 | private bool ShouldCount(object value, ItemContext context)
|
---|
103 | {
|
---|
104 | switch (context)
|
---|
105 | {
|
---|
106 | case ItemContext.SingleArg:
|
---|
107 | return IsNumeric(value) || IsNumericString(value);
|
---|
108 | case ItemContext.InRange:
|
---|
109 | return IsNumeric(value);
|
---|
110 | case ItemContext.InArray:
|
---|
111 | return IsNumeric(value) || IsNumericString(value);
|
---|
112 | default:
|
---|
113 | throw new ArgumentException("Unknown ItemContext:" + context.ToString());
|
---|
114 | }
|
---|
115 | }
|
---|
116 | }
|
---|
117 | }
|
---|