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
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System;
using System.Runtime;
using System.ServiceModel;
using System.ServiceModel.Security;
class PeerMessageDispatcher<ChannelInterfaceType, TChannel> : CommunicationObject
where ChannelInterfaceType : class, IChannel
where TChannel : InputQueueChannel<Message>
{
public class PeerMessageQueueAdapter
{
SingletonChannelAcceptor<ChannelInterfaceType, TChannel, Message> singletonChannelAcceptor;
InputQueueChannel<Message> inputQueueChannel;
public PeerMessageQueueAdapter(SingletonChannelAcceptor<ChannelInterfaceType, TChannel, Message> singletonChannelAcceptor)
{
this.singletonChannelAcceptor = singletonChannelAcceptor;
}
public PeerMessageQueueAdapter(InputQueueChannel<Message> inputQueueChannel)
{
this.inputQueueChannel = inputQueueChannel;
}
public void EnqueueAndDispatch(Message message, Action callback)
{
if (singletonChannelAcceptor != null)
{
singletonChannelAcceptor.Enqueue(message, callback);
}
else if (inputQueueChannel != null)
{
inputQueueChannel.EnqueueAndDispatch(message, callback);
}
}
}
Uri via;
EndpointAddress to;
SecurityProtocol securityProtocol;
PeerNodeImplementation peerNode;
PeerMessageQueueAdapter queueHandler;
ChannelManagerBase channelManager;
PeerQuotaHelper quotaHelper = new PeerQuotaHelper(Int32.MaxValue);
bool registered;
public PeerMessageDispatcher(PeerMessageQueueAdapter queueHandler, PeerNodeImplementation peerNode, ChannelManagerBase channelManager, EndpointAddress to, Uri via)
{
PeerNodeImplementation.ValidateVia(via);
this.queueHandler = queueHandler;
this.peerNode = peerNode;
this.to = to;
this.via = via;
this.channelManager = channelManager;
EndpointAddress filterTo = null;
this.securityProtocol = ((IPeerFactory)channelManager).SecurityManager.CreateSecurityProtocol<ChannelInterfaceType>(to, ServiceDefaults.SendTimeout);
if (typeof(IDuplexChannel).IsAssignableFrom(typeof(ChannelInterfaceType)))
filterTo = to;
//Register this handler
PeerMessageFilter[] filters = new PeerMessageFilter[] { new PeerMessageFilter(via, filterTo) };
peerNode.RegisterMessageFilter(this, this.via, filters, (ITransportFactorySettings)this.channelManager,
new PeerNodeImplementation.MessageAvailableCallback(OnMessageAvailable), securityProtocol);
registered = true;
}
protected override TimeSpan DefaultCloseTimeout
{
get { return channelManager.InternalCloseTimeout; }
}
protected override TimeSpan DefaultOpenTimeout
{
get { return channelManager.InternalOpenTimeout; }
}
public SecurityProtocol SecurityProtocol
{
get { return securityProtocol; }
}
protected override void OnAbort()
{
}
protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
{
this.OnClose(timeout);
return new CompletedAsyncResult(callback, state);
}
protected override void OnEndClose(IAsyncResult result)
{
CompletedAsyncResult.End(result);
}
protected override void OnClose(TimeSpan timeout)
{
Unregister(true);
}
internal void Unregister()
{
Unregister(false);
}
internal void Unregister(bool release)
{
PeerNodeImplementation node = this.peerNode;
if (node != null)
{
if (registered)
{
node.UnregisterMessageFilter(this, via);
registered = false;
}
if (release)
node.Release();
}
}
protected override void OnOpen(TimeSpan timeout)
{
}
protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
{
return new CompletedAsyncResult(callback, state);
}
protected override void OnEndOpen(IAsyncResult result)
{
CompletedAsyncResult.End(result);
}
public void OnMessageAvailable(Message message)
{
quotaHelper.ReadyToEnqueueItem();
queueHandler.EnqueueAndDispatch(message, quotaHelper.ItemDequeued);
}
}
class PeerMessageFilter
{
Uri via;
Uri actingAs;
public PeerMessageFilter(Uri via) : this(via, null) { }
public PeerMessageFilter(Uri via, EndpointAddress to)
{
Fx.Assert(via != null, "PeerMessageFilter via can not be set to null");
this.via = via;
if (to != null)
this.actingAs = to.Uri;
}
public bool Match(Uri peerVia, Uri toCond)
{
bool result = false;
if (peerVia == null)
{
result = false;
}
else if (Uri.Compare(this.via, peerVia,
(UriComponents.Scheme | UriComponents.UserInfo | UriComponents.Host | UriComponents.Port | UriComponents.Path),
UriFormat.SafeUnescaped, StringComparison.OrdinalIgnoreCase) != 0)
{
result = false;
}
else if (this.actingAs != null)
{
result = Uri.Compare(this.actingAs, toCond,
(UriComponents.Scheme | UriComponents.UserInfo | UriComponents.Host | UriComponents.Port | UriComponents.Path),
UriFormat.SafeUnescaped, StringComparison.OrdinalIgnoreCase) == 0;
}
else
result = true;
return result;
}
}
}
|