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 System.Globalization;
|
---|
30 | using OfficeOpenXml.FormulaParsing.Utilities;
|
---|
31 | using OfficeOpenXml.FormulaParsing.Exceptions;
|
---|
32 | using util=OfficeOpenXml.Utils;
|
---|
33 |
|
---|
34 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions
|
---|
35 | {
|
---|
36 | public class DoubleArgumentParser : ArgumentParser
|
---|
37 | {
|
---|
38 | public override object Parse(object obj)
|
---|
39 | {
|
---|
40 | Require.That(obj).Named("argument").IsNotNull();
|
---|
41 | if (obj is ExcelDataProvider.IRangeInfo)
|
---|
42 | {
|
---|
43 | var r=((ExcelDataProvider.IRangeInfo)obj).FirstOrDefault();
|
---|
44 | return r == null ? 0 : r.ValueDouble;
|
---|
45 | }
|
---|
46 | if (obj is double) return obj;
|
---|
47 | if (obj.IsNumeric()) return util.ConvertUtil.GetValueDouble(obj);
|
---|
48 | var str = obj != null ? obj.ToString() : string.Empty;
|
---|
49 | try
|
---|
50 | {
|
---|
51 | return double.Parse(str,CultureInfo.InvariantCulture);
|
---|
52 | }
|
---|
53 | catch// (Exception e)
|
---|
54 | {
|
---|
55 | throw new ExcelErrorValueException(ExcelErrorValue.Create(eErrorType.Value));
|
---|
56 | }
|
---|
57 | }
|
---|
58 | }
|
---|
59 | }
|
---|