* TraceImpl.cs:
[mono.git] / mcs / class / System / System.Diagnostics / TraceListenerCollection.cs
1 //
2 // System.Diagnostics.TraceListenerCollection.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // Comments from John R. Hicks <angryjohn69@nc.rr.com> original implementation 
8 // can be found at: /mcs/docs/apidocs/xml/en/System.Diagnostics
9 //
10 // (C) 2002 Jonathan Pryor
11 //
12
13 //
14 // Permission is hereby granted, free of charge, to any person obtaining
15 // a copy of this software and associated documentation files (the
16 // "Software"), to deal in the Software without restriction, including
17 // without limitation the rights to use, copy, modify, merge, publish,
18 // distribute, sublicense, and/or sell copies of the Software, and to
19 // permit persons to whom the Software is furnished to do so, subject to
20 // the following conditions:
21 // 
22 // The above copyright notice and this permission notice shall be
23 // included in all copies or substantial portions of the Software.
24 // 
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 //
33
34
35 using System;
36 using System.Collections;
37 using System.Diagnostics;
38 using System.Globalization;
39
40 namespace System.Diagnostics {
41
42         public class TraceListenerCollection : IList, ICollection, IEnumerable {
43
44                 private ArrayList listeners = ArrayList.Synchronized (new ArrayList (1));
45
46                 internal TraceListenerCollection ()
47                         : this (true)
48                 {
49                 }
50
51                 internal TraceListenerCollection (bool addDefault)
52                 {
53                         if (addDefault)
54                                 Add (new DefaultTraceListener ());
55                 }
56
57                 public int Count{
58                         get {return listeners.Count;}
59                 }
60
61                 public TraceListener this [string name] {
62                         get {
63                                 lock (listeners.SyncRoot) {
64                                         foreach (TraceListener listener in listeners) {
65                                                 if (listener.Name == name)
66                                                         return listener;
67                                         }
68                                 }
69                                 return null;
70                         }
71                 }
72
73                 public TraceListener this [int index] {
74                         get {return (TraceListener) listeners[index];}
75                         set {
76                                 InitializeListener (value);
77                                 listeners[index] = value;
78                         }
79                 }
80
81                 object IList.this [int index] {
82                         get {return listeners[index];}
83                         set {
84                                 TraceListener l = (TraceListener) value;
85                                 InitializeListener (l);
86                                 this[index] = l;
87                         }
88                 }
89
90                 bool ICollection.IsSynchronized {
91                         get {return listeners.IsSynchronized;}
92                 }
93
94                 object ICollection.SyncRoot {
95                         get {return listeners.SyncRoot;}
96                 }
97
98                 bool IList.IsFixedSize {
99                         get {return listeners.IsFixedSize;}
100                 }
101
102                 bool IList.IsReadOnly {
103                         get {return listeners.IsReadOnly;}
104                 }
105
106                 public int Add (TraceListener listener)
107                 {
108                         InitializeListener (listener);
109                         return listeners.Add (listener);
110                 }
111
112                 private void InitializeListener (TraceListener listener)
113                 {
114                         listener.IndentLevel = TraceImpl.IndentLevel;
115                         listener.IndentSize = TraceImpl.IndentSize;
116                 }
117
118                 private void InitializeRange (IList listeners)
119                 {
120                         int e = listeners.Count;
121                         for (int i = 0; i != e; ++i)
122                                 InitializeListener (
123                                         (TraceListener) listeners[i]);
124                 }
125
126                 public void AddRange (TraceListener[] value)
127                 {
128                         InitializeRange (value);
129                         listeners.AddRange (value);
130                 }
131
132                 public void AddRange (TraceListenerCollection value)
133                 {
134                         InitializeRange (value);
135                         listeners.AddRange (value.listeners);
136                 }
137
138                 public void Clear ()
139                 {
140                         listeners.Clear ();
141                 }
142
143                 public bool Contains (TraceListener listener)
144                 {
145                         return listeners.Contains (listener);
146                 }
147
148                 public void CopyTo (TraceListener[] listeners, int index)
149                 {
150                         listeners.CopyTo (listeners, index);
151                 }
152
153                 public IEnumerator GetEnumerator ()
154                 {
155                         return listeners.GetEnumerator ();
156                 }
157
158                 void ICollection.CopyTo (Array array, int index)
159                 {
160                         listeners.CopyTo (array, index);
161                 }
162
163                 int IList.Add (object value)
164                 {
165                         if (value is TraceListener)
166                                 return Add ((TraceListener) value);
167                         throw new NotSupportedException (Locale.GetText (
168                                 "You can only add TraceListener objects to the collection"));
169                 }
170
171                 bool IList.Contains (object value)
172                 {
173                         if (value is TraceListener)
174                                 return listeners.Contains (value);
175                         return false;
176                 }
177
178                 int IList.IndexOf (object value)
179                 {
180                         if (value is TraceListener)
181                                 return listeners.IndexOf (value);
182                         return -1;
183                 }
184
185                 void IList.Insert (int index, object value)
186                 {
187                         if (value is TraceListener) {
188                                 Insert (index, (TraceListener) value);
189                                 return;
190                         }
191                         throw new NotSupportedException (Locale.GetText (
192                                 "You can only insert TraceListener objects into the collection"));
193                 }
194
195                 void IList.Remove (object value)
196                 {
197                         if (value is TraceListener)
198                                 listeners.Remove (value);
199                 }
200
201                 public int IndexOf (TraceListener listener)
202                 {
203                         return listeners.IndexOf (listener);
204                 }
205
206                 public void Insert (int index, TraceListener listener)
207                 {
208                         InitializeListener (listener);
209                         listeners.Insert (index, listener);
210                 }
211
212                 public void Remove (string name)
213                 {
214                         TraceListener found = null;
215
216                         lock (listeners.SyncRoot) {
217                                 foreach (TraceListener listener in listeners) {
218                                         if (listener.Name == name) {
219                                                 found = listener;
220                                                 break;
221                                         }
222                                 }
223
224                                 if (found != null)
225                                         listeners.Remove (found);
226                                 else
227                                         throw new ArgumentException (Locale.GetText (
228                                                 "TraceListener " + name + " was not in the collection"));
229                         }
230                 }
231
232                 public void Remove (TraceListener listener)
233                 {
234                         listeners.Remove (listener);
235                 }
236
237                 public void RemoveAt (int index)
238                 {
239                         listeners.RemoveAt (index);
240                 }
241         }
242 }
243