home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _1301b17331c685ff6a8feef013f14405 < prev    next >
Text File  |  2000-03-23  |  4KB  |  99 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>User::grent - by-name interface to Perl's built-in getgr* functions</TITLE>
  5. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> User::grent - by-name interface to Perl's built-in getgr* functions</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#note">NOTE</A></LI>
  26.     <LI><A HREF="#author">AUTHOR</A></LI>
  27. </UL>
  28. <!-- INDEX END -->
  29.  
  30. <HR>
  31. <P>
  32. <H1><A NAME="name">NAME</A></H1>
  33. <P>User::grent - by-name interface to Perl's built-in getgr*() functions</P>
  34. <P>
  35. <HR>
  36. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  37. <UL>
  38. <LI>Linux</LI>
  39. <LI>Solaris</LI>
  40. <LI>Windows</LI>
  41. </UL>
  42. <HR>
  43. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  44. <PRE>
  45.  use User::grent;
  46.  $gr = getgrgid(0) or die "No group zero";
  47.  if ( $gr->name eq 'wheel' && @{$gr->members} > 1 ) {
  48.      print "gid zero name wheel, with other members";
  49.  }</PRE>
  50. <PRE>
  51.  use User::grent qw(:FIELDS;
  52.  getgrgid(0) or die "No group zero";
  53.  if ( $gr_name eq 'wheel' && @gr_members > 1 ) {
  54.      print "gid zero name wheel, with other members";
  55.  }</PRE>
  56. <PRE>
  57.  $gr = getgr($whoever);</PRE>
  58. <P>
  59. <HR>
  60. <H1><A NAME="description">DESCRIPTION</A></H1>
  61. <P>This module's default exports override the core getgrent(), getgruid(),
  62. and <A HREF="../../lib/Pod/perlfunc.html#item_getgrnam"><CODE>getgrnam()</CODE></A> functions, replacing them with versions that return
  63. ``User::grent'' objects.  This object has methods that return the similarly
  64. named structure field name from the C's passwd structure from <EM>grp.h</EM>; 
  65. namely name, passwd, gid, and members (not mem).  The first three
  66. return scalars, the last an array reference.</P>
  67. <P>You may also import all the structure fields directly into your namespace
  68. as regular variables using the :FIELDS import tag.  (Note that this still
  69. overrides your core functions.)  Access these fields as variables named
  70. with a preceding <CODE>gr_</CODE>.  Thus, <CODE>$group_obj->gid()</CODE> corresponds
  71. to $gr_gid if you import the fields.  Array references are available as
  72. regular array variables, so <CODE>@{ $group_obj->members() }</CODE> would be
  73. simply @gr_members.</P>
  74. <P>The <CODE>getpw()</CODE> function is a simple front-end that forwards
  75. a numeric argument to <A HREF="../../lib/Pod/perlfunc.html#item_getpwuid"><CODE>getpwuid()</CODE></A> and the rest to getpwnam().</P>
  76. <P>To access this functionality without the core overrides,
  77. pass the <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> an empty import list, and then access
  78. function functions with their full qualified names.
  79. On the other hand, the built-ins are still available
  80. via the <CODE>CORE::</CODE> pseudo-package.</P>
  81. <P>
  82. <HR>
  83. <H1><A NAME="note">NOTE</A></H1>
  84. <P>While this class is currently implemented using the Class::Struct
  85. module to build a struct-like class, you shouldn't rely upon this.</P>
  86. <P>
  87. <HR>
  88. <H1><A NAME="author">AUTHOR</A></H1>
  89. <P>Tom Christiansen</P>
  90. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  91. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  92. <STRONG><P CLASS=block> User::grent - by-name interface to Perl's built-in getgr* functions</P></STRONG>
  93. </TD></TR>
  94. </TABLE>
  95.  
  96. </BODY>
  97.  
  98. </HTML>
  99.