Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/Excel/Functions/DoubleEnumerableArgConverter.cs @ 12074

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

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 4.0 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.Exceptions;
30using OfficeOpenXml.Utils;
31
32namespace OfficeOpenXml.FormulaParsing.Excel.Functions
33{
34    public class DoubleEnumerableArgConverter : CollectionFlattener<double>
35    {
36        public virtual IEnumerable<double> ConvertArgs(bool ignoreHidden, bool ignoreErrors, IEnumerable<FunctionArgument> arguments, ParsingContext context)
37        {
38            return base.FuncArgsToFlatEnumerable(arguments, (arg, argList) =>
39                {
40                    if (arg.IsExcelRange)
41                    {
42                        foreach (var cell in arg.ValueAsRangeInfo)
43                        {
44                            if(!ignoreErrors && cell.IsExcelError) throw new ExcelErrorValueException(ExcelErrorValue.Parse(cell.Value.ToString()));
45                            if (!CellStateHelper.ShouldIgnore(ignoreHidden, cell, context) && ConvertUtil.IsNumeric(cell.Value))
46                            {
47                                argList.Add(cell.ValueDouble);
48                            }       
49                        }
50                    }
51                    else
52                    {
53                        if(!ignoreErrors && arg.ValueIsExcelError) throw new ExcelErrorValueException(arg.ValueAsExcelErrorValue);
54                        if (ConvertUtil.IsNumeric(arg.Value) && !CellStateHelper.ShouldIgnore(ignoreHidden, arg, context))
55                        {
56                            argList.Add(ConvertUtil.GetValueDouble(arg.Value));
57                        }
58                    }
59                });
60        }
61
62        public virtual IEnumerable<double> ConvertArgsIncludingOtherTypes(IEnumerable<FunctionArgument> arguments)
63        {
64            return base.FuncArgsToFlatEnumerable(arguments, (arg, argList) =>
65            {
66                //var cellInfo = arg.Value as EpplusExcelDataProvider.CellInfo;
67                //var value = cellInfo != null ? cellInfo.Value : arg.Value;
68                if (arg.Value is ExcelDataProvider.IRangeInfo)
69                {
70                    foreach (var cell in (ExcelDataProvider.IRangeInfo)arg.Value)
71                    {
72                        argList.Add(cell.ValueDoubleLogical);
73                    }
74                }
75                else
76                {
77                    if (arg.Value is double || arg.Value is int || arg.Value is bool)
78                    {
79                        argList.Add(Convert.ToDouble(arg.Value));
80                    }
81                    else if (arg.Value is string)
82                    {
83                        argList.Add(0d);
84                    }
85                }
86            });
87        }
88    }
89}
Note: See TracBrowser for help on using the repository browser.