home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / perl560.zip / lib / User / grent.pm next >
Text File  |  2000-01-22  |  3KB  |  95 lines

  1. package User::grent;
  2. use strict;
  3.  
  4. use 5.005_64;
  5. our(@EXPORT, @EXPORT_OK, %EXPORT_TAGS);
  6. BEGIN { 
  7.     use Exporter   ();
  8.     @EXPORT      = qw(getgrent getgrgid getgrnam getgr);
  9.     @EXPORT_OK   = qw($gr_name $gr_gid $gr_passwd $gr_mem @gr_members);
  10.     %EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] );
  11. }
  12. use vars      @EXPORT_OK;
  13.  
  14. # Class::Struct forbids use of @ISA
  15. sub import { goto &Exporter::import }
  16.  
  17. use Class::Struct qw(struct);
  18. struct 'User::grent' => [
  19.     name    => '$',
  20.     passwd  => '$',
  21.     gid        => '$',
  22.     members => '@',
  23. ];
  24.  
  25. sub populate (@) {
  26.     return unless @_;
  27.     my $gob = new();
  28.     ($gr_name, $gr_passwd, $gr_gid) = @$gob[0,1,2] = @_[0,1,2];
  29.     @gr_members = @{$gob->[3]} = split ' ', $_[3];
  30.     return $gob;
  31.  
  32. sub getgrent ( ) { populate(CORE::getgrent()) } 
  33. sub getgrnam ($) { populate(CORE::getgrnam(shift)) } 
  34. sub getgrgid ($) { populate(CORE::getgrgid(shift)) } 
  35. sub getgr    ($) { ($_[0] =~ /^\d+/) ? &getgrgid : &getgrnam } 
  36.  
  37. 1;
  38. __END__
  39.  
  40. =head1 NAME
  41.  
  42. User::grent - by-name interface to Perl's built-in getgr*() functions
  43.  
  44. =head1 SYNOPSIS
  45.  
  46.  use User::grent;
  47.  $gr = getgrgid(0) or die "No group zero";
  48.  if ( $gr->name eq 'wheel' && @{$gr->members} > 1 ) {
  49.      print "gid zero name wheel, with other members";
  50.  } 
  51.  
  52.  use User::grent qw(:FIELDS;
  53.  getgrgid(0) or die "No group zero";
  54.  if ( $gr_name eq 'wheel' && @gr_members > 1 ) {
  55.      print "gid zero name wheel, with other members";
  56.  } 
  57.  
  58.  $gr = getgr($whoever);
  59.  
  60. =head1 DESCRIPTION
  61.  
  62. This module's default exports override the core getgrent(), getgruid(),
  63. and getgrnam() functions, replacing them with versions that return
  64. "User::grent" objects.  This object has methods that return the similarly
  65. named structure field name from the C's passwd structure from F<grp.h>; 
  66. namely name, passwd, gid, and members (not mem).  The first three
  67. return scalars, the last an array reference.
  68.  
  69. You may also import all the structure fields directly into your namespace
  70. as regular variables using the :FIELDS import tag.  (Note that this still
  71. overrides your core functions.)  Access these fields as variables named
  72. with a preceding C<gr_>.  Thus, C<$group_obj-E<gt>gid()> corresponds
  73. to $gr_gid if you import the fields.  Array references are available as
  74. regular array variables, so C<@{ $group_obj-E<gt>members() }> would be
  75. simply @gr_members.
  76.  
  77. The getpw() function is a simple front-end that forwards
  78. a numeric argument to getpwuid() and the rest to getpwnam().
  79.  
  80. To access this functionality without the core overrides,
  81. pass the C<use> an empty import list, and then access
  82. function functions with their full qualified names.
  83. On the other hand, the built-ins are still available
  84. via the C<CORE::> pseudo-package.
  85.  
  86. =head1 NOTE
  87.  
  88. While this class is currently implemented using the Class::Struct
  89. module to build a struct-like class, you shouldn't rely upon this.
  90.  
  91. =head1 AUTHOR
  92.  
  93. Tom Christiansen
  94.