2010-07-05 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Channels.Http / HttpListenerManager.cs
1 //
2 // HttpListenerManager.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2010 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.Linq;
32 using System.Net;
33 using System.Net.Security;
34 using System.ServiceModel;
35 using System.ServiceModel.Channels;
36 using System.ServiceModel.Description;
37 using System.ServiceModel.Dispatcher;
38 using System.ServiceModel.Security;
39 using System.Text;
40 using System.Threading;
41
42 namespace System.ServiceModel.Channels.Http
43 {
44         internal abstract class HttpListenerManager
45         {
46                 protected HttpListenerManager ()
47                 {
48                         Entries = new List<HttpChannelListenerEntry> ();
49                 }
50
51                 public List<HttpChannelListenerEntry> Entries { get; private set; }
52
53                 public abstract void RegisterListener (ChannelDispatcher channel, TimeSpan timeout);
54                 public abstract void UnregisterListener (ChannelDispatcher channel, TimeSpan timeout);
55
56                 protected void RegisterListenerCommon (ChannelDispatcher channel, TimeSpan timeout)
57                 {
58                         Entries.Add (new HttpChannelListenerEntry (channel, new AutoResetEvent (false)));
59
60                         Entries.Sort (HttpChannelListenerEntry.CompareEntries);
61                 }
62
63                 protected void UnregisterListenerCommon (ChannelDispatcher channel, TimeSpan timeout)
64                 {
65                         var entry = Entries.First (e => e.ChannelDispatcher == channel);
66                         Entries.Remove (entry);
67
68                         entry.WaitHandle.Set (); // make sure to finish pending requests.
69                 }
70
71                 public void ProcessNewContext (HttpContextInfo ctxi)
72                 {
73                         var ce = SelectChannel (ctxi);
74                         if (ce == null)
75                                 throw new InvalidOperationException ("HttpListenerContext does not match any of the registered channels");
76                         ce.ContextQueue.Enqueue (ctxi);
77                         ce.WaitHandle.Set ();
78                 }
79
80                 HttpChannelListenerEntry SelectChannel (HttpContextInfo ctx)
81                 {
82                         foreach (var e in Entries)
83                                 if (e.FilterHttpContext (ctx))
84                                         return e;
85                         return null;
86                 }
87
88                 public bool TryDequeueRequest (ChannelDispatcher channel, TimeSpan timeout, out HttpContextInfo context)
89                 {
90                         DateTime start = DateTime.Now;
91
92                         context = null;
93                         var ce = Entries.First (e => e.ChannelDispatcher == channel);
94                         lock (ce.RetrieverLock) {
95                                 var q = ce.ContextQueue;
96                                 if (q.Count == 0) {
97                                         bool ret = ce.WaitHandle.WaitOne (timeout);
98                                         return ret && TryDequeueRequest (channel, timeout - (DateTime.Now - start), out context); // recurse, am lazy :/
99                                 }
100                                 context = q.Dequeue ();
101                                 return true;
102                         }
103                 }
104         }
105
106         internal class HttpStandaloneListenerManager : HttpListenerManager
107         {
108                 public HttpStandaloneListenerManager (Uri uri)
109                 {
110                         var l = new HttpListener ();
111
112                         string uriString = uri.ToString ();
113                         if (!uriString.EndsWith ("/", StringComparison.Ordinal))
114                                 uriString += "/"; // HttpListener requires this mess.
115
116                         l.Prefixes.Add (uriString);
117
118                         this.listener = l;
119                 }
120                 
121                 HttpListener listener;
122
123                 Thread loop;
124
125                 // FIXME: use timeout
126                 public override void RegisterListener (ChannelDispatcher channel, TimeSpan timeout)
127                 {
128                         RegisterListenerCommon (channel, timeout);
129
130                         if (Entries.Count != 1)
131                                 return;
132
133                         // Start here. It is shared between channel listeners
134                         // that share the same listen Uri. So there is no other appropriate place.
135 #if true
136                         loop = new Thread (new ThreadStart (delegate {
137                                 listener.Start ();
138                                 try {
139                                         while (true)
140                                                 ProcessNewContext (listener.GetContext ());
141                                 } catch (ThreadAbortException) {
142                                         Thread.ResetAbort ();
143                                 }
144                                 listener.Stop ();
145                         }));
146                         loop.Start ();
147 #else
148                         listener.BeginGetContext (GetContextCompleted, null);
149 #endif
150                 }
151
152                 // FIXME: use timeout
153                 public override void UnregisterListener (ChannelDispatcher channel, TimeSpan timeout)
154                 {
155                         UnregisterListenerCommon (channel, timeout);
156
157                         // stop the server if there is no more registered listener.
158                         if (Entries.Count > 0)
159                                 return;
160
161 #if true
162                         loop.Abort ();
163 #else
164                         this.listener.Stop ();
165 #endif
166                 }
167                 
168                 void GetContextCompleted (IAsyncResult result)
169                 {
170                         var ctx = listener.EndGetContext (result);
171                         ProcessNewContext (ctx);
172                         // start another listening
173                         listener.BeginGetContext (GetContextCompleted, null);
174                 }
175
176                 void ProcessNewContext (HttpListenerContext ctx)
177                 {
178                         if (ctx == null)
179                                 return;
180                         ProcessNewContext (new HttpStandaloneContextInfo (ctx));
181                 }
182         }
183
184         internal class AspNetHttpListenerManager : HttpListenerManager
185         {
186                 public AspNetHttpListenerManager (Uri uri)
187                 {
188                 }
189
190                 public override void RegisterListener (ChannelDispatcher channel, TimeSpan timeout)
191                 {
192                         RegisterListenerCommon (channel, timeout);
193                 }
194
195                 public override void UnregisterListener (ChannelDispatcher channel, TimeSpan timeout)
196                 {
197                         UnregisterListenerCommon (channel, timeout);
198                 }
199         }
200 }
201