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 2015-01-15
|
---|
24 | *******************************************************************************/
|
---|
25 | using System;
|
---|
26 | using System.Collections.Generic;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using OfficeOpenXml.FormulaParsing.ExcelUtilities;
|
---|
30 | using OfficeOpenXml.FormulaParsing.Utilities;
|
---|
31 | using OfficeOpenXml.Utils;
|
---|
32 | using Require = OfficeOpenXml.FormulaParsing.Utilities.Require;
|
---|
33 |
|
---|
34 |
|
---|
35 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions.Math
|
---|
36 | {
|
---|
37 | public abstract class MultipleRangeCriteriasFunction : ExcelFunction
|
---|
38 | {
|
---|
39 |
|
---|
40 | private readonly NumericExpressionEvaluator _numericExpressionEvaluator;
|
---|
41 | private readonly WildCardValueMatcher _wildCardValueMatcher;
|
---|
42 |
|
---|
43 | protected MultipleRangeCriteriasFunction()
|
---|
44 | :this(new NumericExpressionEvaluator(), new WildCardValueMatcher())
|
---|
45 | {
|
---|
46 |
|
---|
47 | }
|
---|
48 |
|
---|
49 | protected MultipleRangeCriteriasFunction(NumericExpressionEvaluator evaluator, WildCardValueMatcher wildCardValueMatcher)
|
---|
50 | {
|
---|
51 | Require.That(evaluator).Named("evaluator").IsNotNull();
|
---|
52 | Require.That(wildCardValueMatcher).Named("wildCardValueMatcher").IsNotNull();
|
---|
53 | _numericExpressionEvaluator = evaluator;
|
---|
54 | _wildCardValueMatcher = wildCardValueMatcher;
|
---|
55 | }
|
---|
56 |
|
---|
57 | protected bool Evaluate(object obj, object expression)
|
---|
58 | {
|
---|
59 | double? candidate = default(double?);
|
---|
60 | if (IsNumeric(obj))
|
---|
61 | {
|
---|
62 | candidate = ConvertUtil.GetValueDouble(obj);
|
---|
63 | }
|
---|
64 | if (candidate.HasValue && expression is string)
|
---|
65 | {
|
---|
66 | return _numericExpressionEvaluator.Evaluate(candidate.Value, expression.ToString());
|
---|
67 | }
|
---|
68 | if (obj == null) return false;
|
---|
69 | return _wildCardValueMatcher.IsMatch(expression, obj.ToString()) == 0;
|
---|
70 | }
|
---|
71 |
|
---|
72 | protected List<int> GetMatchIndexes(ExcelDataProvider.IRangeInfo rangeInfo, object searched)
|
---|
73 | {
|
---|
74 | var result = new List<int>();
|
---|
75 | var internalIndex = 0;
|
---|
76 | for (var row = rangeInfo.Address._fromRow; row <= rangeInfo.Address._toRow; row++)
|
---|
77 | {
|
---|
78 | for (var col = rangeInfo.Address._fromCol; col <= rangeInfo.Address._toCol; col++)
|
---|
79 | {
|
---|
80 | var candidate = rangeInfo.GetValue(row, col);
|
---|
81 | if (Evaluate(candidate, searched))
|
---|
82 | {
|
---|
83 | result.Add(internalIndex);
|
---|
84 | }
|
---|
85 | internalIndex++;
|
---|
86 | }
|
---|
87 | }
|
---|
88 | return result;
|
---|
89 | }
|
---|
90 | }
|
---|
91 | }
|
---|