1 | /*******************************************************************************
|
---|
2 | * You may amend and distribute as you like, but don't remove this header!
|
---|
3 | *
|
---|
4 | * EPPlus provides server-side generation of Excel 2007/2010 spreadsheets.
|
---|
5 | * See http://www.codeplex.com/EPPlus for details.
|
---|
6 | *
|
---|
7 | * Copyright (C) 2011 Jan Källman
|
---|
8 | *
|
---|
9 | * This library is free software; you can redistribute it and/or
|
---|
10 | * modify it under the terms of the GNU Lesser General Public
|
---|
11 | * License as published by the Free Software Foundation; either
|
---|
12 | * version 2.1 of the License, or (at your option) any later version.
|
---|
13 |
|
---|
14 | * This library is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
17 | * See the GNU Lesser General Public License for more details.
|
---|
18 | *
|
---|
19 | * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
|
---|
20 | * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
|
---|
21 | *
|
---|
22 | * All code and executables are provided "as is" with no warranty either express or implied.
|
---|
23 | * The author accepts no liability for any damage or loss of business that this product may cause.
|
---|
24 | *
|
---|
25 | * Code change notes:
|
---|
26 | *
|
---|
27 | * Author Change Date
|
---|
28 | * ******************************************************************************
|
---|
29 | * Mats Alm Added 2013-03-01 (Prior file history on https://github.com/swmal/ExcelFormulaParser)
|
---|
30 | *******************************************************************************/
|
---|
31 | using System;
|
---|
32 | using System.Collections.Generic;
|
---|
33 | using System.Linq;
|
---|
34 | using System.Text;
|
---|
35 | using OfficeOpenXml.FormulaParsing.Excel.Operators;
|
---|
36 | using OfficeOpenXml.FormulaParsing.Exceptions;
|
---|
37 |
|
---|
38 | namespace OfficeOpenXml.FormulaParsing.ExpressionGraph
|
---|
39 | {
|
---|
40 | public abstract class Expression
|
---|
41 | {
|
---|
42 | protected string ExpressionString { get; private set; }
|
---|
43 | private readonly List<Expression> _children = new List<Expression>();
|
---|
44 | public IEnumerable<Expression> Children { get { return _children; } }
|
---|
45 | public Expression Next { get; set; }
|
---|
46 | public Expression Prev { get; set; }
|
---|
47 | public IOperator Operator { get; set; }
|
---|
48 | public abstract bool IsGroupedExpression { get; }
|
---|
49 |
|
---|
50 | public Expression()
|
---|
51 | {
|
---|
52 |
|
---|
53 | }
|
---|
54 |
|
---|
55 | public Expression(string expression)
|
---|
56 | {
|
---|
57 | ExpressionString = expression;
|
---|
58 | Operator = null;
|
---|
59 | }
|
---|
60 |
|
---|
61 | public virtual bool ParentIsLookupFunction
|
---|
62 | {
|
---|
63 | get;
|
---|
64 | set;
|
---|
65 | }
|
---|
66 |
|
---|
67 | public virtual bool HasChildren
|
---|
68 | {
|
---|
69 | get { return _children.Any(); }
|
---|
70 | }
|
---|
71 |
|
---|
72 | public virtual Expression PrepareForNextChild()
|
---|
73 | {
|
---|
74 | return this;
|
---|
75 | }
|
---|
76 |
|
---|
77 | public virtual Expression AddChild(Expression child)
|
---|
78 | {
|
---|
79 | if (_children.Any())
|
---|
80 | {
|
---|
81 | var last = _children.Last();
|
---|
82 | child.Prev = last;
|
---|
83 | last.Next = child;
|
---|
84 | }
|
---|
85 | _children.Add(child);
|
---|
86 | return child;
|
---|
87 | }
|
---|
88 |
|
---|
89 | public virtual Expression MergeWithNext()
|
---|
90 | {
|
---|
91 | var expression = this;
|
---|
92 | if (Next != null && Operator != null)
|
---|
93 | {
|
---|
94 | var result = Operator.Apply(Compile(), Next.Compile());
|
---|
95 | expression = ExpressionConverter.Instance.FromCompileResult(result);
|
---|
96 | if (expression is ExcelErrorExpression)
|
---|
97 | {
|
---|
98 | expression.Next = null;
|
---|
99 | expression.Prev = null;
|
---|
100 | return expression;
|
---|
101 | }
|
---|
102 | if (Next != null)
|
---|
103 | {
|
---|
104 | expression.Operator = Next.Operator;
|
---|
105 | }
|
---|
106 | else
|
---|
107 | {
|
---|
108 | expression.Operator = null;
|
---|
109 | }
|
---|
110 | expression.Next = Next.Next;
|
---|
111 | if (expression.Next != null) expression.Next.Prev = expression;
|
---|
112 | expression.Prev = Prev;
|
---|
113 | }
|
---|
114 | else
|
---|
115 | {
|
---|
116 | throw (new FormatException("Invalid formula syntax. Operator missing expression."));
|
---|
117 | }
|
---|
118 | if (Prev != null)
|
---|
119 | {
|
---|
120 | Prev.Next = expression;
|
---|
121 | }
|
---|
122 | return expression;
|
---|
123 | }
|
---|
124 |
|
---|
125 | public abstract CompileResult Compile();
|
---|
126 |
|
---|
127 | }
|
---|
128 | }
|
---|