File: ChannelBuilder.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 (125 lines) | stat: -rw-r--r-- 4,977 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
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------

namespace System.ServiceModel.Channels
{
    using System.Collections.Generic;
    using System.Runtime;
    using System.ServiceModel.Dispatcher;

    class ChannelBuilder
    {
        CustomBinding binding;
        BindingContext context;
        BindingParameterCollection bindingParameters;
        Uri listenUri;

        public ChannelBuilder(BindingContext context, bool addChannelDemuxerIfRequired)
        {
            this.context = context;
            if (addChannelDemuxerIfRequired)
            {
                this.AddDemuxerBindingElement(context.RemainingBindingElements);
            }
            this.binding = new CustomBinding(context.Binding, context.RemainingBindingElements);
            this.bindingParameters = context.BindingParameters;
        }

        public ChannelBuilder(Binding binding, BindingParameterCollection bindingParameters, bool addChannelDemuxerIfRequired)
        {
            this.binding = new CustomBinding(binding);
            this.bindingParameters = bindingParameters;
            if (addChannelDemuxerIfRequired)
            {
                this.AddDemuxerBindingElement(this.binding.Elements);
            }
        }

        public ChannelBuilder(ChannelBuilder channelBuilder)
        {
            this.binding = new CustomBinding(channelBuilder.Binding);
            this.bindingParameters = channelBuilder.BindingParameters;
            if (this.binding.Elements.Find<ChannelDemuxerBindingElement>() == null)
            {
                throw Fx.AssertAndThrow("ChannelBuilder.ctor (this.binding.Elements.Find<ChannelDemuxerBindingElement>() != null)");
            }
        }

        public CustomBinding Binding
        {
            get { return this.binding; }
            set { this.binding = value; }
        }

        public BindingParameterCollection BindingParameters
        {
            get { return this.bindingParameters; }
            set { this.bindingParameters = value; }
        }

        void AddDemuxerBindingElement(BindingElementCollection elements)
        {
            if (elements.Find<ChannelDemuxerBindingElement>() == null)
            {
                // add the channel demuxer binding element right above the transport
                TransportBindingElement transport = elements.Find<TransportBindingElement>();
                if (transport == null)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.TransportBindingElementNotFound)));
                }
                // cache the context state in the demuxer so that the same context state can be provided to the transport
                // when building auxilliary channels and listeners (for ex, for security negotiation)
                elements.Insert(elements.IndexOf(transport), new ChannelDemuxerBindingElement(true));
            }
        }

        public IChannelFactory<TChannel> BuildChannelFactory<TChannel>()
        {
            if (this.context != null)
            {
                IChannelFactory<TChannel> factory = this.context.BuildInnerChannelFactory<TChannel>();
                this.context = null;
                return factory;
            }
            else
            {
                return this.binding.BuildChannelFactory<TChannel>(this.bindingParameters);
            }
        }

        public IChannelListener<TChannel> BuildChannelListener<TChannel>() where TChannel : class, IChannel
        {
            if (this.context != null)
            {
                IChannelListener<TChannel> listener = this.context.BuildInnerChannelListener<TChannel>();
                this.listenUri = listener.Uri;
                this.context = null;
                return listener;
            }
            else
            {
                return this.binding.BuildChannelListener<TChannel>(this.listenUri, this.bindingParameters);
            }
        }

        public IChannelListener<TChannel> BuildChannelListener<TChannel>(MessageFilter filter, int priority) where TChannel : class, IChannel
        {
            this.bindingParameters.Add(new ChannelDemuxerFilter(filter, priority));
            IChannelListener<TChannel> listener = this.BuildChannelListener<TChannel>();
            this.bindingParameters.Remove<ChannelDemuxerFilter>();

            return listener;
        }

        public bool CanBuildChannelFactory<TChannel>()
        {
            return this.binding.CanBuildChannelFactory<TChannel>(this.bindingParameters);
        }

        public bool CanBuildChannelListener<TChannel>() where TChannel : class, IChannel
        {
            return this.binding.CanBuildChannelListener<TChannel>(this.bindingParameters);
        }
    }
}