2008-03-12 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / System.Web.Services / System.Web.Services.Description / ServiceDescriptionCollection.cs
1 // 
2 // System.Web.Services.Description.ServiceDescriptionCollection.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //   Lluis Sanchez Gual (lluis@ximian.com)
7 //
8 // Copyright (C) Tim Coleman, 2002
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System.Web.Services;
33 using System.Xml;
34
35 namespace System.Web.Services.Description {
36         public sealed class ServiceDescriptionCollection : ServiceDescriptionBaseCollection {
37
38 #if !TARGET_JVM //code generation is not supported
39                 ServiceDescriptionImporter importer;
40 #endif
41                 
42                 #region Constructors
43         
44                 public ServiceDescriptionCollection () 
45                         : base (null)
46                 {
47                 }
48
49                 #endregion // Constructors
50
51                 #region Properties
52
53                 public ServiceDescription this [int index] {
54                         get { 
55                                 if (index < 0 || index > Count)
56                                         throw new ArgumentOutOfRangeException ();
57
58                                 return (ServiceDescription) List[index]; 
59                         }
60                         set { List [index] = value; }
61                 }
62
63                 public ServiceDescription this [string ns] {
64                         get { 
65                                 return (ServiceDescription) Table[ns];
66                         }
67                 }
68
69                 #endregion // Properties
70
71                 #region Methods
72 #if !TARGET_JVM //code generation is not supported
73                 internal void SetImporter (ServiceDescriptionImporter i)
74                 {
75                         importer = i;
76                 }
77 #endif
78                 public int Add (ServiceDescription serviceDescription) 
79                 {
80                         Insert (Count, serviceDescription);
81                         return (Count - 1);
82                 }
83                 
84                 public bool Contains (ServiceDescription serviceDescription)
85                 {
86                         return List.Contains (serviceDescription);
87                 }
88
89                 public void CopyTo (ServiceDescription[] array, int index) 
90                 {
91                         List.CopyTo (array, index);
92                 }
93
94                 public Binding GetBinding (XmlQualifiedName name)
95                 {
96                         ServiceDescription desc = (ServiceDescription) Table[name.Namespace];
97                         if (desc != null) {
98                                 foreach (Binding binding in desc.Bindings) 
99                                         if (binding.Name == name.Name)
100                                                 return binding;
101                         }
102                         throw new InvalidOperationException ("Binding '" + name + "' not found");
103                 }
104
105                 protected override string GetKey (object value) 
106                 {
107                         return ((ServiceDescription) value).TargetNamespace;
108                 }
109
110                 public Message GetMessage (XmlQualifiedName name)
111                 {
112                         ServiceDescription desc = (ServiceDescription) Table[name.Namespace];
113                         if (desc != null) {
114                                 foreach (Message message in desc.Messages) 
115                                         if (message.Name == name.Name)
116                                                 return message;
117                         }
118                         throw new InvalidOperationException ("Message '" + name + "' not found");
119                 }
120
121                 public PortType GetPortType (XmlQualifiedName name)
122                 {
123                         ServiceDescription desc = (ServiceDescription) Table[name.Namespace];
124                         if (desc != null) {
125                                 foreach (PortType portType in desc.PortTypes) 
126                                         if (portType.Name == name.Name)
127                                                 return portType;
128                         }
129                         throw new InvalidOperationException ("Port type '" + name + "' not found");
130                 }
131
132                 public Service GetService (XmlQualifiedName name)
133                 {
134                         ServiceDescription desc = (ServiceDescription) Table[name.Namespace];
135                         if (desc != null) {
136                                 foreach (Service service in desc.Services) 
137                                         if (service.Name == name.Name)
138                                                 return service;
139                         }
140                         throw new InvalidOperationException ("Service '" + name + "' not found");
141                 }
142
143                 public int IndexOf (ServiceDescription serviceDescription)
144                 {
145                         return List.IndexOf (serviceDescription);
146                 }
147
148                 public void Insert (int index, ServiceDescription serviceDescription)
149                 {
150                         List.Insert (index, serviceDescription);
151                         OnInsertComplete (index, serviceDescription);
152                 }
153         
154                 public void Remove (ServiceDescription serviceDescription)
155                 {
156                         List.Remove (serviceDescription);
157                 }
158
159 #if NET_2_0
160                 [MonoTODO]
161                 protected override
162 #endif
163                 void OnInsertComplete (int index, object item)
164                 {
165                         base.OnInsertComplete (index, item);
166                 }
167
168 #if NET_2_0
169                 [MonoTODO]
170                 protected override void SetParent (object value, object parent)
171                 {
172                 }
173 #endif
174
175                 #endregion // Methods
176         }
177 }