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
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System.Collections.Generic;
using System.Runtime;
using System.ServiceModel;
class InputChannel : InputQueueChannel<Message>, IInputChannel
{
EndpointAddress localAddress;
public InputChannel(ChannelManagerBase channelManager, EndpointAddress localAddress)
: base(channelManager)
{
this.localAddress = localAddress;
}
public EndpointAddress LocalAddress
{
get { return localAddress; }
}
public override T GetProperty<T>()
{
if (typeof(T) == typeof(IInputChannel))
{
return (T)(object)this;
}
T baseProperty = base.GetProperty<T>();
if (baseProperty != null)
{
return baseProperty;
}
return default(T);
}
protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
{
return new CompletedAsyncResult(callback, state);
}
protected override void OnEndOpen(IAsyncResult result)
{
CompletedAsyncResult.End(result);
}
protected override void OnOpen(TimeSpan timeout)
{
}
public virtual Message Receive()
{
return this.Receive(this.DefaultReceiveTimeout);
}
public virtual Message Receive(TimeSpan timeout)
{
if (timeout < TimeSpan.Zero)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ArgumentOutOfRangeException("timeout", timeout, SR.GetString(SR.SFxTimeoutOutOfRange0)));
this.ThrowPending();
return InputChannel.HelpReceive(this, timeout);
}
public virtual IAsyncResult BeginReceive(AsyncCallback callback, object state)
{
return this.BeginReceive(this.DefaultReceiveTimeout, callback, state);
}
public virtual IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state)
{
if (timeout < TimeSpan.Zero)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ArgumentOutOfRangeException("timeout", timeout, SR.GetString(SR.SFxTimeoutOutOfRange0)));
}
this.ThrowPending();
return InputChannel.HelpBeginReceive(this, timeout, callback, state);
}
public Message EndReceive(IAsyncResult result)
{
return InputChannel.HelpEndReceive(result);
}
public virtual bool TryReceive(TimeSpan timeout, out Message message)
{
if (timeout < TimeSpan.Zero)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ArgumentOutOfRangeException("timeout", timeout, SR.GetString(SR.SFxTimeoutOutOfRange0)));
}
this.ThrowPending();
return base.Dequeue(timeout, out message);
}
public virtual IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state)
{
if (timeout < TimeSpan.Zero)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ArgumentOutOfRangeException("timeout", timeout, SR.GetString(SR.SFxTimeoutOutOfRange0)));
}
this.ThrowPending();
return base.BeginDequeue(timeout, callback, state);
}
public virtual bool EndTryReceive(IAsyncResult result, out Message message)
{
return base.EndDequeue(result, out message);
}
public bool WaitForMessage(TimeSpan timeout)
{
if (timeout < TimeSpan.Zero)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ArgumentOutOfRangeException("timeout", timeout, SR.GetString(SR.SFxTimeoutOutOfRange0)));
}
this.ThrowPending();
return base.WaitForItem(timeout);
}
public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
{
if (timeout < TimeSpan.Zero)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ArgumentOutOfRangeException("timeout", timeout, SR.GetString(SR.SFxTimeoutOutOfRange0)));
this.ThrowPending();
return base.BeginWaitForItem(timeout, callback, state);
}
public bool EndWaitForMessage(IAsyncResult result)
{
return base.EndWaitForItem(result);
}
#region static Helpers to convert TryReceive to Receive
internal static Message HelpReceive(IInputChannel channel, TimeSpan timeout)
{
Message message;
if (channel.TryReceive(timeout, out message))
{
return message;
}
else
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateReceiveTimedOutException(channel, timeout));
}
}
internal static IAsyncResult HelpBeginReceive(IInputChannel channel, TimeSpan timeout, AsyncCallback callback, object state)
{
return new HelpReceiveAsyncResult(channel, timeout, callback, state);
}
internal static Message HelpEndReceive(IAsyncResult result)
{
return HelpReceiveAsyncResult.End(result);
}
class HelpReceiveAsyncResult : AsyncResult
{
IInputChannel channel;
TimeSpan timeout;
static AsyncCallback onReceive = Fx.ThunkCallback(new AsyncCallback(OnReceive));
Message message;
public HelpReceiveAsyncResult(IInputChannel channel, TimeSpan timeout, AsyncCallback callback, object state)
: base(callback, state)
{
this.channel = channel;
this.timeout = timeout;
IAsyncResult result = channel.BeginTryReceive(timeout, onReceive, this);
if (!result.CompletedSynchronously)
{
return;
}
HandleReceiveComplete(result);
base.Complete(true);
}
public static Message End(IAsyncResult result)
{
HelpReceiveAsyncResult thisPtr = AsyncResult.End<HelpReceiveAsyncResult>(result);
return thisPtr.message;
}
void HandleReceiveComplete(IAsyncResult result)
{
if (!this.channel.EndTryReceive(result, out this.message))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
InputChannel.CreateReceiveTimedOutException(this.channel, this.timeout));
}
}
static void OnReceive(IAsyncResult result)
{
if (result.CompletedSynchronously)
{
return;
}
HelpReceiveAsyncResult thisPtr = (HelpReceiveAsyncResult)result.AsyncState;
Exception completionException = null;
try
{
thisPtr.HandleReceiveComplete(result);
}
#pragma warning suppress 56500 // [....], transferring exception to another thread
catch (Exception e)
{
if (Fx.IsFatal(e))
{
throw;
}
completionException = e;
}
thisPtr.Complete(false, completionException);
}
}
static Exception CreateReceiveTimedOutException(IInputChannel channel, TimeSpan timeout)
{
if (channel.LocalAddress != null)
{
return new TimeoutException(SR.GetString(SR.ReceiveTimedOut, channel.LocalAddress.Uri.AbsoluteUri, timeout));
}
else
{
return new TimeoutException(SR.GetString(SR.ReceiveTimedOutNoLocalAddress, timeout));
}
}
#endregion
}
}
|