a1aeca44f00113d3e74ace38cf850cca39dacc0d
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels / HttpChannelListener.cs
1 //
2 // HttpChannelListener.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28 using System;
29 using System.Collections.Generic;
30 using System.Collections.ObjectModel;
31 using System.Net;
32 using System.Net.Security;
33 using System.ServiceModel;
34 using System.ServiceModel.Description;
35 using System.ServiceModel.Security;
36 using System.Text;
37
38 namespace System.ServiceModel.Channels
39 {
40         internal class HttpSimpleChannelListener<TChannel> : HttpChannelListenerBase<TChannel>
41                 where TChannel : class, IChannel
42         {
43                 HttpListenerManager<TChannel> httpChannelManager;
44
45                 public HttpSimpleChannelListener (HttpTransportBindingElement source,
46                         BindingContext context)
47                         : base (source, context)
48                 {
49                 }
50
51                 public HttpListener Http {
52                         get {  return httpChannelManager.HttpListener; }
53                 }
54
55                 protected override TChannel CreateChannel (TimeSpan timeout)
56                 {
57                         if (typeof (TChannel) == typeof (IReplyChannel))
58                                 return (TChannel) (object) new HttpSimpleReplyChannel ((HttpSimpleChannelListener<IReplyChannel>) (object) this);
59
60                         // FIXME: implement more
61                         throw new NotImplementedException ();
62                 }
63
64                 protected override void OnOpen (TimeSpan timeout)
65                 {
66                         base.OnOpen (timeout);
67                         StartListening (timeout);
68                 }
69
70                 protected override void OnClose (TimeSpan timeout)
71                 {
72                         base.OnClose (timeout);
73                         httpChannelManager.Stop ();
74                 }
75
76                 void StartListening (TimeSpan timeout)
77                 {
78                         httpChannelManager = new HttpListenerManager<TChannel> (this);
79                         httpChannelManager.Open (timeout);
80                 }
81         }
82
83         internal class AspNetChannelListener<TChannel> : HttpChannelListenerBase<TChannel>
84                 where TChannel : class, IChannel
85         {
86                 public AspNetChannelListener (HttpTransportBindingElement source,
87                         BindingContext context)
88                         : base (source, context)
89                 {
90                 }
91
92                 protected override TChannel CreateChannel (TimeSpan timeout)
93                 {
94                         if (typeof (TChannel) == typeof (IReplyChannel))
95                                 return (TChannel) (object) new AspNetReplyChannel ((AspNetChannelListener<IReplyChannel>) (object) this);
96
97                         // FIXME: implement more
98                         throw new NotImplementedException ();
99                 }
100         }
101
102         internal abstract class HttpChannelListenerBase<TChannel> : InternalChannelListenerBase<TChannel>
103                 where TChannel : class, IChannel
104         {
105                 HttpTransportBindingElement source;
106                 BindingContext context;
107                 Uri listen_uri;
108                 List<TChannel> channels = new List<TChannel> ();
109                 MessageEncoder encoder;
110
111                 public HttpChannelListenerBase (HttpTransportBindingElement source,
112                         BindingContext context)
113                         : base (context.Binding)
114                 {
115
116                         // FIXME: consider ListenUriMode
117                         // FIXME: there should be some way to post-provide Uri in case of null listenerUri in context.
118                         listen_uri = context.ListenUriBaseAddress != null ?
119                                 new Uri (context.ListenUriBaseAddress, context.ListenUriRelativeAddress) : null;
120                         foreach (BindingElement be in context.RemainingBindingElements) {
121                                 MessageEncodingBindingElement mbe = be as MessageEncodingBindingElement;
122                                 if (mbe != null) {
123                                         encoder = CreateEncoder<TChannel> (mbe);
124                                         break;
125                                 }
126                         }
127                         if (encoder == null)
128                                 encoder = new TextMessageEncoder (MessageVersion.Default, Encoding.UTF8);
129                 }
130
131                 public MessageEncoder MessageEncoder {
132                         get { return encoder; }
133                 }
134
135                 public override Uri Uri {
136                         get { return listen_uri; }
137                 }
138
139                 protected IList<TChannel> Channels {
140                         get { return channels; }
141                 }
142
143                 protected override TChannel OnAcceptChannel (TimeSpan timeout)
144                 {
145                         TChannel ch = CreateChannel (timeout);
146                         Channels.Add (ch);
147                         return ch;
148                 }
149
150                 protected abstract TChannel CreateChannel (TimeSpan timeout);
151
152                 protected override bool OnWaitForChannel (TimeSpan timeout)
153                 {
154                         throw new NotImplementedException ();
155                 }
156
157                 [MonoTODO ("find out what to do here.")]
158                 protected override void OnAbort ()
159                 {
160                 }
161
162                 protected override void OnOpen (TimeSpan timeout)
163                 {
164                 }
165
166                 protected override void OnClose (TimeSpan timeout)
167                 {
168                         foreach (TChannel ch in Channels)
169                                 ch.Close(timeout);
170                 }
171         }
172 }