1 | using System;
|
---|
2 | /* Copyright (C) 2011 Jan Källman
|
---|
3 | *
|
---|
4 | * This library is free software; you can redistribute it and/or
|
---|
5 | * modify it under the terms of the GNU Lesser General Public
|
---|
6 | * License as published by the Free Software Foundation; either
|
---|
7 | * version 2.1 of the License, or (at your option) any later version.
|
---|
8 |
|
---|
9 | * This library is distributed in the hope that it will be useful,
|
---|
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
12 | * See the GNU Lesser General Public License for more details.
|
---|
13 | *
|
---|
14 | * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
|
---|
15 | * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
|
---|
16 | *
|
---|
17 | * All code and executables are provided "as is" with no warranty either express or implied.
|
---|
18 | * The author accepts no liability for any damage or loss of business that this product may cause.
|
---|
19 | *
|
---|
20 | * Code change notes:
|
---|
21 | *
|
---|
22 | * Author Change Date
|
---|
23 | *******************************************************************************
|
---|
24 | * Mats Alm Added 2013-12-03
|
---|
25 | *******************************************************************************/
|
---|
26 | using System.Collections.Generic;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using OfficeOpenXml.FormulaParsing.ExpressionGraph;
|
---|
30 | using OfficeOpenXml.FormulaParsing.Utilities;
|
---|
31 |
|
---|
32 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions
|
---|
33 | {
|
---|
34 | public class ArgumentParsers
|
---|
35 | {
|
---|
36 | private static object _syncRoot = new object();
|
---|
37 | private readonly Dictionary<DataType, ArgumentParser> _parsers = new Dictionary<DataType, ArgumentParser>();
|
---|
38 | private readonly ArgumentParserFactory _parserFactory;
|
---|
39 |
|
---|
40 | public ArgumentParsers()
|
---|
41 | : this(new ArgumentParserFactory())
|
---|
42 | {
|
---|
43 |
|
---|
44 | }
|
---|
45 |
|
---|
46 | public ArgumentParsers(ArgumentParserFactory factory)
|
---|
47 | {
|
---|
48 | Require.That(factory).Named("argumentParserfactory").IsNotNull();
|
---|
49 | _parserFactory = factory;
|
---|
50 | }
|
---|
51 |
|
---|
52 | public ArgumentParser GetParser(DataType dataType)
|
---|
53 | {
|
---|
54 | if (!_parsers.ContainsKey(dataType))
|
---|
55 | {
|
---|
56 | lock (_syncRoot)
|
---|
57 | {
|
---|
58 | if (!_parsers.ContainsKey(dataType))
|
---|
59 | {
|
---|
60 | _parsers.Add(dataType, _parserFactory.CreateArgumentParser(dataType));
|
---|
61 | }
|
---|
62 | }
|
---|
63 | }
|
---|
64 | return _parsers[dataType];
|
---|
65 | }
|
---|
66 | }
|
---|
67 | }
|
---|