2007-09-21 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / corlib / System.Security.AccessControl / CommonAcl.cs
1 //
2 // System.Security.AccessControl.CommonAcl implementation
3 //
4 // Authors:
5 //      Dick Porter  <dick@ximian.com>
6 //      Atsushi Enomoto  <atsushi@ximian.com>
7 //
8 // Copyright (C) 2006-2007 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31
32 using System.Collections.Generic;
33 using System.Security.Principal;
34
35 namespace System.Security.AccessControl {
36         /* NB: Note the Remarks section in the CommonAcl class docs
37          * concerning ACE management
38          */
39         public abstract class CommonAcl : GenericAcl
40         {
41                 const int default_capacity = 10; // FIXME: not verified
42
43                 internal CommonAcl (bool isContainer, bool isDS, byte revision)
44                         : this (isContainer, isDS, revision, default_capacity)
45                 {
46                 }
47
48                 internal CommonAcl (bool isContainer, bool isDS, byte revision, int capacity)
49                 {
50                         this.is_container = isContainer;
51                         this.is_ds = isDS;
52                         this.revision = revision;
53                         list = new List<GenericAce> (capacity);
54                 }
55
56                 bool is_container, is_ds;
57                 byte revision;
58                 List<GenericAce> list;
59
60                 [MonoTODO]
61                 public override sealed int BinaryLength
62                 {
63                         get {
64                                 throw new NotImplementedException ();
65                         }
66                 }
67
68                 public override sealed int Count {
69                         get { return list.Count; }
70                 }
71
72                 [MonoTODO]
73                 public bool IsCanonical
74                 {
75                         get {
76                                 throw new NotImplementedException ();
77                         }
78                 }
79
80                 public bool IsContainer {
81                         get { return is_container; }
82                 }
83                 
84                 public bool IsDS {
85                         get { return is_ds; }
86                 }
87
88                 public override sealed GenericAce this[int index]
89                 {
90                         get { return list [index]; }
91                         set { list [index] = value; }
92                 }
93                 
94                 public override sealed byte Revision {
95                         get { return revision; }
96                 }
97                 
98                 [MonoTODO]
99                 public override sealed void GetBinaryForm (byte[] binaryForm,
100                                                            int offset)
101                 {
102                         throw new NotImplementedException ();
103                 }
104                 
105                 [MonoTODO]
106                 public void Purge (SecurityIdentifier sid)
107                 {
108                         throw new NotImplementedException ();
109                 }
110
111                 [MonoTODO]
112                 public void RemoveInheritedAces ()
113                 {
114                         throw new NotImplementedException ();
115                 }
116         }
117 }
118
119 #endif