-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServiceHost.cs
251 lines (225 loc) · 7.92 KB
/
ServiceHost.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
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
/*
Copyright (c) 2011, thinktecture (http://www.thinktecture.com).
All rights reserved, comes as-is and without any warranty. Use of this
source file is governed by the license which is contained in LICENSE.TXT
in the distribution.
*/
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.ServiceModel;
using System.ServiceModel.Description;
using Thinktecture.ServiceModel.Description;
using Thinktecture.ServiceModel.Tracing;
namespace Thinktecture.ServiceModel
{
/// <summary>
/// Custom ServiceHost for attaching the extensions responsible for flattening the WSDL
/// and applying the optimized intranet hosting settings.
/// </summary>
public class ServiceHost : System.ServiceModel.ServiceHost
{
private bool alreadyInitialized;
private bool useFlatWsdl;
private Profile usageProfile;
private IList<IBootstrapTask> bootstrapTasks;
public IList<IBootstrapTask> BootstrapTasks
{
get
{
if (bootstrapTasks == null)
{
bootstrapTasks = new List<IBootstrapTask>();
}
return bootstrapTasks;
}
}
/// <summary>
/// Initializes a new instance of the <see cref="ServiceHost"/> class.
/// </summary>
protected ServiceHost()
: base()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="ServiceHost"/> class.
/// </summary>
public ServiceHost(Type serviceType, params Uri[] baseAddresses)
: base(serviceType, baseAddresses)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="ServiceHost"/> class.
/// </summary>
public ServiceHost(object singeltonInstance, params Uri[] baseAddresses)
: base(singeltonInstance, baseAddresses)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="ServiceHost"/> class.
/// </summary>
public ServiceHost(Type serviceType, Profile profile, Flattening enableFlatWsdl, params Uri[] baseAddresses)
: base(serviceType, baseAddresses)
{
useFlatWsdl = enableFlatWsdl == Flattening.Enabled ? true : false;
usageProfile = profile;
CheckConfig();
}
/// <summary>
/// Initializes a new instance of the <see cref="ServiceHost"/> class.
/// </summary>
public ServiceHost(object singeltonInstance, Profile profile, Flattening enableFlatWsdl, params Uri[] baseAddresses)
: base(singeltonInstance, baseAddresses)
{
useFlatWsdl = enableFlatWsdl == Flattening.Enabled ? true : false;
usageProfile = profile;
}
/// <summary>
/// Return the usage profile.
/// </summary>
public Profile Profile
{
get { return usageProfile; }
}
/// <summary>
/// Gets a value indicating whether the flattened WSDL is enabled.
/// </summary>
public bool FlatWsdl
{
get { return useFlatWsdl; }
}
/// <summary>
/// Loads the service description information from the configuration file and applies it to the runtime being constructed.
/// </summary>
/// <exception cref="T:System.InvalidOperationException">The description of the service hosted is null.</exception>
protected override void ApplyConfiguration()
{
CheckConfig();
}
/// <summary>
/// Initializes the runtime for the service host.
/// </summary>
/// <exception cref="T:System.InvalidOperationException">The description of the service hosted is null.</exception>
protected override void InitializeRuntime()
{
MessageSizeDetectionEncodingBindingElement.Inject(Description);
ExecuteBootstrapTasks();
base.InitializeRuntime();
BindOperationsSecondRound();
}
private void ExecuteBootstrapTasks()
{
foreach (var task in BootstrapTasks)
{
if (task != null)
{
task.Execute();
}
}
}
/// <summary>
/// Configures the <see cref="ServiceHost"/> instance appropriately.
/// </summary>
private void CheckConfig()
{
if (!alreadyInitialized)
{
base.ApplyConfiguration();
alreadyInitialized = true;
}
else
{
if (usageProfile == Profile.Intranet)
{
ChangeThrottling();
ChangeSerializer();
ChangeBindings();
}
if (useFlatWsdl)
{
AddFlatWsdl();
}
}
}
/// <summary>
/// Changes the throttling behavior.
/// </summary>
private void ChangeThrottling()
{
ServiceThrottlingBehavior throttle = Description.Behaviors.Find<ServiceThrottlingBehavior>();
if (throttle == null)
{
throttle = new ServiceThrottlingBehavior();
Description.Behaviors.Add(throttle);
}
throttle.MaxConcurrentCalls = int.MaxValue;
throttle.MaxConcurrentSessions = int.MaxValue;
}
/// <summary>
/// Changes the MaxItemsInObjectGraph quota used by the serializer.
/// </summary>
private void ChangeSerializer()
{
ServiceBehaviorAttribute serviceBehavior = Description.Behaviors.Find<ServiceBehaviorAttribute>();
Debug.Assert(serviceBehavior != null, "Could not find a reference to the ServiceBehaviorAttribute.");
serviceBehavior.MaxItemsInObjectGraph = int.MaxValue;
}
/// <summary>
/// Changes the bindings.
/// </summary>
private void ChangeBindings()
{
foreach (ServiceEndpoint endpoint in Description.Endpoints)
{
endpoint.Binding = BindingController.IncreaseBindingQuotas(endpoint.Binding);
}
}
/// <summary>
/// Attaches the flat WSDL extension.
/// </summary>
private void AddFlatWsdl()
{
foreach (ServiceEndpoint endpoint in Description.Endpoints)
{
endpoint.Behaviors.Add(new FlatWsdl());
}
}
private void BindOperationsSecondRound()
{
List<ContractDescription> visited =
new List<ContractDescription>(
Description.Endpoints.Count);
foreach (var endpoint in Description.Endpoints)
{
if (!visited.Contains(endpoint.Contract))
{
foreach (var operation in endpoint.Contract.Operations)
{
BindOperation(operation);
}
visited.Add(endpoint.Contract);
}
}
}
private void BindOperation(OperationDescription operation)
{
foreach (var behavior in operation.Behaviors)
{
if (behavior is TraceMessageSizeAttribute)
{
if (operation.Messages[0].Direction ==
MessageDirection.Input)
{
behavior.ApplyDispatchBehavior(operation,
null);
}
else
{
behavior.ApplyClientBehavior(operation,
null);
}
}
}
}
}
}