merge -r 61110:61111
[mono.git] / mcs / class / Mono.Posix / Mono.Unix / UnixGroupInfo.cs
1 //
2 // Mono.Unix/UnixGroupInfo.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // (C) 2004-2005 Jonathan Pryor
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Collections;
31 using System.Text;
32 using Mono.Unix;
33
34 namespace Mono.Unix {
35
36         public sealed class UnixGroupInfo
37         {
38                 private Native.Group group;
39
40                 public UnixGroupInfo (string group)
41                 {
42                         this.group = new Native.Group ();
43                         Native.Group gr;
44                         int r = Native.Syscall.getgrnam_r (group, this.group, out gr);
45                         if (r != 0 || gr == null)
46                                 throw new ArgumentException (Locale.GetText ("invalid group name"), "group");
47                 }
48
49                 public UnixGroupInfo (long group)
50                 {
51                         this.group = new Native.Group ();
52                         Native.Group gr;
53                         int r = Native.Syscall.getgrgid_r (Convert.ToUInt32 (group), this.group, out gr);
54                         if (r != 0 || gr == null)
55                                 throw new ArgumentException (Locale.GetText ("invalid group id"), "group");
56                 }
57
58                 public UnixGroupInfo (Native.Group group)
59                 {
60                         this.group = CopyGroup (group);
61                 }
62
63                 private static Native.Group CopyGroup (Native.Group group)
64                 {
65                         Native.Group g = new Native.Group ();
66
67                         g.gr_gid    = group.gr_gid;
68                         g.gr_mem    = group.gr_mem;
69                         g.gr_name   = group.gr_name;
70                         g.gr_passwd = group.gr_passwd;
71
72                         return g;
73                 }
74
75                 public string GroupName {
76                         get {return group.gr_name;}
77                 }
78
79                 public string Password {
80                         get {return group.gr_passwd;}
81                 }
82
83                 public long GroupId {
84                         get {return group.gr_gid;}
85                 }
86
87                 public UnixUserInfo[] GetMembers ()
88                 {
89                         UnixUserInfo[] members = new UnixUserInfo [group.gr_mem.Length];
90                         for (int i = 0; i < members.Length; ++i)
91                                 members [i] = new UnixUserInfo (group.gr_mem [i]);
92                         return members;
93                 }
94
95                 public string[] GetMemberNames ()
96                 {
97                         return (string[]) group.gr_mem.Clone ();
98                 }
99
100                 public override int GetHashCode ()
101                 {
102                         return group.GetHashCode ();
103                 }
104
105                 public override bool Equals (object obj)
106                 {
107                         if (obj == null || GetType () != obj.GetType())
108                                 return false;
109                         return group.Equals (((UnixGroupInfo) obj).group);
110                 }
111
112                 public override string ToString ()
113                 {
114                         return group.ToString();
115                 }
116
117                 public Native.Group ToGroup ()
118                 {
119                         return CopyGroup (group);
120                 }
121
122                 public static UnixGroupInfo[] GetLocalGroups ()
123                 {
124                         ArrayList entries = new ArrayList ();
125                         lock (Native.Syscall.grp_lock) {
126                                 if (Native.Syscall.setgrent () != 0)
127                                         UnixMarshal.ThrowExceptionForLastError ();
128                                 try {
129                                         Native.Group g;
130                                         while ((g = Native.Syscall.getgrent()) != null)
131                                                 entries.Add (new UnixGroupInfo (g));
132                                         if (Native.Syscall.GetLastError() != (Native.Errno) 0)
133                                                 UnixMarshal.ThrowExceptionForLastError ();
134                                 }
135                                 finally {
136                                         Native.Syscall.endgrent ();
137                                 }
138                         }
139                         return (UnixGroupInfo[]) entries.ToArray (typeof(UnixGroupInfo));
140                 }
141         }
142 }
143
144 // vim: noexpandtab