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
|
//----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System;
using System.ServiceModel.Activation;
using System.ServiceModel;
using System.Net;
using System.Net.Sockets;
using System.Collections.Generic;
abstract class ConnectionOrientedTransportManager<TChannelListener> : TransportManager
where TChannelListener : ConnectionOrientedTransportChannelListener
{
UriPrefixTable<TChannelListener> addressTable;
int connectionBufferSize;
TimeSpan channelInitializationTimeout;
int maxPendingConnections;
TimeSpan maxOutputDelay;
int maxPendingAccepts;
TimeSpan idleTimeout;
int maxPooledConnections;
Action messageReceivedCallback;
protected ConnectionOrientedTransportManager()
{
this.addressTable = new UriPrefixTable<TChannelListener>();
}
UriPrefixTable<TChannelListener> AddressTable
{
get { return addressTable; }
}
protected TimeSpan ChannelInitializationTimeout
{
get
{
return channelInitializationTimeout;
}
}
internal void ApplyListenerSettings(IConnectionOrientedListenerSettings listenerSettings)
{
this.connectionBufferSize = listenerSettings.ConnectionBufferSize;
this.channelInitializationTimeout = listenerSettings.ChannelInitializationTimeout;
this.maxPendingConnections = listenerSettings.MaxPendingConnections;
this.maxOutputDelay = listenerSettings.MaxOutputDelay;
this.maxPendingAccepts = listenerSettings.MaxPendingAccepts;
this.idleTimeout = listenerSettings.IdleTimeout;
this.maxPooledConnections = listenerSettings.MaxPooledConnections;
}
internal int ConnectionBufferSize
{
get
{
return this.connectionBufferSize;
}
}
internal int MaxPendingConnections
{
get
{
return this.maxPendingConnections;
}
}
internal TimeSpan MaxOutputDelay
{
get
{
return maxOutputDelay;
}
}
internal int MaxPendingAccepts
{
get
{
return this.maxPendingAccepts;
}
}
internal TimeSpan IdleTimeout
{
get { return this.idleTimeout; }
}
internal int MaxPooledConnections
{
get { return this.maxPooledConnections; }
}
internal bool IsCompatible(ConnectionOrientedTransportChannelListener channelListener)
{
if (channelListener.InheritBaseAddressSettings)
return true;
return (
(this.ChannelInitializationTimeout == channelListener.ChannelInitializationTimeout) &&
(this.ConnectionBufferSize == channelListener.ConnectionBufferSize) &&
(this.MaxPendingConnections == channelListener.MaxPendingConnections) &&
(this.MaxOutputDelay == channelListener.MaxOutputDelay) &&
(this.MaxPendingAccepts == channelListener.MaxPendingAccepts) &&
(this.idleTimeout == channelListener.IdleTimeout) &&
(this.maxPooledConnections == channelListener.MaxPooledConnections)
);
}
TChannelListener GetChannelListener(Uri via)
{
TChannelListener channelListener = null;
if (AddressTable.TryLookupUri(via, HostNameComparisonMode.StrongWildcard, out channelListener))
{
return channelListener;
}
if (AddressTable.TryLookupUri(via, HostNameComparisonMode.Exact, out channelListener))
{
return channelListener;
}
AddressTable.TryLookupUri(via, HostNameComparisonMode.WeakWildcard, out channelListener);
return channelListener;
}
internal void OnDemuxerError(Exception exception)
{
lock (ThisLock)
{
this.Fault(this.AddressTable, exception);
}
}
internal ISingletonChannelListener OnGetSingletonMessageHandler(ServerSingletonPreambleConnectionReader serverSingletonPreambleReader)
{
Uri via = serverSingletonPreambleReader.Via;
TChannelListener channelListener = GetChannelListener(via);
if (channelListener != null)
{
if (channelListener is IChannelListener<IReplyChannel>)
{
channelListener.RaiseMessageReceived();
return (ISingletonChannelListener)channelListener;
}
else
{
serverSingletonPreambleReader.SendFault(FramingEncodingString.UnsupportedModeFault);
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ProtocolException(SR.GetString(SR.FramingModeNotSupported, FramingMode.Singleton)));
}
}
else
{
serverSingletonPreambleReader.SendFault(FramingEncodingString.EndpointNotFoundFault);
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new EndpointNotFoundException(SR.GetString(SR.EndpointNotFound, via)));
}
}
internal void OnHandleServerSessionPreamble(ServerSessionPreambleConnectionReader serverSessionPreambleReader,
ConnectionDemuxer connectionDemuxer)
{
Uri via = serverSessionPreambleReader.Via;
TChannelListener channelListener = GetChannelListener(via);
if (channelListener != null)
{
ISessionPreambleHandler sessionPreambleHandler = channelListener as ISessionPreambleHandler;
if (sessionPreambleHandler != null && channelListener is IChannelListener<IDuplexSessionChannel>)
{
sessionPreambleHandler.HandleServerSessionPreamble(serverSessionPreambleReader, connectionDemuxer);
}
else
{
serverSessionPreambleReader.SendFault(FramingEncodingString.UnsupportedModeFault);
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new ProtocolException(SR.GetString(SR.FramingModeNotSupported, FramingMode.Duplex)));
}
}
else
{
serverSessionPreambleReader.SendFault(FramingEncodingString.EndpointNotFoundFault);
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new EndpointNotFoundException(SR.GetString(SR.DuplexSessionListenerNotFound, via.ToString())));
}
}
internal IConnectionOrientedTransportFactorySettings OnGetTransportFactorySettings(Uri via)
{
return GetChannelListener(via);
}
internal override void Register(TransportChannelListener channelListener)
{
AddressTable.RegisterUri(channelListener.Uri, channelListener.HostNameComparisonModeInternal,
(TChannelListener)channelListener);
channelListener.SetMessageReceivedCallback(new Action(OnMessageReceived));
}
internal override void Unregister(TransportChannelListener channelListener)
{
EnsureRegistered(AddressTable, (TChannelListener)channelListener, channelListener.HostNameComparisonModeInternal);
AddressTable.UnregisterUri(channelListener.Uri, channelListener.HostNameComparisonModeInternal);
channelListener.SetMessageReceivedCallback(null);
}
internal void SetMessageReceivedCallback(Action messageReceivedCallback)
{
this.messageReceivedCallback = messageReceivedCallback;
}
void OnMessageReceived()
{
Action callback = this.messageReceivedCallback;
if (callback != null)
{
callback();
}
}
}
}
|