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.Exceptions;
|
---|
36 |
|
---|
37 | namespace OfficeOpenXml.FormulaParsing.LexicalAnalysis
|
---|
38 | {
|
---|
39 | public class SyntacticAnalyzer : ISyntacticAnalyzer
|
---|
40 | {
|
---|
41 | private class AnalyzingContext
|
---|
42 | {
|
---|
43 | public int NumberOfOpenedParentheses { get; set; }
|
---|
44 | public int NumberOfClosedParentheses { get; set; }
|
---|
45 | public int OpenedStrings { get; set; }
|
---|
46 | public int ClosedStrings { get; set; }
|
---|
47 | public bool IsInString { get; set; }
|
---|
48 | }
|
---|
49 | public void Analyze(IEnumerable<Token> tokens)
|
---|
50 | {
|
---|
51 | var context = new AnalyzingContext();
|
---|
52 | foreach (var token in tokens)
|
---|
53 | {
|
---|
54 | if (token.TokenType == TokenType.Unrecognized)
|
---|
55 | {
|
---|
56 | throw new UnrecognizedTokenException(token);
|
---|
57 | }
|
---|
58 | EnsureParenthesesAreWellFormed(token, context);
|
---|
59 | EnsureStringsAreWellFormed(token, context);
|
---|
60 | }
|
---|
61 | Validate(context);
|
---|
62 | }
|
---|
63 |
|
---|
64 | private static void Validate(AnalyzingContext context)
|
---|
65 | {
|
---|
66 | if (context.NumberOfOpenedParentheses != context.NumberOfClosedParentheses)
|
---|
67 | {
|
---|
68 | throw new FormatException("Number of opened and closed parentheses does not match");
|
---|
69 | }
|
---|
70 | if (context.OpenedStrings != context.ClosedStrings)
|
---|
71 | {
|
---|
72 | throw new FormatException("Unterminated string");
|
---|
73 | }
|
---|
74 | }
|
---|
75 |
|
---|
76 | private void EnsureParenthesesAreWellFormed(Token token, AnalyzingContext context)
|
---|
77 | {
|
---|
78 | if (token.TokenType == TokenType.OpeningParenthesis)
|
---|
79 | {
|
---|
80 | context.NumberOfOpenedParentheses++;
|
---|
81 | }
|
---|
82 | else if (token.TokenType == TokenType.ClosingParenthesis)
|
---|
83 | {
|
---|
84 | context.NumberOfClosedParentheses++;
|
---|
85 | }
|
---|
86 | }
|
---|
87 |
|
---|
88 | private void EnsureStringsAreWellFormed(Token token, AnalyzingContext context)
|
---|
89 | {
|
---|
90 | if (!context.IsInString && token.TokenType == TokenType.String)
|
---|
91 | {
|
---|
92 | context.IsInString = true;
|
---|
93 | context.OpenedStrings++;
|
---|
94 | }
|
---|
95 | else if (context.IsInString && token.TokenType == TokenType.String)
|
---|
96 | {
|
---|
97 | context.IsInString = false;
|
---|
98 | context.ClosedStrings++;
|
---|
99 | }
|
---|
100 | }
|
---|
101 | }
|
---|
102 | }
|
---|