Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RefactorPluginInfrastructure-2522/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/Excel/Functions/RefAndLookup/LookupArguments.cs @ 13332

Last change on this file since 13332 was 12074, checked in by sraggl, 9 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 4.4 KB
Line 
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 *******************************************************************************/
25using System;
26using System.Collections.Generic;
27using System.Linq;
28using System.Text;
29using OfficeOpenXml.FormulaParsing.ExpressionGraph;
30
31namespace OfficeOpenXml.FormulaParsing.Excel.Functions.RefAndLookup
32{
33    public class LookupArguments
34    {
35        public enum LookupArgumentDataType
36        {
37            ExcelRange,
38            DataArray
39        }
40
41        public LookupArguments(IEnumerable<FunctionArgument> arguments)
42            : this(arguments, new ArgumentParsers())
43        {
44
45        }
46
47        public LookupArguments(IEnumerable<FunctionArgument> arguments, ArgumentParsers argumentParsers)
48        {
49            _argumentParsers = argumentParsers;
50            SearchedValue = arguments.ElementAt(0).Value;
51            var arg1 = arguments.ElementAt(1).Value;
52            var dataArray = arg1 as IEnumerable<FunctionArgument>;
53            if (dataArray != null)
54            {
55                DataArray = dataArray;
56                ArgumentDataType = LookupArgumentDataType.DataArray;
57            }
58            else
59            {
60                //if (arg1 is ExcelDataProvider.INameInfo) arg1 = ((ExcelDataProvider.INameInfo) arg1).Value;
61                var rangeInfo = arg1 as ExcelDataProvider.IRangeInfo;
62                if (rangeInfo != null)
63                {
64                    RangeAddress = string.IsNullOrEmpty(rangeInfo.Address.WorkSheet) ? rangeInfo.Address.Address : "'" + rangeInfo.Address.WorkSheet + "'!" + rangeInfo.Address.Address;
65                    RangeInfo = rangeInfo;
66                    ArgumentDataType = LookupArgumentDataType.ExcelRange;
67                }
68                else
69                {
70                    RangeAddress = arg1.ToString();
71                    ArgumentDataType = LookupArgumentDataType.ExcelRange;
72                } 
73            }
74            LookupIndex = (int)_argumentParsers.GetParser(DataType.Integer).Parse(arguments.ElementAt(2).Value);
75            if (arguments.Count() > 3)
76            {
77                RangeLookup = (bool)_argumentParsers.GetParser(DataType.Boolean).Parse(arguments.ElementAt(3).Value);
78            }
79            else
80            {
81                RangeLookup = true;
82            }
83        }
84
85        public LookupArguments(object searchedValue, string rangeAddress, int lookupIndex, int lookupOffset, bool rangeLookup)
86        {
87            SearchedValue = searchedValue;
88            RangeAddress = rangeAddress;
89            LookupIndex = lookupIndex;
90            LookupOffset = lookupOffset;
91            RangeLookup = rangeLookup;
92        }
93
94        private readonly ArgumentParsers _argumentParsers;
95
96        public object SearchedValue { get; private set; }
97
98        public string RangeAddress { get; private set; }
99
100        public int LookupIndex { get; private set; }
101
102        public int LookupOffset { get; private set; }
103
104        public bool RangeLookup { get; private set; }
105
106        public IEnumerable<FunctionArgument> DataArray { get; private set; }
107
108        public ExcelDataProvider.IRangeInfo RangeInfo { get; private set; }
109
110        public LookupArgumentDataType ArgumentDataType { get; private set; }
111    }
112}
Note: See TracBrowser for help on using the repository browser.