// // HttpRequestContext.cs // // Author: // Atsushi Enomoto // // Copyright (C) 2006 Novell, Inc. http://www.novell.com // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // using System.IO; using System.Net; using System.Threading; namespace System.ServiceModel.Channels { internal class HttpRequestContext : RequestContext { class HttpRequestContextAsyncResult : IAsyncResult { AutoResetEvent wait; AsyncCallback callback; object state; bool done, waiting; TimeSpan timeout; Exception error; public HttpRequestContextAsyncResult ( HttpRequestContext context, Message msg, TimeSpan timeout, AsyncCallback callback, object state) { this.timeout = timeout; this.wait = new AutoResetEvent (false); ThreadStart ts = delegate () { try { context.ProcessReply (msg, timeout); if (callback != null) callback (this); } catch (Exception ex) { error = ex; } finally { done = true; wait.Set (); } }; Thread t = new Thread (ts); t.Start (); } public WaitHandle AsyncWaitHandle { get { return wait; } } public object AsyncState { get { return state; } } public bool CompletedSynchronously { get { return done && !waiting; } } public bool IsCompleted { get { return done; } } public void WaitEnd () { if (!done) { waiting = true; wait.WaitOne (timeout, true); } if (error != null) throw error; } } Message msg; HttpListenerContext ctx; HttpReplyChannel channel; public HttpRequestContext ( HttpReplyChannel channel, Message msg, HttpListenerContext ctx) { if (channel == null) throw new ArgumentNullException ("channel"); if (msg == null) throw new ArgumentNullException ("msg"); if (ctx == null) throw new ArgumentNullException ("ctx"); this.channel = channel; this.msg = msg; this.ctx = ctx; } public override Message RequestMessage { get { return msg; } } public HttpReplyChannel Channel { get { return channel; } } public override void Abort () { ctx.Response.Abort (); } public override IAsyncResult BeginReply ( Message msg, AsyncCallback callback, object state) { return BeginReply (msg, channel.DefaultSendTimeout, callback, state); } public override IAsyncResult BeginReply ( Message msg, TimeSpan timeout, AsyncCallback callback, object state) { return new HttpRequestContextAsyncResult (this, msg, timeout, callback, state); } public override void EndReply (IAsyncResult result) { if (result == null) throw new ArgumentNullException ("result"); HttpRequestContextAsyncResult r = result as HttpRequestContextAsyncResult; if (r == null) throw new InvalidOperationException ("Wrong IAsyncResult"); r.WaitEnd (); } public override void Reply (Message msg) { Reply (msg, channel.DefaultSendTimeout); } public override void Reply (Message msg, TimeSpan timeout) { ProcessReply (msg, timeout); } protected virtual void ProcessReply (Message msg, TimeSpan timeout) { if (msg == null) throw new ArgumentNullException ("msg"); MemoryStream ms = new MemoryStream (); channel.Encoder.WriteMessage (msg, ms); ctx.Response.ContentType = channel.Encoder.ContentType; string pname = HttpResponseMessageProperty.Name; bool suppressEntityBody = false; if (msg.Properties.ContainsKey (pname)) { HttpResponseMessageProperty hp = (HttpResponseMessageProperty) msg.Properties [pname]; string contentType = hp.Headers ["Content-Type"]; if (contentType != null) ctx.Response.ContentType = contentType; ctx.Response.Headers.Add (hp.Headers); if (hp.StatusCode != default (HttpStatusCode)) ctx.Response.StatusCode = (int) hp.StatusCode; ctx.Response.StatusDescription = hp.StatusDescription; if (hp.SuppressEntityBody) suppressEntityBody = true; } if (!suppressEntityBody) { ctx.Response.ContentLength64 = ms.Length; ctx.Response.OutputStream.Write (ms.GetBuffer (), 0, (int) ms.Length); ctx.Response.OutputStream.Flush (); } } public override void Close () { Close (channel.DefaultSendTimeout); } public override void Close (TimeSpan timeout) { // FIXME: use timeout ctx.Response.Close (); } } }