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 | using OfficeOpenXml.FormulaParsing.Utilities;
|
---|
31 | using OfficeOpenXml.FormulaParsing.ExcelUtilities;
|
---|
32 | using System.Text.RegularExpressions;
|
---|
33 |
|
---|
34 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions.RefAndLookup
|
---|
35 | {
|
---|
36 | public class Lookup : LookupFunction
|
---|
37 | {
|
---|
38 | public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
39 | {
|
---|
40 | ValidateArguments(arguments, 2);
|
---|
41 | if (HaveTwoRanges(arguments))
|
---|
42 | {
|
---|
43 | return HandleTwoRanges(arguments, context);
|
---|
44 | }
|
---|
45 | return HandleSingleRange(arguments, context);
|
---|
46 | }
|
---|
47 |
|
---|
48 | private bool HaveTwoRanges(IEnumerable<FunctionArgument> arguments)
|
---|
49 | {
|
---|
50 | if (arguments.Count() == 2) return false;
|
---|
51 | return (ExcelAddressUtil.IsValidAddress(arguments.ElementAt(2).Value.ToString()));
|
---|
52 | }
|
---|
53 |
|
---|
54 | private CompileResult HandleSingleRange(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
55 | {
|
---|
56 | var searchedValue = arguments.ElementAt(0).Value;
|
---|
57 | Require.That(arguments.ElementAt(1).Value).Named("firstAddress").IsNotNull();
|
---|
58 | var firstAddress = ArgToString(arguments, 1);
|
---|
59 | var rangeAddressFactory = new RangeAddressFactory(context.ExcelDataProvider);
|
---|
60 | var address = rangeAddressFactory.Create(firstAddress);
|
---|
61 | var nRows = address.ToRow - address.FromRow;
|
---|
62 | var nCols = address.ToCol - address.FromCol;
|
---|
63 | var lookupIndex = nCols + 1;
|
---|
64 | var lookupDirection = LookupDirection.Vertical;
|
---|
65 | if (nCols > nRows)
|
---|
66 | {
|
---|
67 | lookupIndex = nRows + 1;
|
---|
68 | lookupDirection = LookupDirection.Horizontal;
|
---|
69 | }
|
---|
70 | var lookupArgs = new LookupArguments(searchedValue, firstAddress, lookupIndex, 0, true);
|
---|
71 | var navigator = LookupNavigatorFactory.Create(lookupDirection, lookupArgs, context);
|
---|
72 | return Lookup(navigator, lookupArgs);
|
---|
73 | }
|
---|
74 |
|
---|
75 | private CompileResult HandleTwoRanges(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
76 | {
|
---|
77 | var searchedValue = arguments.ElementAt(0).Value;
|
---|
78 | Require.That(arguments.ElementAt(1).Value).Named("firstAddress").IsNotNull();
|
---|
79 | Require.That(arguments.ElementAt(2).Value).Named("secondAddress").IsNotNull();
|
---|
80 | var firstAddress = ArgToString(arguments, 1);
|
---|
81 | var secondAddress = ArgToString(arguments, 2);
|
---|
82 | var rangeAddressFactory = new RangeAddressFactory(context.ExcelDataProvider);
|
---|
83 | var address1 = rangeAddressFactory.Create(firstAddress);
|
---|
84 | var address2 = rangeAddressFactory.Create(secondAddress);
|
---|
85 | var lookupIndex = (address2.FromCol - address1.FromCol) + 1;
|
---|
86 | var lookupOffset = address2.FromRow - address1.FromRow;
|
---|
87 | var lookupDirection = GetLookupDirection(address1);
|
---|
88 | if (lookupDirection == LookupDirection.Horizontal)
|
---|
89 | {
|
---|
90 | lookupIndex = (address2.FromRow - address1.FromRow) + 1;
|
---|
91 | lookupOffset = address2.FromCol - address1.FromCol;
|
---|
92 | }
|
---|
93 | var lookupArgs = new LookupArguments(searchedValue, firstAddress, lookupIndex, lookupOffset, true);
|
---|
94 | var navigator = LookupNavigatorFactory.Create(lookupDirection, lookupArgs, context);
|
---|
95 | return Lookup(navigator, lookupArgs);
|
---|
96 | }
|
---|
97 | }
|
---|
98 | }
|
---|