-
Notifications
You must be signed in to change notification settings - Fork 291
/
Copy pathInstanceBuilder.cs
137 lines (118 loc) · 6.22 KB
/
InstanceBuilder.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using CommandLine.Infrastructure;
using CSharpx;
using RailwaySharp.ErrorHandling;
namespace CommandLine.Core
{
internal static class InstanceBuilder
{
public static ParserResult<T> Build<T>(
Maybe<Func<T>> factory,
IEnumerable<string> arguments,
StringComparer nameComparer,
CultureInfo parsingCulture)
{
var tokenizer = new TokenizerGetOpt();
return Build(
factory,
(args, optionSpecs) =>
{
var tokens = tokenizer.Tokenize(args, name => NameLookup.Contains(name, optionSpecs, nameComparer));
var explodedTokens = tokenizer.ExplodeOptionList(
tokens,
name => NameLookup.HavingSeparator(name, optionSpecs, nameComparer));
return explodedTokens;
},
arguments,
nameComparer,
parsingCulture);
}
public static ParserResult<T> Build<T>(
Maybe<Func<T>> factory,
Func<IEnumerable<string>, IEnumerable<OptionSpecification>, Result<IEnumerable<Token>, Error>> tokenizer,
IEnumerable<string> arguments,
StringComparer nameComparer,
CultureInfo parsingCulture)
{
var typeInfo = factory.Return(f => f().GetType(), typeof(T));
var specProps = typeInfo.GetSpecifications(pi => SpecificationProperty.Create(
Specification.FromProperty(pi), pi, Maybe.Nothing<object>()));
var specs = from pt in specProps select pt.Specification;
var optionSpecs = specs
.ThrowingValidate(SpecificationGuards.Lookup)
.OfType<OptionSpecification>();
Func<T> makeDefault = () =>
typeof(T).IsMutable()
? factory.Return(f => f(), Activator.CreateInstance<T>())
: ReflectionHelper.CreateDefaultImmutableInstance<T>(
(from p in specProps select p.Specification.ConversionType).ToArray());
if (arguments.Any())
{
var preprocessorErrors = arguments.Preprocess(PreprocessorGuards.Lookup(nameComparer));
if (preprocessorErrors.Any())
{
return new NotParsed<T>(makeDefault().GetType().ToTypeInfo(), preprocessorErrors);
}
}
var tokenizerResult = tokenizer(arguments, optionSpecs);
var tokens = tokenizerResult.SucceededWith();
var partitions = TokenPartitioner.Partition(
tokens,
name => TypeLookup.FindTypeDescriptorAndSibling(name, optionSpecs, nameComparer));
var optionSpecPropsResult = OptionMapper.MapValues(
(from pt in specProps where pt.Specification.IsOption() select pt),
partitions.Options,
(vals, type, isScalar) => TypeConverter.ChangeType(vals, type, isScalar, parsingCulture),
nameComparer);
var valueSpecPropsResult = ValueMapper.MapValues(
(from pt in specProps where pt.Specification.IsValue() select pt),
partitions.Values,
(vals, type, isScalar) => TypeConverter.ChangeType(vals, type, isScalar, parsingCulture));
var missingValueErrors = from token in partitions.Errors
select new MissingValueOptionError(
optionSpecs.Single(o => token.Text.MatchName(o.ShortName, o.LongName, nameComparer)).FromOptionSpecification());
var specPropsWithValue = optionSpecPropsResult.SucceededWith()
.Concat(valueSpecPropsResult.SucceededWith());
T instance;
if (typeInfo.IsMutable())
{
instance = factory.Return(f => f(), Activator.CreateInstance<T>());
instance = instance
.SetProperties(specPropsWithValue,
sp => sp.Value.IsJust(),
sp => sp.Value.FromJust())
.SetProperties(specPropsWithValue,
sp => sp.Value.IsNothing() && sp.Specification.DefaultValue.IsJust(),
sp => sp.Specification.DefaultValue.FromJust())
.SetProperties(specPropsWithValue,
sp => sp.Value.IsNothing()
&& sp.Specification.TargetType == TargetType.Sequence
&& sp.Specification.DefaultValue.MatchNothing(),
sp => sp.Property.PropertyType.GetGenericArguments().Single().CreateEmptyArray());
}
else
{
var ctor = typeInfo.GetConstructor((from sp in specProps select sp.Property.PropertyType).ToArray());
var values = (from prms in ctor.GetParameters()
join sp in specPropsWithValue on prms.Name.ToLower() equals sp.Property.Name.ToLower()
select sp.Value.Return(v => v,
sp.Specification.DefaultValue.Return(d => d,
sp.Specification.ConversionType.CreateDefaultForImmutable()))).ToArray();
instance = (T)ctor.Invoke(values);
}
var validationErrors = specPropsWithValue.Validate(
SpecificationPropertyRules.Lookup(tokens));
return tokenizerResult
.SuccessfulMessages()
.Concat(missingValueErrors)
.Concat(optionSpecPropsResult.SuccessfulMessages())
.Concat(valueSpecPropsResult.SuccessfulMessages())
.Concat(validationErrors)
.ToParserResult(instance);
}
}
}