2010-06-29 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / class / System / System.Net.Configuration / ConnectionManagementHandler.cs
index a7903610e99c212f3a2a70e1d2c336c971ffa6b8..42a0d5afb7583832643a0cadd4e791a2d6f0c458 100644 (file)
@@ -7,19 +7,46 @@
 // (C) 2003 Ximian, Inc (http://www.ximian.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.Collections;
 using System.Configuration;
+#if (XML_DEP)
 using System.Xml;
+#else
+using XmlNode = System.Object;
+#endif
 
 namespace System.Net.Configuration
 {
        class ConnectionManagementData
        {
                Hashtable data; // key -> address, value -> maxconnections
+               const int defaultMaxConnections = 2;
                
                public ConnectionManagementData (object parent)
                {
-                       data = new Hashtable ();
+                       data = new Hashtable (CaseInsensitiveHashCodeProvider.DefaultInvariant,
+                                             CaseInsensitiveComparer.DefaultInvariant);
                        if (parent != null && parent is ConnectionManagementData) {
                                ConnectionManagementData p = (ConnectionManagementData) parent;
                                foreach (string k in p.data.Keys)
@@ -35,6 +62,11 @@ namespace System.Net.Configuration
                        data [address] = UInt32.Parse (nconns);
                }
 
+               public void Add (string address, int nconns)
+               {
+                       data [address] = (uint) nconns;
+               }
+
                public void Remove (string address)
                {
                        // Removing non-existent address is fine.
@@ -46,6 +78,18 @@ namespace System.Net.Configuration
                        data.Clear ();
                }
 
+               public uint GetMaxConnections (string hostOrIP)
+               {
+                       object o = data [hostOrIP];
+                       if (o == null)
+                               o = data ["*"];
+
+                       if (o == null)
+                               return defaultMaxConnections;
+
+                       return (uint) o;
+               }
+
                public Hashtable Data {
                        get { return data; }
                }
@@ -56,7 +100,7 @@ namespace System.Net.Configuration
                public virtual object Create (object parent, object configContext, XmlNode section)
                {
                        ConnectionManagementData cmd = new ConnectionManagementData (parent);
-                       
+#if (XML_DEP)                  
                        if (section.Attributes != null && section.Attributes.Count != 0)
                                HandlersUtil.ThrowException ("Unrecognized attribute", section);
 
@@ -101,6 +145,7 @@ namespace System.Net.Configuration
 
                                HandlersUtil.ThrowException ("Unexpected element", child);
                        }
+#endif                 
 
                        return cmd;
                }
@@ -111,7 +156,7 @@ namespace System.Net.Configuration
                private HandlersUtil ()
                {
                }
-
+#if (XML_DEP)
                static internal string ExtractAttributeValue (string attKey, XmlNode node)
                {
                        return ExtractAttributeValue (attKey, node, false);
@@ -148,6 +193,7 @@ namespace System.Net.Configuration
                                msg = msg + " (node name: " + node.Name + ") ";
                        throw new ConfigurationException (msg, node);
                }
+#endif
        }
 }