2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System / System.Diagnostics / PerformanceCounterPermissionEntryCollection.cs
1 //
2 // System.Diagnostics.PerformanceCounterPermissionEntryCollection.cs
3 //
4 // Authors:
5 //      Jonathan Pryor (jonpryor@vt.edu)
6 //      Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //      Sebastien Pouliot  <sebastien@ximian.com>
8 //
9 // (C) 2002
10 // (C) 2003 Andreas Nahr
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System.Collections;
34 using System.Globalization;
35 using System.Security.Permissions;
36
37 namespace System.Diagnostics {
38
39         [Serializable]
40         public class PerformanceCounterPermissionEntryCollection : CollectionBase {
41
42                 private PerformanceCounterPermission owner;
43
44                 internal PerformanceCounterPermissionEntryCollection (PerformanceCounterPermission owner)
45                 {
46                         this.owner = owner;
47                         ResourcePermissionBaseEntry[] entries = owner.GetEntries ();
48                         if (entries.Length > 0) {
49                                 foreach (ResourcePermissionBaseEntry entry in entries) {
50                                         PerformanceCounterPermissionAccess elpa = (PerformanceCounterPermissionAccess) entry.PermissionAccess;
51                                         string machine = entry.PermissionAccessPath [0];
52                                         string category = entry.PermissionAccessPath [1];
53                                         PerformanceCounterPermissionEntry elpe = new PerformanceCounterPermissionEntry (elpa, machine, category);
54                                         // we don't want to add them (again) to the base class
55                                         InnerList.Add (elpe);
56                                 }
57                         }
58                 }
59
60                 internal PerformanceCounterPermissionEntryCollection (ResourcePermissionBaseEntry[] entries)
61                 {
62                         foreach (ResourcePermissionBaseEntry entry in entries) {
63                                 List.Add (new PerformanceCounterPermissionEntry ((PerformanceCounterPermissionAccess) entry.PermissionAccess, entry.PermissionAccessPath[0], entry.PermissionAccessPath[1]));
64                         }       
65                 }
66
67                 public PerformanceCounterPermissionEntry this [int index] {
68                         get { return (PerformanceCounterPermissionEntry) InnerList[index]; }
69                         set { InnerList[index] = value; }
70                 }
71
72                 public int Add (PerformanceCounterPermissionEntry value)
73                 {
74                         return List.Add (value);
75                 }
76
77                 public void AddRange (PerformanceCounterPermissionEntry[] value)
78                 {
79                         foreach (PerformanceCounterPermissionEntry e in value)
80                                 List.Add (e);
81                 }
82
83                 public void AddRange (PerformanceCounterPermissionEntryCollection value)
84                 {
85                         foreach (PerformanceCounterPermissionEntry e in value)
86                                 List.Add (e);
87                 }
88
89                 public bool Contains (PerformanceCounterPermissionEntry value)
90                 {
91                         return List.Contains (value);
92                 }
93
94                 public void CopyTo (PerformanceCounterPermissionEntry[] array, int index)
95                 {
96                         List.CopyTo (array, index);
97                 }
98
99                 public int IndexOf (PerformanceCounterPermissionEntry value)
100                 {
101                         return List.IndexOf (value);
102                 }
103
104                 public void Insert (int index, PerformanceCounterPermissionEntry value)
105                 {
106                         List.Insert (index, value);
107                 }
108
109                 protected override void OnClear ()
110                 {
111                         owner.ClearEntries ();
112                 }
113
114                 protected override void OnInsert (int index, object value)
115                 {
116                         owner.Add (value);
117                 }
118
119                 protected override void OnRemove (int index, object value)
120                 {
121                         owner.Remove (value);
122                 }
123
124                 protected override void OnSet (int index, object oldValue, object newValue)
125                 {
126                         owner.Remove (oldValue);
127                         owner.Add (newValue);
128                 }
129
130                 public void Remove (PerformanceCounterPermissionEntry value)
131                 {
132                         List.Remove (value);
133                 }
134         }
135 }