Skip to content

Commit 14467b3

Browse files
committed
Closes #1274 - Got rid of system.web (databinder.eval)
I have written a new implementation and to replace databinder.eval so that we can drop system.web as a dependency. System.Web should never have been adopted imho! Corrected docs.
1 parent 443c994 commit 14467b3

File tree

4 files changed

+52
-145
lines changed

4 files changed

+52
-145
lines changed

docs/configuration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ attributes.
7272
Set this to any of the available [variables](/more-info/variables) to change the
7373
value of the `AssemblyInformationalVersion` attribute. Default set to
7474
`{InformationalVersion}`. It also supports string interpolation
75-
(`{MajorMinorPatch}+{Branch}`)
75+
(`{MajorMinorPatch}+{BranchName}`)
7676

7777
### mode
7878
Sets the `mode` of how GitVersion should create a new version. Read more at

src/GitVersionCore/GitVersionCore.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
</Reference>
5050
<Reference Include="System" />
5151
<Reference Include="System.Core" />
52-
<Reference Include="System.Web" />
5352
<Reference Include="System.Xml.Linq" />
5453
<Reference Include="System.Data.DataSetExtensions" />
5554
<Reference Include="Microsoft.CSharp" />

src/GitVersionCore/OutputVariables/VariableProvider.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ public static VersionVariables GetVariablesFor(SemanticVersion semanticVersion,
5353
{
5454
try
5555
{
56-
informationalVersion = config.AssemblyInformationalFormat.FormatWith(semverFormatValues);
56+
informationalVersion = config.AssemblyInformationalFormat.FormatWith<SemanticVersionFormatValues>(semverFormatValues);
5757
}
58-
catch (FormatException formex)
58+
catch (ArgumentException formex)
5959
{
6060
throw new WarningException(string.Format("Unable to format AssemblyInformationalVersion. Check your format string: {0}", formex.Message));
6161
}
+49-141
Original file line numberDiff line numberDiff line change
@@ -1,170 +1,78 @@
1-
#region BSD License
2-
3-
/*
4-
Copyright (c) 2010, NETFx
5-
All rights reserved.
6-
7-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
8-
9-
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
10-
11-
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
12-
13-
* Neither the name of Clarius Consulting nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14-
15-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16-
*/
17-
18-
#endregion
19-
20-
// Originally appeared in http://haacked.com/archive/2009/01/14/named-formats-redux.aspx
21-
// Authored by Henri Wiechers
22-
// Ported to NETFx by Daniel Cazzulino
23-
using System;
24-
using System.IO;
25-
using System.Text;
26-
using System.Web;
27-
using System.Web.UI;
1+
using System;
2+
using System.Linq.Expressions;
3+
using System.Reflection;
4+
using System.Text.RegularExpressions;
285

296
namespace GitVersion
307
{
31-
/// <summary>
32-
/// Requires a reference to System.Web.
33-
/// </summary>
8+
349
static class StringFormatWithExtension
3510
{
11+
private static readonly Regex TokensRegex = new Regex(@"{\w+}", RegexOptions.Compiled);
12+
3613
/// <summary>
37-
/// Formats the string with the given source object.
14+
/// Formats a string template with the given source object.
3815
/// Expression like {Id} are replaced with the corresponding
39-
/// property value in the <paramref name="source" />. Supports
40-
/// all DataBinder.Eval expressions formats
41-
/// for property access.
42-
/// </summary>
43-
/// <nuget id="netfx-System.StringFormatWith" />
44-
/// <param name="format" this="true">The string to format</param>
16+
/// property value in the <paramref name="source" />.
17+
/// Supports property access expressions.
18+
/// </summary>
19+
/// <param name="template" this="true">The template to be replaced with values from the source object. The template can contain expressions wrapped in curly braces, that point to properties or fields on the source object to be used as a substitute, e.g '{Foo.Bar.CurrencySymbol} foo {Foo.Bar.Price}'.</param>
4520
/// <param name="source">The source object to apply to format</param>
46-
public static string FormatWith(this string format, object source)
21+
public static string FormatWith<T>(this string template, T source)
4722
{
48-
if (format == null)
23+
if (template == null)
4924
{
50-
throw new ArgumentNullException("format");
25+
throw new ArgumentNullException("template");
5126
}
5227

53-
var result = new StringBuilder(format.Length*2);
54-
55-
using (var reader = new StringReader(format))
28+
// {MajorMinorPatch}+{Branch}
29+
var objType = source.GetType();
30+
foreach (Match match in TokensRegex.Matches(template))
5631
{
57-
var expression = new StringBuilder();
58-
59-
var state = State.OutsideExpression;
60-
do
61-
{
62-
int @char;
63-
switch (state)
64-
{
65-
case State.OutsideExpression:
66-
@char = reader.Read();
67-
switch (@char)
68-
{
69-
case -1:
70-
state = State.End;
71-
break;
72-
case '{':
73-
state = State.OnOpenBracket;
74-
break;
75-
case '}':
76-
state = State.OnCloseBracket;
77-
break;
78-
default:
79-
result.Append((char) @char);
80-
break;
81-
}
82-
break;
83-
case State.OnOpenBracket:
84-
@char = reader.Read();
85-
switch (@char)
86-
{
87-
case -1:
88-
throw new FormatException();
89-
case '{':
90-
result.Append('{');
91-
state = State.OutsideExpression;
92-
break;
93-
default:
94-
expression.Append((char) @char);
95-
state = State.InsideExpression;
96-
break;
97-
}
98-
break;
99-
case State.InsideExpression:
100-
@char = reader.Read();
101-
switch (@char)
102-
{
103-
case -1:
104-
throw new FormatException();
105-
case '}':
106-
result.Append(OutExpression(source, expression.ToString()));
107-
expression.Length = 0;
108-
state = State.OutsideExpression;
109-
break;
110-
default:
111-
expression.Append((char) @char);
112-
break;
113-
}
114-
break;
115-
case State.OnCloseBracket:
116-
@char = reader.Read();
117-
switch (@char)
118-
{
119-
case '}':
120-
result.Append('}');
121-
state = State.OutsideExpression;
122-
break;
123-
default:
124-
throw new FormatException();
125-
}
126-
break;
127-
default:
128-
throw new InvalidOperationException("Invalid state.");
129-
}
130-
} while (state != State.End);
32+
var memberAccessExpression = TrimBraces(match.Value);
33+
Func<object, string> expression = CompileDataBinder(objType, memberAccessExpression);
34+
string propertyValue = expression(source);
35+
template = template.Replace(match.Value, propertyValue);
13136
}
13237

133-
return result.ToString();
38+
return template;
39+
13440
}
13541

136-
static string OutExpression(object source, string expression)
137-
{
138-
var format = "";
139-
var colonIndex = expression.IndexOf(':');
14042

141-
if (colonIndex > 0)
43+
static string TrimBraces(string originalExpression)
44+
{
45+
if (!string.IsNullOrWhiteSpace(originalExpression))
14246
{
143-
format = expression.Substring(colonIndex + 1);
144-
expression = expression.Substring(0, colonIndex);
47+
return originalExpression.TrimStart('{').TrimEnd('}');
14548
}
49+
return originalExpression;
50+
}
14651

147-
try
52+
static Func<object, string> CompileDataBinder(Type type, string expr)
53+
{
54+
var param = Expression.Parameter(typeof(object));
55+
Expression body = Expression.Convert(param, type);
56+
var members = expr.Split('.');
57+
for (int i = 0; i < members.Length; i++)
14858
{
149-
if (string.IsNullOrEmpty(format))
150-
{
151-
return (DataBinder.Eval(source, expression) ?? "").ToString();
152-
}
153-
return DataBinder.Eval(source, expression, "{0:" + format + "}");
59+
body = Expression.PropertyOrField(body, members[i]);
15460
}
155-
catch (HttpException)
61+
var method = typeof(Convert).GetMethod("ToString", BindingFlags.Static | BindingFlags.Public,
62+
null, new Type[] { body.Type }, null);
63+
if (method == null)
15664
{
157-
throw new FormatException("Failed to format '" + expression + "'.");
65+
method = typeof(Convert).GetMethod("ToString", BindingFlags.Static | BindingFlags.Public,
66+
null, new Type[] { typeof(object) }, null);
67+
body = Expression.Call(method, Expression.Convert(body, typeof(object)));
68+
}
69+
else
70+
{
71+
body = Expression.Call(method, body);
15872
}
159-
}
16073

161-
enum State
162-
{
163-
OutsideExpression,
164-
OnOpenBracket,
165-
InsideExpression,
166-
OnCloseBracket,
167-
End
74+
return Expression.Lambda<Func<object, string>>(body, param).Compile();
16875
}
76+
16977
}
17078
}

0 commit comments

Comments
 (0)