00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #if !defined (octave_group_h)
00024 #define octave_group_h 1
00025
00026 #include <string>
00027
00028 #ifdef HAVE_SYS_TYPES_H
00029 #include <sys/types.h>
00030 #endif
00031
00032 #include "str-vec.h"
00033
00034 class
00035 OCTAVE_API
00036 octave_group
00037 {
00038 public:
00039
00040 octave_group (void)
00041 : gr_name (), gr_passwd (), gr_gid (0), gr_mem (), valid (false)
00042 { }
00043
00044 octave_group (const octave_group& gr)
00045 : gr_name (gr.gr_name), gr_passwd (gr.gr_passwd),
00046 gr_gid (gr.gr_gid), gr_mem (gr.gr_mem), valid (gr.valid)
00047 { }
00048
00049 octave_group& operator = (const octave_group& gr)
00050 {
00051 if (this != &gr)
00052 {
00053 gr_name = gr.gr_name;
00054 gr_passwd = gr.gr_passwd;
00055 gr_gid = gr.gr_gid;
00056 gr_mem = gr.gr_mem;
00057 valid = gr.valid;
00058 }
00059
00060 return *this;
00061 }
00062
00063 std::string name (void) const;
00064
00065 std::string passwd (void) const;
00066
00067 gid_t gid (void) const;
00068
00069 string_vector mem (void) const;
00070
00071 bool ok (void) const { return valid; }
00072
00073 operator bool () const { return ok (); }
00074
00075 static octave_group getgrent (void);
00076 static octave_group getgrent (std::string& msg);
00077
00078 static octave_group getgrgid (gid_t gid);
00079 static octave_group getgrgid (gid_t gid, std::string& msg);
00080
00081 static octave_group getgrnam (const std::string& nm);
00082 static octave_group getgrnam (const std::string& nm, std::string& msg);
00083
00084 static int setgrent (void);
00085 static int setgrent (std::string& msg);
00086
00087 static int endgrent (void);
00088 static int endgrent (std::string& msg);
00089
00090 private:
00091
00092
00093 std::string gr_name;
00094
00095
00096 std::string gr_passwd;
00097
00098
00099 gid_t gr_gid;
00100
00101
00102 string_vector gr_mem;
00103
00104
00105 bool valid;
00106
00107
00108
00109 octave_group (void *p, std::string& msg);
00110
00111 void gripe_invalid (void) const;
00112 };
00113
00114 #endif
00115
00116
00117
00118
00119
00120