File: SessionChannels.cs

package info (click to toggle)
mono 6.12.0.199%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,296,836 kB
  • sloc: cs: 11,181,803; xml: 2,850,076; ansic: 699,709; cpp: 123,344; perl: 59,361; javascript: 30,841; asm: 21,853; makefile: 20,405; sh: 15,009; python: 4,839; pascal: 925; sql: 859; sed: 16; php: 1
file content (157 lines) | stat: -rw-r--r-- 5,392 bytes parent folder | download | duplicates (7)
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
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------

namespace System.ServiceModel.Routing
{
    using System;
    using System.Diagnostics.CodeAnalysis;
    using System.Collections.Generic;
    using System.Runtime;
    using System.ServiceModel.Description;
    using System.ServiceModel.Channels;
    using System.ComponentModel;
    using System.Threading;

    class SessionChannels
    {
        Guid activityID;
        [Fx.Tag.SynchronizationObject]
        Dictionary<RoutingEndpointTrait, IRoutingClient> sessions;
        List<IRoutingClient> sessionList;

        [SuppressMessage(FxCop.Category.Performance, FxCop.Rule.AvoidUncalledPrivateCode, Justification = "gets called in RoutingService.ctor()")]
        public SessionChannels(Guid activityID)
        {
            this.activityID = activityID;
            this.sessions = new Dictionary<RoutingEndpointTrait, IRoutingClient>();
            this.sessionList = new List<IRoutingClient>();
        }

        void ChannelFaulted(object sender, EventArgs args)
        {
            FxTrace.Trace.SetAndTraceTransfer(this.activityID, true);
            IRoutingClient client = (IRoutingClient)sender;
            if (TD.RoutingServiceChannelFaultedIsEnabled())
            {
                TD.RoutingServiceChannelFaulted(client.Key.ToString());
            }
            this.AbortChannel(client.Key);
        }

        [SuppressMessage(FxCop.Category.Performance, FxCop.Rule.AvoidUncalledPrivateCode, Justification = "BeginClose is called by RoutingChannelExtension.AttachService")]
        public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
        {
            List<ICommunicationObject> localClients = null;

            lock (this.sessions)
            {
                if (this.sessions.Count > 0)
                {
                    localClients = this.sessionList.ConvertAll<ICommunicationObject>((client) => (ICommunicationObject)client);
                    this.sessionList.Clear();
                    this.sessions.Clear();
                }
            }

            if (localClients != null && localClients.Count > 0)
            {
                localClients.ForEach((client) =>
                {
                    if (TD.RoutingServiceClosingClientIsEnabled())
                    {
                        TD.RoutingServiceClosingClient(((IRoutingClient)client).Key.ToString());
                    }
                });
                return new CloseCollectionAsyncResult(timeout, callback, state, localClients);
            }
            else
            {
                return new CompletedAsyncResult(callback, state);
            }
        }

        public void EndClose(IAsyncResult asyncResult)
        {
            if (asyncResult is CloseCollectionAsyncResult)
            {
                CloseCollectionAsyncResult.End(asyncResult);
            }
            else
            {
                CompletedAsyncResult.End(asyncResult);
            }
        }

        internal IRoutingClient GetOrCreateClient<TContract>(RoutingEndpointTrait key, RoutingService service, bool impersonating)
        {
            IRoutingClient value;
            lock (this.sessions)
            {
                if (!this.sessions.TryGetValue(key, out value))
                {
                    //Create the client here
                    value = ClientFactory.Create(key, service, impersonating);
                    value.Faulted += ChannelFaulted;
                    this.sessions[key] = value;
                    sessionList.Add(value);
                }
            }
            return value;
        }

        public void AbortAll()
        {
            List<IRoutingClient> clients = new List<IRoutingClient>();

            lock (this.sessions)
            {
                foreach (IRoutingClient client in this.sessions.Values)
                {
                    clients.Add(client);
                }
                this.sessions.Clear();
                this.sessionList.Clear();
            }

            foreach (IRoutingClient client in clients)
            {
                RoutingUtilities.Abort((ICommunicationObject)client, client.Key);
            }
        }

        public void AbortChannel(RoutingEndpointTrait key)
        {
            IRoutingClient client;
            lock (this.sessions)
            {
                if (this.sessions.TryGetValue(key, out client))
                {
                    this.sessions.Remove(key);
                    this.sessionList.Remove(client);
                }
            }

            if (client != null)
            {
                RoutingUtilities.Abort((ICommunicationObject)client, client.Key);
            }
        }

        public IRoutingClient ReleaseChannel()
        {
            IRoutingClient client = null;
            lock (this.sessions)
            {
                int count = this.sessionList.Count;
                if (count > 0)
                {
                    client = this.sessionList[count - 1];
                    this.sessionList.RemoveAt(count - 1);
                    this.sessions.Remove(client.Key);
                }
            }
            return client;
        }
    }
}