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

  1. # Win32/TieRegistry.pm -- Perl module to easily use a Registry
  2. # (on Win32 systems so far).
  3. # by Tye McQueen, tye@metronet.com, see http://www.metronet.com/~tye/.
  4.  
  5. #
  6. # Skip to "=head" line for user documentation.
  7. #
  8.  
  9.  
  10. package Win32::TieRegistry;
  11.  
  12.  
  13. use strict;
  14. use vars qw( $PACK $VERSION @ISA @EXPORT @EXPORT_OK );
  15.  
  16. $PACK= "Win32::TieRegistry";    # Used in error messages.
  17. $VERSION= '0.23';        # Released on July 03 1999
  18.  
  19.  
  20. use Carp;
  21.  
  22. require Tie::Hash;
  23. @ISA= qw(Tie::Hash);
  24.  
  25. # Required other modules:
  26. use Win32API::Registry 0.12 qw( :KEY_ :HKEY_ :REG_ );
  27.  
  28. #Optional other modules:
  29. use vars qw( $_NoMoreItems $_FileNotFound $_TooSmall $_MoreData $_SetDualVar );
  30.  
  31. if(  eval { require Win32::WinError }  ) {
  32.     $_NoMoreItems= Win32::WinError::constant("ERROR_NO_MORE_ITEMS",0);
  33.     $_FileNotFound= Win32::WinError::constant("ERROR_FILE_NOT_FOUND",0);
  34.     $_TooSmall= Win32::WinError::constant("ERROR_INSUFFICIENT_BUFFER",0);
  35.     $_MoreData= Win32::WinError::constant("ERROR_MORE_DATA",0);
  36. } else {
  37.     $_NoMoreItems= "^No more data";
  38.     $_FileNotFound= "cannot find the file";
  39.     $_TooSmall= " data area passed to ";
  40.     $_MoreData= "^more data is avail";
  41. }
  42. if(  $_SetDualVar= eval { require SetDualVar }  ) {
  43.     import SetDualVar;
  44. }
  45.  
  46.  
  47. #Implementation details:
  48. #    When opened:
  49. #    HANDLE        long; actual handle value
  50. #    MACHINE        string; name of remote machine ("" if local)
  51. #    PATH        list ref; machine-relative full path for this key:
  52. #            ["LMachine","System","Disk"]
  53. #            ["HKEY_LOCAL_MACHINE","System","Disk"]
  54. #    DELIM        char; delimiter used to separate subkeys (def="\\")
  55. #    OS_DELIM    char; always "\\" for Win32
  56. #    ACCESS        long; usually KEY_ALL_ACCESS, perhaps KEY_READ, etc.
  57. #    ROOTS        string; var name for "Lmachine"->HKEY_LOCAL_MACHINE map
  58. #    FLAGS        int; bits to control certain options
  59. #    Often:
  60. #    VALUES        ref to list of value names (data/type never cached)
  61. #    SUBKEYS        ref to list of subkey names
  62. #    SUBCLASSES    ref to list of subkey classes
  63. #    SUBTIMES    ref to list of subkey write times
  64. #    MEMBERS        ref to list of subkey_name.DELIM's, DELIM.value_name's
  65. #    MEMBHASH    hash ref to with MEMBERS as keys and 1's as values
  66. #    Once Key "Info" requested:
  67. #    Class CntSubKeys CntValues MaxSubKeyLen MaxSubClassLen
  68. #    MaxValNameLen MaxValDataLen SecurityLen LastWrite
  69. #    If is tied to a hash and iterating over key values:
  70. #    PREVIDX        int; index of last MEMBERS element return
  71. #    If is the key object returned by Load():
  72. #    UNLOADME    list ref; information about Load()ed key
  73. #    If is a subkey of a "loaded" key other than the one returned by Load():
  74. #    DEPENDON    obj ref; object that can't be destroyed before us
  75.  
  76.  
  77. #Package-local variables:
  78.  
  79. # Option flag bits:
  80. use vars qw( $Flag_ArrVal $Flag_TieVal $Flag_DualTyp $Flag_DualBin
  81.          $Flag_FastDel $Flag_HexDWord $Flag_Split $Flag_FixNulls );
  82. $Flag_ArrVal=    0x0001;
  83. $Flag_TieVal=    0x0002;
  84. $Flag_FastDel=    0x0004;
  85. $Flag_HexDWord=    0x0008;
  86. $Flag_Split=    0x0010;
  87. $Flag_DualTyp=    0x0020;
  88. $Flag_DualBin=    0x0040;
  89. $Flag_FixNulls=    0x0080;
  90.  
  91.  
  92. use vars qw( $RegObj %_Roots %RegHash $Registry );
  93.  
  94. # Short-hand for HKEY_* constants:
  95. %_Roots= (
  96.     "Classes" =>    HKEY_CLASSES_ROOT,
  97.     "CUser" =>        HKEY_CURRENT_USER,
  98.     "LMachine" =>    HKEY_LOCAL_MACHINE,
  99.     "Users" =>        HKEY_USERS,
  100.     "PerfData" =>    HKEY_PERFORMANCE_DATA,    # Too picky to be useful
  101.     "CConfig" =>    HKEY_CURRENT_CONFIG,
  102.     "DynData" =>    HKEY_DYN_DATA,        # Too picky to be useful
  103. );
  104.  
  105. # Basic master Registry object:
  106. $RegObj= {};
  107. @$RegObj{qw( HANDLE MACHINE PATH DELIM OS_DELIM ACCESS FLAGS ROOTS )}= (
  108.     "NONE", "", [], "\\", "\\",
  109.     KEY_READ|KEY_WRITE, $Flag_HexDWord|$Flag_FixNulls, "${PACK}::_Roots" );
  110. $RegObj->{FLAGS} |= $Flag_DualTyp|$Flag_DualBin   if  $_SetDualVar;
  111. bless $RegObj;
  112.  
  113. # Fill cache for master Registry object:
  114. @$RegObj{qw( VALUES SUBKEYS SUBCLASSES SUBTIMES )}= (
  115.     [],  [ keys(%_Roots) ],  [],  []  );
  116. grep( s#$#$RegObj->{DELIM}#,
  117.   @{ $RegObj->{MEMBERS}= [ @{$RegObj->{SUBKEYS}} ] } );
  118. @$RegObj{qw( Class MaxSubKeyLen MaxSubClassLen MaxValNameLen
  119.   MaxValDataLen SecurityLen LastWrite CntSubKeys CntValues )}=
  120.     ( "", 0, 0, 0, 0, 0, 0, 0, 0 );
  121.  
  122. # Create master Registry tied hash:
  123. $RegObj->Tie( \%RegHash );
  124.  
  125. # Create master Registry combination object and tied hash reference:
  126. $Registry= \%RegHash;
  127. bless $Registry;
  128.  
  129.  
  130. # Preloaded methods go here.
  131.  
  132.  
  133. # Map option names to name of subroutine that controls that option:
  134. use vars qw( @_opt_subs %_opt_subs );
  135. @_opt_subs= qw( Delimiter ArrayValues TieValues SplitMultis DWordsToHex
  136.     FastDelete FixSzNulls DualTypes DualBinVals AllowLoad AllowSave );
  137. @_opt_subs{@_opt_subs}= @_opt_subs;
  138.  
  139. sub import
  140. {
  141.     my $pkg= shift(@_);
  142.     my $level= $Exporter::ExportLevel;
  143.     my $expto= caller($level);
  144.     my @export= ();
  145.     my @consts= ();
  146.     my $registry= $Registry->Clone;
  147.     local( $_ );
  148.     while(  @_  ) {
  149.     $_= shift(@_);
  150.     if(  /^\$(\w+::)*\w+$/  ) {
  151.         push( @export, "ObjVar" )   if  /^\$RegObj$/;
  152.         push( @export, $_ );
  153.     } elsif(  /^\%(\w+::)*\w+$/  ) {
  154.         push( @export, $_ );
  155.     } elsif(  /^[$%]/  ) {
  156.         croak "${PACK}->import:  Invalid variable name ($_)";
  157.     } elsif(  /^:/  ||  /^(H?KEY|REG)_/  ) {
  158.         push( @consts, $_ );
  159.     } elsif(  ! @_  ) {
  160.         croak "${PACK}->import:  Missing argument after option ($_)";
  161.     } elsif(  exists $_opt_subs{$_}  ) {
  162.         $_= $_opt_subs{$_};
  163.         $registry->$_( shift(@_) );
  164.     } elsif(  /^TiedRef$/  ) {
  165.         $_= shift(@_);
  166.         if(  ! ref($_)  &&  /^(\$?)(\w+::)*\w+$/  ) {
  167.         $_= '$'.$_   unless  '$' eq $1;
  168.         } elsif(  "SCALAR" ne ref($_)  ) {
  169.         croak "${PACK}->import:  Invalid var after TiedRef ($_)";
  170.         }
  171.         push( @export, $_ );
  172.     } elsif(  /^TiedHash$/  ) {
  173.         $_= shift(@_);
  174.         if(  ! ref($_)  &&  /^(\%?)(\w+::)*\w+$/  ) {
  175.         $_= '%'.$_   unless  '%' eq $1;
  176.         } elsif(  "HASH" ne ref($_)  ) {
  177.         croak "${PACK}->import:  Invalid var after TiedHash ($_)";
  178.         }
  179.         push( @export, $_ );
  180.     } elsif(  /^ObjectRef$/  ) {
  181.         $_= shift(@_);
  182.         if(  ! ref($_)  &&  /^(\$?)(\w+::)*\w+$/  ) {
  183.         push( @export, "ObjVar" );
  184.         $_= '$'.$_   unless  '$' eq $1;
  185.         } elsif(  "SCALAR" eq ref($_)  ) {
  186.         push( @export, "ObjRef" );
  187.         } else {
  188.         croak "${PACK}->import:  Invalid var after ObjectRef ($_)";
  189.         }
  190.         push( @export, $_ );
  191.     } elsif(  /^ExportLevel$/  ) {
  192.         $level= shift(@_);
  193.         $expto= caller($level);
  194.     } elsif(  /^ExportTo$/  ) {
  195.         undef $level;
  196.         $expto= caller($level);
  197.     } else {
  198.         croak "${PACK}->import:  Invalid option ($_)";
  199.     }
  200.     }
  201.     Win32API::Registry->export( $expto, @consts )   if  @consts;
  202.     @export= ('$Registry')   unless  @export;
  203.     while(  @export  ) {
  204.     $_= shift( @export );
  205.     if(  /^\$((?:\w+::)*)(\w+)$/  ) {
  206.         my( $pack, $sym )= ( $1, $2 );
  207.         $pack= $expto   unless  defined($pack)  &&  "" ne $pack;
  208.         no strict 'refs';
  209.         *{"${pack}::$sym"}= \${"${pack}::$sym"};
  210.         ${"${pack}::$sym"}= $registry;
  211.     } elsif(  /^\%((?:\w+::)*)(\w+)$/  ) {
  212.         my( $pack, $sym )= ( $1, $2 );
  213.         $pack= $expto   unless  defined($pack)  &&  "" ne $pack;
  214.         no strict 'refs';
  215.         *{"${pack}::$sym"}= \%{"${pack}::$sym"};
  216.         $registry->Tie( \%{"${pack}::$sym"} );
  217.     } elsif(  "SCALAR" eq ref($_)  ) {
  218.         $$_= $registry;
  219.     } elsif(  "HASH" eq ref($_)  ) {
  220.         $registry->Tie( $_ );
  221.     } elsif(  /^ObjVar$/  ) {
  222.         $_= shift( @_ );
  223.         /^\$((?:\w+::)*)(\w+)$/;
  224.         my( $pack, $sym )= ( $1, $2 );
  225.         $pack= $expto   unless  defined($pack)  &&  "" ne $pack;
  226.         no strict 'refs';
  227.         *{"${pack}::$sym"}= \${"${pack}::$sym"};
  228.         ${"${pack}::$sym"}= $registry->ObjectRef;
  229.     } elsif(  /^ObjRef$/  ) {
  230.         ${shift(@_)}= $registry->ObjectRef;
  231.     } else {
  232.         die "Impossible var to export ($_)";
  233.     }
  234.     }
  235. }
  236.  
  237.  
  238. use vars qw( @_new_Opts %_new_Opts );
  239. @_new_Opts= qw( ACCESS DELIM MACHINE DEPENDON );
  240. @_new_Opts{@_new_Opts}= (1) x @_new_Opts;
  241.  
  242. sub _new
  243. {
  244.     my $this= shift( @_ );
  245.     $this= tied(%$this)   if  ref($this)  &&  tied(%$this);
  246.     my $class= ref($this) || $this;
  247.     my $self= {};
  248.     my( $handle, $rpath, $opts )= @_;
  249.     if(  @_ < 2  ||  "ARRAY" ne ref($rpath)  ||  3 < @_
  250.      ||  3 == @_ && "HASH" ne ref($opts)  ) {
  251.     croak "Usage:  ${PACK}->_new( \$handle, \\\@path, {OPT=>VAL,...} );\n",
  252.           "  options: @_new_Opts\nCalled";
  253.     }
  254.     @$self{qw( HANDLE PATH )}= ( $handle, $rpath );
  255.     @$self{qw( MACHINE ACCESS DELIM OS_DELIM ROOTS FLAGS )}=
  256.       ( $this->Machine, $this->Access, $this->Delimiter,
  257.         $this->OS_Delimiter, $this->_Roots, $this->_Flags );
  258.     if(  ref($opts)  ) {
  259.     my @err= grep( ! $_new_Opts{$_}, keys(%$opts) );
  260.     @err  and  croak "${PACK}->_new:  Invalid options (@err)";
  261.     @$self{ keys(%$opts) }= values(%$opts);
  262.     }
  263.     bless $self, $class;
  264.     return $self;
  265. }
  266.  
  267.  
  268. sub _split
  269. {
  270.     my $self= shift( @_ );
  271.     $self= tied(%$self)   if  tied(%$self);
  272.     my $path= shift( @_ );
  273.     my $delim= @_ ? shift(@_) : $self->Delimiter;
  274.     my $list= [ split( /\Q$delim/, $path ) ];
  275.     return $list;
  276. }
  277.  
  278.  
  279. sub _rootKey
  280. {
  281.     my $self= shift(@_);
  282.     $self= tied(%$self)   if  tied(%$self);
  283.     my $keyPath= shift(@_);
  284.     my $delim= @_ ? shift(@_) : $self->Delimiter;
  285.     my( $root, $subPath );
  286.     if(  "ARRAY" eq ref($keyPath)  ) {
  287.     $subPath= $keyPath;
  288.     } else {
  289.     $subPath= $self->_split( $keyPath, $delim );
  290.     }
  291.     $root= shift( @$subPath );
  292.     if(  $root =~ /^HKEY_/  ) {
  293.     my $handle= Win32API::Registry::constant($root,0);
  294.     $handle  or  croak "Invalid HKEY_ constant ($root): $!";
  295.     return( $self->_new( $handle, [$root], {DELIM=>$delim} ),
  296.             $subPath );
  297.     } elsif(  $root =~ /^([-+]|0x)?\d/  ) {
  298.     return( $self->_new( $root, [sprintf("0x%lX",$root)],
  299.                  {DELIM=>$delim} ),
  300.         $subPath );
  301.     } else {
  302.     my $roots= $self->Roots;
  303.     if(  $roots->{$root}  ) {
  304.         return( $self->_new( $roots->{$root}, [$root], {DELIM=>$delim} ),
  305.                 $subPath );
  306.     }
  307.     croak "No such root key ($root)";
  308.     }
  309. }
  310.  
  311.  
  312. sub _open
  313. {
  314.     my $this= shift(@_);
  315.     $this= tied(%$this)   if  ref($this)  &&  tied(%$this);
  316.     my $subPath= shift(@_);
  317.     my $sam= @_ ? shift(@_) : $this->Access;
  318.     my $subKey= join( $this->OS_Delimiter, @$subPath );
  319.     my $handle= 0;
  320.     $this->RegOpenKeyEx( $subKey, 0, $sam, $handle )
  321.       or  return ();
  322.     return $this->_new( $handle, [ @{$this->_Path}, @$subPath ],
  323.       { ACCESS=>$sam, ( defined($this->{UNLOADME}) ? ("DEPENDON",$this)
  324.     : defined($this->{DEPENDON}) ? ("DEPENDON",$this->{DEPENDON}) : () )
  325.       } );
  326. }
  327.  
  328.  
  329. sub ObjectRef
  330. {
  331.     my $self= shift(@_);
  332.     $self= tied(%$self)   if  tied(%$self);
  333.     return $self;
  334. }
  335.  
  336.  
  337. sub _constant
  338. {
  339.     my( $name, $desc )= @_;
  340.     my $value= Win32API::Registry::constant( $name, 0 );
  341.     my $func= (caller(1))[3];
  342.     if(  0 == $value  ) {
  343.     if(  $! =~ /invalid/i  ) {
  344.         croak "$func: Invalid $desc ($name)";
  345.     } elsif(  0 != $!  ) {
  346.         croak "$func: \u$desc ($name) not support on this platform";
  347.     }
  348.     }
  349.     return $value;
  350. }
  351.  
  352.  
  353. sub _connect
  354. {
  355.     my $this= shift(@_);
  356.     $this= tied(%$this)   if  ref($this)  &&  tied(%$this);
  357.     my $subPath= pop(@_);
  358.     $subPath= $this->_split( $subPath )   unless  ref($subPath);
  359.     my $machine= @_ ? shift(@_) : shift(@$subPath);
  360.     my $handle= 0;
  361.     my( $temp )= $this->_rootKey( [@$subPath] );
  362.     $temp->RegConnectRegistry( $machine, $temp->Handle, $handle )
  363.       or  return ();
  364.     my $self= $this->_new( $handle, [shift(@$subPath)], {MACHINE=>$machine} );
  365.     return( $self, $subPath );
  366. }
  367.  
  368.  
  369. use vars qw( @Connect_Opts %Connect_Opts );
  370. @Connect_Opts= qw(Access Delimiter);
  371. @Connect_Opts{@Connect_Opts}= (1) x @Connect_Opts;
  372.  
  373. sub Connect
  374. {
  375.     my $this= shift(@_);
  376.     my $tied=  ref($this)  &&  tied(%$this);
  377.     $this= tied(%$this)   if  $tied;
  378.     my( $machine, $key, $opts )= @_;
  379.     my $delim= "";
  380.     my $sam;
  381.     my $subPath;
  382.     if(  @_ < 2  ||  3 < @_
  383.      ||  3 == @_ && "HASH" ne ref($opts)  ) {
  384.     croak "Usage:  \$obj= ${PACK}->Connect(",
  385.           " \$Machine, \$subKey, { OPT=>VAL,... } );\n",
  386.           "  options: @Connect_Opts\nCalled";
  387.     }
  388.     if(  ref($opts)  ) {
  389.     my @err= grep( ! $Connect_Opts{$_}, keys(%$opts) );
  390.     @err  and  croak "${PACK}->Connect:  Invalid options (@err)";
  391.     }
  392.     $delim= "$opts->{Delimiter}"   if  defined($opts->{Delimiter});
  393.     $delim= $this->Delimiter   if  "" eq $delim;
  394.     $sam= defined($opts->{Access}) ? $opts->{Access} : $this->Access;
  395.     $sam= _constant($sam,"key access type")   if  $sam =~ /^KEY_/;
  396.     ( $this, $subPath )= $this->_connect( $machine, $key );
  397.     return ()   unless  defined($this);
  398.     my $self= $this->_open( $subPath, $sam );
  399.     return ()   unless  defined($self);
  400.     $self->Delimiter( $delim );
  401.     $self= $self->TiedRef   if  $tied;
  402.     return $self;
  403. }
  404.  
  405.  
  406. my @_newVirtual_keys= qw( MEMBERS VALUES SUBKEYS SUBTIMES SUBCLASSES
  407.     Class SecurityLen LastWrite CntValues CntSubKeys
  408.     MaxValNameLen MaxValDataLen MaxSubKeyLen MaxSubClassLen );
  409.  
  410. sub _newVirtual
  411. {
  412.     my $self= shift(@_);
  413.     my( $rPath, $root, $opts )= @_;
  414.     my $new= $self->_new( "NONE", $rPath, $opts )
  415.       or  return ();
  416.     @{$new}{@_newVirtual_keys}= @{$root->ObjectRef}{@_newVirtual_keys};
  417.     return $new;
  418. }
  419.  
  420.  
  421. #$key= new Win32::TieRegistry "LMachine/System/Disk";
  422. #$key= new Win32::TieRegistry "//Server1/LMachine/System/Disk";
  423. #Win32::TieRegistry->new( HKEY_LOCAL_MACHINE, {DELIM=>"/",ACCESS=>KEY_READ} );
  424. #Win32::TieRegistry->new( [ HKEY_LOCAL_MACHINE, ".../..." ], {DELIM=>$DELIM} );
  425. #$key->new( ... );
  426.  
  427. use vars qw( @new_Opts %new_Opts );
  428. @new_Opts= qw(Access Delimiter);
  429. @new_Opts{@new_Opts}= (1) x @new_Opts;
  430.  
  431. sub new
  432. {
  433.     my $this= shift( @_ );
  434.     $this= tied(%$this)   if  ref($this)  &&  tied(%$this);
  435.     if(  ! ref($this)  ) {
  436.     no strict "refs";
  437.     my $self= ${"${this}::Registry"};
  438.     croak "${this}->new failed since ${PACK}::new sees that ",
  439.       "\$${this}::Registry is not an object."
  440.       if  ! ref($self);
  441.     $this= $self->Clone;
  442.     }
  443.     my( $subKey, $opts )= @_;
  444.     my $delim= "";
  445.     my $dlen;
  446.     my $sam;
  447.     my $subPath;
  448.     if(  @_ < 1  ||  2 < @_
  449.      ||  2 == @_ && "HASH" ne ref($opts)  ) {
  450.     croak "Usage:  \$obj= ${PACK}->new( \$subKey, { OPT=>VAL,... } );\n",
  451.           "  options: @new_Opts\nCalled";
  452.     }
  453.     if(  defined($opts)  ) {
  454.     my @err= grep( ! $new_Opts{$_}, keys(%$opts) );
  455.     @err  and  die "${PACK}->new:  Invalid options (@err)";
  456.     }
  457.     $delim= "$opts->{Delimiter}"   if  defined($opts->{Delimiter});
  458.     $delim= $this->Delimiter   if  "" eq $delim;
  459.     $dlen= length($delim);
  460.     $sam= defined($opts->{Access}) ? $opts->{Access} : $this->Access;
  461.     $sam= _constant($sam,"key access type")   if  $sam =~ /^KEY_/;
  462.     if(  "ARRAY" eq ref($subKey)  ) {
  463.     $subPath= $subKey;
  464.     if(  "NONE" eq $this->Handle  &&  @$subPath  ) {
  465.         ( $this, $subPath )= $this->_rootKey( $subPath );
  466.     }
  467.     } elsif(  $delim x 2 eq substr($subKey,0,2*$dlen)  ) {
  468.     my $path= $this->_split( substr($subKey,2*$dlen), $delim );
  469.     my $mach= shift(@$path);
  470.     if(  ! @$path  ) {
  471.         return $this->_newVirtual( $path, $Registry,
  472.                 {MACHINE=>$mach,DELIM=>$delim,ACCESS=>$sam} );
  473.     }
  474.     ( $this, $subPath )= $this->_connect( $mach, $path );
  475.     return ()   if  ! defined($this);
  476.     if(  0 == @$subPath  ) {
  477.         $this->Delimiter( $delim );
  478.         return $this;
  479.     }
  480.     } elsif(  $delim eq substr($subKey,0,$dlen)  ) {
  481.     ( $this, $subPath )= $this->_rootKey( substr($subKey,$dlen), $delim );
  482.     } elsif(  "NONE" eq $this->Handle  &&  "" ne $subKey  ) {
  483.     my( $mach )= $this->Machine;
  484.     if(  $mach  ) {
  485.         ( $this, $subPath )= $this->_connect( $mach, $subKey );
  486.     } else {
  487.         ( $this, $subPath )= $this->_rootKey( $subKey, $delim );
  488.     }
  489.     } else {
  490.     $subPath= $this->_split( $subKey, $delim );
  491.     }
  492.     return ()   unless  defined($this);
  493.     if(  0 == @$subPath  &&  "NONE" eq $this->Handle  ) {
  494.     return $this->_newVirtual( $this->_Path, $this,
  495.                    { DELIM=>$delim, ACCESS=>$sam } );
  496.     }
  497.     my $self= $this->_open( $subPath, $sam );
  498.     return ()   unless  defined($self);
  499.     $self->Delimiter( $delim );
  500.     return $self;
  501. }
  502.  
  503.  
  504. sub Open
  505. {
  506.     my $self= shift(@_);
  507.     my $tied=  ref($self)  &&  tied(%$self);
  508.     $self= tied(%$self)   if  $tied;
  509.     $self= $self->new( @_ );
  510.     $self= $self->TiedRef   if  defined($self)  &&  $tied;
  511.     return $self;
  512. }
  513.  
  514.  
  515. sub Clone
  516. {
  517.     my $self= shift( @_ );
  518.     my $new= $self->Open("");
  519.     return $new;
  520. }
  521.  
  522.  
  523. { my @flush;
  524.     sub Flush
  525.     {
  526.     my $self= shift(@_);
  527.     $self= tied(%$self)   if  tied(%$self);
  528.     my( $flush )= @_;
  529.     @_  and  croak "Usage:  \$key->Flush( \$bFlush );";
  530.     return 0   if  "NONE" eq $self->Handle;
  531.     @flush= qw( VALUES SUBKEYS SUBCLASSES SUBTIMES MEMBERS Class
  532.             CntSubKeys CntValues MaxSubKeyLen MaxSubClassLen
  533.             MaxValNameLen MaxValDataLen SecurityLen LastWrite PREVIDX )
  534.       unless  @flush;
  535.     delete( @$self{@flush} );
  536.     if(  defined($flush)  &&  $flush  ) {
  537.         return $self->RegFlushKey();
  538.     } else {
  539.         return 1;
  540.     }
  541.     }
  542. }
  543.  
  544.  
  545. sub _DualVal
  546. {
  547.     my( $hRef, $num )= @_;
  548.     if(  $_SetDualVar  &&  $$hRef{$num}  ) {
  549.     &SetDualVar( $num, "$$hRef{$num}", 0+$num );
  550.     }
  551.     return $num;
  552. }
  553.  
  554.  
  555. use vars qw( @_RegDataTypes %_RegDataTypes );
  556. @_RegDataTypes= qw( REG_SZ REG_EXPAND_SZ REG_BINARY REG_LINK REG_MULTI_SZ
  557.             REG_DWORD_LITTLE_ENDIAN REG_DWORD_BIG_ENDIAN REG_DWORD
  558.             REG_RESOURCE_LIST REG_FULL_RESOURCE_DESCRIPTOR
  559.             REG_RESOURCE_REQUIREMENTS_LIST REG_NONE );
  560. # Make sure that REG_DWORD appears _after_ other REG_DWORD_*
  561. # items above and that REG_NONE appears _last_.
  562. foreach(  @_RegDataTypes  ) {
  563.     $_RegDataTypes{Win32API::Registry::constant($_,0)}= $_;
  564. }
  565.  
  566. sub GetValue
  567. {
  568.     my $self= shift(@_);
  569.     $self= tied(%$self)   if  tied(%$self);
  570.     1 == @_  or  croak "Usage:  (\$data,\$type)= \$key->GetValue('ValName');";
  571.     my( $valName )= @_;
  572.     my( $valType, $valData, $dLen )= (0,"",0);
  573.     return ()   if  "NONE" eq $self->Handle;
  574.     $self->RegQueryValueEx( $valName, [], $valType, $valData,
  575.       $dLen= ( defined($self->{MaxValDataLen}) ? $self->{MaxValDataLen} : 0 )
  576.     )  or  return ();
  577.     if(  REG_DWORD == $valType  ) {
  578.     my $val= unpack("L",$valData);
  579.     $valData= sprintf "0x%08.8lX", $val   if  $self->DWordsToHex;
  580.     &SetDualVar( $valData, $valData, $val )   if  $self->DualBinVals
  581.     } elsif(  REG_BINARY == $valType  &&  length($valData) <= 4  ) {
  582.     &SetDualVar( $valData, $valData, hex reverse unpack("h*",$valData) )
  583.       if  $self->DualBinVals;
  584.     } elsif(  ( REG_SZ == $valType || REG_EXPAND_SZ == $valType )
  585.           &&  $self->FixSzNulls  ) {
  586.     substr($valData,-1)= ""   if  "\0" eq substr($valData,-1);
  587.     } elsif(  REG_MULTI_SZ == $valType  &&  $self->SplitMultis  ) {
  588.     ## $valData =~ s/\0\0$//;    # Why does this often fail??
  589.     substr($valData,-2)= ""   if  "\0\0" eq substr($valData,-2);
  590.     $valData= [ split( /\0/, $valData, -1 ) ]
  591.     }
  592.     if(  ! wantarray  ) {
  593.     return $valData;
  594.     } elsif(  ! $self->DualTypes  ) {
  595.     return( $valData, $valType );
  596.     } else {
  597.     return(  $valData,  _DualVal( \%_RegDataTypes, $valType )  );
  598.     }
  599. }
  600.  
  601.  
  602. sub _ErrNum
  603. {
  604.     # return $^E;
  605.     return Win32::GetLastError();
  606. }
  607.  
  608.  
  609. sub _ErrMsg
  610. {
  611.     # return $^E;
  612.     return Win32::FormatMessage( Win32::GetLastError() );
  613. }
  614.  
  615. sub _Err
  616. {
  617.     my $err;
  618.     # return $^E;
  619.     return _ErrMsg   if  ! $_SetDualVar;
  620.     return &SetDualVar( $err, _ErrMsg, _ErrNum );
  621. }
  622.  
  623. sub _NoMoreItems
  624. {
  625.     return
  626.       $_NoMoreItems =~ /^\d/
  627.         ?  _ErrNum == $_NoMoreItems
  628.         :  _ErrMsg =~ /$_NoMoreItems/io;
  629. }
  630.  
  631.  
  632. sub _FileNotFound
  633. {
  634.     return
  635.       $_FileNotFound =~ /^\d/
  636.         ?  _ErrNum == $_FileNotFound
  637.         :  _ErrMsg =~ /$_FileNotFound/io;
  638. }
  639.  
  640.  
  641. sub _TooSmall
  642. {
  643.     return
  644.       $_TooSmall =~ /^\d/
  645.         ?  _ErrNum == $_TooSmall
  646.         :  _ErrMsg =~ /$_TooSmall/io;
  647. }
  648.  
  649.  
  650. sub _MoreData
  651. {
  652.     return
  653.       $_MoreData =~ /^\d/
  654.         ?  _ErrNum == $_MoreData
  655.         :  _ErrMsg =~ /$_MoreData/io;
  656. }
  657.  
  658.  
  659. sub _enumValues
  660. {
  661.     my $self= shift(@_);
  662.     $self= tied(%$self)   if  tied(%$self);
  663.     my( @names )= ();
  664.     my $pos= 0;
  665.     my $name= "";
  666.     my $nlen= 1+$self->Information("MaxValNameLen");
  667.     while(  $self->RegEnumValue($pos++,$name,$nlen,[],[],[],[])  ) {
  668.     push( @names, $name );
  669.     }
  670.     if(  ! _NoMoreItems()  ) {
  671.     return ();
  672.     }
  673.     $self->{VALUES}= \@names;
  674.     return 1;
  675. }
  676.  
  677.  
  678. sub ValueNames
  679. {
  680.     my $self= shift(@_);
  681.     $self= tied(%$self)   if  tied(%$self);
  682.     @_  and  croak "Usage:  \@names= \$key->ValueNames;";
  683.     $self->_enumValues   unless  $self->{VALUES};
  684.     return @{$self->{VALUES}};
  685. }
  686.  
  687.  
  688. sub _enumSubKeys
  689. {
  690.     my $self= shift(@_);
  691.     $self= tied(%$self)   if  tied(%$self);
  692.     my( @subkeys, @classes, @times )= ();
  693.     my $pos= 0;
  694.     my( $subkey, $class, $time )= ("","","");
  695.     my( $namSiz, $clsSiz )= $self->Information(
  696.                   qw( MaxSubKeyLen MaxSubClassLen ));
  697.     $namSiz++;  $clsSiz++;
  698.     while(  $self->RegEnumKeyEx(
  699.           $pos++, $subkey, $namSiz, [], $class, $clsSiz, $time )  ) {
  700.     push( @subkeys, $subkey );
  701.     push( @classes, $class );
  702.     push( @times, $time );
  703.     }
  704.     if(  ! _NoMoreItems()  ) {
  705.     return ();
  706.     }
  707.     $self->{SUBKEYS}= \@subkeys;
  708.     $self->{SUBCLASSES}= \@classes;
  709.     $self->{SUBTIMES}= \@times;
  710.     return 1;
  711. }
  712.  
  713.  
  714. sub SubKeyNames
  715. {
  716.     my $self= shift(@_);
  717.     $self= tied(%$self)   if  tied(%$self);
  718.     @_  and  croak "Usage:  \@names= \$key->SubKeyNames;";
  719.     $self->_enumSubKeys   unless  $self->{SUBKEYS};
  720.     return @{$self->{SUBKEYS}};
  721. }
  722.  
  723.  
  724. sub SubKeyClasses
  725. {
  726.     my $self= shift(@_);
  727.     @_  and  croak "Usage:  \@classes= \$key->SubKeyClasses;";
  728.     $self->_enumSubKeys   unless  $self->{SUBCLASSES};
  729.     return @{$self->{SUBCLASSES}};
  730. }
  731.  
  732.  
  733. sub SubKeyTimes
  734. {
  735.     my $self= shift(@_);
  736.     $self= tied(%$self)   if  tied(%$self);
  737.     @_  and  croak "Usage:  \@times= \$key->SubKeyTimes;";
  738.     $self->_enumSubKeys   unless  $self->{SUBTIMES};
  739.     return @{$self->{SUBTIMES}};
  740. }
  741.  
  742.  
  743. sub _MemberNames
  744. {
  745.     my $self= shift(@_);
  746.     $self= tied(%$self)   if  tied(%$self);
  747.     @_  and  croak "Usage:  \$arrayRef= \$key->_MemberNames;";
  748.     if(  ! $self->{MEMBERS}  ) {
  749.     $self->_enumValues   unless  $self->{VALUES};
  750.     $self->_enumSubKeys   unless  $self->{SUBKEYS};
  751.     my( @members )= (  map( $_.$self->{DELIM}, @{$self->{SUBKEYS}} ),
  752.                map( $self->{DELIM}.$_, @{$self->{VALUES}} )  );
  753.     $self->{MEMBERS}= \@members;
  754.     }
  755.     return $self->{MEMBERS};
  756. }
  757.  
  758.  
  759. sub _MembersHash
  760. {
  761.     my $self= shift(@_);
  762.     $self= tied(%$self)   if  tied(%$self);
  763.     @_  and  croak "Usage:  \$hashRef= \$key->_MembersHash;";
  764.     if(  ! $self->{MEMBHASH}  ) {
  765.     my $aRef= $self->_MemberNames;
  766.     $self->{MEMBHASH}= {};
  767.     @{$self->{MEMBHASH}}{@$aRef}= (1) x @$aRef;
  768.     }
  769.     return $self->{MEMBHASH};
  770. }
  771.  
  772.  
  773. sub MemberNames
  774. {
  775.     my $self= shift(@_);
  776.     $self= tied(%$self)   if  tied(%$self);
  777.     @_  and  croak "Usage:  \@members= \$key->MemberNames;";
  778.     return @{$self->_MemberNames};
  779. }
  780.  
  781.  
  782. sub Information
  783. {
  784.     my $self= shift(@_);
  785.     $self= tied(%$self)   if  tied(%$self);
  786.     my( $time, $nkeys, $nvals, $xsec, $xkey, $xcls, $xname, $xdata )=
  787.     ("",0,0,0,0,0,0,0);
  788.     my $clen= 8;
  789.     if(  ! $self->RegQueryInfoKey( [], [], $nkeys, $xkey, $xcls,
  790.                    $nvals, $xname, $xdata, $xsec, $time )  ) {
  791.     return ();
  792.     }
  793.     if(  defined($self->{Class})  ) {
  794.     $clen= length($self->{Class});
  795.     } else {
  796.     $self->{Class}= "";
  797.     }
  798.     while(  ! $self->RegQueryInfoKey( $self->{Class}, $clen,
  799.                       [],[],[],[],[],[],[],[],[])
  800.         &&  _MoreData  ) {
  801.     $clen *= 2;
  802.     }
  803.     my( %info );
  804.     @info{ qw( LastWrite CntSubKeys CntValues SecurityLen
  805.            MaxValDataLen MaxSubKeyLen MaxSubClassLen MaxValNameLen )
  806.     }=       ( $time,    $nkeys,    $nvals,   $xsec,
  807.                $xdata,       $xkey,       $xcls,         $xname );
  808.     if(  @_  ) {
  809.     my( %check );
  810.     @check{keys(%info)}= keys(%info);
  811.     my( @err )= grep( ! $check{$_}, @_ );
  812.     if(  @err  ) {
  813.         croak "${PACK}::Information- Invalid info requested (@err)";
  814.     }
  815.     return @info{@_};
  816.     } else {
  817.     return %info;
  818.     }
  819. }
  820.  
  821.  
  822. sub Delimiter
  823. {
  824.     my $self= shift(@_);
  825.     $self= tied(%$self)   if  tied(%$self);
  826.     $self= $RegObj   unless  ref($self);
  827.     my( $oldDelim )= $self->{DELIM};
  828.     if(  1 == @_  &&  "" ne "$_[0]"  ) {
  829.     delete $self->{MEMBERS};
  830.     delete $self->{MEMBHASH};
  831.     $self->{DELIM}= "$_[0]";
  832.     } elsif(  0 != @_  ) {
  833.     croak "Usage:  \$oldDelim= \$key->Delimiter(\$newDelim);";
  834.     }
  835.     return $oldDelim;
  836. }
  837.  
  838.  
  839. sub Handle
  840. {
  841.     my $self= shift(@_);
  842.     $self= tied(%$self)   if  tied(%$self);
  843.     @_  and  croak "Usage:  \$handle= \$key->Handle;";
  844.     $self= $RegObj   unless  ref($self);
  845.     return $self->{HANDLE};
  846. }
  847.  
  848.  
  849. sub Path
  850. {
  851.     my $self= shift(@_);
  852.     $self= tied(%$self)   if  tied(%$self);
  853.     @_  and  croak "Usage:  \$path= \$key->Path;";
  854.     my $delim= $self->{DELIM};
  855.     $self= $RegObj   unless  ref($self);
  856.     if(  "" eq $self->{MACHINE}  ) {
  857.     return(  $delim . join( $delim, @{$self->{PATH}} ) . $delim  );
  858.     } else {
  859.     return(  $delim x 2
  860.       . join( $delim, $self->{MACHINE}, @{$self->{PATH}} )
  861.       . $delim  );
  862.     }
  863. }
  864.  
  865.  
  866. sub _Path
  867. {
  868.     my $self= shift(@_);
  869.     $self= tied(%$self)   if  tied(%$self);
  870.     @_  and  croak "Usage:  \$arrRef= \$key->_Path;";
  871.     $self= $RegObj   unless  ref($self);
  872.     return $self->{PATH};
  873. }
  874.  
  875.  
  876. sub Machine
  877. {
  878.     my $self= shift(@_);
  879.     $self= tied(%$self)   if  tied(%$self);
  880.     @_  and  croak "Usage:  \$machine= \$key->Machine;";
  881.     $self= $RegObj   unless  ref($self);
  882.     return $self->{MACHINE};
  883. }
  884.  
  885.  
  886. sub Access
  887. {
  888.     my $self= shift(@_);
  889.     $self= tied(%$self)   if  tied(%$self);
  890.     @_  and  croak "Usage:  \$access= \$key->Access;";
  891.     $self= $RegObj   unless  ref($self);
  892.     return $self->{ACCESS};
  893. }
  894.  
  895.  
  896. sub OS_Delimiter
  897. {
  898.     my $self= shift(@_);
  899.     @_  and  croak "Usage:  \$backslash= \$key->OS_Delimiter;";
  900.     return $self->{OS_DELIM};
  901. }
  902.  
  903.  
  904. sub _Roots
  905. {
  906.     my $self= shift(@_);
  907.     $self= tied(%$self)   if  ref($self)  &&  tied(%$self);
  908.     @_  and  croak "Usage:  \$varName= \$key->_Roots;";
  909.     $self= $RegObj   unless  ref($self);
  910.     return $self->{ROOTS};
  911. }
  912.  
  913.  
  914. sub Roots
  915. {
  916.     my $self= shift(@_);
  917.     $self= tied(%$self)   if  ref($self)  &&  tied(%$self);
  918.     @_  and  croak "Usage:  \$hashRef= \$key->Roots;";
  919.     $self= $RegObj   unless  ref($self);
  920.     return eval "\\%$self->{ROOTS}";
  921. }
  922.  
  923.  
  924. sub TIEHASH
  925. {
  926.     my( $this )= shift(@_);
  927.     $this= tied(%$this)   if  ref($this)  &&  tied(%$this);
  928.     my( $key )= @_;
  929.     if(  1 == @_  &&  ref($key)  &&  "$key" =~ /=/  ) {
  930.     return $key;    # $key is already an object (blessed reference).
  931.     }
  932.     return $this->new( @_ );
  933. }
  934.  
  935.  
  936. sub Tie
  937. {
  938.     my $self= shift(@_);
  939.     $self= tied(%$self)   if  tied(%$self);
  940.     my( $hRef )= @_;
  941.     if(  1 != @_  ||  ! ref($hRef)  ||  "$hRef" !~ /(^|=)HASH\(/  ) {
  942.     croak "Usage: \$key->Tie(\\\%hash);";
  943.     }
  944.     return  tie %$hRef, ref($self), $self;
  945. }
  946.  
  947.  
  948. sub TiedRef
  949. {
  950.     my $self= shift(@_);
  951.     $self= tied(%$self)   if  tied(%$self);
  952.     my $hRef= @_ ? shift(@_) : {};
  953.     return ()   if  ! defined($self);
  954.     $self->Tie($hRef);
  955.     bless $hRef, ref($self);
  956.     return $hRef;
  957. }
  958.  
  959.  
  960. sub _Flags
  961. {
  962.     my $self= shift(@_);
  963.     $self= tied(%$self)   if  tied(%$self);
  964.     my $oldFlags= $self->{FLAGS};
  965.     if(  1 == @_  ) {
  966.     $self->{FLAGS}= shift(@_);
  967.     } elsif(  0 != @_  ) {
  968.     croak "Usage:  \$oldBits= \$key->_Flags(\$newBits);";
  969.     }
  970.     return $oldFlags;
  971. }
  972.  
  973.  
  974. sub ArrayValues
  975. {
  976.     my $self= shift(@_);
  977.     $self= tied(%$self)   if  tied(%$self);
  978.     my $oldFlag= $Flag_ArrVal == ( $Flag_ArrVal & $self->{FLAGS} );
  979.     if(  1 == @_  ) {
  980.     my $bool= shift(@_);
  981.     if(  $bool  ) {
  982.         $self->{FLAGS} |= $Flag_ArrVal;
  983.     } else {
  984.         $self->{FLAGS} &= ~( $Flag_ArrVal | $Flag_TieVal );
  985.     }
  986.     } elsif(  0 != @_  ) {
  987.     croak "Usage:  \$oldBool= \$key->ArrayValues(\$newBool);";
  988.     }
  989.     return $oldFlag;
  990. }
  991.  
  992.  
  993. sub TieValues
  994. {
  995.     my $self= shift(@_);
  996.     $self= tied(%$self)   if  tied(%$self);
  997.     my $oldFlag= $Flag_TieVal == ( $Flag_TieVal & $self->{FLAGS} );
  998.     if(  1 == @_  ) {
  999.     my $bool= shift(@_);
  1000.     if(  $bool  ) {
  1001.         croak "${PACK}->TieValues cannot be enabled with this version";
  1002.         $self->{FLAGS} |= $Flag_TieVal;
  1003.     } else {
  1004.         $self->{FLAGS} &= ~$Flag_TieVal;
  1005.     }
  1006.     } elsif(  0 != @_  ) {
  1007.     croak "Usage:  \$oldBool= \$key->TieValues(\$newBool);";
  1008.     }
  1009.     return $oldFlag;
  1010. }
  1011.  
  1012.  
  1013. sub FastDelete
  1014. {
  1015.     my $self= shift(@_);
  1016.     $self= tied(%$self)   if  tied(%$self);
  1017.     my $oldFlag= $Flag_FastDel == ( $Flag_FastDel & $self->{FLAGS} );
  1018.     if(  1 == @_  ) {
  1019.     my $bool= shift(@_);
  1020.     if(  $bool  ) {
  1021.         $self->{FLAGS} |= $Flag_FastDel;
  1022.     } else {
  1023.         $self->{FLAGS} &= ~$Flag_FastDel;
  1024.     }
  1025.     } elsif(  0 != @_  ) {
  1026.     croak "Usage:  \$oldBool= \$key->FastDelete(\$newBool);";
  1027.     }
  1028.     return $oldFlag;
  1029. }
  1030.  
  1031.  
  1032. sub SplitMultis
  1033. {
  1034.     my $self= shift(@_);
  1035.     $self= tied(%$self)   if  tied(%$self);
  1036.     my $oldFlag= $Flag_Split == ( $Flag_Split & $self->{FLAGS} );
  1037.     if(  1 == @_  ) {
  1038.     my $bool= shift(@_);
  1039.     if(  $bool  ) {
  1040.         $self->{FLAGS} |= $Flag_Split;
  1041.     } else {
  1042.         $self->{FLAGS} &= ~$Flag_Split;
  1043.     }
  1044.     } elsif(  0 != @_  ) {
  1045.     croak "Usage:  \$oldBool= \$key->SplitMultis(\$newBool);";
  1046.     }
  1047.     return $oldFlag;
  1048. }
  1049.  
  1050.  
  1051. sub DWordsToHex
  1052. {
  1053.     my $self= shift(@_);
  1054.     $self= tied(%$self)   if  tied(%$self);
  1055.     my $oldFlag= $Flag_HexDWord == ( $Flag_HexDWord & $self->{FLAGS} );
  1056.     if(  1 == @_  ) {
  1057.     my $bool= shift(@_);
  1058.     if(  $bool  ) {
  1059.         $self->{FLAGS} |= $Flag_HexDWord;
  1060.     } else {
  1061.         $self->{FLAGS} &= ~$Flag_HexDWord;
  1062.     }
  1063.     } elsif(  0 != @_  ) {
  1064.     croak "Usage:  \$oldBool= \$key->DWordsToHex(\$newBool);";
  1065.     }
  1066.     return $oldFlag;
  1067. }
  1068.  
  1069.  
  1070. sub FixSzNulls
  1071. {
  1072.     my $self= shift(@_);
  1073.     $self= tied(%$self)   if  tied(%$self);
  1074.     my $oldFlag= $Flag_FixNulls == ( $Flag_FixNulls & $self->{FLAGS} );
  1075.     if(  1 == @_  ) {
  1076.     my $bool= shift(@_);
  1077.     if(  $bool  ) {
  1078.         $self->{FLAGS} |= $Flag_FixNulls;
  1079.     } else {
  1080.         $self->{FLAGS} &= ~$Flag_FixNulls;
  1081.     }
  1082.     } elsif(  0 != @_  ) {
  1083.     croak "Usage:  \$oldBool= \$key->FixSzNulls(\$newBool);";
  1084.     }
  1085.     return $oldFlag;
  1086. }
  1087.  
  1088.  
  1089. sub DualTypes
  1090. {
  1091.     my $self= shift(@_);
  1092.     $self= tied(%$self)   if  tied(%$self);
  1093.     my $oldFlag= $Flag_DualTyp == ( $Flag_DualTyp & $self->{FLAGS} );
  1094.     if(  1 == @_  ) {
  1095.     my $bool= shift(@_);
  1096.     if(  $bool  ) {
  1097.         croak "${PACK}->DualTypes cannot be enabled since ",
  1098.           "SetDualVar module not installed"
  1099.           unless  $_SetDualVar;
  1100.         $self->{FLAGS} |= $Flag_DualTyp;
  1101.     } else {
  1102.         $self->{FLAGS} &= ~$Flag_DualTyp;
  1103.     }
  1104.     } elsif(  0 != @_  ) {
  1105.     croak "Usage:  \$oldBool= \$key->DualTypes(\$newBool);";
  1106.     }
  1107.     return $oldFlag;
  1108. }
  1109.  
  1110.  
  1111. sub DualBinVals
  1112. {
  1113.     my $self= shift(@_);
  1114.     $self= tied(%$self)   if  tied(%$self);
  1115.     my $oldFlag= $Flag_DualBin == ( $Flag_DualBin & $self->{FLAGS} );
  1116.     if(  1 == @_  ) {
  1117.     my $bool= shift(@_);
  1118.     if(  $bool  ) {
  1119.         croak "${PACK}->DualBinVals cannot be enabled since ",
  1120.           "SetDualVar module not installed"
  1121.           unless  $_SetDualVar;
  1122.         $self->{FLAGS} |= $Flag_DualBin;
  1123.     } else {
  1124.         $self->{FLAGS} &= ~$Flag_DualBin;
  1125.     }
  1126.     } elsif(  0 != @_  ) {
  1127.     croak "Usage:  \$oldBool= \$key->DualBinVals(\$newBool);";
  1128.     }
  1129.     return $oldFlag;
  1130. }
  1131.  
  1132.  
  1133. sub GetOptions
  1134. {
  1135.     my $self= shift(@_);
  1136.     $self= tied(%$self)   if  tied(%$self);
  1137.     my( $opt, $meth );
  1138.     if(  ! @_  ||  1 == @_  &&  "HASH" eq ref($_[0])  ) {
  1139.     my $href= @_ ? $_[0] : {};
  1140.     foreach $opt (  grep !/^Allow/, @_opt_subs  ) {
  1141.         $meth= $_opt_subs{$opt};
  1142.         $href->{$opt}=  $self->$meth();
  1143.     }
  1144.     return @_ ? $self : $href;
  1145.     }
  1146.     my @old;
  1147.     foreach $opt (  @_  ) {
  1148.     $meth= $_opt_subs{$opt};
  1149.     if(  defined $meth  ) {
  1150.         if(  $opt eq "AllowLoad"  ||  $opt eq "AllowSave"  ) {
  1151.         croak "${PACK}->GetOptions:  Getting current setting of $opt ",
  1152.               "not supported in this release";
  1153.         }
  1154.         push(  @old,  $self->$meth()  );
  1155.     } else {
  1156.         croak "${PACK}->GetOptions:  Invalid option ($opt) ",
  1157.           "not one of ( ", join(" ",grep !/^Allow/, @_opt_subs), " )";
  1158.     }
  1159.     }
  1160.     return wantarray ? @old : $old[-1];
  1161. }
  1162.  
  1163.  
  1164. sub SetOptions
  1165. {
  1166.     my $self= shift(@_);
  1167.     # Don't get object if hash ref so "ref" returns original ref.
  1168.     my( $opt, $meth, @old );
  1169.     while(  @_  ) {
  1170.     $opt= shift(@_);
  1171.     $meth= $_opt_subs{$opt};
  1172.     if(  ! @_  ) {
  1173.         croak "${PACK}->SetOptions:  Option value missing ",
  1174.           "after option name ($opt)";
  1175.     } elsif(  defined $meth  ) {
  1176.         push(  @old,  $self->$meth( shift(@_) )  );
  1177.     } elsif(  $opt eq substr("reference",0,length($opt))  ) {
  1178.         shift(@_)   if  @_;
  1179.         push(  @old,  $self  );
  1180.     } else {
  1181.         croak "${PACK}->SetOptions:  Invalid option ($opt) ",
  1182.           "not one of ( @_opt_subs )";
  1183.     }
  1184.     }
  1185.     return wantarray ? @old : $old[-1];
  1186. }
  1187.  
  1188.  
  1189. sub _parseTiedEnt
  1190. {
  1191.     my $self= shift(@_);
  1192.     $self= tied(%$self)   if  tied(%$self);
  1193.     my $ent= shift(@_);
  1194.     my $delim= shift(@_);
  1195.     my $dlen= length( $delim );
  1196.     my $parent= @_ ? shift(@_) : 0;
  1197.     my $off;
  1198.     if(  $delim x 2 eq substr($ent,0,2*$dlen)  &&  "NONE" eq $self->Handle  ) {
  1199.     if(  0 <= ( $off= index( $ent, $delim x 2, 2*$dlen ) )  ) {
  1200.         return(  substr( $ent, 0, $off ),  substr( $ent, 2*$dlen+$off )  );
  1201.     } elsif(  $delim eq substr($ent,-$dlen)  ) {
  1202.         return( substr($ent,0,-$dlen) );
  1203.     } elsif(  2*$dlen <= ( $off= rindex( $ent, $delim ) )  ) {
  1204.         return(  substr( $ent, 0, $off ),
  1205.           undef,  substr( $ent, $dlen+$off )  );
  1206.     } elsif(  $parent  ) {
  1207.         return();
  1208.     } else {
  1209.         return( $ent );
  1210.     }
  1211.     } elsif(  $delim eq substr($ent,0,$dlen)  &&  "NONE" ne $self->Handle  ) {
  1212.     return( undef, substr($ent,$dlen) );
  1213.     } elsif(  $self->{MEMBERS}  &&  $self->_MembersHash->{$ent}  ) {
  1214.     return( substr($ent,0,-$dlen) );
  1215.     } elsif(  0 <= ( $off= index( $ent, $delim x 2 ) )  ) {
  1216.     return(  substr( $ent, 0, $off ),  substr( $ent, 2*$dlen+$off ) );
  1217.     } elsif(  $delim eq substr($ent,-$dlen)  ) {
  1218.     if(  $parent
  1219.      &&  0 <= ( $off= rindex( $ent, $delim, length($ent)-2*$dlen ) )  ) {
  1220.         return(  substr($ent,0,$off),
  1221.           undef,  undef,  substr($ent,$dlen+$off,-$dlen)  );
  1222.     } else {
  1223.         return( substr($ent,0,-$dlen) );
  1224.     }
  1225.     } elsif(  0 <= ( $off= rindex( $ent, $delim ) )  ) {
  1226.     return(
  1227.       substr( $ent, 0, $off ),  undef,  substr( $ent, $dlen+$off )  );
  1228.     } else {
  1229.     return( undef, undef, $ent );
  1230.     }
  1231. }
  1232.  
  1233.  
  1234. sub _FetchValue
  1235. {
  1236.     my $self= shift( @_ );
  1237.     my( $val, $createKey )= @_;
  1238.     my( $data, $type );
  1239.     if(  ( $data, $type )= $self->GetValue( $val )  ) {
  1240.     return $self->ArrayValues ? [ $data, $type ]
  1241.            : wantarray        ? ( $data, $type )
  1242.                   : $data;
  1243.     } elsif(  $createKey  and  $data= $self->new($val)  ) {
  1244.     return $data->TiedRef;
  1245.     } else {
  1246.     return ();
  1247.     }
  1248. }
  1249.  
  1250.  
  1251. sub FETCH
  1252. {
  1253.     my $self= shift(@_);
  1254.     my $ent= shift(@_);
  1255.     my $delim= $self->Delimiter;
  1256.     my( $key, $val, $ambig )= $self->_parseTiedEnt( $ent, $delim, 0 );
  1257.     my $sub;
  1258.     if(  defined($key)  ) {
  1259.     if(  defined($self->{MEMBHASH})
  1260.      &&  $self->{MEMBHASH}->{$key.$delim}
  1261.      &&  0 <= index($key,$delim)  ) {
  1262.         return ()
  1263.           unless  $sub= $self->new( $key,
  1264.                   {"Delimiter"=>$self->OS_Delimiter} );
  1265.         $sub->Delimiter($delim);
  1266.     } else {
  1267.         return ()
  1268.           unless  $sub= $self->new( $key );
  1269.     }
  1270.     } else {
  1271.     $sub= $self;
  1272.     }
  1273.     if(  defined($val)  ) {
  1274.     return $sub->_FetchValue( $val );
  1275.     } elsif(  ! defined($ambig)  ) {
  1276.     return $sub->TiedRef;
  1277.     } elsif(  defined($key)  ) {
  1278.     return $sub->FETCH(  $ambig  );
  1279.     } else {
  1280.     return $sub->_FetchValue( $ambig, "" ne $ambig );
  1281.     }
  1282. }
  1283.  
  1284.  
  1285. sub _FetchOld
  1286. {
  1287.     my( $self, $key )= @_;
  1288.     my $old= $self->FETCH($key);
  1289.     if(  $old  ) {
  1290.     my $copy= {};
  1291.     %$copy= %$old;
  1292.     return $copy;
  1293.     }
  1294.     # return $^E;
  1295.     return _Err;
  1296. }
  1297.  
  1298.  
  1299. sub DELETE
  1300. {
  1301.     my $self= shift(@_);
  1302.     my $ent= shift(@_);
  1303.     my $delim= $self->Delimiter;
  1304.     my( $key, $val, $ambig, $subkey )= $self->_parseTiedEnt( $ent, $delim, 1 );
  1305.     my $sub;
  1306.     my $fast= defined(wantarray) ? $self->FastDelete : 2;
  1307.     my $old= 1;    # Value returned if FastDelete is set.
  1308.     if(  defined($key)
  1309.      &&  ( defined($val) || defined($ambig) || defined($subkey) )  ) {
  1310.     return ()
  1311.       unless  $sub= $self->new( $key );
  1312.     } else {
  1313.     $sub= $self;
  1314.     }
  1315.     if(  defined($val)  ) {
  1316.     $old= $sub->GetValue($val) || _Err   unless  2 <= $fast;
  1317.     $sub->RegDeleteValue( $val );
  1318.     } elsif(  defined($subkey)  ) {
  1319.     $old= $sub->_FetchOld( $subkey.$delim )   unless  $fast;
  1320.     $sub->RegDeleteKey( $subkey );
  1321.     } elsif(  defined($ambig)  ) {
  1322.     if(  defined($key)  ) {
  1323.         $old= $sub->DELETE($ambig);
  1324.     } else {
  1325.         $old= $sub->GetValue($ambig) || _Err   unless  2 <= $fast;
  1326.         if(  defined( $old )  ) {
  1327.         $sub->RegDeleteValue( $ambig );
  1328.         } else {
  1329.         $old= $sub->_FetchOld( $ambig.$delim )   unless  $fast;
  1330.         $sub->RegDeleteKey( $ambig );
  1331.         }
  1332.     }
  1333.     } elsif(  defined($key)  ) {
  1334.     $old= $sub->_FetchOld( $key.$delim )   unless  $fast;
  1335.     $sub->RegDeleteKey( $key );
  1336.     } else {
  1337.     croak "${PACK}->DELETE:  Key ($ent) can never be deleted";
  1338.     }
  1339.     return $old;
  1340. }
  1341.  
  1342.  
  1343. sub SetValue
  1344. {
  1345.     my $self= shift(@_);
  1346.     $self= tied(%$self)   if  tied(%$self);
  1347.     my $name= shift(@_);
  1348.     my $data= shift(@_);
  1349.     my( $type )= @_;
  1350.     my $size;
  1351.     if(  ! defined($type)  ) {
  1352.     if(  "ARRAY" eq ref($data)  ) {
  1353.         croak "${PACK}->SetValue:  Value is array reference but ",
  1354.           "no data type given"
  1355.           unless  2 == @$data;
  1356.         ( $data, $type )= @$data;
  1357.     } else {
  1358.         $type= REG_SZ;
  1359.     }
  1360.     }
  1361.     $type= _constant($type,"registry value data type")   if  $type =~ /^REG_/;
  1362.     if(  REG_MULTI_SZ == $type  &&  "ARRAY" eq ref($data)  ) {
  1363.     $data= join( "\0", @$data ) . "\0\0";
  1364.     ## $data= pack(  "a*" x (1+@$data),  map( $_."\0", @$data, "" )  );
  1365.     } elsif(  ( REG_SZ == $type || REG_EXPAND_SZ == $type )
  1366.           &&  $self->FixSzNulls  ) {
  1367.     $data .= "\0"    unless  "\0" eq substr($data,0,-1);
  1368.     } elsif(  REG_DWORD == $type  &&  $data =~ /^0x[0-9a-fA-F]{3,}$/  ) {
  1369.     $data= pack( "L", hex($data) );
  1370.     # We could to $data=pack("L",$data) for REG_DWORD but I see
  1371.     # no nice way to always destinguish when to do this or not.
  1372.     }
  1373.     return $self->RegSetValueEx( $name, 0, $type, $data, length($data) );
  1374. }
  1375.  
  1376.  
  1377. sub StoreKey
  1378. {
  1379.     my $this= shift(@_);
  1380.     $this= tied(%$this)   if  ref($this)  &&  tied(%$this);
  1381.     my $subKey= shift(@_);
  1382.     my $data= shift(@_);
  1383.     my $ent;
  1384.     my $self;
  1385.     if(  ! ref($data)  ||  "$data" !~ /(^|=)HASH/  ) {
  1386.     croak "${PACK}->StoreKey:  For ", $this->Path.$subKey, ",\n",
  1387.           "  subkey data must be a HASH reference";
  1388.     }
  1389.     if(  defined( $$data{""} )  &&  "HASH" eq ref($$data{""})  ) {
  1390.     $self= $this->CreateKey( $subKey, delete $$data{""} );
  1391.     } else {
  1392.     $self= $this->CreateKey( $subKey );
  1393.     }
  1394.     return ()   if  ! defined($self);
  1395.     foreach $ent (  keys(%$data)  ) {
  1396.     return ()
  1397.       unless  $self->STORE( $ent, $$data{$ent} );
  1398.     }
  1399.     return $self;
  1400. }
  1401.  
  1402.  
  1403. # = { "" => {OPT=>VAL}, "val"=>[], "key"=>{} } creates a new key
  1404. # = "string" creates a new REG_SZ value
  1405. # = [ data, type ] creates a new value
  1406. sub STORE
  1407. {
  1408.     my $self= shift(@_);
  1409.     my $ent= shift(@_);
  1410.     my $data= shift(@_);
  1411.     my $delim= $self->Delimiter;
  1412.     my( $key, $val, $ambig, $subkey )= $self->_parseTiedEnt( $ent, $delim, 1 );
  1413.     my $sub;
  1414.     if(  defined($key)
  1415.      &&  ( defined($val) || defined($ambig) || defined($subkey) )  ) {
  1416.     return ()
  1417.       unless  $sub= $self->new( $key );
  1418.     } else {
  1419.     $sub= $self;
  1420.     }
  1421.     if(  defined($val)  ) {
  1422.     croak "${PACK}->STORE:  For ", $sub->Path.$delim.$val, ",\n",
  1423.           "  value data cannot be a HASH reference"
  1424.       if  ref($data)  &&  "$data" =~ /(^|=)HASH/;
  1425.     $sub->SetValue( $val, $data );
  1426.     } elsif(  defined($subkey)  ) {
  1427.     croak "${PACK}->STORE:  For ", $sub->Path.$subkey.$delim, ",\n",
  1428.           "  subkey data must be a HASH reference"
  1429.       unless  ref($data)  &&  "$data" =~ /(^|=)HASH/;
  1430.     $sub->StoreKey( $subkey, $data );
  1431.     } elsif(  defined($ambig)  ) {
  1432.     if(  ref($data)  &&  "$data" =~ /(^|=)HASH/  ) {
  1433.         $sub->StoreKey( $ambig, $data );
  1434.     } else {
  1435.         $sub->SetValue( $ambig, $data );
  1436.     }
  1437.     } elsif(  defined($key)  ) {
  1438.     croak "${PACK}->STORE:  For ", $sub->Path.$key.$delim, ",\n",
  1439.           "  subkey data must be a HASH reference"
  1440.       unless  ref($data)  &&  "$data" =~ /(^|=)HASH/;
  1441.     $sub->StoreKey( $key, $data );
  1442.     } else {
  1443.     croak "${PACK}->STORE:  Key ($ent) can never be created nor set";
  1444.     }
  1445. }
  1446.  
  1447.  
  1448. sub EXISTS
  1449. {
  1450.     my $self= shift(@_);
  1451.     my $ent= shift(@_);
  1452.     return defined( $self->FETCH($ent) );
  1453. }
  1454.  
  1455.  
  1456. sub FIRSTKEY
  1457. {
  1458.     my $self= shift(@_);
  1459.     my $members= $self->_MemberNames;
  1460.     $self->{PREVIDX}= 0;
  1461.     return @{$members} ? $members->[0] : undef;
  1462. }
  1463.  
  1464.  
  1465. sub NEXTKEY
  1466. {
  1467.     my $self= shift(@_);
  1468.     my $prev= shift(@_);
  1469.     my $idx= $self->{PREVIDX};
  1470.     my $members= $self->_MemberNames;
  1471.     if(  ! defined($idx)  ||  $prev ne $members->[$idx]  ) {
  1472.     $idx= 0;
  1473.     while(  $idx < @$members  &&  $prev ne $members->[$idx]  ) {
  1474.         $idx++;
  1475.     }
  1476.     }
  1477.     $self->{PREVIDX}= ++$idx;
  1478.     return $members->[$idx];
  1479. }
  1480.  
  1481.  
  1482. sub DESTROY
  1483. {
  1484.     my $self= shift(@_);
  1485.     return   if  tied(%$self);
  1486.     my $unload= $self->{UNLOADME};
  1487.     my $debug= $ENV{DEBUG_TIE_REGISTRY};
  1488.     if(  defined($debug)  ) {
  1489.     if(  1 < $debug  ) {
  1490.         my $hand= $self->Handle;
  1491.         my $dep= $self->{DEPENDON};
  1492.         carp "${PACK} destroying ", $self->Path, " (",
  1493.          "NONE" eq $hand ? $hand : sprintf("0x%lX",$hand), ")",
  1494.          defined($dep) ? (" [depends on ",$dep->Path,"]") : ();
  1495.     } else {
  1496.         warn "${PACK} destroying ", $self->Path, ".\n";
  1497.     }
  1498.     }
  1499.     $self->RegCloseKey
  1500.       unless  "NONE" eq $self->Handle;
  1501.     if(  defined($unload)  ) {
  1502.     if(  defined($debug)  &&  1 < $debug  ) {
  1503.         my( $obj, $subKey, $file )= @$unload;
  1504.         warn "Unloading ", $self->Path,
  1505.           " (from ", $obj->Path, ", $subKey)...\n";
  1506.     }
  1507.     $self->UnLoad
  1508.       ||  warn "Couldn't unload ", $self->Path, ": ", _ErrMsg, "\n";
  1509.     ## carp "Never unloaded ${PACK}::Load($$unload[2])";
  1510.     }
  1511.     #delete $self->{DEPENDON};
  1512. }
  1513.  
  1514.  
  1515. use vars qw( @CreateKey_Opts %CreateKey_Opts %_KeyDispNames );
  1516. @CreateKey_Opts= qw( Access Class Options Delimiter
  1517.              Disposition Security Volatile Backup );
  1518. @CreateKey_Opts{@CreateKey_Opts}= (1) x @CreateKey_Opts;
  1519. %_KeyDispNames= ( REG_CREATED_NEW_KEY() => "REG_CREATED_NEW_KEY",
  1520.           REG_OPENED_EXISTING_KEY() => "REG_OPENED_EXISTING_KEY" );
  1521.  
  1522. sub CreateKey
  1523. {
  1524.     my $self= shift(@_);
  1525.     my $tied= tied(%$self);
  1526.     $self= tied(%$self)   if  $tied;
  1527.     my( $subKey, $opts )= @_;
  1528.     my( $sam )= $self->Access;
  1529.     my( $delim )= $self->Delimiter;
  1530.     my( $class )= "";
  1531.     my( $flags )= 0;
  1532.     my( $secure )= [];
  1533.     my( $garb )= [];
  1534.     my( $result )= \$garb;
  1535.     my( $handle )= 0;
  1536.     if(  @_ < 1  ||  2 < @_
  1537.      ||  2 == @_ && "HASH" ne ref($opts)  ) {
  1538.     croak "Usage:  \$new= \$old->CreateKey( \$subKey, {OPT=>VAL,...} );\n",
  1539.           "  options: @CreateKey_Opts\nCalled";
  1540.     }
  1541.     if(  defined($opts)  ) {
  1542.     $sam= $opts->{"Access"}   if  defined($opts->{"Access"});
  1543.     $class= $opts->{Class}   if  defined($opts->{Class});
  1544.     $flags= $opts->{Options}   if  defined($opts->{Options});
  1545.     $delim= $opts->{"Delimiter"}   if  defined($opts->{"Delimiter"});
  1546.     $secure= $opts->{Security}   if  defined($opts->{Security});
  1547.     if(  defined($opts->{Disposition})  ) {
  1548.         "SCALAR" eq ref($opts->{Disposition})
  1549.           or  croak "${PACK}->CreateKey option `Disposition'",
  1550.             " must provide a scalar reference";
  1551.         $result= $opts->{Disposition};
  1552.     }
  1553.     if(  0 == $flags  ) {
  1554.         $flags |= REG_OPTION_VOLATILE
  1555.           if  defined($opts->{Volatile})  &&  $opts->{Volatile};
  1556.         $flags |= REG_OPTION_BACKUP_RESTORE
  1557.           if  defined($opts->{Backup})  &&  $opts->{Backup};
  1558.     }
  1559.     }
  1560.     my $subPath= ref($subKey) ? $subKey : $self->_split($subKey,$delim);
  1561.     $subKey= join( $self->OS_Delimiter, @$subPath );
  1562.     $self->RegCreateKeyEx( $subKey, 0, $class, $flags, $sam,
  1563.                $secure, $handle, $$result )
  1564.       or  return ();
  1565.     if(  ! ref($$result)  &&  $self->DualTypes  ) {
  1566.     $$result= _DualVal( \%_KeyDispNames, $$result );
  1567.     }
  1568.     my $new= $self->_new( $handle, [ @{$self->_Path}, @{$subPath} ] );
  1569.     $new->{ACCESS}= $sam;
  1570.     $new->{DELIM}= $delim;
  1571.     $new= $new->TiedRef   if  $tied;
  1572.     return $new;
  1573. }
  1574.  
  1575.  
  1576. use vars qw( $Load_Cnt @Load_Opts %Load_Opts );
  1577. $Load_Cnt= 0;
  1578. @Load_Opts= qw(NewSubKey);
  1579. @Load_Opts{@Load_Opts}= (1) x @Load_Opts;
  1580.  
  1581. sub Load
  1582. {
  1583.     my $this= shift(@_);
  1584.     my $tied=  ref($this)  &&  tied(%$this);
  1585.     $this= tied(%$this)   if  $tied;
  1586.     my( $file, $subKey, $opts )= @_;
  1587.     if(  2 == @_  &&  "HASH" eq ref($subKey)  ) {
  1588.     $opts= $subKey;
  1589.     undef $subKey;
  1590.     }
  1591.     @_ < 1  ||  3 < @_  ||  defined($opts) && "HASH" ne ref($opts)
  1592.       and  croak "Usage:  \$key= ",
  1593.          "${PACK}->Load( \$fileName, [\$newSubKey,] {OPT=>VAL...} );\n",
  1594.          "  options: @Load_Opts @new_Opts\nCalled";
  1595.     if(  defined($opts)  &&  exists($opts->{NewSubKey})  ) {
  1596.     $subKey= delete $opts->{NewSubKey};
  1597.     }
  1598.     if(  ! defined( $subKey )  ) {
  1599.     if(  "" ne $this->Machine  ) {
  1600.         ( $this )= $this->_connect( [$this->Machine,"LMachine"] );
  1601.     } else {
  1602.         ( $this )= $this->_rootKey( "LMachine" );    # Could also be "Users"
  1603.     }
  1604.     $subKey= "PerlTie:$$." . ++$Load_Cnt;
  1605.     }
  1606.     $this->RegLoadKey( $subKey, $file )
  1607.       or  return ();
  1608.     my $self= $this->new( $subKey, defined($opts) ? $opts : () );
  1609.     if(  ! defined( $self )  ) {
  1610.     { my $err= Win32::GetLastError();
  1611.     #{ local( $^E ); #}
  1612.         $this->RegUnLoadKey( $subKey )  or  carp
  1613.           "Can't unload $subKey from ", $this->Path, ": ", _ErrMsg, "\n";
  1614.         Win32::SetLastError($err);
  1615.     }
  1616.     return ();
  1617.     }
  1618.     $self->{UNLOADME}= [ $this, $subKey, $file ];
  1619.     $self= $self->TiedRef   if  $tied;
  1620.     return $self;
  1621. }
  1622.  
  1623.  
  1624. sub UnLoad
  1625. {
  1626.     my $self= shift(@_);
  1627.     $self= tied(%$self)   if  tied(%$self);
  1628.     @_  and  croak "Usage:  \$key->UnLoad;";
  1629.     my $unload= $self->{UNLOADME};
  1630.     "ARRAY" eq ref($unload)
  1631.       or  croak "${PACK}->UnLoad called on a key which was not Load()ed";
  1632.     my( $obj, $subKey, $file )= @$unload;
  1633.     $self->RegCloseKey;
  1634.     return Win32API::Registry::RegUnLoadKey( $obj->Handle, $subKey );
  1635. }
  1636.  
  1637.  
  1638. sub AllowSave
  1639. {
  1640.     my $self= shift(@_);
  1641.     $self= tied(%$self)   if  tied(%$self);
  1642.     return $self->AllowPriv( "SeBackupPrivilege", @_ );
  1643. }
  1644.  
  1645.  
  1646. sub AllowLoad
  1647. {
  1648.     my $self= shift(@_);
  1649.     $self= tied(%$self)   if  tied(%$self);
  1650.     return $self->AllowPriv( "SeRestorePrivilege", @_ );
  1651. }
  1652.  
  1653.  
  1654. # RegNotifyChangeKeyValue( hKey, bWatchSubtree, iNotifyFilter, hEvent, bAsync )
  1655.  
  1656.  
  1657. sub RegCloseKey { my $self= shift(@_);
  1658.     Win32API::Registry::RegCloseKey $self->Handle, @_; }
  1659. sub RegConnectRegistry { my $self= shift(@_);
  1660.     Win32API::Registry::RegConnectRegistry @_; }
  1661. sub RegCreateKey { my $self= shift(@_);
  1662.     Win32API::Registry::RegCreateKey $self->Handle, @_; }
  1663. sub RegCreateKeyEx { my $self= shift(@_);
  1664.     Win32API::Registry::RegCreateKeyEx $self->Handle, @_; }
  1665. sub RegDeleteKey { my $self= shift(@_);
  1666.     Win32API::Registry::RegDeleteKey $self->Handle, @_; }
  1667. sub RegDeleteValue { my $self= shift(@_);
  1668.     Win32API::Registry::RegDeleteValue $self->Handle, @_; }
  1669. sub RegEnumKey { my $self= shift(@_);
  1670.     Win32API::Registry::RegEnumKey $self->Handle, @_; }
  1671. sub RegEnumKeyEx { my $self= shift(@_);
  1672.     Win32API::Registry::RegEnumKeyEx $self->Handle, @_; }
  1673. sub RegEnumValue { my $self= shift(@_);
  1674.     Win32API::Registry::RegEnumValue $self->Handle, @_; }
  1675. sub RegFlushKey { my $self= shift(@_);
  1676.     Win32API::Registry::RegFlushKey $self->Handle, @_; }
  1677. sub RegGetKeySecurity { my $self= shift(@_);
  1678.     Win32API::Registry::RegGetKeySecurity $self->Handle, @_; }
  1679. sub RegLoadKey { my $self= shift(@_);
  1680.     Win32API::Registry::RegLoadKey $self->Handle, @_; }
  1681. sub RegNotifyChangeKeyValue { my $self= shift(@_);
  1682.     Win32API::Registry::RegNotifyChangeKeyValue $self->Handle, @_; }
  1683. sub RegOpenKey { my $self= shift(@_);
  1684.     Win32API::Registry::RegOpenKey $self->Handle, @_; }
  1685. sub RegOpenKeyEx { my $self= shift(@_);
  1686.     Win32API::Registry::RegOpenKeyEx $self->Handle, @_; }
  1687. sub RegQueryInfoKey { my $self= shift(@_);
  1688.     Win32API::Registry::RegQueryInfoKey $self->Handle, @_; }
  1689. sub RegQueryMultipleValues { my $self= shift(@_);
  1690.     Win32API::Registry::RegQueryMultipleValues $self->Handle, @_; }
  1691. sub RegQueryValue { my $self= shift(@_);
  1692.     Win32API::Registry::RegQueryValue $self->Handle, @_; }
  1693. sub RegQueryValueEx { my $self= shift(@_);
  1694.     Win32API::Registry::RegQueryValueEx $self->Handle, @_; }
  1695. sub RegReplaceKey { my $self= shift(@_);
  1696.     Win32API::Registry::RegReplaceKey $self->Handle, @_; }
  1697. sub RegRestoreKey { my $self= shift(@_);
  1698.     Win32API::Registry::RegRestoreKey $self->Handle, @_; }
  1699. sub RegSaveKey { my $self= shift(@_);
  1700.     Win32API::Registry::RegSaveKey $self->Handle, @_; }
  1701. sub RegSetKeySecurity { my $self= shift(@_);
  1702.     Win32API::Registry::RegSetKeySecurity $self->Handle, @_; }
  1703. sub RegSetValue { my $self= shift(@_);
  1704.     Win32API::Registry::RegSetValue $self->Handle, @_; }
  1705. sub RegSetValueEx { my $self= shift(@_);
  1706.     Win32API::Registry::RegSetValueEx $self->Handle, @_; }
  1707. sub RegUnLoadKey { my $self= shift(@_);
  1708.     Win32API::Registry::RegUnLoadKey $self->Handle, @_; }
  1709. sub AllowPriv { my $self= shift(@_);
  1710.     Win32API::Registry::AllowPriv @_; }
  1711.  
  1712.  
  1713. # Autoload methods go after =cut, and are processed by the autosplit program.
  1714.  
  1715. 1;
  1716. __END__
  1717.  
  1718. =head1 NAME
  1719.  
  1720. Win32::TieRegistry - Powerful and easy ways to manipulate a registry
  1721. [on Win32 for now].
  1722.  
  1723. =head1 SYNOPSIS
  1724.  
  1725.   use Win32::TieRegistry 0.20 ( UseOptionName=>UseOptionValue[,...] );
  1726.  
  1727.   $Registry->SomeMethodCall(arg1,...);
  1728.  
  1729.   $subKey= $Registry->{"Key\\SubKey\\"};
  1730.   $valueData= $Registry->{"Key\\SubKey\\\\ValueName"};
  1731.   $Registry->{"Key\\SubKey\\"}= { "NewSubKey" => {...} };
  1732.   $Registry->{"Key\\SubKey\\\\ValueName"}= "NewValueData";
  1733.   $Registry->{"\\ValueName"}= [ pack("fmt",$data), REG_DATATYPE ];
  1734.  
  1735. =head1 EXAMPLES
  1736.  
  1737.   use Win32::TieRegistry( Delimiter=>"#", ArrayValues=>0 );
  1738.   $pound= $Registry->Delimiter("/");
  1739.   $diskKey= $Registry->{"LMachine/System/Disk/"}
  1740.     or  die "Can't read LMachine/System/Disk key: $^E\n";
  1741.   $data= $key->{"/Information"}
  1742.     or  die "Can't read LMachine/System/Disk//Information value: $^E\n";
  1743.   $remoteKey= $Registry->{"//ServerA/LMachine/System/"}
  1744.     or  die "Can't read //ServerA/LMachine/System/ key: $^E\n";
  1745.   $remoteData= $remoteKey->{"Disk//Information"}
  1746.     or  die "Can't read ServerA's System/Disk//Information value: $^E\n";
  1747.   foreach $entry (  keys(%$diskKey)  ) {
  1748.       ...
  1749.   }
  1750.   foreach $subKey (  $diskKey->SubKeyNames  ) {
  1751.       ...
  1752.   }
  1753.   $diskKey->AllowSave( 1 );
  1754.   $diskKey->RegSaveKey( "C:/TEMP/DiskReg", [] );
  1755.  
  1756. =head1 DESCRIPTION
  1757.  
  1758. The I<Win32::TieRegistry> module lets you manipulate the Registry
  1759. via objects [as in "object oriented"] or via tied hashes.  But
  1760. you will probably mostly use a combination reference, that is, a
  1761. reference to a tied hash that has also been made an object so that
  1762. you can mix both access methods [as shown above].
  1763.  
  1764. If you did not get this module as part of L<libwin32>, you might
  1765. want to get a recent version of L<libwin32> from CPAN which should
  1766. include this module and the I<Win32API::Registry> module that it
  1767. uses.
  1768.  
  1769. Skip to the L<SUMMARY> section if you just want to dive in and start
  1770. using the Registry from Perl.
  1771.  
  1772. Accessing and manipulating the registry is extremely simple using
  1773. I<Win32::TieRegistry>.  A single, simple expression can return
  1774. you almost any bit of information stored in the Registry.
  1775. I<Win32::TieRegistry> also gives you full access to the "raw"
  1776. underlying API calls so that you can do anything with the Registry
  1777. in Perl that you could do in C.  But the "simple" interface has
  1778. been carefully designed to handle almost all operations itself
  1779. without imposing arbitrary limits while providing sensible
  1780. defaults so you can list only the parameters you care about.
  1781.  
  1782. But first, an overview of the Registry itself.
  1783.  
  1784. =head2 The Registry
  1785.  
  1786. The Registry is a forest:  a collection of several tree structures.
  1787. The root of each tree is a key.  These root keys are identified by
  1788. predefined constants whose names start with "HKEY_".  Although all
  1789. keys have a few attributes associated with each [a class, a time
  1790. stamp, and security information], the most important aspect of keys
  1791. is that each can contain subkeys and can contain values.
  1792.  
  1793. Each subkey has a name:  a string which cannot be blank and cannot
  1794. contain the delimiter character [backslash: C<'\\'>] nor nul
  1795. [C<'\0'>].  Each subkey is also a key and so can contain subkeys
  1796. and values [and has a class, time stamp, and security information].
  1797.  
  1798. Each value has a name:  a string which E<can> be blank and E<can>
  1799. contain the delimiter character [backslash: C<'\\'>] and any
  1800. character except for null, C<'\0'>.  Each value also has data
  1801. associated with it.  Each value's data is a contiguous chunk of
  1802. bytes, which is exactly what a Perl string value is so Perl
  1803. strings will usually be used to represent value data.
  1804.  
  1805. Each value also has a data type which says how to interpret the
  1806. value data.  The primary data types are:
  1807.  
  1808. =over
  1809.  
  1810. =item REG_SZ
  1811.  
  1812. A null-terminated string.
  1813.  
  1814. =item REG_EXPAND_SZ
  1815.  
  1816. A null-terminated string which contains substrings consisting of a
  1817. percent sign [C<'%'>], an environment variable name, then a percent
  1818. sign, that should be replaced with the value associate with that
  1819. environment variable.  The system does I<not> automatically do this
  1820. substitution.
  1821.  
  1822. =item REG_BINARY
  1823.  
  1824. Some arbitrary binary value.  You can think of these as being
  1825. "packed" into a string.
  1826.  
  1827. If your system has the L<SetDualVar> module installed,
  1828. the C<DualBinVals()> option wasn't turned off, and you
  1829. fetch a C<REG_BINARY> value of 4 bytes or fewer, then
  1830. you can use the returned value in a numeric context to
  1831. get at the "unpacked" numeric value.  See C<GetValue()>
  1832. for more information.
  1833.  
  1834. =item REG_MULTI_SZ
  1835.  
  1836. Several null-terminated strings concatenated together with an
  1837. extra trailing C<'\0'> at the end of the list.  Note that the list
  1838. can include empty strings so use the value's length to determine
  1839. the end of the list, not the first occurrence of C<'\0\0'>.
  1840. It is best to set the C<SplitMultis()> option so I<Win32::TieRegistry>
  1841. will split these values into an array of strings for you.
  1842.  
  1843. =item REG_DWORD
  1844.  
  1845. A long [4-byte] integer value.  These values are expected either
  1846. packed into a 4-character string or as a hex string of E<more than>
  1847. 4 characters [but I<not> as a numeric value, unfortunately, as there is
  1848. no sure way to tell a numeric value from a packed 4-byte string that
  1849. just happens to be a string containing a valid numeric value].
  1850.  
  1851. How such values are returned depends on the C<DualBinVals()> and
  1852. C<DWordsToHex()> options.  See C<GetValue()> for details.
  1853.  
  1854. =back
  1855.  
  1856. In the underlying Registry calls, most places which take a
  1857. subkey name also allow you to pass in a subkey "path" -- a
  1858. string of several subkey names separated by the delimiter
  1859. character, backslash [C<'\\'>].  For example, doing
  1860. C<RegOpenKeyEx(HKEY_LOCAL_MACHINE,"SYSTEM\\DISK",...)> is much
  1861. like opening the C<"SYSTEM"> subkey of C<HKEY_LOCAL_MACHINE>,
  1862. then opening its C<"DISK"> subkey, then closing the C<"SYSTEM">
  1863. subkey.
  1864.  
  1865. All of the I<Win32::TieRegistry> features allow you to use your
  1866. own delimiter in place of the system's delimiter, [C<'\\'>].  In
  1867. most of our examples we will use a forward slash [C<'/'>] as our
  1868. delimiter as it is easier to read and less error prone to use when
  1869. writing Perl code since you have to type two backslashes for each
  1870. backslash you want in a string.  Note that this is true even when
  1871. using single quotes -- C<'\\HostName\LMachine\'> is an invalid
  1872. string and must be written as C<'\\\\HostName\\LMachine\\'>.
  1873.  
  1874. You can also connect to the registry of other computers on your
  1875. network.  This will be discussed more later.
  1876.  
  1877. Although the Registry does not have a single root key, the
  1878. I<Win32::TieRegistry> module creates a virtual root key for you
  1879. which has all of the I<HKEY_*> keys as subkeys.
  1880.  
  1881. =head2 Tied Hashes Documentation
  1882.  
  1883. Before you can use a tied hash, you must create one.  One way to
  1884. do that is via:
  1885.  
  1886.     use Win32::TieRegistry ( TiedHash => '%RegHash' );
  1887.  
  1888. which exports a C<%RegHash> variable into your package and ties it
  1889. to the virtual root key of the Registry.  An alternate method is:
  1890.  
  1891.     my %RegHash;
  1892.     use Win32::TieRegistry ( TiedHash => \%RegHash );
  1893.  
  1894. There are also several ways you can tie a hash variable to any
  1895. other key of the Registry, which are discussed later.
  1896.  
  1897. Note that you will most likely use C<$Registry> instead of using
  1898. a tied hash.  C<$Registry> is a reference to a hash that has
  1899. been tied to the virtual root of your computer's Registry [as if,
  1900. C<$Registry= \%RegHash>].  So you would use C<$Registry-E<gt>{Key}>
  1901. rather than C<$RegHash{Key}> and use C<keys %{$Registry}> rather
  1902. than C<keys %RegHash>, for example.
  1903.  
  1904. For each hash which has been tied to a Registry key, the Perl
  1905. C<keys> function will return a list containing the name of each
  1906. of the key's subkeys with a delimiter character appended to it and
  1907. containing the name of each of the key's values with a delimiter
  1908. prepended to it.  For example:
  1909.  
  1910.     keys( %{ $Registry->{"HKEY_CLASSES_ROOT\\batfile\\"} } )
  1911.  
  1912. might yield the following list value:
  1913.  
  1914.     ( "DefaultIcon\\",  # The subkey named "DefaultIcon"
  1915.       "shell\\",        # The subkey named "shell"
  1916.       "shellex\\",      # The subkey named "shellex"
  1917.       "\\",             # The default value [named ""]
  1918.       "\\EditFlags" )   # The value named "EditFlags"
  1919.  
  1920. For the virtual root key, short-hand subkey names are used as
  1921. shown below.  You can use the short-hand name, the regular
  1922. I<HKEY_*> name, or any numeric value to access these keys, but
  1923. the short-hand names are all that will be returned by the C<keys>
  1924. function.
  1925.  
  1926. =over
  1927.  
  1928. =item "Classes" for HKEY_CLASSES_ROOT
  1929.  
  1930. Contains mappings between file name extensions and the uses
  1931. for such files along with configuration information for COM
  1932. [MicroSoft's Common Object Model] objects.  Usually a link to
  1933. the C<"SOFTWARE\\Classes"> subkey of the C<HKEY_LOCAL_MACHINE>
  1934. key.
  1935.  
  1936. =item "CUser" for HKEY_CURRENT_USER
  1937.  
  1938. Contains information specific to the currently logged-in user.
  1939. Mostly software configuration information.  Usually a link to
  1940. a subkey of the C<HKEY_USERS> key.
  1941.  
  1942. =item "LMachine" for HKEY_LOCAL_MACHINE
  1943.  
  1944. Contains all manner of information about the computer.
  1945.  
  1946. =item "Users" for HKEY_USERS
  1947.  
  1948. Contains one subkey, C<".DEFAULT">, which gets copied to a new
  1949. subkey whenever a new user is added.  Also contains a subkey for
  1950. each user of the system, though only those for active users
  1951. [usually only one] are loaded at any given time.
  1952.  
  1953. =item "PerfData" for HKEY_PERFORMANCE_DATA
  1954.  
  1955. Used to access data about system performance.  Access via this key
  1956. is "special" and all but the most carefully constructed calls will
  1957. fail, usually with C<ERROR_INSUFFICIENT_BUFFER>.  For example, you
  1958. can't enumerate key names without also enumerating values which
  1959. require huge buffers but the exact buffer size required cannot be
  1960. determined beforehand because C<RegQueryInfoKey()> E<always> fails
  1961. with C<ERROR_INSUFFICIENT_BUFFER> for C<HKEY_PERFORMANCE_DATA> no
  1962. matter how it is called.  So it is currently not very useful to
  1963. tie a hash to this key.  You can use it to create an object to use
  1964. for making carefully constructed calls to the underlying Reg*()
  1965. routines.
  1966.  
  1967. =item "CConfig" for HKEY_CURRENT_CONFIG
  1968.  
  1969. Contains minimal information about the computer's current
  1970. configuration that is required very early in the boot process.
  1971. For example, setting for the display adapter such as screen
  1972. resolution and refresh rate are found in here.
  1973.  
  1974. =item "DynData" for HKEY_DYN_DATA
  1975.  
  1976. Dynamic data.  We have found no documentation for this key.
  1977.  
  1978. =back
  1979.  
  1980. A tied hash is much like a regular hash variable in Perl -- you give
  1981. it a key string inside braces, [C<{> and C<}>], and it gives you
  1982. back a value [or lets you set a value].  For I<Win32::TieRegistry>
  1983. hashes, there are two types of values that will be returned.
  1984.  
  1985. =over
  1986.  
  1987. =item SubKeys
  1988.  
  1989. If you give it a string which represents a subkey, then it will
  1990. give you back a reference to a hash which has been tied to that
  1991. subkey.  It can't return the hash itself, so it returns a
  1992. reference to it.  It also blesses that reference so that it is
  1993. also an object so you can use it to call method functions.
  1994.  
  1995. =item Values
  1996.  
  1997. If you give it a string which is a value name, then it will give
  1998. you back a string which is the data for that value.  Alternately,
  1999. you can request that it give you both the data value string and
  2000. the data value type [we discuss how to request this later].  In
  2001. this case, it would return a reference to an array where the value
  2002. data string is element C<[0]> and the value data type is element
  2003. C<[1]>.
  2004.  
  2005. =back
  2006.  
  2007. The key string which you use in the tied hash must be interpreted
  2008. to determine whether it is a value name or a key name or a path
  2009. that combines several of these or even other things.  There are
  2010. two simple rules that make this interpretation easy and
  2011. unambiguous:
  2012.  
  2013.     Put a delimiter after each key name.
  2014.     Put a delimiter in front of each value name.
  2015.  
  2016. Exactly how the key string will be intepreted is governed by the
  2017. following cases, in the order listed.  These cases are designed
  2018. to "do what you mean".  Most of the time you won't have to think
  2019. about them, especially if you follow the two simple rules above.
  2020. After the list of cases we give several examples which should be
  2021. clear enough so feel free to skip to them unless you are worried
  2022. about the details.
  2023.  
  2024. =over
  2025.  
  2026. =item Remote machines
  2027.  
  2028. If the hash is tied to the virtual root of the registry [or the
  2029. virtual root of a remote machine's registry], then we treat hash
  2030. key strings which start with the delimiter character specially.
  2031.  
  2032. If the hash key string starts with two delimiters in a row, then
  2033. those should be immediately followed by the name of a remote
  2034. machine whose registry we wish to connect to.  That can be
  2035. followed by a delimiter and more subkey names, etc.  If the
  2036. machine name is not following by anything, then a virtual root
  2037. for the remote machine's registry is created, a hash is tied to
  2038. it, and a reference to that hash it is returned.
  2039.  
  2040. =item Hash key string starts with the delimiter
  2041.  
  2042. If the hash is tied to a virtual root key, then the leading
  2043. delimiter is ignored.  It should be followed by a valid Registry
  2044. root key name [either a short-hand name like C<"LMachine">, an
  2045. I<HKEY_*> value, or a numeric value].   This alternate notation is
  2046. allowed in order to be more consistant with the C<Open()> method
  2047. function.
  2048.  
  2049. For all other Registry keys, the leading delimiter indicates
  2050. that the rest of the string is a value name.  The leading
  2051. delimiter is stripped and the rest of the string [which can
  2052. be empty and can contain more delimiters] is used as a value
  2053. name with no further parsing.
  2054.  
  2055. =item Exact match with direct subkey name followed by delimiter
  2056.  
  2057. If you have already called the Perl C<keys> function on the tied
  2058. hash [or have already called C<MemberNames> on the object] and the
  2059. hash key string exactly matches one of the strings returned, then
  2060. no further parsing is done.  In other words, if the key string
  2061. exactly matches the name of a direct subkey with a delimiter
  2062. appended, then a reference to a hash tied to that subkey is
  2063. returned [but only if C<keys> or C<MemberNames> has already
  2064. been called for that tied hash].
  2065.  
  2066. This is only important if you have selected a delimiter other than
  2067. the system default delimiter and one of the subkey names contains
  2068. the delimiter you have chosen.  This rule allows you to deal with
  2069. subkeys which contain your chosen delimiter in their name as long
  2070. as you only traverse subkeys one level at a time and always
  2071. enumerate the list of members before doing so.
  2072.  
  2073. The main advantage of this is that Perl code which recursively
  2074. traverses a hash will work on hashes tied to Registry keys even if
  2075. a non-default delimiter has been selected.
  2076.  
  2077. =item Hash key string contains two delimiters in a row
  2078.  
  2079. If the hash key string contains two [or more] delimiters in a row,
  2080. then the string is split between the first pair of delimiters.
  2081. The first part is interpreted as a subkey name or a path of subkey
  2082. names separated by delimiters and with a trailing delimiter.  The
  2083. second part is interpreted as a value name with one leading
  2084. delimiter [any extra delimiters are considered part of the value
  2085. name].
  2086.  
  2087. =item Hash key string ends with a delimiter
  2088.  
  2089. If the key string ends with a delimiter, then it is treated
  2090. as a subkey name or path of subkey names separated by delimiters.
  2091.  
  2092. =item Hash key string contains a delimiter
  2093.  
  2094. If the key string contains a delimiter, then it is split after
  2095. the last delimiter.  The first part is treated as a subkey name or
  2096. path of subkey names separated by delimiters.  The second part
  2097. is ambiguous and is treated as outlined in the next item.
  2098.  
  2099. =item Hash key string contains no delimiters
  2100.  
  2101. If the hash key string contains no delimiters, then it is ambiguous.
  2102.  
  2103. If you are reading from the hash [fetching], then we first use the
  2104. key string as a value name.  If there is a value with a matching
  2105. name in the Registry key which the hash is tied to, then the value
  2106. data string [and possibly the value data type] is returned.
  2107. Otherwise, we retry by using the hash key string as a subkey name.
  2108. If there is a subkey with a matching name, then we return a
  2109. reference to a hash tied to that subkey.  Otherwise we return
  2110. C<undef>.
  2111.  
  2112. If you are writing to the hash [storing], then we use the key
  2113. string as a subkey name only if the value you are storing is a
  2114. reference to a hash value.  Otherwise we use the key string as
  2115. a value name.
  2116.  
  2117. =back
  2118.  
  2119. =head3 Examples
  2120.  
  2121. Here are some examples showing different ways of accessing Registry
  2122. information using references to tied hashes:
  2123.  
  2124. =over
  2125.  
  2126. =item Canonical value fetch
  2127.  
  2128.     $tip18= $Registry->{"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\"
  2129.                . 'Windows\\CurrentVersion\\Explorer\\Tips\\\\18'};
  2130.  
  2131. Should return the text of important tip number 18.  Note that two
  2132. backslashes, C<"\\">, are required to get a single backslash into
  2133. a Perl double-quoted or single-qouted string.  Note that C<"\\">
  2134. is appended to each key name [C<"HKEY_LOCAL_MACHINE"> through
  2135. C<"Tips">] and C<"\\"> is prepended to the value name, C<"18">.
  2136.  
  2137. =item Changing your delimiter
  2138.  
  2139.     $Registry->Delimiter("/");
  2140.     $tip18= $Registry->{"HKEY_LOCAL_MACHINE/Software/Microsoft/"
  2141.                . 'Windows/CurrentVersion/Explorer/Tips//18'};
  2142.  
  2143. This usually makes things easier to read when working in Perl.
  2144. All remaining examples will assume the delimiter has been changed
  2145. as above.
  2146.  
  2147. =item Using intermediate keys
  2148.  
  2149.     $ms= $Registry->{"LMachine/Software/Microsoft/"};
  2150.     $tips= $ms->{"Windows/CurrentVersion/Explorer/Tips/"};
  2151.     $tip18= $winlogon->{"/18"};
  2152.  
  2153. Same as above but opens more keys into the Registry which lets you
  2154. efficiently re-access those intermediate keys.  This is slightly
  2155. less efficient if you never reuse those intermediate keys.
  2156.  
  2157. =item Chaining in a single statement
  2158.  
  2159.     $tip18= $Registry->{"LMachine/Software/Microsoft/"}->
  2160.               {"Windows/CurrentVersion/Explorer/Tips/"}->{"/18"};
  2161.  
  2162. Like above, this creates intermediate key objects then uses
  2163. them to access other data.  Once this statement finishes, the
  2164. intermediate key objects are destroyed.  Several handles into
  2165. the Registry are opened and closed by this statement so it is
  2166. less efficient but there are times when this will be useful.
  2167.  
  2168. =item Even less efficient example of chaining
  2169.  
  2170.     $tip18= $Registry->{"LMachine/Software/Microsoft"}->
  2171.               {"Windows/CurrentVersion/Explorer/Tips"}->{"/18"};
  2172.  
  2173. Because we left off the trailing delimiters, I<Win32::TieRegistry>
  2174. doesn't know whether final names, C<"Microsoft"> and C<"Tips">,
  2175. are subkey names or value names.  So this statement ends up
  2176. executing the same code as the next one.
  2177.  
  2178. =item What the above really does
  2179.  
  2180.     $tip18= $Registry->{"LMachine/Software/"}->{"Microsoft"}->
  2181.               {"Windows/CurrentVersion/Explorer/"}->{"Tips"}->{"/18"};
  2182.  
  2183. With more chains to go through, more temporary objects are created
  2184. and later destroyed than in our first chaining example.  Also,
  2185. when C<"Microsoft"> is looked up, I<Win32::TieRegistry> first
  2186. tries to open it as a value and fails then tries it as a subkey.
  2187. The same is true for when it looks up C<"Tips">.
  2188.  
  2189. =item Getting all of the tips
  2190.  
  2191.     $tips= $Registry->{"LMachine/Software/Microsoft/"}->
  2192.               {"Windows/CurrentVersion/Explorer/Tips/"}
  2193.       or  die "Can't find the Windows tips: $^E\n";
  2194.     foreach(  keys %$tips  ) {
  2195.         print "$_: ", $tips->{$_}, "\n";
  2196.     }
  2197.  
  2198. First notice that we actually check for failure for the first
  2199. time.  We are assuming that the C<"Tips"> key contains no subkeys. 
  2200. Otherwise the C<print> statement would show something like
  2201. C<"Win32::TieRegistry=HASH(0xc03ebc)"> for each subkey.
  2202.  
  2203. The output from the above code will start something like:
  2204.  
  2205.     /0: If you don't know how to do something,[...]
  2206.  
  2207. =back
  2208.  
  2209. =head3 Deleting items
  2210.  
  2211. You can use the Perl C<delete> function to delete a value from a
  2212. Registry key or to delete a subkey as long that subkey contains
  2213. no subkeys of its own.  See L<More Examples>, below, for more
  2214. information.
  2215.  
  2216. =head3 Storing items
  2217.  
  2218. You can use the Perl assignment operator [C<=>] to create new
  2219. keys, create new values, or replace values.  The values you store
  2220. should be in the same format as the values you would fetch from a
  2221. tied hash.  For example, you can use a single assignment statement
  2222. to copy an entire Registry tree.  The following statement:
  2223.  
  2224.     $Registry->{"LMachine/Software/Classes/Tie_Registry/"}=
  2225.       $Registry->{"LMachine/Software/Classes/batfile/"};
  2226.  
  2227. creates a C<"Tie_Registry"> subkey under the C<"Software\\Classes">
  2228. subkey of the C<HKEY_LOCAL_MACHINE> key.  Then it populates it
  2229. with copies of all of the subkeys and values in the C<"batfile">
  2230. subkey and all of its subkeys.  Note that you need to have
  2231. called C<$Registry-E<gt>ArrayValues(1)> for the proper value data
  2232. type information to be copied.  Note also that this release of
  2233. I<Win32::TieRegistry> does not copy key attributes such as class
  2234. name and security information [this is planned for a future release].
  2235.  
  2236. The following statement creates a whole subtree in the Registry:
  2237.  
  2238.     $Registry->{"LMachine/Software/FooCorp/"}= {
  2239.         "FooWriter/" => {
  2240.             "/Version" => "4.032",
  2241.             "Startup/" => {
  2242.                 "/Title" => "Foo Writer Deluxe ][",
  2243.                 "/WindowSize" => [ pack("LL",$wid,$ht), "REG_BINARY" ],
  2244.                 "/TaskBarIcon" => [ "0x0001", "REG_DWORD" ],
  2245.             },
  2246.             "Compatibility/" => {
  2247.                 "/AutoConvert" => "Always",
  2248.                 "/Default Palette" => "Windows Colors",
  2249.             },
  2250.         },
  2251.         "/License", => "0123-9C8EF1-09-FC",
  2252.     };
  2253.  
  2254. Note that all but the last Registry key used on the left-hand
  2255. side of the assignment [that is, "LMachine/Software/" but not
  2256. "FooCorp/"] must already exist for this statement to succeed.
  2257.  
  2258. By using the leading a trailing delimiters on each subkey name and
  2259. value name, I<Win32::TieRegistry> will tell you if you try to assign
  2260. subkey information to a value or visa-versa.
  2261.  
  2262. =head3 More examples
  2263.  
  2264. =over
  2265.  
  2266. =item Adding a new tip
  2267.  
  2268.     $tips= $Registry->{"LMachine/Software/Microsoft/"}->
  2269.               {"Windows/CurrentVersion/Explorer/Tips/"}
  2270.       or  die "Can't find the Windows tips: $^E\n";
  2271.     $tips{'/186'}= "Be very careful when making changes to the Registry!";
  2272.  
  2273. =item Deleting our new tip
  2274.  
  2275.     $tips= $Registry->{"LMachine/Software/Microsoft/"}->
  2276.               {"Windows/CurrentVersion/Explorer/Tips/"}
  2277.       or  die "Can't find the Windows tips: $^E\n";
  2278.     $tip186= delete $tips{'/186'};
  2279.  
  2280. Note that Perl's C<delete> function returns the value that was deleted.
  2281.  
  2282. =item Adding a new tip differently
  2283.  
  2284.     $Registry->{"LMachine/Software/Microsoft/" .
  2285.                 "Windows/CurrentVersion/Explorer/Tips//186"}=
  2286.       "Be very careful when making changes to the Registry!";
  2287.  
  2288. =item Deleting differently
  2289.  
  2290.     $tip186= delete $Registry->{"LMachine/Software/Microsoft/Windows/" .
  2291.                                 "CurrentVersion/Explorer/Tips//186"};
  2292.  
  2293. Note that this only deletes the tail of what we looked up, the
  2294. C<"186"> value, not any of the keys listed.
  2295.  
  2296. =item Deleting a key
  2297.  
  2298. WARNING:  The following code will delete all information about the
  2299. current user's tip preferences.  Actually executing this command
  2300. would probably cause the user to see the Welcome screen the next
  2301. time they log in and may cause more serious problems.  This
  2302. statement is shown as an example only and should not be used when
  2303. experimenting.
  2304.  
  2305.     $tips= delete $Registry->{"CUser/Software/Microsoft/Windows/" .
  2306.                               "CurrentVersion/Explorer/Tips/"};
  2307.  
  2308. This deletes the C<"Tips"> key and the values it contains.  The
  2309. C<delete> function will return a reference to a hash [not a tied
  2310. hash] containing the value names and value data that were deleted.
  2311.  
  2312. The information to be returned is copied from the Registry into a
  2313. regular Perl hash before the key is deleted.  If the key has many
  2314. subkeys, this copying could take a significant amount of memory
  2315. and/or processor time.  So you can disable this process by calling
  2316. the C<FastDelete> member function:
  2317.  
  2318.     $prevSetting= $regKey->FastDelete(1);
  2319.  
  2320. which will cause all subsequent delete operations via C<$regKey>
  2321. to simply return a true value if they succeed.  This optimization
  2322. is automatically done if you use C<delete> in a void context.
  2323.  
  2324. =item Technical notes on deleting
  2325.  
  2326. If you use C<delete> to delete a Registry key or value and use
  2327. the return value, then I<Win32::TieRegistry> usually looks up the
  2328. current contents of that key or value so they can be returned if
  2329. the deletion is successful.  If the deletion succeeds but the
  2330. attempt to lookup the old contents failed, then the return value
  2331. of C<delete> will be C<$^E> from the failed part of the operation.
  2332.  
  2333. =item Undeleting a key
  2334.  
  2335.     $Registry->{"LMachine/Software/Microsoft/Windows/" .
  2336.                 "CurrentVersion/Explorer/Tips/"}= $tips;
  2337.  
  2338. This adds back what we just deleted.  Note that this version of
  2339. I<Win32::TieRegistry> will use defaults for the key attributes
  2340. [such as class name and security] and will not restore the
  2341. previous attributes.
  2342.  
  2343. =item Not deleting a key
  2344.  
  2345. WARNING:  Actually executing the following code could cause
  2346. serious problems.  This statement is shown as an example only and
  2347. should not be used when experimenting.
  2348.  
  2349.     $res= delete $Registry->{"CUser/Software/Microsoft/Windows/"}
  2350.     defined($res)  ||  die "Can't delete URL key: $^E\n";
  2351.  
  2352. Since the "Windows" key should contain subkeys, that C<delete>
  2353. statement should make no changes to the Registry, return C<undef>,
  2354. and set C<$^E> to "Access is denied".
  2355.  
  2356. =item Not deleting again
  2357.  
  2358.     $tips= $Registry->{"CUser/Software/Microsoft/Windows/" .
  2359.                        "CurrentVersion/Explorer/Tips/"};
  2360.     delete $tips;
  2361.  
  2362. The Perl C<delete> function requires that its argument be an
  2363. expression that ends in a hash element lookup [or hash slice],
  2364. which is not the case here.  The C<delete> function doesn't
  2365. know which hash $tips came from and so can't delete it.
  2366.  
  2367. =back
  2368.  
  2369. =head2 Objects Documentation
  2370.  
  2371. The following member functions are defined for use on
  2372. I<Win32::TieRegistry> objects:
  2373.  
  2374. =over
  2375.  
  2376. =item new
  2377.  
  2378. The C<new> method creates a new I<Win32::TieRegistry> object.
  2379. C<new> is mostly a synonym for C<Open()> so see C<Open()> below for
  2380. information on what arguments to pass in.  Examples:
  2381.  
  2382.     $machKey= new Win32::TieRegistry "LMachine"
  2383.       or  die "Can't access HKEY_LOCAL_MACHINE key: $^E\n";
  2384.     $userKey= Win32::TieRegistry->new("CUser")
  2385.       or  die "Can't access HKEY_CURRENT_USER key: $^E\n";
  2386.  
  2387. Note that calling C<new> via a reference to a tied hash returns
  2388. a simple object, not a reference to a tied hash.
  2389.  
  2390. =item Open
  2391.  
  2392. =item $subKey= $key->Open( $sSubKey, $rhOptions )
  2393.  
  2394. The C<Open> method opens a Registry key and returns a new
  2395. I<Win32::TieRegistry> object associated with that Registry key.
  2396. If C<Open> is called via a reference to a tied hash, then C<Open>
  2397. returns another reference to a tied hash.  Otherwise C<Open>
  2398. returns a simple object and you should then use C<TiedRef> to get
  2399. a reference to a tied hash.
  2400.  
  2401. C<$sSubKey> is a string specifying a subkey to be opened.
  2402. Alternately C<$sSubKey> can be a reference to an array value
  2403. containing the list of increasingly deep subkeys specifying the
  2404. path to the subkey to be opened.
  2405.  
  2406. C<$rhOptions> is an optional reference to a hash containing extra
  2407. options.  The C<Open> method supports two options, C<"Delimiter">
  2408. and C<"Access">, and C<$rhOptions> should have only have zero or
  2409. more of these strings as keys.  See the "Examples" section below
  2410. for more information.
  2411.  
  2412. The C<"Delimiter"> option specifies what string [usually a single
  2413. character] will be used as the delimiter to be appended to subkey
  2414. names and prepended to value names.  If this option is not specified,
  2415. the new key [C<$subKey>] inherits the delimiter of the old key
  2416. [C<$key>].
  2417.  
  2418. The C<"Access"> option specifies what level of access to the
  2419. Registry key you wish to have once it has been opened.  If this
  2420. option is not specified, the new key [C<$subKey>] is opened with
  2421. the same access level used when the old key [C<$key>] was opened.
  2422. The virtual root of the Registry pretends it was opened with
  2423. access C<KEY_READ()|KEY_WRITE()> so this is the default access when
  2424. opening keys directory via C<$Registry>.  If you don't plan on
  2425. modifying a key, you should open it with C<KEY_READ> access as
  2426. you may not have C<KEY_WRITE> access to it or some of its subkeys.
  2427.  
  2428. If the C<"Access"> option value is a string that starts with
  2429. C<"KEY_">, then it should match E<one> of the predefined access
  2430. levels [probably C<"KEY_READ">, C<"KEY_WRITE">, or
  2431. C<"KEY_ALL_ACCESS">] exported by the I<Win32API::Registry> module.
  2432. Otherwise, a numeric value is expected.  For maximum flexibility,
  2433. include C<use Win32::TieRegistry qw(:KEY_);>, for example, near
  2434. the top of your script so you can specify more complicated access
  2435. levels such as C<KEY_READ()|KEY_WRITE()>.
  2436.  
  2437. If C<$sSubKey> does not begin with the delimiter [or C<$sSubKey>
  2438. is an array reference], then the path to the subkey to be opened
  2439. will be relative to the path of the original key [C<$key>].  If
  2440. C<$sSubKey> begins with a single delimiter, then the path to the
  2441. subkey to be opened will be relative to the virtual root of the
  2442. Registry on whichever machine the original key resides.  If
  2443. C<$sSubKey> begins with two consectutive delimiters, then those
  2444. must be followed by a machine name which causes the C<Connect()>
  2445. method function to be called.
  2446.  
  2447. Examples:
  2448.  
  2449.     $machKey= $Registry->Open( "LMachine", {Access=>KEY_READ(),Delimiter=>"/"} )
  2450.       or  die "Can't open HKEY_LOCAL_MACHINE key: $^E\n";
  2451.     $swKey= $machKey->Open( "Software" );
  2452.     $logonKey= $swKey->Open( "Microsoft/Windows NT/CurrentVersion/Winlogon/" );
  2453.     $NTversKey= $swKey->Open( ["Microsoft","Windows NT","CurrentVersion"] );
  2454.     $versKey= $swKey->Open( qw(Microsoft Windows CurrentVersion) );
  2455.  
  2456.     $remoteKey= $Registry->Open( "//HostA/LMachine/System/", {Delimiter=>"/"} )
  2457.       or  die "Can't connect to HostA or can't open subkey: $^E\n";
  2458.  
  2459. =item Clone
  2460.  
  2461. =item $copy= $key->Clone
  2462.  
  2463. Creates a new object that is associated with the same Registry key
  2464. as the invoking object.
  2465.  
  2466. =item Connect
  2467.  
  2468. =item $remoteKey= $Registry->Connect( $sMachineName, $sKeyPath, $rhOptions )
  2469.  
  2470. The C<Connect> method connects to the Registry of a remote machine,
  2471. and opens a key within it, then returns a new I<Win32::TieRegistry>
  2472. object associated with that remote Registry key.  If C<Connect>
  2473. was called using a reference to a tied hash, then the return value
  2474. will also be a reference to a tied hash [or C<undef>].  Otherwise,
  2475. if you wish to use the returned object as a tied hash [not just as
  2476. an object], then use the C<TiedRef> method function after C<Connect>.
  2477.  
  2478. C<$sMachineName> is the name of the remote machine.  You don't have
  2479. to preceed the machine name with two delimiter characters.
  2480.  
  2481. C<$sKeyPath> is a string specifying the remote key to be opened.
  2482. Alternately C<$sKeyPath> can be a reference to an array value
  2483. containing the list of increasingly deep keys specifying the path
  2484. to the key to be opened.
  2485.  
  2486. C<$rhOptions> is an optional reference to a hash containing extra
  2487. options.  The C<Connect> method supports two options, C<"Delimiter">
  2488. and C<"Access">.  See the C<Open> method documentation for more
  2489. information on these options.
  2490.  
  2491. C<$sKeyPath> is already relative to the virtual root of the Registry
  2492. of the remote machine.  A single leading delimiter on C<sKeyPath>
  2493. will be ignored and is not required.
  2494.  
  2495. C<$sKeyPath> can be empty in which case C<Connect> will return an
  2496. object representing the virtual root key of the remote Registry.
  2497. Each subsequent use of C<Open> on this virtual root key will call
  2498. the system C<RegConnectRegistry> function.
  2499.  
  2500. The C<Connect> method can be called via any I<Win32::TieRegistry>
  2501. object, not just C<$Registry>.  Attributes such as the desired
  2502. level of access and the delimiter will be inherited from the
  2503. object used but the C<$sKeyPath> will always be relative to the
  2504. virtual root of the remote machine's registry.
  2505.  
  2506. Examples:
  2507.  
  2508.     $remMachKey= $Registry->Connect( "HostA", "LMachine", {Delimiter->"/"} )
  2509.       or  die "Can't connect to HostA's HKEY_LOCAL_MACHINE key: $^E\n";
  2510.  
  2511.     $remVersKey= $remMachKey->Connect( "www.microsoft.com",
  2512.                    "LMachine/Software/Microsoft/Inetsrv/CurrentVersion/",
  2513.                    { Access=>KEY_READ, Delimiter=>"/" } )
  2514.       or  die "Can't check what version of IIS Microsoft is running: $^E\n";
  2515.  
  2516.     $remVersKey= $remMachKey->Connect( "www",
  2517.                    qw(LMachine Software Microsoft Inetsrv CurrentVersion) )
  2518.       or  die "Can't check what version of IIS we are running: $^E\n";
  2519.  
  2520. =item ObjectRef
  2521.  
  2522. =item $object_ref= $obj_or_hash_ref->ObjectRef
  2523.  
  2524. For a simple object, just returns itself [C<$obj == $obj->ObjectRef>].
  2525.  
  2526. For a reference to a tied hash [if it is also an object], C<ObjectRef>
  2527. returns the simple object that the hash is tied to.
  2528.  
  2529. This is primarilly useful when debugging since typing C<x $Registry>
  2530. will try to display your I<entire> registry contents to your screen.
  2531. But the debugger command C<x $Registry->ObjectRef> will just dump
  2532. the implementation details of the underlying object to your screen.
  2533.  
  2534. =item Flush( $bFlush )
  2535.  
  2536. Flushes all cached information about the Registry key so that future
  2537. uses will get fresh data from the Registry.
  2538.  
  2539. If the optional C<$bFlush> is specified and a true value, then
  2540. C<RegFlushKey()> will be called, which is almost never necessary.
  2541.  
  2542. =item GetValue
  2543.  
  2544. =item $ValueData= $key->GetValue( $sValueName )
  2545.  
  2546. =item ($ValueData,$ValueType)= $key->GetValue( $sValueName )
  2547.  
  2548. Gets a Registry value's data and data type.
  2549.  
  2550. C<$ValueData> is usually just a Perl string that contains the
  2551. value data [packed into it].  For certain types of data, however,
  2552. C<$ValueData> may be processed as described below.
  2553.  
  2554. C<$ValueType> is the C<REG_*> constant describing the type of value
  2555. data stored in C<$ValueData>.  If the C<DualTypes()> option is on,
  2556. then C<$ValueType> will be a dual value.  That is, when used in a
  2557. numeric context, C<$ValueType> will give the numeric value of a
  2558. C<REG_*> constant.  However, when used in a non-numeric context,
  2559. C<$ValueType> will return the name of the C<REG_*> constant, for
  2560. example C<"REG_SZ"> [note the quotes].  So both of the following
  2561. can be true at the same time:
  2562.  
  2563.     $ValueType == REG_SZ()
  2564.     $ValueType eq "REG_SZ"
  2565.  
  2566. =over
  2567.  
  2568. =item REG_SZ and REG_EXPAND_SZ
  2569.  
  2570. If the C<FixSzNulls()> option is on, then the trailing C<'\0'> will be
  2571. stripped [unless there isn't one] before values of type C<REG_SZ>
  2572. and C<REG_EXPAND_SZ> are returned.  Note that C<SetValue()> will add
  2573. a trailing C<'\0'> under similar circumstances.
  2574.  
  2575. =item REG_MULTI_SZ
  2576.  
  2577. If the C<SplitMultis()> option is on, then values of this type are
  2578. returned as a reference to an array containing the strings.  For
  2579. example, a value that, with C<SplitMultis()> off, would be returned as:
  2580.  
  2581.     "Value1\000Value2\000\000"
  2582.  
  2583. would be returned, with C<SplitMultis()> on, as:
  2584.  
  2585.     [ "Value1", "Value2" ]
  2586.  
  2587. =item REG_DWORD
  2588.  
  2589. If the C<DualBinVals()> option is on, then the value is returned
  2590. as a scalar containing both a string and a number [much like
  2591. the C<$!> variable -- see the L<SetDualVar> module for more
  2592. information] where the number part is the "unpacked" value.
  2593. Use the returned value in a numeric context to access this part
  2594. of the value.  For example:
  2595.  
  2596.     $num= 0 + $Registry->{"CUser/Console//ColorTable01"};
  2597.  
  2598. If the C<DWordsToHex()> option is off, the string part of the
  2599. returned value is a packed, 4-byte string [use C<unpack("L",$value)>
  2600. to get the numeric value.
  2601.  
  2602. If C<DWordsToHex()> is on, the string part of the returned value is
  2603. a 10-character hex strings [with leading "0x"].  You can use
  2604. C<hex($value)> to get the numeric value.
  2605.  
  2606. Note that C<SetValue()> will properly understand each of these
  2607. returned value formats no matter how C<DualBinVals()> is set.
  2608.  
  2609. =back
  2610.  
  2611. =item ValueNames
  2612.  
  2613. =item @names= $key->ValueNames
  2614.  
  2615. Returns the list of value names stored directly in a Registry key.
  2616. Note that the names returned do I<not> have a delimiter prepended
  2617. to them like with C<MemberNames()> and tied hashes.
  2618.  
  2619. Once you request this information, it is cached in the object and
  2620. future requests will always return the same list unless C<Flush()>
  2621. has been called.
  2622.  
  2623. =item SubKeyNames
  2624.  
  2625. =item @key_names= $key->SubKeyNames
  2626.  
  2627. Returns the list of subkey names stored directly in a Registry key.
  2628. Note that the names returned do I<not> have a delimiter appended
  2629. to them like with C<MemberNames()> and tied hashes.
  2630.  
  2631. Once you request this information, it is cached in the object and
  2632. future requests will always return the same list unless C<Flush()>
  2633. has been called.
  2634.  
  2635. =item SubKeyClasses
  2636.  
  2637. =item @classes= $key->SubKeyClasses
  2638.  
  2639. Returns the list of classes for subkeys stored directly in a
  2640. Registry key.  The classes are returned in the same order as
  2641. the subkey names returned by C<SubKeyNames()>.
  2642.  
  2643. =item SubKeyTimes
  2644.  
  2645. =item @times= $key->SubKeyTimes
  2646.  
  2647. Returns the list of last-modified times for subkeys stored
  2648. directly in a Registry key.  The times are returned in the same
  2649. order as the subkey names returned by C<SubKeyNames()>.  Each
  2650. time is a C<FILETIME> structure packed into a Perl string.
  2651.  
  2652. Once you request this information, it is cached in the object and
  2653. future requests will always return the same list unless C<Flush()>
  2654. has been called.
  2655.  
  2656. =item MemberNames
  2657.  
  2658. =item @members= $key->MemberNames
  2659.  
  2660. Returns the list of subkey names and value names stored directly
  2661. in a Registry key.  Subkey names have a delimiter appended to the
  2662. end and value names have a delimiter prepended to the front.
  2663.  
  2664. Note that a value name could end in a delimiter [or could be C<"">
  2665. so that the member name returned is just a delimiter] so the
  2666. presence or absence of the leading delimiter is what should be
  2667. used to determine whether a particular name is for a subkey or a
  2668. value, not the presence or absence of a trailing delimiter.
  2669.  
  2670. Once you request this information, it is cached in the object and
  2671. future requests will always return the same list unless C<Flush()>
  2672. has been called.
  2673.  
  2674. =item Information
  2675.  
  2676. =item %info= $key->Information
  2677.  
  2678. =item @items= $key->Information( @itemNames );
  2679.  
  2680. Returns the following information about a Registry key:
  2681.  
  2682. =over
  2683.  
  2684. =item LastWrite
  2685.  
  2686. A C<FILETIME> structure indicating when the key was last modified
  2687. and packed into a Perl string.
  2688.  
  2689. =item CntSubKeys
  2690.  
  2691. The number of subkeys stored directly in this key.
  2692.  
  2693. =item CntValues
  2694.  
  2695. The number of values stored directly in this key.
  2696.  
  2697. =item SecurityLen
  2698.  
  2699. The length [in bytes] of the largest[?] C<SECURITY_DESCRIPTOR>
  2700. associated with the Registry key.
  2701.  
  2702. =item MaxValDataLen
  2703.  
  2704. The length [in bytes] of the longest value data associated with
  2705. a value stored in this key.
  2706.  
  2707. =item MaxSubKeyLen
  2708.  
  2709. The length [in chars] of the longest subkey name associated with
  2710. a subkey stored in this key.
  2711.  
  2712. =item MaxSubClassLen
  2713.  
  2714. The length [in chars] of the longest class name associated with
  2715. a subkey stored directly in this key.
  2716.  
  2717. =item MaxValNameLen
  2718.  
  2719. The length [in chars] of the longest value name associated with
  2720. a value stored in this key.
  2721.  
  2722. =back
  2723.  
  2724. With no arguments, returns a hash [not a reference to a hash] where
  2725. the keys are the names for the items given above and the values
  2726. are the information describe above.  For example:
  2727.  
  2728.     %info= ( "CntValues" => 25,         # Key contains 25 values.
  2729.              "MaxValNameLen" => 20,     # One of which has a 20-char name.
  2730.              "MaxValDataLen" => 42,     # One of which has a 42-byte value.
  2731.              "CntSubKeys" => 1,         # Key has 1 immediate subkey.
  2732.              "MaxSubKeyLen" => 13,      # One of which has a 12-char name.
  2733.              "MaxSubClassLen" => 0,     # All of which have class names of "".
  2734.              "SecurityLen" => 232,      # One SECURITY_DESCRIPTOR is 232 bytes.
  2735.              "LastWrite" => "\x90mZ\cX{\xA3\xBD\cA\c@\cA"
  2736.                            # Key was last modifed 1998/06/01 16:29:32 GMT
  2737.            );
  2738.  
  2739. With arguments, each one must be the name of a item given above.
  2740. The return value is the information associated with the listed
  2741. names.  In other words:
  2742.  
  2743.     return $key->Information( @names );
  2744.  
  2745. returns the same list as:
  2746.  
  2747.     %info= $key->Information;
  2748.     return @info{@names};
  2749.  
  2750. =item Delimiter
  2751.  
  2752. =item $oldDelim= $key->Delimiter
  2753.  
  2754. =item $oldDelim= $key->Delimiter( $newDelim )
  2755.  
  2756. Gets and possibly changes the delimiter used for this object.  The
  2757. delimiter is appended to subkey names and prepended to value names
  2758. in many return values.  It is also used when parsing keys passed
  2759. to tied hashes.
  2760.  
  2761. The delimiter defaults to backslash (C<'\\'>) but is inherited from
  2762. the object used to create a new object and can be specified by an
  2763. option when a new object is created.
  2764.  
  2765. =item Handle
  2766.  
  2767. =item $handle= $key->Handle
  2768.  
  2769. Returns the raw C<HKEY> handle for the associated Registry key as
  2770. an integer value.  This value can then be used to Reg*() calls
  2771. from I<Win32API::Registry>.  However, it is usually easier to just
  2772. call the I<Win32API::Registry> calls directly via:
  2773.  
  2774.     $key->RegNotifyChangeKeyValue( ... );
  2775.  
  2776. For the virtual root of the local or a remote Registry,
  2777. C<Handle()> return C<"NONE">.
  2778.  
  2779. =item Path
  2780.  
  2781. =item $path= $key->Path
  2782.  
  2783. Returns a string describing the path of key names to this
  2784. Registry key.  The string is built so that if it were passed
  2785. to C<$Registry->Open()>, it would reopen the same Registry key
  2786. [except in the rare case where one of the key names contains
  2787. C<$key->Delimiter>].
  2788.  
  2789. =item Machine
  2790.  
  2791. =item $computerName= $key->Machine
  2792.  
  2793. Returns the name of the computer [or "machine"] on which this Registry
  2794. key resides.  Returns C<""> for local Registry keys.
  2795.  
  2796. =item Access
  2797.  
  2798. Returns the numeric value of the bit mask used to specify the
  2799. types of access requested when this Registry key was opened.  Can
  2800. be compared to C<KEY_*> values.
  2801.  
  2802. =item OS_Delimiter
  2803.  
  2804. Returns the delimiter used by the operating system's RegOpenKeyEx()
  2805. call.  For Win32, this is always backslash (C<"\\">).
  2806.  
  2807. =item Roots
  2808.  
  2809. Returns the mapping from root key names like C<"LMachine"> to their
  2810. associated C<HKEY_*> constants.  Primarily for internal use and
  2811. subject to change.
  2812.  
  2813. =item Tie
  2814.  
  2815. =item $key->Tie( \%hash );
  2816.  
  2817. Ties the referenced hash to that Registry key.  Pretty much the
  2818. same as
  2819.  
  2820.     tie %hash, ref($key), $key;
  2821.  
  2822. Since C<ref($key)> is the class [package] to tie the hash to and
  2823. C<TIEHASH()> just returns its argument, C<$key>, [without calling
  2824. C<new()>] when it sees that it is already a blessed object.
  2825.  
  2826. =item TiedRef
  2827.  
  2828. =item $TiedHashRef= $hash_or_obj_ref->TiedRef
  2829.  
  2830. For a simple object, returns a reference to a hash tied to the
  2831. object.  Used to promote a simple object into a combined object
  2832. and hash ref.
  2833.  
  2834. If already a reference to a tied hash [that is also an object],
  2835. it just returns itself [C<$ref == $ref->TiedRef>].
  2836.  
  2837. Mostly used internally.
  2838.  
  2839. =item ArrayValues
  2840.  
  2841. =item $oldBool= $key->ArrayValues
  2842.  
  2843. =item $oldBool= $key->ArrayValues( $newBool )
  2844.  
  2845. Gets the current setting of the C<ArrayValues> option and possibly
  2846. turns it on or off.
  2847.  
  2848. When off, Registry values fetched via a tied hash are returned as
  2849. just a value scalar [the same as C<GetValue()> in a scalar context].
  2850. When on, they are returned as a reference to an array containing
  2851. the value data as the C<[0]> element and the data type as the C<[1]>
  2852. element.
  2853.  
  2854. =item TieValues
  2855.  
  2856. =item $oldBool= TieValues
  2857.  
  2858. =item $oldBool= TieValues( $newBool )
  2859.  
  2860. Gets the current setting of the C<TieValues> option and possibly
  2861. turns it on or off.
  2862.  
  2863. Turning this option on is not yet supported in this release of
  2864. I<Win32::TieRegistry>.  In a future release, turning this option
  2865. on will cause Registry values returned from a tied hash to be
  2866. a tied array that you can use to modify the value in the Registry.
  2867.  
  2868. =item FastDelete
  2869.  
  2870. =item $oldBool= $key->FastDelete
  2871.  
  2872. =item $oldBool= $key->FastDelete( $newBool )
  2873.  
  2874. Gets the current setting of the C<FastDelete> option and possibly
  2875. turns it on or off.
  2876.  
  2877. When on, successfully deleting a Registry key [via a tied hash]
  2878. simply returns C<1>.
  2879.  
  2880. When off, successfully deleting a Registry key [via a tied hash
  2881. and not in a void context] returns a reference to a hash that
  2882. contains the values present in the key when it was deleted.  This
  2883. hash is just like that returned when referencing the key before it
  2884. was deleted except that it is an ordinary hash, not one tied to
  2885. the I<Win32::TieRegistry> package.
  2886.  
  2887. Note that deleting either a Registry key or value via a tied hash
  2888. I<in a void context> prevents any overhead in trying to build an
  2889. appropriate return value.
  2890.  
  2891. Note that deleting a Registry I<value> via a tied hash [not in
  2892. a void context] returns the value data even if <FastDelete> is on.
  2893.  
  2894. =item SplitMultis
  2895.  
  2896. =item $oldBool= $key->SplitMultis
  2897.  
  2898. =item $oldBool= $key->SplitMultis( $newBool )
  2899.  
  2900. Gets the current setting of the C<SplitMultis> option and possibly
  2901. turns it on or off.
  2902.  
  2903. If on, Registry values of type C<REG_MULTI_SZ> are returned as
  2904. a reference to an array of strings.  See C<GetValue()> for more
  2905. information.
  2906.  
  2907. =item DWordsToHex
  2908.  
  2909. =item $oldBool= $key->DWordsToHex
  2910.  
  2911. =item $oldBool= $key->DWordsToHex( $newBool )
  2912.  
  2913. Gets the current setting of the C<DWordsToHex> option and possibly
  2914. turns it on or off.
  2915.  
  2916. If on, Registry values of type C<REG_DWORD> are returned as a hex
  2917. string with leading C<"0x"> and longer than 4 characters.  See
  2918. C<GetValue()> for more information.
  2919.  
  2920. =item FixSzNulls
  2921.  
  2922. =item $oldBool= $key->FixSzNulls
  2923.  
  2924. =item $oldBool= $key->FixSzNulls( $newBool )
  2925.  
  2926. Gets the current setting of the C<FixSzNulls> option and possibly
  2927. turns it on or off.
  2928.  
  2929. If on, Registry values of type C<REG_SZ> and C<REG_EXPAND_SZ> have
  2930. trailing C<'\0'>s added before they are set and stripped before
  2931. they are returned.  See C<GetValue()> and C<SetValue()> for more
  2932. information.
  2933.  
  2934. =item DualTypes
  2935.  
  2936. =item $oldBool= $key->DualTypes
  2937.  
  2938. =item $oldBool= $key->DualTypes( $newBool )
  2939.  
  2940. Gets the current setting of the C<DualTypes> option and possibly
  2941. turns it on or off.
  2942.  
  2943. If on, data types are returned as a combined numeric/string value
  2944. holding both the numeric value of a C<REG_*> constant and the
  2945. string value of the constant's name.  See C<GetValue()> for
  2946. more information.
  2947.  
  2948. =item DualBinVals
  2949.  
  2950. =item $oldBool= $key->DualBinVals
  2951.  
  2952. =item $oldBool= $key->DualBinVals( $newBool )
  2953.  
  2954. Gets the current setting of the C<DualBinVals> option and possibly
  2955. turns it on or off.
  2956.  
  2957. If on, Registry value data of type C<REG_BINARY> and no more than
  2958. 4 bytes long and Registry values of type C<REG_DWORD> are returned
  2959. as a combined numeric/string value where the numeric value is the
  2960. "unpacked" binary value as returned by:
  2961.  
  2962.         hex reverse unpack( "h*", $valData )
  2963.  
  2964. on a "little-endian" computer.  [Would be C<hex unpack("H*",$valData)>
  2965. on a "big-endian" computer if this module is ever ported to one.]
  2966.  
  2967. See C<GetValue()> for more information.
  2968.  
  2969. =item GetOptions
  2970.  
  2971. =item @oldOptValues= $key->GetOptions( @optionNames )
  2972.  
  2973. =item $refHashOfOldOpts= $key->GetOptions()
  2974.  
  2975. =item $key->GetOptions( \%hashForOldOpts )
  2976.  
  2977. Returns the current setting of any of the following options:
  2978.  
  2979.     Delimiter     FixSzNulls    DWordsToHex
  2980.     ArrayValues   SplitMultis   DualBinVals
  2981.     TieValues     FastDelete    DualTypes
  2982.  
  2983. Pass in one or more of the above names (as strings) to get back
  2984. an array of the corresponding current settings in the same order:
  2985.  
  2986.   my( $fastDel, $delim )= $key->GetOptions("FastDelete","Delimiter");
  2987.  
  2988. Pass in no arguments to get back a reference to a hash where
  2989. the above option names are the keys and the values are
  2990. the corresponding current settings for each option:
  2991.  
  2992.   my $href= $key->GetOptions();
  2993.   my $delim= $href->{Delimiter};
  2994.  
  2995. Pass in a single reference to a hash to have the above key/value
  2996. pairs I<added> to the referenced hash.  For this case, the
  2997. return value is the original object so further methods can be
  2998. chained after the call to GetOptions:
  2999.  
  3000.   my %oldOpts;
  3001.   $key->GetOptions( \%oldOpts )->SetOptions( Delimiter => "/" );
  3002.  
  3003. =item SetOptions
  3004.  
  3005. =item @oldOpts= $key->SetOptions( optNames=>$optValue,... )
  3006.  
  3007. Changes the current setting of any of the following options,
  3008. returning the previous setting(s):
  3009.  
  3010.     Delimiter     FixSzNulls    DWordsToHex   AllowLoad
  3011.     ArrayValues   SplitMultis   DualBinVals   AllowSave
  3012.     TieValues     FastDelete    DualTypes
  3013.  
  3014. For C<AllowLoad> and C<AllowSave>, instead of the previous
  3015. setting, C<SetOptions> returns whether or not the change was
  3016. successful.
  3017.  
  3018. In a scalar context, returns only the last item.  The last
  3019. option can also be specified as C<"ref"> or C<"r"> [which doesn't
  3020. need to be followed by a value] to allow chaining:
  3021.  
  3022.     $key->SetOptions(AllowSave=>1,"ref")->RegSaveKey(...)
  3023.  
  3024. =item SetValue
  3025.  
  3026. =item $okay= $key->SetValue( $ValueName, $ValueData );
  3027.  
  3028. =item $okay= $key->SetValue( $ValueName, $ValueData, $ValueType );
  3029.  
  3030. Adds or replaces a Registry value.  Returns a true value if
  3031. successfully, false otherwise.
  3032.  
  3033. C<$ValueName> is the name of the value to add or replace and
  3034. should I<not> have a delimiter prepended to it.  Case is ignored.
  3035.  
  3036. C<$ValueType> is assumed to be C<REG_SZ> if it is omitted.  Otherwise,
  3037. it should be one the C<REG_*> constants.
  3038.  
  3039. C<$ValueData> is the data to be stored in the value, probably packed
  3040. into a Perl string.  Other supported formats for value data are
  3041. listed below for each posible C<$ValueType>.
  3042.  
  3043. =over
  3044.  
  3045. =item REG_SZ or REG_EXPAND_SZ
  3046.  
  3047. The only special processing for these values is the addition of
  3048. the required trailing C<'\0'> if it is missing.  This can be
  3049. turned off by disabling the C<FixSzNulls> option.
  3050.  
  3051. =item REG_MULTI_SZ
  3052.  
  3053. These values can also be specified as a reference to a list of
  3054. strings.  For example, the following two lines are equivalent:
  3055.  
  3056.     $key->SetValue( "Val1\000Value2\000LastVal\000\000", "REG_MULTI_SZ" );
  3057.     $key->SetValue( ["Val1","Value2","LastVal"], "REG_MULTI_SZ" );
  3058.  
  3059. Note that if the required two trailing nulls (C<"\000\000">) are
  3060. missing, then this release of C<SetValue()> will I<not> add them.
  3061.  
  3062. =item REG_DWORD
  3063.  
  3064. These values can also be specified as a hex value with the leading
  3065. C<"0x"> included and totaling I<more than> 4 bytes.  These will be
  3066. packed into a 4-byte string via:
  3067.  
  3068.     $data= pack( "L", hex($data) );
  3069.  
  3070. =item REG_BINARY
  3071.  
  3072. This value type is listed just to emphasize that no alternate
  3073. format is supported for it.  In particular, you should I<not> pass
  3074. in a numeric value for this type of data.  C<SetValue()> cannot
  3075. distinguish such from a packed string that just happens to match
  3076. a numeric value and so will treat it as a packed string.
  3077.  
  3078. =back
  3079.  
  3080. An alternate calling format:
  3081.  
  3082.     $okay= $key->SetValue( $ValueName, [ $ValueData, $ValueType ] );
  3083.  
  3084. [two arguments, the second of which is a reference to an array
  3085. containing the value data and value type] is supported to ease
  3086. using tied hashes with C<SetValue()>.
  3087.  
  3088. =item CreateKey
  3089.  
  3090. =item $newKey= $key->CreateKey( $subKey );
  3091.  
  3092. =item $newKey= $key->CreateKey( $subKey, { Option=>OptVal,... } );
  3093.  
  3094. Creates a Registry key or just updates attributes of one.  Calls
  3095. C<RegCreateKeyEx()> then, if it succeeded, creates an object
  3096. associated with the [possibly new] subkey.
  3097.  
  3098. C<$subKey> is the name of a subkey [or a path to one] to be
  3099. created or updated.  It can also be a reference to an array
  3100. containing a list of subkey names.
  3101.  
  3102. The second argument, if it exists, should be a reference to a
  3103. hash specifying options either to be passed to C<RegCreateKeyEx()>
  3104. or to be used when creating the associated object.  The following
  3105. items are the supported keys for this options hash:
  3106.  
  3107. =over
  3108.  
  3109. =item Delimiter
  3110.  
  3111. Specifies the delimiter to be used to parse C<$subKey> and to be
  3112. used in the new object.  Defaults to C<$key->Delimiter>.
  3113.  
  3114. =item Access
  3115.  
  3116. Specifies the types of access requested when the subkey is opened.
  3117. Should be a numeric bit mask that combines one or more C<KEY_*>
  3118. constant values.
  3119.  
  3120. =item Class
  3121.  
  3122. The name to assign as the class of the new or updated subkey.
  3123. Defaults to C<""> as we have never seen a use for this information.
  3124.  
  3125. =item Disposition
  3126.  
  3127. Lets you specify a reference to a scalar where, upon success, will be
  3128. stored either C<REG_CREATED_NEW_KEY()> or C<REG_OPENED_EXISTING_KEY()>
  3129. depending on whether a new key was created or an existing key was
  3130. opened.
  3131.  
  3132. If you, for example, did C<use Win32::TieRegistry qw(REG_CREATED_NEW_KEY)>
  3133. then you can use C<REG_CREATED_NEW_KEY()> to compare against the numeric
  3134. value stored in the referenced scalar.
  3135.  
  3136. If the C<DualTypes> option is enabled, then in addition to the
  3137. numeric value described above, the referenced scalar will also
  3138. have a string value equal to either C<"REG_CREATED_NEW_KEY"> or
  3139. C<"REG_OPENED_EXISTING_KEY">, as appropriate.
  3140.  
  3141. =item Security
  3142.  
  3143. Lets you specify a C<SECURITY_ATTRIBUTES> structure packed into a
  3144. Perl string.  See C<Win32API::Registry::RegCreateKeyEx()> for more
  3145. information.
  3146.  
  3147. =item Volatile
  3148.  
  3149. If true, specifies that the new key should be volatile, that is,
  3150. stored only in memory and not backed by a hive file [and not saved
  3151. if the computer is rebooted].  This option is ignored under
  3152. Windows 95.  Specifying C<Volatile=E<GT>1>  is the same as
  3153. specifying C<Options=E<GT>REG_OPTION_VOLATILE>.
  3154.  
  3155. =item Backup
  3156.  
  3157. If true, specifies that the new key should be opened for
  3158. backup/restore access.  The C<Access> option is ignored.  If the
  3159. calling process has enabled C<"SeBackupPrivilege">, then the
  3160. subkey is opened with C<KEY_READ> access as the C<"LocalSystem">
  3161. user which should have access to all subkeys.  If the calling
  3162. process has enabled C<"SeRestorePrivilege">, then the subkey is
  3163. opened with C<KEY_WRITE> access as the C<"LocalSystem"> user which
  3164. should have access to all subkeys.
  3165.  
  3166. This option is ignored under Windows 95.  Specifying C<Backup=E<GT>1>
  3167. is the same as specifying C<Options=E<GT>REG_OPTION_BACKUP_RESTORE>.
  3168.  
  3169. =item Options
  3170.  
  3171. Lets you specify options to the C<RegOpenKeyEx()> call.  The value
  3172. for this option should be a numeric value combining zero or more
  3173. of the C<REG_OPTION_*> bit masks.  You may with to used the
  3174. C<Volatile> and/or C<Backup> options instead of this one.
  3175.  
  3176. =back
  3177.  
  3178. =item StoreKey
  3179.  
  3180. =item $newKey= $key->StoreKey( $subKey, \%Contents );
  3181.  
  3182. Primarily for internal use.
  3183.  
  3184. Used to create or update a Registry key and any number of subkeys
  3185. or values under it or its subkeys.
  3186.  
  3187. C<$subKey> is the name of a subkey to be created [or a path of
  3188. subkey names separated by delimiters].  If that subkey already
  3189. exists, then it is updated.
  3190.  
  3191. C<\%Contents> is a reference to a hash containing pairs of
  3192. value names with value data and/or subkey names with hash
  3193. references similar to C<\%Contents>.  Each of these cause
  3194. a value or subkey of C<$subKey> to be created or updated.
  3195.  
  3196. If C<$Contents{""}> exists and is a reference to a hash, then
  3197. it used as the options argument when C<CreateKey()> is called
  3198. for C<$subKey>.  This allows you to specify ...
  3199.  
  3200.     if(  defined( $$data{""} )  &&  "HASH" eq ref($$data{""})  ) {
  3201.         $self= $this->CreateKey( $subKey, delete $$data{""} );
  3202.  
  3203. =item Load
  3204.  
  3205. =item $newKey= $key->Load( $file )
  3206.  
  3207. =item $newKey= $key->Load( $file, $newSubKey )
  3208.  
  3209. =item $newKey= $key->Load( $file, $newSubKey, { Option=>OptVal... } )
  3210.  
  3211. =item $newKey= $key->Load( $file, { Option=>OptVal... } )
  3212.  
  3213. Loads a hive file into a Registry.  That is, creates a new subkey
  3214. and associates a hive file with it.
  3215.  
  3216. C<$file> is a hive file, that is a file created by calling
  3217. C<RegSaveKey()>.  The C<$file> path is interpreted relative to
  3218. C<%SystemRoot%/System32/config> on the machine where C<$key>
  3219. resides.
  3220.  
  3221. C<$newSubKey> is the name to be given to the new subkey.  If
  3222. C<$newSubKey> is specified, then C<$key> must be
  3223. C<HKEY_LOCAL_MACHINE> or C<HKEY_USERS> of the local computer
  3224. or a remote computer and C<$newSubKey> should not contain any
  3225. occurrences of either the delimiter or the OS delimiter.
  3226.  
  3227. If C<$newSubKey> is not specified, then it is as if C<$key>
  3228. was C<$Registry-E<GT>{LMachine}> and C<$newSubKey> is
  3229. C<"PerlTie:999"> where C<"999"> is actually a sequence number
  3230. incremented each time this process calls C<Load()>.
  3231.  
  3232. You can specify as the last argument a reference to a hash
  3233. containing options.  You can specify the same options that you
  3234. can specify to C<Open()>.  See C<Open()> for more information on
  3235. those.  In addition, you can specify the option C<"NewSubKey">.
  3236. The value of this option is interpretted exactly as if it was
  3237. specified as the C<$newSubKey> parameter and overrides the
  3238. C<$newSubKey> if one was specified.
  3239.  
  3240. The hive is automatically unloaded when the returned object
  3241. [C<$newKey>] is destroyed.  Registry key objects opened within
  3242. the hive will keep a reference to the C<$newKey> object so that
  3243. it will not be destroyed before these keys are closed.
  3244.  
  3245. =item UnLoad
  3246.  
  3247. =item $okay= $key->UnLoad
  3248.  
  3249. Unloads a hive that was loaded via C<Load()>.  Cannot unload other
  3250. hives.  C<$key> must be the return from a previous call to C<Load()>.
  3251. C<$key> is closed and then the hive is unloaded.
  3252.  
  3253. =item AllowSave
  3254.  
  3255. =item $okay= AllowSave( $bool )
  3256.  
  3257. Enables or disables the C<"ReBackupPrivilege"> privilege for the
  3258. current process.  You will probably have to enable this privilege
  3259. before you can use C<RegSaveKey()>.
  3260.  
  3261. The return value indicates whether the operation succeeded, not
  3262. whether the privilege was previously enabled.
  3263.  
  3264. =item AllowLoad
  3265.  
  3266. =item $okay= AllowLoad( $bool )
  3267.  
  3268. Enables or disables the C<"ReRestorePrivilege"> privilege for the
  3269. current process.  You will probably have to enable this privilege
  3270. before you can use C<RegLoadKey()>, C<RegUnLoadKey()>,
  3271. C<RegReplaceKey()>, or C<RegRestoreKey> and thus C<Load()> and
  3272. C<UnLoad()>.
  3273.  
  3274. The return value indicates whether the operation succeeded, not
  3275. whether the privilege was previously enabled.
  3276.  
  3277. =back
  3278.  
  3279. =head2 Exports [C<use> and C<import()>]
  3280.  
  3281. To have nothing imported into your package, use something like:
  3282.  
  3283.     use Win32::TieRegistry 0.20 ();
  3284.  
  3285. which would verify that you have at least version 0.20 but wouldn't
  3286. call C<import()>.  The F<Changes> file can be useful in figuring out
  3287. which, if any, prior versions of I<Win32::TieRegistry> you want to
  3288. support in your script.
  3289.  
  3290. The code
  3291.  
  3292.     use Win32::TieRegistry;
  3293.  
  3294. imports the variable C<$Registry> into your package and sets it
  3295. to be a reference to a hash tied to a copy of the master Registry
  3296. virtual root object with the default options.  One disadvantage
  3297. to this "default" usage is that Perl does not support checking
  3298. the module version when you use it.
  3299.  
  3300. Alternately, you can specify a list of arguments on the C<use>
  3301. line that will be passed to the C<Win32::TieRegistry->import()>
  3302. method to control what items to import into your package.  These
  3303. arguments fall into the following broad categories:
  3304.  
  3305. =over
  3306.  
  3307. =item Import a reference to a hash tied to a Registry virtual root
  3308.  
  3309. You can request that a scalar variable be imported (possibly)
  3310. and set to be a reference to a hash tied to a Registry virtual root
  3311. using any of the following types of arguments or argument pairs:
  3312.  
  3313. =over
  3314.  
  3315. =item "TiedRef", '$scalar'
  3316.  
  3317. =item "TiedRef", '$pack::scalar'
  3318.  
  3319. =item "TiedRef", 'scalar'
  3320.  
  3321. =item "TiedRef", 'pack::scalar'
  3322.  
  3323. All of the above import a scalar named C<$scalar> into your package
  3324. (or the package named "pack") and then sets it.
  3325.  
  3326. =item '$scalar'
  3327.  
  3328. =item '$pack::scalar'
  3329.  
  3330. These are equivalent to the previous items to support a more
  3331. traditional appearance to the list of exports.  Note that the
  3332. scalar name cannot be "RegObj" here.
  3333.  
  3334. =item "TiedRef", \$scalar
  3335.  
  3336. =item \$scalar
  3337.  
  3338. These versions don't import anything but set the referenced C<$scalar>.
  3339.  
  3340. =back
  3341.  
  3342. =item Import a hash tied to the Registry virtual root
  3343.  
  3344. You can request that a hash variable be imported (possibly)
  3345. and tied to a Registry virtual root using any of the following
  3346. types of arguments or argument pairs:
  3347.  
  3348. =over
  3349.  
  3350. =item "TiedHash", '%hash'
  3351.  
  3352. =item "TiedHash", '%pack::hash'
  3353.  
  3354. =item "TiedHash", 'hash'
  3355.  
  3356. =item "TiedHash", 'pack::hash'
  3357.  
  3358. All of the above import a hash named C<%hash> into your package
  3359. (or the package named "pack") and then sets it.
  3360.  
  3361. =item '%hash'
  3362.  
  3363. =item '%pack::hash'
  3364.  
  3365. These are equivalent to the previous items to support a more
  3366. traditional appearance to the list of exports.
  3367.  
  3368. =item "TiedHash", \%hash
  3369.  
  3370. =item \%hash
  3371.  
  3372. These versions don't import anything but set the referenced C<%hash>.
  3373.  
  3374. =back
  3375.  
  3376. =item Import a Registry virtual root object
  3377.  
  3378. You can request that a scalar variable be imported (possibly)
  3379. and set to be a Registry virtual root object using any of the
  3380. following types of arguments or argument pairs:
  3381.  
  3382. =over
  3383.  
  3384. =item "ObjectRef", '$scalar'
  3385.  
  3386. =item "ObjectRef", '$pack::scalar'
  3387.  
  3388. =item "ObjectRef", 'scalar'
  3389.  
  3390. =item "ObjectRef", 'pack::scalar'
  3391.  
  3392. All of the above import a scalar named C<$scalar> into your package
  3393. (or the package named "pack") and then sets it.
  3394.  
  3395. =item '$RegObj'
  3396.  
  3397. This is equivalent to the previous items for backward compatibility.
  3398.  
  3399. =item "ObjectRef", \$scalar
  3400.  
  3401. This version doesn't import anything but sets the referenced C<$scalar>.
  3402.  
  3403. =back
  3404.  
  3405. =item Import constant(s) exported by I<Win32API::Registry>
  3406.  
  3407. You can list any constants that are exported by I<Win32API::Registry>
  3408. to have them imported into your package.  These constants have names
  3409. starting with "KEY_" or "REG_" (or even "HKEY_").
  3410.  
  3411. You can also specify C<":KEY_">, C<":REG_">, and even C<":HKEY_"> to
  3412. import a whole set of constants.
  3413.  
  3414. See I<Win32API::Registry> documentation for more information.
  3415.  
  3416. =item Options
  3417.  
  3418. You can list any option names that can be listed in the C<SetOptions()>
  3419. method call, each folowed by the value to use for that option.
  3420. A Registry virtual root object is created, all of these options are
  3421. set for it, then each variable to be imported/set is associated with
  3422. this object.
  3423.  
  3424. In addition, the following special options are supported:
  3425.  
  3426. =over
  3427.  
  3428. =item ExportLevel
  3429.  
  3430. Whether to import variables into your package or some
  3431. package that uses your package.  Defaults to the value of
  3432. C<$Exporter::ExportLevel> and has the same meaning.  See
  3433. the L<Exporter> module for more information.
  3434.  
  3435. =item ExportTo
  3436.  
  3437. The name of the package to import variables and constants into.
  3438. Overrides I<ExportLevel>.
  3439.  
  3440. =back
  3441.  
  3442. =back
  3443.  
  3444. =head3 Specifying constants in your Perl code
  3445.  
  3446. This module was written with a strong emphasis on the convenience of
  3447. the module user.  Therefore, most places where you can specify a
  3448. constant like C<REG_SZ()> also allow you to specify a string
  3449. containing the name of the constant, C<"REG_SZ">.  This is convenient
  3450. because you may not have imported that symbolic constant.
  3451.  
  3452. Perl also emphasizes programmer convenience so the code C<REG_SZ>
  3453. can be used to mean C<REG_SZ()> or C<"REG_SZ"> or be illegal.
  3454. Note that using C<®_SZ> (as we've seen in much Win32 Perl code)
  3455. is not a good idea since it passes the current C<@_> to the
  3456. C<constant()> routine of the module which, at the least, can give
  3457. you a warning under B<-w>.
  3458.  
  3459. Although greatly a matter of style, the "safest" practice is probably
  3460. to specifically list all constants in the C<use Win32::TieRegistry>
  3461. statement, specify C<use strict> [or at least C<use strict qw(subs)>],
  3462. and use bare constant names when you want the numeric value.  This will
  3463. detect mispelled constant names at compile time.
  3464.  
  3465.     use strict;
  3466.     my $Registry;
  3467.     use Win32::TieRegistry 0.20 (
  3468.         TiedRef => \$Registry,  Delimiter => "/",  ArrayValues => 1,
  3469.     SplitMultis => 1,  AllowLoad => 1,
  3470.         qw( REG_SZ REG_EXPAND_SZ REG_DWORD REG_BINARY REG_MULTI_SZ
  3471.         KEY_READ KEY_WRITE KEY_ALL_ACCESS ),
  3472.     );
  3473.     $Registry->{"LMachine/Software/FooCorp/"}= {
  3474.         "FooWriter/" => {
  3475.             "/Fonts" => [ ["Times","Courier","Lucinda"], REG_MULTI_SZ ],
  3476.         "/WindowSize" => [ pack("LL",24,80), REG_BINARY ],
  3477.         "/TaskBarIcon" => [ "0x0001", REG_DWORD ],
  3478.     },
  3479.     }  or  die "Can't create Software/FooCorp/: $^E\n";
  3480.  
  3481. If you don't want to C<use strict qw(subs)>, the second safest practice
  3482. is similar to the above but use the C<REG_SZ()> form for constants
  3483. when possible and quoted constant names when required.  Note that
  3484. C<qw()> is a form of quoting.
  3485.  
  3486.     use Win32::TieRegistry 0.20 qw(
  3487.         TiedRef $Registry
  3488.         Delimiter /  ArrayValues 1  SplitMultis 1  AllowLoad 1
  3489.         REG_SZ REG_EXPAND_SZ REG_DWORD REG_BINARY REG_MULTI_SZ
  3490.         KEY_READ KEY_WRITE KEY_ALL_ACCESS
  3491.     );
  3492.     $Registry->{"LMachine/Software/FooCorp/"}= {
  3493.         "FooWriter/" => {
  3494.             "/Fonts" => [ ["Times","Courier","Lucinda"], REG_MULTI_SZ() ],
  3495.         "/WindowSize" => [ pack("LL",24,80), REG_BINARY() ],
  3496.         "/TaskBarIcon" => [ "0x0001", REG_DWORD() ],
  3497.     },
  3498.     }  or  die "Can't create Software/FooCorp/: $^E\n";
  3499.  
  3500. The examples in this document mostly use quoted constant names
  3501. (C<"REG_SZ">) since that works regardless of which constants
  3502. you imported and whether or not you have C<use strict> in your
  3503. script.  It is not the best choice for you to use for real
  3504. scripts (vs. examples) because it is less efficient and is not
  3505. supported by most other similar modules.
  3506.  
  3507. =head1 SUMMARY
  3508.  
  3509. Most things can be done most easily via tied hashes.  Skip down to the
  3510. the L<Tied Hashes Summary> to get started quickly.
  3511.  
  3512. =head2 Objects Summary
  3513.  
  3514. Here are quick examples that document the most common functionality
  3515. of all of the method functions [except for a few almost useless ones].
  3516.  
  3517.     # Just another way of saying Open():
  3518.     $key= new Win32::TieRegistry "LMachine\\Software\\",
  3519.       { Access=>KEY_READ()|KEY_WRITE(), Delimiter=>"\\" };
  3520.  
  3521.     # Open a Registry key:
  3522.     $subKey= $key->Open( "SubKey/SubSubKey/",
  3523.       { Access=>KEY_ALL_ACCESS, Delimiter=>"/" } );
  3524.  
  3525.     # Connect to a remote Registry key:
  3526.     $remKey= $Registry->Connect( "MachineName", "LMachine/",
  3527.       { Access=>KEY_READ, Delimiter=>"/" } );
  3528.  
  3529.     # Get value data:
  3530.     $valueString= $key->GetValue("ValueName");
  3531.     ( $valueString, $valueType )= $key->GetValue("ValueName");
  3532.  
  3533.     # Get list of value names:
  3534.     @valueNames= $key->ValueNames;
  3535.  
  3536.     # Get list of subkey names:
  3537.     @subKeyNames= $key->SubKeyNames;
  3538.  
  3539.     # Get combined list of value names (with leading delimiters)
  3540.     # and subkey names (with trailing delimiters):
  3541.     @memberNames= $key->MemberNames;
  3542.  
  3543.     # Get all information about a key:
  3544.     %keyInfo= $key->Information;
  3545.     # keys(%keyInfo)= qw( Class LastWrite SecurityLen
  3546.     #   CntSubKeys MaxSubKeyLen MaxSubClassLen
  3547.     #   CntValues MaxValNameLen MaxValDataLen );
  3548.  
  3549.     # Get selected information about a key:
  3550.     ( $class, $cntSubKeys )= $key->Information( "Class", "CntSubKeys" );
  3551.  
  3552.     # Get and/or set delimiter:
  3553.     $delim= $key->Delimiter;
  3554.     $oldDelim= $key->Delimiter( $newDelim );
  3555.  
  3556.     # Get "path" for an open key:
  3557.     $path= $key->Path;
  3558.     # For example, "/CUser/Control Panel/Mouse/"
  3559.     # or "//HostName/LMachine/System/DISK/".
  3560.  
  3561.     # Get name of machine where key is from:
  3562.     $mach= $key->Machine;
  3563.     # Will usually be "" indicating key is on local machine.
  3564.  
  3565.     # Control different options (see main documentation for descriptions):
  3566.     $oldBool= $key->ArrayValues( $newBool );
  3567.     $oldBool= $key->FastDelete( $newBool );
  3568.     $oldBool= $key->FixSzNulls( $newBool );
  3569.     $oldBool= $key->SplitMultis( $newBool );
  3570.     $oldBool= $key->DWordsToHex( $newBool );
  3571.     $oldBool= $key->DualBinVals( $newBool );
  3572.     $oldBool= $key->DualTypes( $newBool );
  3573.     @oldBools= $key->SetOptions( ArrayValues=>1, FastDelete=>1, FixSzNulls=>0,
  3574.       Delimiter=>"/", AllowLoad=>1, AllowSave=>1 );
  3575.     @oldBools= $key->GetOptions( ArrayValues, FastDelete, FixSzNulls );
  3576.  
  3577.     # Add or set a value:
  3578.     $key->SetValue( "ValueName", $valueDataString );
  3579.     $key->SetValue( "ValueName", pack($format,$valueData), "REG_BINARY" );
  3580.  
  3581.     # Add or set a key:
  3582.     $key->CreateKey( "SubKeyName" );
  3583.     $key->CreateKey( "SubKeyName",
  3584.       { Access=>"KEY_ALL_ACCESS", Class=>"ClassName",
  3585.         Delimiter=>"/", Volatile=>1, Backup=>1 } );
  3586.  
  3587.     # Load an off-line Registry hive file into the on-line Registry:
  3588.     $newKey= $Registry->Load( "C:/Path/To/Hive/FileName" );
  3589.     $newKey= $key->Load( "C:/Path/To/Hive/FileName", "NewSubKeyName",
  3590.                      { Access=>"KEY_READ" } );
  3591.     # Unload a Registry hive file loaded via the Load() method:
  3592.     $newKey->UnLoad;
  3593.  
  3594.     # (Dis)Allow yourself to load Registry hive files:
  3595.     $success= $Registry->AllowLoad( $bool );
  3596.  
  3597.     # (Dis)Allow yourself to save a Registry key to a hive file:
  3598.     $success= $Registry->AllowSave( $bool );
  3599.  
  3600.     # Save a Registry key to a new hive file:
  3601.     $key->RegSaveKey( "C:/Path/To/Hive/FileName", [] );
  3602.  
  3603. =head3 Other Useful Methods
  3604.  
  3605. See I<Win32API::Registry> for more information on these methods.
  3606. These methods are provided for coding convenience and are
  3607. identical to the I<Win32API::Registry> functions except that these
  3608. don't take a handle to a Registry key, instead getting the handle
  3609. from the invoking object [C<$key>].
  3610.  
  3611.     $key->RegGetKeySecurity( $iSecInfo, $sSecDesc, $lenSecDesc );
  3612.     $key->RegLoadKey( $sSubKeyName, $sPathToFile );
  3613.     $key->RegNotifyChangeKeyValue(
  3614.       $bWatchSubtree, $iNotifyFilter, $hEvent, $bAsync );
  3615.     $key->RegQueryMultipleValues(
  3616.       $structValueEnts, $cntValueEnts, $Buffer, $lenBuffer );
  3617.     $key->RegReplaceKey( $sSubKeyName, $sPathToNewFile, $sPathToBackupFile );
  3618.     $key->RegRestoreKey( $sPathToFile, $iFlags );
  3619.     $key->RegSetKeySecurity( $iSecInfo, $sSecDesc );
  3620.     $key->RegUnLoadKey( $sSubKeyName );
  3621.  
  3622. =head2 Tied Hashes Summary
  3623.  
  3624. For fast learners, this may be the only section you need to read.
  3625. Always append one delimiter to the end of each Registry key name
  3626. and prepend one delimiter to the front of each Registry value name.
  3627.  
  3628. =head3 Opening keys
  3629.  
  3630.     use Win32::TieRegistry ( Delimiter=>"/", ArrayValues=>1 );
  3631.     $Registry->Delimiter("/");                  # Set delimiter to "/".
  3632.     $swKey= $Registry->{"LMachine/Software/"};
  3633.     $winKey= $swKey->{"Microsoft/Windows/CurrentVersion/"};
  3634.     $userKey= $Registry->
  3635.       {"CUser/Software/Microsoft/Windows/CurrentVersion/"};
  3636.     $remoteKey= $Registry->{"//HostName/LMachine/"};
  3637.  
  3638. =head3 Reading values
  3639.  
  3640.     $progDir= $winKey->{"/ProgramFilesDir"};    # "C:\\Program Files"
  3641.     $tip21= $winKey->{"Explorer/Tips//21"};     # Text of tip #21.
  3642.  
  3643.     $winKey->ArrayValues(1);
  3644.     ( $devPath, $type )= $winKey->{"/DevicePath"};
  3645.     # $devPath eq "%SystemRoot%\\inf"
  3646.     # $type eq "REG_EXPAND_SZ"  [if you have SetDualVar.pm installed]
  3647.     # $type == REG_EXPAND_SZ()  [if did C<use Win32::TieRegistry qw(:REG_)>]
  3648.  
  3649. =head3 Setting values
  3650.  
  3651.     $winKey->{"Setup//SourcePath"}= "\\\\SwServer\\SwShare\\Windows";
  3652.     # Simple.  Assumes data type of REG_SZ.
  3653.  
  3654.     $winKey->{"Setup//Installation Sources"}=
  3655.       [ "D:\x00\\\\SwServer\\SwShare\\Windows\0\0", "REG_MULTI_SZ" ];
  3656.     # "\x00" and "\0" used to mark ends of each string and end of list.
  3657.  
  3658.     $winKey->{"Setup//Installation Sources"}=
  3659.       [ ["D:","\\\\SwServer\\SwShare\\Windows"], "REG_MULTI_SZ" ];
  3660.     # Alternate method that is easier to read.
  3661.  
  3662.     $userKey->{"Explorer/Tips//DisplayInitialTipWindow"}=
  3663.       [ pack("L",0), "REG_DWORD" ];
  3664.     $userKey->{"Explorer/Tips//Next"}= [ pack("S",3), "REG_BINARY" ];
  3665.     $userKey->{"Explorer/Tips//Show"}= [ pack("L",0), "REG_BINARY" ];
  3666.  
  3667. =head3 Adding keys
  3668.  
  3669.     $swKey->{"FooCorp/"}= {
  3670.         "FooWriter/" => {
  3671.             "/Version" => "4.032",
  3672.             "Startup/" => {
  3673.                 "/Title" => "Foo Writer Deluxe ][",
  3674.                 "/WindowSize" => [ pack("LL",$wid,$ht), "REG_BINARY" ],
  3675.                 "/TaskBarIcon" => [ "0x0001", "REG_DWORD" ],
  3676.             },
  3677.             "Compatibility/" => {
  3678.                 "/AutoConvert" => "Always",
  3679.                 "/Default Palette" => "Windows Colors",
  3680.             },
  3681.         },
  3682.         "/License", => "0123-9C8EF1-09-FC",
  3683.     };
  3684.  
  3685. =head3 Listing all subkeys and values
  3686.  
  3687.     @members= keys( %{$swKey} );
  3688.     @subKeys= grep(  m#^/#,  keys( %{$swKey->{"Classes/batfile/"}} )  );
  3689.     # @subKeys= ( "/", "/EditFlags" );
  3690.     @valueNames= grep(  ! m#^/#,  keys( %{$swKey->{"Classes/batfile/"}} )  );
  3691.     # @valueNames= ( "DefaultIcon/", "shell/", "shellex/" );
  3692.  
  3693. =head3 Deleting values or keys with no subkeys
  3694.  
  3695.     $oldValue= delete $userKey->{"Explorer/Tips//Next"};
  3696.  
  3697.     $oldValues= delete $userKey->{"Explorer/Tips/"};
  3698.     # $oldValues will be reference to hash containing deleted keys values.
  3699.  
  3700. =head3 Closing keys
  3701.  
  3702.     undef $swKey;               # Explicit way to close a key.
  3703.     $winKey= "Anything else";   # Implicitly closes a key.
  3704.     exit 0;                     # Implicitly closes all keys.
  3705.  
  3706. =head2 Tie::Registry
  3707.  
  3708. This module was originally called I<Tie::Registry>.  Changing code
  3709. that used I<Tie::Registry> over to I<Win32::TieRegistry> is trivial
  3710. as the module name should only be mentioned once, in the C<use>
  3711. line.  However, finding all of the places that used I<Tie::Registry>
  3712. may not be completely trivial so we have included F<Tie/Registry.pm>
  3713. which you can install to provide backward compatibility.
  3714.  
  3715. =head1 AUTHOR
  3716.  
  3717. Tye McQueen.  See http://www.metronet.com/~tye/ or e-mail
  3718. tye@metronet.com with bug reports.
  3719.  
  3720. =head1 SEE ALSO
  3721.  
  3722. I<Win32API::Registry> - Provides access to C<Reg*()>, C<HKEY_*>,
  3723. C<KEY_*>, C<REG_*> [required].
  3724.  
  3725. I<Win32::WinError> - Defines C<ERROR_*> values [optional].
  3726.  
  3727. L<SetDualVar> - For returning C<REG_*> values as combined
  3728. string/integer values [optional].
  3729.  
  3730. =head1 BUGS
  3731.  
  3732. Perl5.004_02 has bugs that make I<Win32::TieRegistry> fail in
  3733. strange and subtle ways.
  3734.  
  3735. Using I<Win32::TieRegistry> with versions of Perl prior to 5.005
  3736. can be tricky or impossible.  Most notes about this have been
  3737. removed from the documentation (they get rather complicated
  3738. and confusing).  This includes references to C<$^E> perhaps not
  3739. being meaningful.
  3740.  
  3741. Because Perl hashes are case sensitive, certain lookups are also
  3742. case sensistive.  In particular, the root keys ("Classes", "CUser",
  3743. "LMachine", "Users", "PerfData", "CConfig", "DynData", and HKEY_*)
  3744. must always be entered without changing between upper and lower
  3745. case letters.  Also, the special rule for matching subkey names
  3746. that contain the user-selected delimiter only works if case is
  3747. matched.  All other key name and value name lookups should be case
  3748. insensitive because the underlying Reg*() calls ignore case.
  3749.  
  3750. Information about each key is cached when using a tied hash.
  3751. This cache is not flushed nor updated when changes are made,
  3752. I<even when the same tied hash is used> to make the changes.
  3753.  
  3754. Current implementations of Perl's "global destruction" phase can
  3755. cause objects returned by C<Load()> to be destroyed while keys
  3756. within the hive are still open, if the objects still exist when
  3757. the script starts to exit.  When this happens, the automatic
  3758. C<UnLoad()> will report a failure and the hive will remain loaded
  3759. in the Registry.
  3760.  
  3761. Trying to C<Load()> a hive file that is located on a remote network
  3762. share may silently delete all data from the hive.  This is a bug
  3763. in the Win32 APIs, not any Perl code or modules.  This module does
  3764. not try to protect you from this bug.
  3765.  
  3766. There is no test suite.
  3767.  
  3768. =head1 FUTURE DIRECTIONS
  3769.  
  3770. The following items are desired by the author and may appear in a
  3771. future release of this module.
  3772.  
  3773. =over
  3774.  
  3775. =item TieValues option
  3776.  
  3777. Currently described in main documentation but no yet implemented.
  3778.  
  3779. =item AutoRefresh option
  3780.  
  3781. Trigger use of C<RegNotifyChangeKeyValue()> to keep tied hash
  3782. caches up-to-date even when other programs make changes.
  3783.  
  3784. =item Error options
  3785.  
  3786. Allow the user to have unchecked calls (calls in a "void context")
  3787. to automatically report errors via C<warn> or C<die>.
  3788.  
  3789. For complex operations, such a copying an entire subtree, provide
  3790. access to detailed information about errors (and perhaps some
  3791. warnings) that were encountered.  Let the user control whether
  3792. the complex operation continues in spite of errors.
  3793.  
  3794. =back
  3795.  
  3796. =cut
  3797.  
  3798. # Autoload not currently supported by Perl under Windows.
  3799.