HttpListener.cs :  » 2.6.4-mono-.net-core » System.Net » System » Net » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Net 
System.Net » System » Net » HttpListener.cs
//
// System.Net.HttpListener
//
// Author:
//  Gonzalo Paniagua Javier (gonzalo@novell.com)
//
// Copyright (c) 2005 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.
//

#if NET_2_0 && SECURITY_DEP

using System.Collections;
using System.Threading;
//TODO: logging
namespace System.Net{
  public sealed class HttpListener : IDisposable {
    AuthenticationSchemes auth_schemes;
    HttpListenerPrefixCollection prefixes;
    AuthenticationSchemeSelector auth_selector; 
    string realm;
    bool ignore_write_exceptions;
    bool unsafe_ntlm_auth;
    bool listening;
    bool disposed;

    Hashtable registry;   // Dictionary<HttpListenerContext,HttpListenerContext> 
    ArrayList ctx_queue;  // List<HttpListenerContext> ctx_queue;
    ArrayList wait_queue; // List<ListenerAsyncResult> wait_queue;

    public HttpListener ()
    {
      prefixes = new HttpListenerPrefixCollection (this);
      registry = new Hashtable ();
      ctx_queue = new ArrayList ();
      wait_queue = new ArrayList ();
      auth_schemes = AuthenticationSchemes.Anonymous;
    }

    // TODO: Digest, NTLM and Negotiate require ControlPrincipal
    public AuthenticationSchemes AuthenticationSchemes {
      get { return auth_schemes; }
      set {
        CheckDisposed ();
        auth_schemes = value;
      }
    }

    public AuthenticationSchemeSelector AuthenticationSchemeSelectorDelegate {
      get { return auth_selector; }
      set {
        CheckDisposed ();
        auth_selector = value;
      }
    }

    public bool IgnoreWriteExceptions {
      get { return ignore_write_exceptions; }
      set {
        CheckDisposed ();
        ignore_write_exceptions = value;
      }
    }

    public bool IsListening {
      get { return listening; }
    }

    public static bool IsSupported {
      get { return true; }
    }

    public HttpListenerPrefixCollection Prefixes {
      get {
        CheckDisposed ();
        return prefixes;
      }
    }

    // TODO: use this
    public string Realm {
      get { return realm; }
      set {
        CheckDisposed ();
        realm = value;
      }
    }

    [MonoTODO ("Support for NTLM needs some loving.")]
    public bool UnsafeConnectionNtlmAuthentication {
      get { return unsafe_ntlm_auth; }
      set {
        CheckDisposed ();
        unsafe_ntlm_auth = value;
      }
    }

    public void Abort ()
    {
      if (disposed)
        return;

      if (!listening) {
        return;
      }

      Close (true);
    }

    public void Close ()
    {
      if (disposed)
        return;

      if (!listening) {
        disposed = true;
        return;
      }

      Close (false);
      disposed = true;
    }

    void Close (bool force)
    {
      CheckDisposed ();
      EndPointManager.RemoveListener (this);
      Cleanup (force);
    }

    void Cleanup (bool close_existing)
    {
      lock (registry) {
        if (close_existing) {
          foreach (HttpListenerContext context in registry.Keys) {
            context.Connection.Close ();
          }
          registry.Clear (); // Just in case.
        }

        lock (ctx_queue) {
          foreach (HttpListenerContext context in ctx_queue)
            context.Connection.Close ();

          ctx_queue.Clear ();
        }

        lock (wait_queue) {
          foreach (ListenerAsyncResult ares in wait_queue) {
            ares.Complete ("Listener was closed.");
          }
          wait_queue.Clear ();
        }
      }
    }

    public IAsyncResult BeginGetContext (AsyncCallback callback, Object state)
    {
      CheckDisposed ();
      if (!listening)
        throw new InvalidOperationException ("Please, call Start before using this method.");

      ListenerAsyncResult ares = new ListenerAsyncResult (callback, state);

      // lock wait_queue early to avoid race conditions
      lock (wait_queue) {
        lock (ctx_queue) {
          HttpListenerContext ctx = GetContextFromQueue ();
          if (ctx != null) {
            ares.Complete (ctx, true);
            return ares;
          }
        }

        wait_queue.Add (ares);
      }

      return ares;
    }

    public HttpListenerContext EndGetContext (IAsyncResult asyncResult)
    {
      CheckDisposed ();
      if (asyncResult == null)
        throw new ArgumentNullException ("asyncResult");

      ListenerAsyncResult ares = asyncResult as ListenerAsyncResult;
      if (ares == null)
        throw new ArgumentException ("Wrong IAsyncResult.", "asyncResult");

      if (!ares.IsCompleted)
        ares.AsyncWaitHandle.WaitOne ();

      lock (wait_queue) {
        int idx = wait_queue.IndexOf (ares);
        if (idx >= 0)
          wait_queue.RemoveAt (idx);
      }

      HttpListenerContext context = ares.GetContext ();
      context.ParseAuthentication (SelectAuthenticationScheme (context));
      return context; // This will throw on error.
    }

    internal AuthenticationSchemes SelectAuthenticationScheme (HttpListenerContext context)
    {
      if (AuthenticationSchemeSelectorDelegate != null)
        return AuthenticationSchemeSelectorDelegate (context.Request);
      else
        return auth_schemes;
    }

    public HttpListenerContext GetContext ()
    {
      // The prefixes are not checked when using the async interface!?
      if (prefixes.Count == 0)
        throw new InvalidOperationException ("Please, call AddPrefix before using this method.");

      IAsyncResult ares = BeginGetContext (null, null);
      return EndGetContext (ares);
    }

    public void Start ()
    {
      CheckDisposed ();
      if (listening)
        return;

      EndPointManager.AddListener (this);
      listening = true;
    }

    public void Stop ()
    {
      CheckDisposed ();
      listening = false;
      Close (false);
    }

    void IDisposable.Dispose ()
    {
      if (disposed)
        return;

      Close (true); //TODO: Should we force here or not?
      disposed = true;
    }

    internal void CheckDisposed ()
    {
      if (disposed)
        throw new ObjectDisposedException (GetType ().ToString ());
    }

    // Must be called with a lock on ctx_queue
    HttpListenerContext GetContextFromQueue ()
    {
      if (ctx_queue.Count == 0)
        return null;

      HttpListenerContext context = (HttpListenerContext) ctx_queue [0];
      ctx_queue.RemoveAt (0);
      return context;
    }

    internal void RegisterContext (HttpListenerContext context)
    {
      try {
        Monitor.Enter (registry);
        registry [context] = context;
        Monitor.Enter (wait_queue);
        Monitor.Enter (ctx_queue);
        if (wait_queue.Count == 0) {
          ctx_queue.Add (context);
        } else {
          ListenerAsyncResult ares = (ListenerAsyncResult) wait_queue [0];
          wait_queue.RemoveAt (0);
          ares.Complete (context);
        }
      } finally {
        Monitor.Exit (ctx_queue);
        Monitor.Exit (wait_queue);
        Monitor.Exit (registry);
      }
    }

    internal void UnregisterContext (HttpListenerContext context)
    {
      try {
        Monitor.Enter (registry);
        Monitor.Enter (ctx_queue);
        int idx = ctx_queue.IndexOf (context);
        if (idx >= 0)
          ctx_queue.RemoveAt (idx);
        registry.Remove (context);
      } finally {
        Monitor.Exit (ctx_queue);
        Monitor.Exit (registry);
      }
    }
  }
}
#endif

www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.