forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpRouteCollection.cs
More file actions
345 lines (289 loc) · 11.5 KB
/
HttpRouteCollection.cs
File metadata and controls
345 lines (289 loc) · 11.5 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
using System.Net.Http;
using System.Web.Http.Controllers;
using System.Web.Http.Properties;
using System.Web.Http.Routing;
namespace System.Web.Http
{
public class HttpRouteCollection : ICollection<IHttpRoute>, IDisposable
{
// Arbitrary base address for evaluating the root virtual path
private static readonly Uri _referenceBaseAddress = new Uri("http://localhost");
private readonly string _virtualPathRoot;
private readonly List<IHttpRoute> _collection = new List<IHttpRoute>();
private readonly IDictionary<string, IHttpRoute> _dictionary = new Dictionary<string, IHttpRoute>(StringComparer.OrdinalIgnoreCase);
private bool _disposed;
/// <summary>
/// Initializes a new instance of the <see cref="HttpRouteCollection"/> class with a <see cref="M:VirtualPathRoot"/>
/// value of "/".
/// </summary>
public HttpRouteCollection()
: this("/")
{
}
[SuppressMessage("Microsoft.Usage", "CA2234:PassSystemUriObjectsInsteadOfStrings", Justification = "Relative URIs are not URIs")]
public HttpRouteCollection(string virtualPathRoot)
{
if (virtualPathRoot == null)
{
throw Error.ArgumentNull("virtualPathRoot");
}
// Validate virtual path
Uri address = new Uri(_referenceBaseAddress, virtualPathRoot);
_virtualPathRoot = "/" + address.GetComponents(UriComponents.Path, UriFormat.Unescaped);
}
public virtual string VirtualPathRoot
{
get { return _virtualPathRoot; }
}
public virtual int Count
{
get { return _collection.Count; }
}
public virtual bool IsReadOnly
{
get { return false; }
}
public virtual IHttpRoute this[int index]
{
get { return _collection[index]; }
}
public virtual IHttpRoute this[string name]
{
get { return _dictionary[name]; }
}
public virtual IHttpRouteData GetRouteData(HttpRequestMessage request)
{
if (request == null)
{
throw Error.ArgumentNull("request");
}
for (int i = 0; i < _collection.Count; i++)
{
string virtualPathRoot = GetVirtualPathRoot(request.GetRequestContext());
IHttpRouteData routeData = _collection[i].GetRouteData(virtualPathRoot, request);
if (routeData != null)
{
return routeData;
}
}
return null;
}
public virtual IHttpVirtualPathData GetVirtualPath(HttpRequestMessage request, string name, IDictionary<string, object> values)
{
if (request == null)
{
throw Error.ArgumentNull("request");
}
if (name == null)
{
throw Error.ArgumentNull("name");
}
IHttpRoute route;
if (!_dictionary.TryGetValue(name, out route))
{
throw Error.Argument("name", SRResources.RouteCollection_NameNotFound, name);
}
IHttpVirtualPathData virtualPath = route.GetVirtualPath(request, values);
if (virtualPath == null)
{
return null;
}
// Construct a new VirtualPathData with the resolved app path
string virtualPathRoot = GetVirtualPathRoot(request.GetRequestContext());
if (!virtualPathRoot.EndsWith("/", StringComparison.Ordinal))
{
virtualPathRoot += "/";
}
// Note: The virtual path root here always ends with a "/" and the
// virtual path never starts with a "/" (that's how routes work).
return new HttpVirtualPathData(virtualPath.Route, virtualPathRoot + virtualPath.VirtualPath);
}
// Returns the virtual path root on the request context if present
// Otherwise, fall back on the virtual path root for the route collection
private string GetVirtualPathRoot(HttpRequestContext requestContext)
{
if (requestContext != null)
{
return requestContext.VirtualPathRoot ?? String.Empty;
}
return _virtualPathRoot;
}
public IHttpRoute CreateRoute(string routeTemplate, object defaults, object constraints)
{
IDictionary<string, object> dataTokens = new Dictionary<string, object>();
return CreateRoute(routeTemplate, new HttpRouteValueDictionary(defaults), new HttpRouteValueDictionary(constraints), dataTokens, handler: null);
}
public IHttpRoute CreateRoute(string routeTemplate, IDictionary<string, object> defaults, IDictionary<string, object> constraints, IDictionary<string, object> dataTokens)
{
return CreateRoute(routeTemplate, defaults, constraints, dataTokens, handler: null);
}
public virtual IHttpRoute CreateRoute(string routeTemplate, IDictionary<string, object> defaults, IDictionary<string, object> constraints, IDictionary<string, object> dataTokens, HttpMessageHandler handler)
{
HttpRouteValueDictionary routeDefaults = new HttpRouteValueDictionary(defaults);
HttpRouteValueDictionary routeConstraints = new HttpRouteValueDictionary(constraints);
HttpRouteValueDictionary routeDataTokens = new HttpRouteValueDictionary(dataTokens);
foreach (var constraint in routeConstraints)
{
ValidateConstraint(routeTemplate, constraint.Key, constraint.Value);
}
return new HttpRoute(routeTemplate, routeDefaults, routeConstraints, routeDataTokens, handler);
}
/// <summary>
/// Validates that a constraint is valid for an <see cref="IHttpRoute"/> created by a call
/// to the <see cref="HttpRouteCollection.CreateRoute(string, IDictionary<string, object>, IDictionary<string, object>, IDictionary<string, object>, HttpMessageHandler)"/> method.
/// </summary>
/// <param name="routeTemplate">The route template.</param>
/// <param name="name">The constraint name.</param>
/// <param name="constraint">The constraint object.</param>
/// <remarks>
/// Implement this method when deriving from <see cref="HttpRouteCollection"/> to allow contraints of
/// types other than <see cref="string"/> and <see cref="IHttpRouteConstraint"/>.
/// </remarks>
protected virtual void ValidateConstraint(string routeTemplate, string name, object constraint)
{
if (name == null)
{
throw Error.ArgumentNull("name");
}
if (constraint == null)
{
throw Error.ArgumentNull("constraint");
}
HttpRoute.ValidateConstraint(routeTemplate, name, constraint);
}
void ICollection<IHttpRoute>.Add(IHttpRoute route)
{
throw Error.NotSupported(SRResources.Route_AddRemoveWithNoKeyNotSupported, typeof(HttpRouteCollection).Name);
}
public virtual void Add(string name, IHttpRoute route)
{
if (name == null)
{
throw Error.ArgumentNull("name");
}
if (route == null)
{
throw Error.ArgumentNull("route");
}
_dictionary.Add(name, route);
_collection.Add(route);
}
public virtual void Clear()
{
_dictionary.Clear();
_collection.Clear();
}
public virtual bool Contains(IHttpRoute item)
{
if (item == null)
{
throw Error.ArgumentNull("item");
}
return _collection.Contains(item);
}
public virtual bool ContainsKey(string name)
{
if (name == null)
{
throw Error.ArgumentNull("name");
}
return _dictionary.ContainsKey(name);
}
public virtual void CopyTo(IHttpRoute[] array, int arrayIndex)
{
_collection.CopyTo(array, arrayIndex);
}
public virtual void CopyTo(KeyValuePair<string, IHttpRoute>[] array, int arrayIndex)
{
_dictionary.CopyTo(array, arrayIndex);
}
public virtual void Insert(int index, string name, IHttpRoute value)
{
if (name == null)
{
throw Error.ArgumentNull("name");
}
if (value == null)
{
throw Error.ArgumentNull("value");
}
// Check that index is valid
if (_collection[index] != null)
{
_dictionary.Add(name, value);
_collection.Insert(index, value);
}
}
bool ICollection<IHttpRoute>.Remove(IHttpRoute route)
{
throw Error.NotSupported(SRResources.Route_AddRemoveWithNoKeyNotSupported, typeof(HttpRouteCollection).Name);
}
public virtual bool Remove(string name)
{
if (name == null)
{
throw Error.ArgumentNull("name");
}
IHttpRoute value;
if (_dictionary.TryGetValue(name, out value))
{
bool dictionaryRemove = _dictionary.Remove(name);
bool collectionRemove = _collection.Remove(value);
Contract.Assert(dictionaryRemove == collectionRemove);
return dictionaryRemove;
}
return false;
}
public virtual IEnumerator<IHttpRoute> GetEnumerator()
{
return _collection.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return OnGetEnumerator();
}
protected virtual IEnumerator OnGetEnumerator()
{
return _collection.GetEnumerator();
}
public virtual bool TryGetValue(string name, out IHttpRoute route)
{
return _dictionary.TryGetValue(name, out route);
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (disposing)
{
// Creating a collection to avoid double-disposing any handlers that are shared between routes
HashSet<IDisposable> handlers = new HashSet<IDisposable>();
foreach (var route in this)
{
if (route.Handler != null)
{
handlers.Add(route.Handler);
}
}
foreach (var handler in handlers)
{
handler.Dispose();
}
}
_disposed = true;
}
}
}
}