libcosmos
Linux C++ System Programming Library
|
Password Database Information for Users. More...
#include <PasswdInfo.hxx>
Public Member Functions | |
PasswdInfo (const SysString name) | |
Obtains PasswdInfo for the given username name . | |
PasswdInfo (const UserID uid) | |
Obtains PasswdInfo for the given numerical user id uid . | |
SysString | name () const |
SysString | passwd () const |
Returns the optional encrypted password. | |
UserID | uid () const |
GroupID | gid () const |
The user's main group ID. | |
SysString | gecos () const |
Returns the comment field which is used for different things like a full user name. | |
SysString | homeDir () const |
Path to the user's home directory. | |
SysString | shell () const |
Optional command interpreter for the user. | |
![]() | |
bool | valid () const |
Returns whether data is present in the object. | |
void | reset () |
Zeroes out all data. | |
const struct passwd * | raw () const |
Grants access to the raw underlying data structure. | |
struct passwd * | raw () |
Additional Inherited Members | |
![]() | |
bool | getInfo (std::function< int(struct passwd **)> get_func, const char *errlabel) |
Helper to drive the common getter function logic for getpw* and getgr*. | |
![]() | |
bool | m_valid |
struct passwd | m_info |
struct passwd or struct group. | |
std::vector< char > | m_buf |
Extra space for storing the dynamic strings in the m_info struct. | |
Password Database Information for Users.
This type obtains and stores data for an individual user account ID as found in the /etc/passwd database.
Definition at line 18 of file PasswdInfo.hxx.
|
explicit |
Obtains PasswdInfo for the given username name
.
If an error occurs obtaining the entry then an ApiError exception is thrown.
If simply no matching entry exists then no exception is thrown but valid() return false and all members are empty.
Definition at line 8 of file PasswdInfo.cxx.
|
explicit |
Obtains PasswdInfo for the given numerical user id uid
.
Definition at line 21 of file PasswdInfo.cxx.
|
inline |
Returns the comment field which is used for different things like a full user name.
Definition at line 49 of file PasswdInfo.hxx.
|
inline |
|
inline |
|
inline |
Definition at line 38 of file PasswdInfo.hxx.
|
inline |
|
inline |
|
inline |
Definition at line 43 of file PasswdInfo.hxx.