File: PeerService.cs

package info (click to toggle)
mono 4.6.2.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 778,148 kB
  • ctags: 914,052
  • sloc: cs: 5,779,509; xml: 2,773,713; ansic: 432,645; sh: 14,749; makefile: 12,361; perl: 2,488; python: 1,434; cpp: 849; asm: 531; sql: 95; sed: 16; php: 1
file content (349 lines) | stat: -rw-r--r-- 14,468 bytes parent folder | download | duplicates (9)
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
346
347
348
349
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Channels
{
    using System.Collections.Generic;
    using System.Collections.ObjectModel;
    using System.Diagnostics;
    using System.Net;
    using System.Runtime;
    using System.ServiceModel;
    using System.ServiceModel.Description;
    using System.ServiceModel.Diagnostics;
    using System.ServiceModel.Dispatcher;

    // What the connector interface needs to looks like
    interface IPeerConnectorContract
    {
        void Connect(IPeerNeighbor neighbor, ConnectInfo connectInfo);
        void Disconnect(IPeerNeighbor neighbor, DisconnectInfo disconnectInfo);
        void Refuse(IPeerNeighbor neighbor, RefuseInfo refuseInfo);
        void Welcome(IPeerNeighbor neighbor, WelcomeInfo welcomeInfo);
    }

    // Implemented by flooder / service uses this to delegate service invocations
    interface IPeerFlooderContract<TFloodContract, TLinkContract>
    {
        //invoked by the peerservice
        IAsyncResult OnFloodedMessage(IPeerNeighbor neighbor, TFloodContract floodedInfo, AsyncCallback callback, object state);
        void EndFloodMessage(IAsyncResult result);
        void ProcessLinkUtility(IPeerNeighbor neighbor, TLinkContract utilityInfo);
    }

    // Class that implements IPeerService contract for incoming neighbor sessions and messages.
    // WARNING: This class is not synchronized. Expects the using class to synchronize access
    [ServiceBehavior(
     ConcurrencyMode = ConcurrencyMode.Multiple,
     InstanceContextMode = InstanceContextMode.Single,
     UseSynchronizationContext = false)]
    class PeerService : IPeerService, IServiceBehavior, IChannelInitializer
    {
        public delegate bool ChannelCallback(IClientChannel channel);
        public delegate IPeerNeighbor GetNeighborCallback(IPeerProxy channel);

        Binding binding;
        PeerNodeConfig config;
        ChannelCallback newChannelCallback;
        GetNeighborCallback getNeighborCallback;
        ServiceHost serviceHost;                    // To listen for incoming neighbor sessions
        IPeerConnectorContract connector;
        IPeerFlooderContract<Message, UtilityInfo> flooder;
        IPeerNodeMessageHandling messageHandler;

        public PeerService(PeerNodeConfig config,
                            ChannelCallback channelCallback,
                            GetNeighborCallback getNeighborCallback,
                            Dictionary<Type, object> services)
            : this(config, channelCallback, getNeighborCallback, services, null) { }
        public PeerService(PeerNodeConfig config,
                            ChannelCallback channelCallback,
                            GetNeighborCallback getNeighborCallback,
                            Dictionary<Type, object> services,
                            IPeerNodeMessageHandling messageHandler)
        {
            this.config = config;
            this.newChannelCallback = channelCallback;
            Fx.Assert(getNeighborCallback != null, "getNeighborCallback must be passed to PeerService constructor");
            this.getNeighborCallback = getNeighborCallback;
            this.messageHandler = messageHandler;

            if (services != null)
            {
                object reply = null;
                services.TryGetValue(typeof(IPeerConnectorContract), out reply);
                connector = reply as IPeerConnectorContract;
                Fx.Assert(connector != null, "PeerService must be created with a connector implementation");
                reply = null;
                services.TryGetValue(typeof(IPeerFlooderContract<Message, UtilityInfo>), out reply);
                flooder = reply as IPeerFlooderContract<Message, UtilityInfo>;
                Fx.Assert(flooder != null, "PeerService must be created with a flooder implementation");
            }
            this.serviceHost = new ServiceHost(this);

            // Add throttling            
            ServiceThrottlingBehavior throttle = new ServiceThrottlingBehavior();
            throttle.MaxConcurrentCalls = this.config.MaxPendingIncomingCalls;
            throttle.MaxConcurrentSessions = this.config.MaxConcurrentSessions;
            this.serviceHost.Description.Behaviors.Add(throttle);
        }

        public void Abort()
        {
            this.serviceHost.Abort();
        }

        public Binding Binding
        {
            get { return this.binding; }
        }

        // Create the binding using user specified config. The stacking is 
        // BinaryMessageEncoder/TCP
        void CreateBinding()
        {
            Collection<BindingElement> bindingElements = new Collection<BindingElement>();
            BindingElement security = this.config.SecurityManager.GetSecurityBindingElement();
            if (security != null)
            {
                bindingElements.Add(security);
            }

            TcpTransportBindingElement transport = new TcpTransportBindingElement();
            transport.MaxReceivedMessageSize = this.config.MaxReceivedMessageSize;
            transport.MaxBufferPoolSize = this.config.MaxBufferPoolSize;
            transport.TeredoEnabled = true;

            MessageEncodingBindingElement encoder = null;
            if (messageHandler != null)
                encoder = messageHandler.EncodingBindingElement;

            if (encoder == null)
            {
                BinaryMessageEncodingBindingElement bencoder = new BinaryMessageEncodingBindingElement();
                this.config.ReaderQuotas.CopyTo(bencoder.ReaderQuotas);
                bindingElements.Add(bencoder);
            }
            else
            {
                bindingElements.Add(encoder);
            }

            bindingElements.Add(transport);

            this.binding = new CustomBinding(bindingElements);
            this.binding.ReceiveTimeout = TimeSpan.MaxValue;
        }

        // Returns the address that the serviceHost is listening on.
        public EndpointAddress GetListenAddress()
        {
            IChannelListener listener = this.serviceHost.ChannelDispatchers[0].Listener;
            return new EndpointAddress(listener.Uri, listener.GetProperty<EndpointIdentity>());
        }

        IPeerNeighbor GetNeighbor()
        {
            IPeerNeighbor neighbor = (IPeerNeighbor)getNeighborCallback(OperationContext.Current.GetCallbackChannel<IPeerProxy>());

            if (neighbor == null || neighbor.State == PeerNeighborState.Closed)
            {
                if (DiagnosticUtility.ShouldTraceWarning)
                {
                    TraceUtility.TraceEvent(TraceEventType.Warning, TraceCode.PeerNeighborNotFound,
                        SR.GetString(SR.TraceCodePeerNeighborNotFound),
                        new PeerNodeTraceRecord(config.NodeId),
                        OperationContext.Current.IncomingMessage);
                }
                return null;
            }

            if (DiagnosticUtility.ShouldTraceVerbose)
            {
                PeerNeighborState state = neighbor.State;

                PeerNodeAddress listenAddr = null;
                IPAddress connectIPAddr = null;

                if (state >= PeerNeighborState.Opened && state <= PeerNeighborState.Connected)
                {
                    listenAddr = config.GetListenAddress(true);
                    connectIPAddr = config.ListenIPAddress;
                }

                PeerNeighborTraceRecord record = new PeerNeighborTraceRecord(neighbor.NodeId,
                    this.config.NodeId, listenAddr, connectIPAddr, neighbor.GetHashCode(),
                    neighbor.IsInitiator, state.ToString(), null, null,
                    OperationContext.Current.IncomingMessage.Headers.Action);

                TraceUtility.TraceEvent(TraceEventType.Verbose, TraceCode.PeerNeighborMessageReceived, SR.GetString(SR.TraceCodePeerNeighborMessageReceived), record, this, null);
            }

            return neighbor;
        }

        public void Open(TimeSpan timeout)
        {
            // Create the neighbor binding
            CreateBinding();
            this.serviceHost.Description.Endpoints.Clear();
            ServiceEndpoint endPoint = this.serviceHost.AddServiceEndpoint(typeof(IPeerService), this.binding, config.GetMeshUri());
            endPoint.ListenUri = config.GetSelfUri();
            endPoint.ListenUriMode = (this.config.Port > 0) ? ListenUriMode.Explicit : ListenUriMode.Unique;

            /*
                Uncomment this to allow the retrieval of metadata 
                using the command:
                    \binaries.x86chk\svcutil http://localhost /t:metadata

                        ServiceMetadataBehavior mex = new ServiceMetadataBehavior();
                        mex.HttpGetEnabled = true;
                        mex.HttpGetUrl = new Uri("http://localhost");
                        mex.HttpsGetEnabled = true;
                        mex.HttpsGetUrl = new Uri("https://localhost");
                        this.serviceHost.Description.Behaviors.Add(mex);
            */
            this.config.SecurityManager.ApplyServiceSecurity(this.serviceHost.Description);
            this.serviceHost.Open(timeout);

            if (DiagnosticUtility.ShouldTraceInformation)
            {
                TraceUtility.TraceEvent(TraceEventType.Information, TraceCode.PeerServiceOpened,
                    SR.GetString(SR.TraceCodePeerServiceOpened, this.GetListenAddress()), this);
            }
        }

        //
        // IContractBehavior and IChannelInitializer implementation. 
        // Used to register for incoming channel notification.
        //
        void IServiceBehavior.Validate(ServiceDescription description, ServiceHostBase serviceHost)
        {
        }

        void IServiceBehavior.AddBindingParameters(ServiceDescription description, ServiceHostBase serviceHost, Collection<ServiceEndpoint> endpoints, BindingParameterCollection parameters)
        {
        }

        void IServiceBehavior.ApplyDispatchBehavior(ServiceDescription description, ServiceHostBase serviceHost)
        {
            for (int i = 0; i < serviceHost.ChannelDispatchers.Count; i++)
            {
                ChannelDispatcher channelDispatcher = serviceHost.ChannelDispatchers[i] as ChannelDispatcher;
                if (channelDispatcher != null)
                {

                    bool addedChannelInitializer = false;
                    foreach (EndpointDispatcher endpointDispatcher in channelDispatcher.Endpoints)
                    {
                        if (!endpointDispatcher.IsSystemEndpoint)
                        {
                            if (!addedChannelInitializer)
                            {
                                channelDispatcher.ChannelInitializers.Add(this);
                                addedChannelInitializer = true;
                            }
                            endpointDispatcher.DispatchRuntime.OperationSelector = new OperationSelector(this.messageHandler);

                        }
                    }
                }
            }
        }

        void IChannelInitializer.Initialize(IClientChannel channel)
        {
            newChannelCallback(channel);
        }

        void IPeerServiceContract.Connect(ConnectInfo connectInfo)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor != null)
            {
                connector.Connect(neighbor, connectInfo);
            }
        }

        void IPeerServiceContract.Disconnect(DisconnectInfo disconnectInfo)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor != null)
            {
                connector.Disconnect(neighbor, disconnectInfo);
            }
        }

        void IPeerServiceContract.Refuse(RefuseInfo refuseInfo)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor != null)
            {
                connector.Refuse(neighbor, refuseInfo);
            }
        }

        void IPeerServiceContract.Welcome(WelcomeInfo welcomeInfo)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor != null)
            {
                connector.Welcome(neighbor, welcomeInfo);
            }
        }

        IAsyncResult IPeerServiceContract.BeginFloodMessage(Message floodedInfo, AsyncCallback callback, object state)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor != null)
            {
                return flooder.OnFloodedMessage(neighbor, floodedInfo, callback, state);
            }
            else
                return new CompletedAsyncResult(callback, state);
        }

        void IPeerServiceContract.EndFloodMessage(IAsyncResult result)
        {
            flooder.EndFloodMessage(result);
        }

        void IPeerServiceContract.LinkUtility(UtilityInfo utilityInfo)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor != null)
            {
                flooder.ProcessLinkUtility(neighbor, utilityInfo);
            }
        }

        Message IPeerServiceContract.ProcessRequestSecurityToken(Message message)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor == null)
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ObjectDisposedException(typeof(IPeerNeighbor).ToString()));
            Message reply = this.config.SecurityManager.ProcessRequest(neighbor, message);
            if (reply == null)
            {
                OperationContext current = OperationContext.Current;
                current.RequestContext.Close();
                current.RequestContext = null;
            }
            return reply;
        }

        void IPeerServiceContract.Fault(Message message)
        {
            IPeerNeighbor neighbor = GetNeighbor();
            if (neighbor == null)
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ObjectDisposedException(typeof(IPeerNeighbor).ToString()));
            neighbor.Abort(PeerCloseReason.Faulted, PeerCloseInitiator.RemoteNode);
        }

        void IPeerServiceContract.Ping(Message message)
        {
        }


    }
}