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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Win32::TieRegistry - Powerful and easy ways to manipulate a registry
  5. [on Win32 for now].</TITLE>
  6. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  7. <LINK REV="made" HREF="mailto:">
  8. </HEAD>
  9.  
  10. <BODY>
  11. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  12. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  13. <STRONG><P CLASS=block> Win32::TieRegistry - Powerful and easy ways to manipulate a registry
  14. [on Win32 for now].</P></STRONG>
  15. </TD></TR>
  16. </TABLE>
  17.  
  18. <A NAME="__index__"></A>
  19. <!-- INDEX BEGIN -->
  20.  
  21. <UL>
  22.  
  23.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  24.  
  25.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  26.     <LI><A HREF="#examples">EXAMPLES</A></LI>
  27.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  28.     <UL>
  29.  
  30.         <LI><A HREF="#the registry">The Registry</A></LI>
  31.         <LI><A HREF="#tied hashes documentation">Tied Hashes Documentation</A></LI>
  32.         <UL>
  33.  
  34.             <LI><A HREF="#examples">Examples</A></LI>
  35.             <LI><A HREF="#deleting items">Deleting items</A></LI>
  36.             <LI><A HREF="#storing items">Storing items</A></LI>
  37.             <LI><A HREF="#more examples">More examples</A></LI>
  38.         </UL>
  39.  
  40.         <LI><A HREF="#objects documentation">Objects Documentation</A></LI>
  41.         <LI><A HREF="#exports [use and import()]">Exports [<A HREF="../../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> and <A HREF="../../../lib/Pod/perlfunc.html#item_import"><CODE>import()</CODE></A>]</A></LI>
  42.         <UL>
  43.  
  44.             <LI><A HREF="#specifying constants in your perl code">Specifying constants in your Perl code</A></LI>
  45.         </UL>
  46.  
  47.     </UL>
  48.  
  49.     <LI><A HREF="#summary">SUMMARY</A></LI>
  50.     <UL>
  51.  
  52.         <LI><A HREF="#objects summary">Objects Summary</A></LI>
  53.         <UL>
  54.  
  55.             <LI><A HREF="#other useful methods">Other Useful Methods</A></LI>
  56.         </UL>
  57.  
  58.         <LI><A HREF="#tied hashes summary">Tied Hashes Summary</A></LI>
  59.         <UL>
  60.  
  61.             <LI><A HREF="#opening keys">Opening keys</A></LI>
  62.             <LI><A HREF="#reading values">Reading values</A></LI>
  63.             <LI><A HREF="#setting values">Setting values</A></LI>
  64.             <LI><A HREF="#adding keys">Adding keys</A></LI>
  65.             <LI><A HREF="#listing all subkeys and values">Listing all subkeys and values</A></LI>
  66.             <LI><A HREF="#deleting values or keys with no subkeys">Deleting values or keys with no subkeys</A></LI>
  67.             <LI><A HREF="#closing keys">Closing keys</A></LI>
  68.         </UL>
  69.  
  70.         <LI><A HREF="#tie::registry">Tie::Registry</A></LI>
  71.     </UL>
  72.  
  73.     <LI><A HREF="#author">AUTHOR</A></LI>
  74.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  75.     <LI><A HREF="#bugs">BUGS</A></LI>
  76.     <LI><A HREF="#future directions">FUTURE DIRECTIONS</A></LI>
  77. </UL>
  78. <!-- INDEX END -->
  79.  
  80. <HR>
  81. <P>
  82. <H1><A NAME="name">NAME</A></H1>
  83. <P>Win32::TieRegistry - Powerful and easy ways to manipulate a registry
  84. [on Win32 for now].</P>
  85. <P>
  86. <HR>
  87. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  88. <UL>
  89. <LI>Windows</LI>
  90. </UL>
  91. <HR>
  92. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  93. <PRE>
  94.   use Win32::TieRegistry 0.20 ( UseOptionName=>UseOptionValue[,...] );</PRE>
  95. <PRE>
  96.   $Registry->SomeMethodCall(arg1,...);</PRE>
  97. <PRE>
  98.   $subKey= $Registry->{"Key\\SubKey\\"};
  99.   $valueData= $Registry->{"Key\\SubKey\\\\ValueName"};
  100.   $Registry->{"Key\\SubKey\\"}= { "NewSubKey" => {...} };
  101.   $Registry->{"Key\\SubKey\\\\ValueName"}= "NewValueData";
  102.   $Registry->{"\\ValueName"}= [ pack("fmt",$data), REG_DATATYPE ];</PRE>
  103. <P>
  104. <HR>
  105. <H1><A NAME="examples">EXAMPLES</A></H1>
  106. <PRE>
  107.   use Win32::TieRegistry( Delimiter=>"#", ArrayValues=>0 );
  108.   $pound= $Registry->Delimiter("/");
  109.   $diskKey= $Registry->{"LMachine/System/Disk/"}
  110.     or  die "Can't read LMachine/System/Disk key: $^E\n";
  111.   $data= $key->{"/Information"}
  112.     or  die "Can't read LMachine/System/Disk//Information value: $^E\n";
  113.   $remoteKey= $Registry->{"//ServerA/LMachine/System/"}
  114.     or  die "Can't read //ServerA/LMachine/System/ key: $^E\n";
  115.   $remoteData= $remoteKey->{"Disk//Information"}
  116.     or  die "Can't read ServerA's System/Disk//Information value: $^E\n";
  117.   foreach $entry (  keys(%$diskKey)  ) {
  118.       ...
  119.   }
  120.   foreach $subKey (  $diskKey->SubKeyNames  ) {
  121.       ...
  122.   }
  123.   $diskKey->AllowSave( 1 );
  124.   $diskKey->RegSaveKey( "C:/TEMP/DiskReg", [] );</PRE>
  125. <P>
  126. <HR>
  127. <H1><A NAME="description">DESCRIPTION</A></H1>
  128. <P>The <EM>Win32::TieRegistry</EM> module lets you manipulate the Registry
  129. via objects [as in ``object oriented''] or via tied hashes.  But
  130. you will probably mostly use a combination reference, that is, a
  131. reference to a tied hash that has also been made an object so that
  132. you can mix both access methods [as shown above].</P>
  133. <P>If you did not get this module as part of <EM>libwin32</EM>, you might
  134. want to get a recent version of <EM>libwin32</EM> from CPAN which should
  135. include this module and the <EM>Win32API::Registry</EM> module that it
  136. uses.</P>
  137. <P>Skip to the <EM>SUMMARY</EM> section if you just want to dive in and start
  138. using the Registry from Perl.</P>
  139. <P>Accessing and manipulating the registry is extremely simple using
  140. <EM>Win32::TieRegistry</EM>.  A single, simple expression can return
  141. you almost any bit of information stored in the Registry.
  142. <EM>Win32::TieRegistry</EM> also gives you full access to the ``raw''
  143. underlying API calls so that you can do anything with the Registry
  144. in Perl that you could do in C.  But the ``simple'' interface has
  145. been carefully designed to handle almost all operations itself
  146. without imposing arbitrary limits while providing sensible
  147. defaults so you can list only the parameters you care about.</P>
  148. <P>But first, an overview of the Registry itself.</P>
  149. <P>
  150. <H2><A NAME="the registry">The Registry</A></H2>
  151. <P>The Registry is a forest:  a collection of several tree structures.
  152. The root of each tree is a key.  These root keys are identified by
  153. predefined constants whose names start with ``HKEY_''.  Although all
  154. keys have a few attributes associated with each [a class, a time
  155. stamp, and security information], the most important aspect of keys
  156. is that each can contain subkeys and can contain values.</P>
  157. <P>Each subkey has a name:  a string which cannot be blank and cannot
  158. contain the delimiter character [backslash: <CODE>'\\'</CODE>] nor nul
  159. [<CODE>'\0'</CODE>].  Each subkey is also a key and so can contain subkeys
  160. and values [and has a class, time stamp, and security information].</P>
  161. <P>Each value has a name:  a string which &can; be blank and &can;
  162. contain the delimiter character [backslash: <CODE>'\\'</CODE>] and any
  163. character except for null, <CODE>'\0'</CODE>.  Each value also has data
  164. associated with it.  Each value's data is a contiguous chunk of
  165. bytes, which is exactly what a Perl string value is so Perl
  166. strings will usually be used to represent value data.</P>
  167. <P>Each value also has a data type which says how to interpret the
  168. value data.  The primary data types are:</P>
  169. <DL>
  170. <DT><STRONG><A NAME="item_REG_SZ">REG_SZ</A></STRONG><BR>
  171. <DD>
  172. A null-terminated string.
  173. <P></P>
  174. <DT><STRONG><A NAME="item_REG_EXPAND_SZ">REG_EXPAND_SZ</A></STRONG><BR>
  175. <DD>
  176. A null-terminated string which contains substrings consisting of a
  177. percent sign [<CODE>'%'</CODE>], an environment variable name, then a percent
  178. sign, that should be replaced with the value associate with that
  179. environment variable.  The system does <EM>not</EM> automatically do this
  180. substitution.
  181. <P></P>
  182. <DT><STRONG><A NAME="item_REG_BINARY">REG_BINARY</A></STRONG><BR>
  183. <DD>
  184. Some arbitrary binary value.  You can think of these as being
  185. ``packed'' into a string.
  186. <P>If your system has the <EM>SetDualVar</EM> module installed,
  187. the <A HREF="#item_DualBinVals"><CODE>DualBinVals()</CODE></A> option wasn't turned off, and you
  188. fetch a <A HREF="#item_REG_BINARY"><CODE>REG_BINARY</CODE></A> value of 4 bytes or fewer, then
  189. you can use the returned value in a numeric context to
  190. get at the ``unpacked'' numeric value.  See <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A>
  191. for more information.</P>
  192. <P></P>
  193. <DT><STRONG><A NAME="item_REG_MULTI_SZ">REG_MULTI_SZ</A></STRONG><BR>
  194. <DD>
  195. Several null-terminated strings concatenated together with an
  196. extra trailing <CODE>'\0'</CODE> at the end of the list.  Note that the list
  197. can include empty strings so use the value's length to determine
  198. the end of the list, not the first occurrence of <CODE>'\0\0'</CODE>.
  199. It is best to set the <A HREF="#item_SplitMultis"><CODE>SplitMultis()</CODE></A> option so <EM>Win32::TieRegistry</EM>
  200. will split these values into an array of strings for you.
  201. <P></P>
  202. <DT><STRONG><A NAME="item_REG_DWORD">REG_DWORD</A></STRONG><BR>
  203. <DD>
  204. A long [4-byte] integer value.  These values are expected either
  205. packed into a 4-character string or as a hex string of &A long [4-byte] integer value.  These values are expected either
  206. packed into a 4-character string or as a hex string of ;more than>
  207. 4 characters [but <EM>not</EM> as a numeric value, unfortunately, as there is
  208. no sure way to tell a numeric value from a packed 4-byte string that
  209. just happens to be a string containing a valid numeric value].
  210. <P>How such values are returned depends on the <A HREF="#item_DualBinVals"><CODE>DualBinVals()</CODE></A> and
  211. <A HREF="#item_DWordsToHex"><CODE>DWordsToHex()</CODE></A> options.  See <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A> for details.</P>
  212. <P></P></DL>
  213. <P>In the underlying Registry calls, most places which take a
  214. subkey name also allow you to pass in a subkey ``path'' -- a
  215. string of several subkey names separated by the delimiter
  216. character, backslash [<CODE>'\\'</CODE>].  For example, doing
  217. <CODE>RegOpenKeyEx(HKEY_LOCAL_MACHINE,"SYSTEM\\DISK",...)</CODE> is much
  218. like opening the <CODE>"SYSTEM"</CODE> subkey of <CODE>HKEY_LOCAL_MACHINE</CODE>,
  219. then opening its <CODE>"DISK"</CODE> subkey, then closing the <CODE>"SYSTEM"</CODE>
  220. subkey.</P>
  221. <P>All of the <EM>Win32::TieRegistry</EM> features allow you to use your
  222. own delimiter in place of the system's delimiter, [<CODE>'\\'</CODE>].  In
  223. most of our examples we will use a forward slash [<CODE>'/'</CODE>] as our
  224. delimiter as it is easier to read and less error prone to use when
  225. writing Perl code since you have to type two backslashes for each
  226. backslash you want in a string.  Note that this is true even when
  227. using single quotes -- <CODE>'\\HostName\LMachine\'</CODE> is an invalid
  228. string and must be written as <CODE>'\\\\HostName\\LMachine\\'</CODE>.</P>
  229. <P>You can also connect to the registry of other computers on your
  230. network.  This will be discussed more later.</P>
  231. <P>Although the Registry does not have a single root key, the
  232. <EM>Win32::TieRegistry</EM> module creates a virtual root key for you
  233. which has all of the <EM>HKEY_*</EM> keys as subkeys.</P>
  234. <P>
  235. <H2><A NAME="tied hashes documentation">Tied Hashes Documentation</A></H2>
  236. <P>Before you can use a tied hash, you must create one.  One way to
  237. do that is via:</P>
  238. <PRE>
  239.     use Win32::TieRegistry ( TiedHash => '%RegHash' );</PRE>
  240. <P>which exports a <CODE>%RegHash</CODE> variable into your package and ties it
  241. to the virtual root key of the Registry.  An alternate method is:</P>
  242. <PRE>
  243.     my %RegHash;
  244.     use Win32::TieRegistry ( TiedHash => \%RegHash );</PRE>
  245. <P>There are also several ways you can tie a hash variable to any
  246. other key of the Registry, which are discussed later.</P>
  247. <P>Note that you will most likely use <CODE>$Registry</CODE> instead of using
  248. a tied hash.  <CODE>$Registry</CODE> is a reference to a hash that has
  249. been tied to the virtual root of your computer's Registry [as if,
  250. <CODE>$Registry= \%RegHash</CODE>].  So you would use <CODE>$Registry->{Key}</CODE>
  251. rather than <CODE>$RegHash{Key}</CODE> and use <CODE>keys %{$Registry}</CODE> rather
  252. than <CODE>keys %RegHash</CODE>, for example.</P>
  253. <P>For each hash which has been tied to a Registry key, the Perl
  254. <A HREF="../../../lib/Pod/perlfunc.html#item_keys"><CODE>keys</CODE></A> function will return a list containing the name of each
  255. of the key's subkeys with a delimiter character appended to it and
  256. containing the name of each of the key's values with a delimiter
  257. prepended to it.  For example:</P>
  258. <PRE>
  259.     keys( %{ $Registry->{"HKEY_CLASSES_ROOT\\batfile\\"} } )</PRE>
  260. <P>might yield the following list value:</P>
  261. <PRE>
  262.     ( "DefaultIcon\\",  # The subkey named "DefaultIcon"
  263.       "shell\\",        # The subkey named "shell"
  264.       "shellex\\",      # The subkey named "shellex"
  265.       "\\",             # The default value [named ""]
  266.       "\\EditFlags" )   # The value named "EditFlags"</PRE>
  267. <P>For the virtual root key, short-hand subkey names are used as
  268. shown below.  You can use the short-hand name, the regular
  269. <EM>HKEY_*</EM> name, or any numeric value to access these keys, but
  270. the short-hand names are all that will be returned by the <A HREF="../../../lib/Pod/perlfunc.html#item_keys"><CODE>keys</CODE></A>
  271. function.</P>
  272. <DL>
  273. <DT><STRONG><A NAME="item_%22Classes%22_for_HKEY_CLASSES_ROOT">``Classes'' for HKEY_CLASSES_ROOT</A></STRONG><BR>
  274. <DD>
  275. Contains mappings between file name extensions and the uses
  276. for such files along with configuration information for COM
  277. [MicroSoft's Common Object Model] objects.  Usually a link to
  278. the <CODE>"SOFTWARE\\Classes"</CODE> subkey of the <CODE>HKEY_LOCAL_MACHINE</CODE>
  279. key.
  280. <P></P>
  281. <DT><STRONG><A NAME="item_%22CUser%22_for_HKEY_CURRENT_USER">``CUser'' for HKEY_CURRENT_USER</A></STRONG><BR>
  282. <DD>
  283. Contains information specific to the currently logged-in user.
  284. Mostly software configuration information.  Usually a link to
  285. a subkey of the <CODE>HKEY_USERS</CODE> key.
  286. <P></P>
  287. <DT><STRONG><A NAME="item_%22LMachine%22_for_HKEY_LOCAL_MACHINE">``LMachine'' for HKEY_LOCAL_MACHINE</A></STRONG><BR>
  288. <DD>
  289. Contains all manner of information about the computer.
  290. <P></P>
  291. <DT><STRONG><A NAME="item_%22Users%22_for_HKEY_USERS">``Users'' for HKEY_USERS</A></STRONG><BR>
  292. <DD>
  293. Contains one subkey, <CODE>".DEFAULT"</CODE>, which gets copied to a new
  294. subkey whenever a new user is added.  Also contains a subkey for
  295. each user of the system, though only those for active users
  296. [usually only one] are loaded at any given time.
  297. <P></P>
  298. <DT><STRONG><A NAME="item_%22PerfData%22_for_HKEY_PERFORMANCE_DATA">``PerfData'' for HKEY_PERFORMANCE_DATA</A></STRONG><BR>
  299. <DD>
  300. Used to access data about system performance.  Access via this key
  301. is ``special'' and all but the most carefully constructed calls will
  302. fail, usually with <CODE>ERROR_INSUFFICIENT_BUFFER</CODE>.  For example, you
  303. can't enumerate key names without also enumerating values which
  304. require huge buffers but the exact buffer size required cannot be
  305. determined beforehand because <CODE>RegQueryInfoKey()</CODE> &always; fails
  306. with <CODE>ERROR_INSUFFICIENT_BUFFER</CODE> for <CODE>HKEY_PERFORMANCE_DATA</CODE> no
  307. matter how it is called.  So it is currently not very useful to
  308. tie a hash to this key.  You can use it to create an object to use
  309. for making carefully constructed calls to the underlying Reg*()
  310. routines.
  311. <P></P>
  312. <DT><STRONG><A NAME="item_%22CConfig%22_for_HKEY_CURRENT_CONFIG">``CConfig'' for HKEY_CURRENT_CONFIG</A></STRONG><BR>
  313. <DD>
  314. Contains minimal information about the computer's current
  315. configuration that is required very early in the boot process.
  316. For example, setting for the display adapter such as screen
  317. resolution and refresh rate are found in here.
  318. <P></P>
  319. <DT><STRONG><A NAME="item_%22DynData%22_for_HKEY_DYN_DATA">``DynData'' for HKEY_DYN_DATA</A></STRONG><BR>
  320. <DD>
  321. Dynamic data.  We have found no documentation for this key.
  322. <P></P></DL>
  323. <P>A tied hash is much like a regular hash variable in Perl -- you give
  324. it a key string inside braces, [<CODE>{</CODE> and <CODE>}</CODE>], and it gives you
  325. back a value [or lets you set a value].  For <EM>Win32::TieRegistry</EM>
  326. hashes, there are two types of values that will be returned.</P>
  327. <DL>
  328. <DT><STRONG><A NAME="item_SubKeys">SubKeys</A></STRONG><BR>
  329. <DD>
  330. If you give it a string which represents a subkey, then it will
  331. give you back a reference to a hash which has been tied to that
  332. subkey.  It can't return the hash itself, so it returns a
  333. reference to it.  It also blesses that reference so that it is
  334. also an object so you can use it to call method functions.
  335. <P></P>
  336. <DT><STRONG><A NAME="item_Values">Values</A></STRONG><BR>
  337. <DD>
  338. If you give it a string which is a value name, then it will give
  339. you back a string which is the data for that value.  Alternately,
  340. you can request that it give you both the data value string and
  341. the data value type [we discuss how to request this later].  In
  342. this case, it would return a reference to an array where the value
  343. data string is element <CODE>[0]</CODE> and the value data type is element
  344. <CODE>[1]</CODE>.
  345. <P></P></DL>
  346. <P>The key string which you use in the tied hash must be interpreted
  347. to determine whether it is a value name or a key name or a path
  348. that combines several of these or even other things.  There are
  349. two simple rules that make this interpretation easy and
  350. unambiguous:</P>
  351. <PRE>
  352.     Put a delimiter after each key name.
  353.     Put a delimiter in front of each value name.</PRE>
  354. <P>Exactly how the key string will be intepreted is governed by the
  355. following cases, in the order listed.  These cases are designed
  356. to ``do what you mean''.  Most of the time you won't have to think
  357. about them, especially if you follow the two simple rules above.
  358. After the list of cases we give several examples which should be
  359. clear enough so feel free to skip to them unless you are worried
  360. about the details.</P>
  361. <DL>
  362. <DT><STRONG><A NAME="item_Remote_machines">Remote machines</A></STRONG><BR>
  363. <DD>
  364. If the hash is tied to the virtual root of the registry [or the
  365. virtual root of a remote machine's registry], then we treat hash
  366. key strings which start with the delimiter character specially.
  367. <P>If the hash key string starts with two delimiters in a row, then
  368. those should be immediately followed by the name of a remote
  369. machine whose registry we wish to connect to.  That can be
  370. followed by a delimiter and more subkey names, etc.  If the
  371. machine name is not following by anything, then a virtual root
  372. for the remote machine's registry is created, a hash is tied to
  373. it, and a reference to that hash it is returned.</P>
  374. <P></P>
  375. <DT><STRONG><A NAME="item_Hash_key_string_starts_with_the_delimiter">Hash key string starts with the delimiter</A></STRONG><BR>
  376. <DD>
  377. If the hash is tied to a virtual root key, then the leading
  378. delimiter is ignored.  It should be followed by a valid Registry
  379. root key name [either a short-hand name like <CODE>"LMachine"</CODE>, an
  380. <EM>HKEY_*</EM> value, or a numeric value].   This alternate notation is
  381. allowed in order to be more consistant with the <A HREF="#item_Open"><CODE>Open()</CODE></A> method
  382. function.
  383. <P>For all other Registry keys, the leading delimiter indicates
  384. that the rest of the string is a value name.  The leading
  385. delimiter is stripped and the rest of the string [which can
  386. be empty and can contain more delimiters] is used as a value
  387. name with no further parsing.</P>
  388. <P></P>
  389. <DT><STRONG><A NAME="item_Exact_match_with_direct_subkey_name_followed_by_de">Exact match with direct subkey name followed by delimiter</A></STRONG><BR>
  390. <DD>
  391. If you have already called the Perl <A HREF="../../../lib/Pod/perlfunc.html#item_keys"><CODE>keys</CODE></A> function on the tied
  392. hash [or have already called <A HREF="#item_MemberNames"><CODE>MemberNames</CODE></A> on the object] and the
  393. hash key string exactly matches one of the strings returned, then
  394. no further parsing is done.  In other words, if the key string
  395. exactly matches the name of a direct subkey with a delimiter
  396. appended, then a reference to a hash tied to that subkey is
  397. returned [but only if <A HREF="../../../lib/Pod/perlfunc.html#item_keys"><CODE>keys</CODE></A> or <A HREF="#item_MemberNames"><CODE>MemberNames</CODE></A> has already
  398. been called for that tied hash].
  399. <P>This is only important if you have selected a delimiter other than
  400. the system default delimiter and one of the subkey names contains
  401. the delimiter you have chosen.  This rule allows you to deal with
  402. subkeys which contain your chosen delimiter in their name as long
  403. as you only traverse subkeys one level at a time and always
  404. enumerate the list of members before doing so.</P>
  405. <P>The main advantage of this is that Perl code which recursively
  406. traverses a hash will work on hashes tied to Registry keys even if
  407. a non-default delimiter has been selected.</P>
  408. <P></P>
  409. <DT><STRONG><A NAME="item_Hash_key_string_contains_two_delimiters_in_a_row">Hash key string contains two delimiters in a row</A></STRONG><BR>
  410. <DD>
  411. If the hash key string contains two [or more] delimiters in a row,
  412. then the string is split between the first pair of delimiters.
  413. The first part is interpreted as a subkey name or a path of subkey
  414. names separated by delimiters and with a trailing delimiter.  The
  415. second part is interpreted as a value name with one leading
  416. delimiter [any extra delimiters are considered part of the value
  417. name].
  418. <P></P>
  419. <DT><STRONG><A NAME="item_Hash_key_string_ends_with_a_delimiter">Hash key string ends with a delimiter</A></STRONG><BR>
  420. <DD>
  421. If the key string ends with a delimiter, then it is treated
  422. as a subkey name or path of subkey names separated by delimiters.
  423. <P></P>
  424. <DT><STRONG><A NAME="item_Hash_key_string_contains_a_delimiter">Hash key string contains a delimiter</A></STRONG><BR>
  425. <DD>
  426. If the key string contains a delimiter, then it is split after
  427. the last delimiter.  The first part is treated as a subkey name or
  428. path of subkey names separated by delimiters.  The second part
  429. is ambiguous and is treated as outlined in the next item.
  430. <P></P>
  431. <DT><STRONG><A NAME="item_Hash_key_string_contains_no_delimiters">Hash key string contains no delimiters</A></STRONG><BR>
  432. <DD>
  433. If the hash key string contains no delimiters, then it is ambiguous.
  434. <P>If you are reading from the hash [fetching], then we first use the
  435. key string as a value name.  If there is a value with a matching
  436. name in the Registry key which the hash is tied to, then the value
  437. data string [and possibly the value data type] is returned.
  438. Otherwise, we retry by using the hash key string as a subkey name.
  439. If there is a subkey with a matching name, then we return a
  440. reference to a hash tied to that subkey.  Otherwise we return
  441. <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>.</P>
  442. <P>If you are writing to the hash [storing], then we use the key
  443. string as a subkey name only if the value you are storing is a
  444. reference to a hash value.  Otherwise we use the key string as
  445. a value name.</P>
  446. <P></P></DL>
  447. <P>
  448. <H3><A NAME="examples">Examples</A></H3>
  449. <P>Here are some examples showing different ways of accessing Registry
  450. information using references to tied hashes:</P>
  451. <DL>
  452. <DT><STRONG><A NAME="item_Canonical_value_fetch">Canonical value fetch</A></STRONG><BR>
  453. <DD>
  454. <PRE>
  455.     $tip18= $Registry->{"HKEY_LOCAL_MACHINE\\Software\\Microsoft\\"
  456.                . 'Windows\\CurrentVersion\\Explorer\\Tips\\\\18'};</PRE>
  457. <P>Should return the text of important tip number 18.  Note that two
  458. backslashes, <CODE>"\\"</CODE>, are required to get a single backslash into
  459. a Perl double-quoted or single-qouted string.  Note that <CODE>"\\"</CODE>
  460. is appended to each key name [<CODE>"HKEY_LOCAL_MACHINE"</CODE> through
  461. <CODE>"Tips"</CODE>] and <CODE>"\\"</CODE> is prepended to the value name, <CODE>"18"</CODE>.</P>
  462. <DT><STRONG><A NAME="item_Changing_your_delimiter">Changing your delimiter</A></STRONG><BR>
  463. <DD>
  464. <PRE>
  465.     $Registry->Delimiter("/");
  466.     $tip18= $Registry->{"HKEY_LOCAL_MACHINE/Software/Microsoft/"
  467.                . 'Windows/CurrentVersion/Explorer/Tips//18'};</PRE>
  468. <P>This usually makes things easier to read when working in Perl.
  469. All remaining examples will assume the delimiter has been changed
  470. as above.</P>
  471. <DT><STRONG><A NAME="item_Using_intermediate_keys">Using intermediate keys</A></STRONG><BR>
  472. <DD>
  473. <PRE>
  474.     $ms= $Registry->{"LMachine/Software/Microsoft/"};
  475.     $tips= $ms->{"Windows/CurrentVersion/Explorer/Tips/"};
  476.     $tip18= $winlogon->{"/18"};</PRE>
  477. <P>Same as above but opens more keys into the Registry which lets you
  478. efficiently re-access those intermediate keys.  This is slightly
  479. less efficient if you never reuse those intermediate keys.</P>
  480. <DT><STRONG><A NAME="item_Chaining_in_a_single_statement">Chaining in a single statement</A></STRONG><BR>
  481. <DD>
  482. <PRE>
  483.     $tip18= $Registry->{"LMachine/Software/Microsoft/"}->
  484.               {"Windows/CurrentVersion/Explorer/Tips/"}->{"/18"};</PRE>
  485. <P>Like above, this creates intermediate key objects then uses
  486. them to access other data.  Once this statement finishes, the
  487. intermediate key objects are destroyed.  Several handles into
  488. the Registry are opened and closed by this statement so it is
  489. less efficient but there are times when this will be useful.</P>
  490. <DT><STRONG><A NAME="item_Even_less_efficient_example_of_chaining">Even less efficient example of chaining</A></STRONG><BR>
  491. <DD>
  492. <PRE>
  493.     $tip18= $Registry->{"LMachine/Software/Microsoft"}->
  494.               {"Windows/CurrentVersion/Explorer/Tips"}->{"/18"};</PRE>
  495. <P>Because we left off the trailing delimiters, <EM>Win32::TieRegistry</EM>
  496. doesn't know whether final names, <CODE>"Microsoft"</CODE> and <CODE>"Tips"</CODE>,
  497. are subkey names or value names.  So this statement ends up
  498. executing the same code as the next one.</P>
  499. <DT><STRONG><A NAME="item_What_the_above_really_does">What the above really does</A></STRONG><BR>
  500. <DD>
  501. <PRE>
  502.     $tip18= $Registry->{"LMachine/Software/"}->{"Microsoft"}->
  503.               {"Windows/CurrentVersion/Explorer/"}->{"Tips"}->{"/18"};</PRE>
  504. <P>With more chains to go through, more temporary objects are created
  505. and later destroyed than in our first chaining example.  Also,
  506. when <CODE>"Microsoft"</CODE> is looked up, <EM>Win32::TieRegistry</EM> first
  507. tries to open it as a value and fails then tries it as a subkey.
  508. The same is true for when it looks up <CODE>"Tips"</CODE>.</P>
  509. <DT><STRONG><A NAME="item_Getting_all_of_the_tips">Getting all of the tips</A></STRONG><BR>
  510. <DD>
  511. <PRE>
  512.     $tips= $Registry->{"LMachine/Software/Microsoft/"}->
  513.               {"Windows/CurrentVersion/Explorer/Tips/"}
  514.       or  die "Can't find the Windows tips: $^E\n";
  515.     foreach(  keys %$tips  ) {
  516.         print "$_: ", $tips->{$_}, "\n";
  517.     }</PRE>
  518. <P>First notice that we actually check for failure for the first
  519. time.  We are assuming that the <CODE>"Tips"</CODE> key contains no subkeys. 
  520. Otherwise the <A HREF="../../../lib/Pod/perlfunc.html#item_print"><CODE>print</CODE></A> statement would show something like
  521. <CODE>"Win32::TieRegistry=HASH(0xc03ebc)"</CODE> for each subkey.</P>
  522. <P>The output from the above code will start something like:</P>
  523. <PRE>
  524.     /0: If you don't know how to do something,[...]</PRE>
  525. </DL>
  526. <P>
  527. <H3><A NAME="deleting items">Deleting items</A></H3>
  528. <P>You can use the Perl <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> function to delete a value from a
  529. Registry key or to delete a subkey as long that subkey contains
  530. no subkeys of its own.  See <A HREF="#more examples">More Examples</A>, below, for more
  531. information.</P>
  532. <P>
  533. <H3><A NAME="storing items">Storing items</A></H3>
  534. <P>You can use the Perl assignment operator [<CODE>=</CODE>] to create new
  535. keys, create new values, or replace values.  The values you store
  536. should be in the same format as the values you would fetch from a
  537. tied hash.  For example, you can use a single assignment statement
  538. to copy an entire Registry tree.  The following statement:</P>
  539. <PRE>
  540.     $Registry->{"LMachine/Software/Classes/Tie_Registry/"}=
  541.       $Registry->{"LMachine/Software/Classes/batfile/"};</PRE>
  542. <P>creates a <CODE>"Tie_Registry"</CODE> subkey under the <CODE>"Software\\Classes"</CODE>
  543. subkey of the <CODE>HKEY_LOCAL_MACHINE</CODE> key.  Then it populates it
  544. with copies of all of the subkeys and values in the <CODE>"batfile"</CODE>
  545. subkey and all of its subkeys.  Note that you need to have
  546. called <A HREF="#item_ArrayValues"><CODE>$Registry->ArrayValues(1)</CODE></A> for the proper value data
  547. type information to be copied.  Note also that this release of
  548. <EM>Win32::TieRegistry</EM> does not copy key attributes such as class
  549. name and security information [this is planned for a future release].</P>
  550. <P>The following statement creates a whole subtree in the Registry:</P>
  551. <PRE>
  552.     $Registry->{"LMachine/Software/FooCorp/"}= {
  553.         "FooWriter/" => {
  554.             "/Version" => "4.032",
  555.             "Startup/" => {
  556.                 "/Title" => "Foo Writer Deluxe ][",
  557.                 "/WindowSize" => [ pack("LL",$wid,$ht), "REG_BINARY" ],
  558.                 "/TaskBarIcon" => [ "0x0001", "REG_DWORD" ],
  559.             },
  560.             "Compatibility/" => {
  561.                 "/AutoConvert" => "Always",
  562.                 "/Default Palette" => "Windows Colors",
  563.             },
  564.         },
  565.         "/License", => "0123-9C8EF1-09-FC",
  566.     };</PRE>
  567. <P>Note that all but the last Registry key used on the left-hand
  568. side of the assignment [that is, ``LMachine/Software/'' but not
  569. ``FooCorp/''] must already exist for this statement to succeed.</P>
  570. <P>By using the leading a trailing delimiters on each subkey name and
  571. value name, <EM>Win32::TieRegistry</EM> will tell you if you try to assign
  572. subkey information to a value or visa-versa.</P>
  573. <P>
  574. <H3><A NAME="more examples">More examples</A></H3>
  575. <DL>
  576. <DT><STRONG><A NAME="item_Adding_a_new_tip">Adding a new tip</A></STRONG><BR>
  577. <DD>
  578. <PRE>
  579.     $tips= $Registry->{"LMachine/Software/Microsoft/"}->
  580.               {"Windows/CurrentVersion/Explorer/Tips/"}
  581.       or  die "Can't find the Windows tips: $^E\n";
  582.     $tips{'/186'}= "Be very careful when making changes to the Registry!";</PRE>
  583. <DT><STRONG><A NAME="item_Deleting_our_new_tip">Deleting our new tip</A></STRONG><BR>
  584. <DD>
  585. <PRE>
  586.     $tips= $Registry->{"LMachine/Software/Microsoft/"}->
  587.               {"Windows/CurrentVersion/Explorer/Tips/"}
  588.       or  die "Can't find the Windows tips: $^E\n";
  589.     $tip186= delete $tips{'/186'};</PRE>
  590. <P>Note that Perl's <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> function returns the value that was deleted.</P>
  591. <DT><STRONG><A NAME="item_Adding_a_new_tip_differently">Adding a new tip differently</A></STRONG><BR>
  592. <DD>
  593. <PRE>
  594.     $Registry->{"LMachine/Software/Microsoft/" .
  595.                 "Windows/CurrentVersion/Explorer/Tips//186"}=
  596.       "Be very careful when making changes to the Registry!";</PRE>
  597. <DT><STRONG><A NAME="item_Deleting_differently">Deleting differently</A></STRONG><BR>
  598. <DD>
  599. <PRE>
  600.     $tip186= delete $Registry->{"LMachine/Software/Microsoft/Windows/" .
  601.                                 "CurrentVersion/Explorer/Tips//186"};</PRE>
  602. <P>Note that this only deletes the tail of what we looked up, the
  603. <CODE>"186"</CODE> value, not any of the keys listed.</P>
  604. <DT><STRONG><A NAME="item_Deleting_a_key">Deleting a key</A></STRONG><BR>
  605. <DD>
  606. WARNING:  The following code will delete all information about the
  607. current user's tip preferences.  Actually executing this command
  608. would probably cause the user to see the Welcome screen the next
  609. time they log in and may cause more serious problems.  This
  610. statement is shown as an example only and should not be used when
  611. experimenting.
  612. <PRE>
  613.     $tips= delete $Registry->{"CUser/Software/Microsoft/Windows/" .
  614.                               "CurrentVersion/Explorer/Tips/"};</PRE>
  615. <P>This deletes the <CODE>"Tips"</CODE> key and the values it contains.  The
  616. <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> function will return a reference to a hash [not a tied
  617. hash] containing the value names and value data that were deleted.</P>
  618. <P>The information to be returned is copied from the Registry into a
  619. regular Perl hash before the key is deleted.  If the key has many
  620. subkeys, this copying could take a significant amount of memory
  621. and/or processor time.  So you can disable this process by calling
  622. the <A HREF="#item_FastDelete"><CODE>FastDelete</CODE></A> member function:</P>
  623. <PRE>
  624.     $prevSetting= $regKey->FastDelete(1);</PRE>
  625. <P>which will cause all subsequent delete operations via <CODE>$regKey</CODE>
  626. to simply return a true value if they succeed.  This optimization
  627. is automatically done if you use <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> in a void context.</P>
  628. <P></P>
  629. <DT><STRONG><A NAME="item_Technical_notes_on_deleting">Technical notes on deleting</A></STRONG><BR>
  630. <DD>
  631. If you use <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> to delete a Registry key or value and use
  632. the return value, then <EM>Win32::TieRegistry</EM> usually looks up the
  633. current contents of that key or value so they can be returned if
  634. the deletion is successful.  If the deletion succeeds but the
  635. attempt to lookup the old contents failed, then the return value
  636. of <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> will be <CODE>$^E</CODE> from the failed part of the operation.
  637. <P></P>
  638. <DT><STRONG><A NAME="item_Undeleting_a_key">Undeleting a key</A></STRONG><BR>
  639. <DD>
  640. <PRE>
  641.     $Registry->{"LMachine/Software/Microsoft/Windows/" .
  642.                 "CurrentVersion/Explorer/Tips/"}= $tips;</PRE>
  643. <P>This adds back what we just deleted.  Note that this version of
  644. <EM>Win32::TieRegistry</EM> will use defaults for the key attributes
  645. [such as class name and security] and will not restore the
  646. previous attributes.</P>
  647. <DT><STRONG><A NAME="item_Not_deleting_a_key">Not deleting a key</A></STRONG><BR>
  648. <DD>
  649. WARNING:  Actually executing the following code could cause
  650. serious problems.  This statement is shown as an example only and
  651. should not be used when experimenting.
  652. <PRE>
  653.     $res= delete $Registry->{"CUser/Software/Microsoft/Windows/"}
  654.     defined($res)  ||  die "Can't delete URL key: $^E\n";</PRE>
  655. <P>Since the ``Windows'' key should contain subkeys, that <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A>
  656. statement should make no changes to the Registry, return <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>,
  657. and set <CODE>$^E</CODE> to ``Access is denied''.</P>
  658. <P></P>
  659. <DT><STRONG><A NAME="item_Not_deleting_again">Not deleting again</A></STRONG><BR>
  660. <DD>
  661. <PRE>
  662.     $tips= $Registry->{"CUser/Software/Microsoft/Windows/" .
  663.                        "CurrentVersion/Explorer/Tips/"};
  664.     delete $tips;</PRE>
  665. <P>The Perl <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> function requires that its argument be an
  666. expression that ends in a hash element lookup [or hash slice],
  667. which is not the case here.  The <A HREF="../../../lib/Pod/perlfunc.html#item_delete"><CODE>delete</CODE></A> function doesn't
  668. know which hash $tips came from and so can't delete it.</P>
  669. </DL>
  670. <P>
  671. <H2><A NAME="objects documentation">Objects Documentation</A></H2>
  672. <P>The following member functions are defined for use on
  673. <EM>Win32::TieRegistry</EM> objects:</P>
  674. <DL>
  675. <DT><STRONG><A NAME="item_new">new</A></STRONG><BR>
  676. <DD>
  677. The <A HREF="#item_new"><CODE>new</CODE></A> method creates a new <EM>Win32::TieRegistry</EM> object.
  678. <A HREF="#item_new"><CODE>new</CODE></A> is mostly a synonym for <A HREF="#item_Open"><CODE>Open()</CODE></A> so see <A HREF="#item_Open"><CODE>Open()</CODE></A> below for
  679. information on what arguments to pass in.  Examples:
  680. <PRE>
  681.     $machKey= new Win32::TieRegistry "LMachine"
  682.       or  die "Can't access HKEY_LOCAL_MACHINE key: $^E\n";
  683.     $userKey= Win32::TieRegistry->new("CUser")
  684.       or  die "Can't access HKEY_CURRENT_USER key: $^E\n";</PRE>
  685. <P>Note that calling <A HREF="#item_new"><CODE>new</CODE></A> via a reference to a tied hash returns
  686. a simple object, not a reference to a tied hash.</P>
  687. <P></P>
  688. <DT><STRONG><A NAME="item_Open">Open</A></STRONG><BR>
  689. <DD>
  690. <DT><STRONG>$subKey= $key->Open( $sSubKey, $rhOptions )</STRONG><BR>
  691. <DD>
  692. The <A HREF="#item_Open"><CODE>Open</CODE></A> method opens a Registry key and returns a new
  693. <EM>Win32::TieRegistry</EM> object associated with that Registry key.
  694. If <A HREF="#item_Open"><CODE>Open</CODE></A> is called via a reference to a tied hash, then <A HREF="#item_Open"><CODE>Open</CODE></A>
  695. returns another reference to a tied hash.  Otherwise <A HREF="#item_Open"><CODE>Open</CODE></A>
  696. returns a simple object and you should then use <A HREF="#item_TiedRef"><CODE>TiedRef</CODE></A> to get
  697. a reference to a tied hash.
  698. <P><CODE>$sSubKey</CODE> is a string specifying a subkey to be opened.
  699. Alternately <CODE>$sSubKey</CODE> can be a reference to an array value
  700. containing the list of increasingly deep subkeys specifying the
  701. path to the subkey to be opened.</P>
  702. <P><CODE>$rhOptions</CODE> is an optional reference to a hash containing extra
  703. options.  The <A HREF="#item_Open"><CODE>Open</CODE></A> method supports two options, <CODE>"Delimiter"</CODE>
  704. and <CODE>"Access"</CODE>, and <CODE>$rhOptions</CODE> should have only have zero or
  705. more of these strings as keys.  See the ``Examples'' section below
  706. for more information.</P>
  707. <P>The <CODE>"Delimiter"</CODE> option specifies what string [usually a single
  708. character] will be used as the delimiter to be appended to subkey
  709. names and prepended to value names.  If this option is not specified,
  710. the new key [<CODE>$subKey</CODE>] inherits the delimiter of the old key
  711. [<CODE>$key</CODE>].</P>
  712. <P>The <CODE>"Access"</CODE> option specifies what level of access to the
  713. Registry key you wish to have once it has been opened.  If this
  714. option is not specified, the new key [<CODE>$subKey</CODE>] is opened with
  715. the same access level used when the old key [<CODE>$key</CODE>] was opened.
  716. The virtual root of the Registry pretends it was opened with
  717. access <CODE>KEY_READ()|KEY_WRITE()</CODE> so this is the default access when
  718. opening keys directory via <CODE>$Registry</CODE>.  If you don't plan on
  719. modifying a key, you should open it with <CODE>KEY_READ</CODE> access as
  720. you may not have <CODE>KEY_WRITE</CODE> access to it or some of its subkeys.</P>
  721. <P>If the <CODE>"Access"</CODE> option value is a string that starts with
  722. <CODE>"KEY_"</CODE>, then it should match &one; of the predefined access
  723. levels [probably <CODE>"KEY_READ"</CODE>, <CODE>"KEY_WRITE"</CODE>, or
  724. <CODE>"KEY_ALL_ACCESS"</CODE>] exported by the <EM>Win32API::Registry</EM> module.
  725. Otherwise, a numeric value is expected.  For maximum flexibility,
  726. include <A HREF="../../../lib/Pod/perlfunc.html#item_qw"><CODE>use Win32::TieRegistry qw(:KEY_);</CODE></A>, for example, near
  727. the top of your script so you can specify more complicated access
  728. levels such as <CODE>KEY_READ()|KEY_WRITE()</CODE>.</P>
  729. <P>If <CODE>$sSubKey</CODE> does not begin with the delimiter [or <CODE>$sSubKey</CODE>
  730. is an array reference], then the path to the subkey to be opened
  731. will be relative to the path of the original key [<CODE>$key</CODE>].  If
  732. <CODE>$sSubKey</CODE> begins with a single delimiter, then the path to the
  733. subkey to be opened will be relative to the virtual root of the
  734. Registry on whichever machine the original key resides.  If
  735. <CODE>$sSubKey</CODE> begins with two consectutive delimiters, then those
  736. must be followed by a machine name which causes the <A HREF="#item_Connect"><CODE>Connect()</CODE></A>
  737. method function to be called.</P>
  738. <P>Examples:</P>
  739. <PRE>
  740.     $machKey= $Registry->Open( "LMachine", {Access=>KEY_READ(),Delimiter=>"/"} )
  741.       or  die "Can't open HKEY_LOCAL_MACHINE key: $^E\n";
  742.     $swKey= $machKey->Open( "Software" );
  743.     $logonKey= $swKey->Open( "Microsoft/Windows NT/CurrentVersion/Winlogon/" );
  744.     $NTversKey= $swKey->Open( ["Microsoft","Windows NT","CurrentVersion"] );
  745.     $versKey= $swKey->Open( qw(Microsoft Windows CurrentVersion) );</PRE>
  746. <PRE>
  747.     $remoteKey= $Registry->Open( "//HostA/LMachine/System/", {Delimiter=>"/"} )
  748.       or  die "Can't connect to HostA or can't open subkey: $^E\n";</PRE>
  749. <P></P>
  750. <DT><STRONG><A NAME="item_Clone">Clone</A></STRONG><BR>
  751. <DD>
  752. <DT><STRONG>$copy= $key->Clone</STRONG><BR>
  753. <DD>
  754. Creates a new object that is associated with the same Registry key
  755. as the invoking object.
  756. <P></P>
  757. <DT><STRONG><A NAME="item_Connect">Connect</A></STRONG><BR>
  758. <DD>
  759. <DT><STRONG>$remoteKey= $Registry->Connect( $sMachineName, $sKeyPath, $rhOptions )</STRONG><BR>
  760. <DD>
  761. The <A HREF="#item_Connect"><CODE>Connect</CODE></A> method connects to the Registry of a remote machine,
  762. and opens a key within it, then returns a new <EM>Win32::TieRegistry</EM>
  763. object associated with that remote Registry key.  If <A HREF="#item_Connect"><CODE>Connect</CODE></A>
  764. was called using a reference to a tied hash, then the return value
  765. will also be a reference to a tied hash [or <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>].  Otherwise,
  766. if you wish to use the returned object as a tied hash [not just as
  767. an object], then use the <A HREF="#item_TiedRef"><CODE>TiedRef</CODE></A> method function after <A HREF="#item_Connect"><CODE>Connect</CODE></A>.
  768. <P><CODE>$sMachineName</CODE> is the name of the remote machine.  You don't have
  769. to preceed the machine name with two delimiter characters.</P>
  770. <P><CODE>$sKeyPath</CODE> is a string specifying the remote key to be opened.
  771. Alternately <CODE>$sKeyPath</CODE> can be a reference to an array value
  772. containing the list of increasingly deep keys specifying the path
  773. to the key to be opened.</P>
  774. <P><CODE>$rhOptions</CODE> is an optional reference to a hash containing extra
  775. options.  The <A HREF="#item_Connect"><CODE>Connect</CODE></A> method supports two options, <CODE>"Delimiter"</CODE>
  776. and <CODE>"Access"</CODE>.  See the <A HREF="#item_Open"><CODE>Open</CODE></A> method documentation for more
  777. information on these options.</P>
  778. <P><CODE>$sKeyPath</CODE> is already relative to the virtual root of the Registry
  779. of the remote machine.  A single leading delimiter on <CODE>sKeyPath</CODE>
  780. will be ignored and is not required.</P>
  781. <P><CODE>$sKeyPath</CODE> can be empty in which case <A HREF="#item_Connect"><CODE>Connect</CODE></A> will return an
  782. object representing the virtual root key of the remote Registry.
  783. Each subsequent use of <A HREF="#item_Open"><CODE>Open</CODE></A> on this virtual root key will call
  784. the system <CODE>RegConnectRegistry</CODE> function.</P>
  785. <P>The <A HREF="#item_Connect"><CODE>Connect</CODE></A> method can be called via any <EM>Win32::TieRegistry</EM>
  786. object, not just <CODE>$Registry</CODE>.  Attributes such as the desired
  787. level of access and the delimiter will be inherited from the
  788. object used but the <CODE>$sKeyPath</CODE> will always be relative to the
  789. virtual root of the remote machine's registry.</P>
  790. <P>Examples:</P>
  791. <PRE>
  792.     $remMachKey= $Registry->Connect( "HostA", "LMachine", {Delimiter->"/"} )
  793.       or  die "Can't connect to HostA's HKEY_LOCAL_MACHINE key: $^E\n";</PRE>
  794. <PRE>
  795.     $remVersKey= $remMachKey->Connect( "www.microsoft.com",
  796.                    "LMachine/Software/Microsoft/Inetsrv/CurrentVersion/",
  797.                    { Access=>KEY_READ, Delimiter=>"/" } )
  798.       or  die "Can't check what version of IIS Microsoft is running: $^E\n";</PRE>
  799. <PRE>
  800.     $remVersKey= $remMachKey->Connect( "www",
  801.                    qw(LMachine Software Microsoft Inetsrv CurrentVersion) )
  802.       or  die "Can't check what version of IIS we are running: $^E\n";</PRE>
  803. <P></P>
  804. <DT><STRONG><A NAME="item_ObjectRef">ObjectRef</A></STRONG><BR>
  805. <DD>
  806. <DT><STRONG>$object_ref= $obj_or_hash_ref->ObjectRef</STRONG><BR>
  807. <DD>
  808. For a simple object, just returns itself [<CODE>$obj == $obj-</CODE>ObjectRef>].
  809. <P>For a reference to a tied hash [if it is also an object], <A HREF="#item_ObjectRef"><CODE>ObjectRef</CODE></A>
  810. returns the simple object that the hash is tied to.</P>
  811. <P>This is primarilly useful when debugging since typing <CODE>x $Registry</CODE>
  812. will try to display your <EM>entire</EM> registry contents to your screen.
  813. But the debugger command <CODE>x $Registry-</CODE>ObjectRef> will just dump
  814. the implementation details of the underlying object to your screen.</P>
  815. <P></P>
  816. <DT><STRONG><A NAME="item_Flush">Flush( $bFlush )</A></STRONG><BR>
  817. <DD>
  818. Flushes all cached information about the Registry key so that future
  819. uses will get fresh data from the Registry.
  820. <P>If the optional <CODE>$bFlush</CODE> is specified and a true value, then
  821. <CODE>RegFlushKey()</CODE> will be called, which is almost never necessary.</P>
  822. <P></P>
  823. <DT><STRONG><A NAME="item_GetValue">GetValue</A></STRONG><BR>
  824. <DD>
  825. <DT><STRONG>$ValueData= $key->GetValue( $sValueName )</STRONG><BR>
  826. <DD>
  827. <DT><STRONG>($ValueData,$ValueType)= $key->GetValue( $sValueName )</STRONG><BR>
  828. <DD>
  829. Gets a Registry value's data and data type.
  830. <P><CODE>$ValueData</CODE> is usually just a Perl string that contains the
  831. value data [packed into it].  For certain types of data, however,
  832. <CODE>$ValueData</CODE> may be processed as described below.</P>
  833. <P><CODE>$ValueType</CODE> is the <CODE>REG_*</CODE> constant describing the type of value
  834. data stored in <CODE>$ValueData</CODE>.  If the <A HREF="#item_DualTypes"><CODE>DualTypes()</CODE></A> option is on,
  835. then <CODE>$ValueType</CODE> will be a dual value.  That is, when used in a
  836. numeric context, <CODE>$ValueType</CODE> will give the numeric value of a
  837. <CODE>REG_*</CODE> constant.  However, when used in a non-numeric context,
  838. <CODE>$ValueType</CODE> will return the name of the <CODE>REG_*</CODE> constant, for
  839. example <CODE>"REG_SZ"</CODE> [note the quotes].  So both of the following
  840. can be true at the same time:</P>
  841. <PRE>
  842.     $ValueType == REG_SZ()
  843.     $ValueType eq "REG_SZ"</PRE>
  844. <DL>
  845. <DT><STRONG><A NAME="item_REG_SZ_and_REG_EXPAND_SZ">REG_SZ and REG_EXPAND_SZ</A></STRONG><BR>
  846. <DD>
  847. If the <A HREF="#item_FixSzNulls"><CODE>FixSzNulls()</CODE></A> option is on, then the trailing <CODE>'\0'</CODE> will be
  848. stripped [unless there isn't one] before values of type <A HREF="#item_REG_SZ"><CODE>REG_SZ</CODE></A>
  849. and <A HREF="#item_REG_EXPAND_SZ"><CODE>REG_EXPAND_SZ</CODE></A> are returned.  Note that <A HREF="#item_SetValue"><CODE>SetValue()</CODE></A> will add
  850. a trailing <CODE>'\0'</CODE> under similar circumstances.
  851. <P></P>
  852. <DT><STRONG>REG_MULTI_SZ</STRONG><BR>
  853. <DD>
  854. If the <A HREF="#item_SplitMultis"><CODE>SplitMultis()</CODE></A> option is on, then values of this type are
  855. returned as a reference to an array containing the strings.  For
  856. example, a value that, with <A HREF="#item_SplitMultis"><CODE>SplitMultis()</CODE></A> off, would be returned as:
  857. <PRE>
  858.     "Value1\000Value2\000\000"</PRE>
  859. <P>would be returned, with <A HREF="#item_SplitMultis"><CODE>SplitMultis()</CODE></A> on, as:</P>
  860. <PRE>
  861.     [ "Value1", "Value2" ]</PRE>
  862. <P></P>
  863. <DT><STRONG>REG_DWORD</STRONG><BR>
  864. <DD>
  865. If the <A HREF="#item_DualBinVals"><CODE>DualBinVals()</CODE></A> option is on, then the value is returned
  866. as a scalar containing both a string and a number [much like
  867. the <CODE>$!</CODE> variable -- see the <EM>SetDualVar</EM> module for more
  868. information] where the number part is the ``unpacked'' value.
  869. Use the returned value in a numeric context to access this part
  870. of the value.  For example:
  871. <PRE>
  872.     $num= 0 + $Registry->{"CUser/Console//ColorTable01"};</PRE>
  873. <P>If the <A HREF="#item_DWordsToHex"><CODE>DWordsToHex()</CODE></A> option is off, the string part of the
  874. returned value is a packed, 4-byte string [use <A HREF="../../../lib/Pod/perlfunc.html#item_unpack"><CODE>unpack("L",$value)</CODE></A>
  875. to get the numeric value.</P>
  876. <P>If <A HREF="#item_DWordsToHex"><CODE>DWordsToHex()</CODE></A> is on, the string part of the returned value is
  877. a 10-character hex strings [with leading ``0x''].  You can use
  878. <A HREF="../../../lib/Pod/perlfunc.html#item_hex"><CODE>hex($value)</CODE></A> to get the numeric value.</P>
  879. <P>Note that <A HREF="#item_SetValue"><CODE>SetValue()</CODE></A> will properly understand each of these
  880. returned value formats no matter how <A HREF="#item_DualBinVals"><CODE>DualBinVals()</CODE></A> is set.</P>
  881. <P></P></DL>
  882. <DT><STRONG><A NAME="item_ValueNames">ValueNames</A></STRONG><BR>
  883. <DD>
  884. <DT><STRONG>@names= $key->ValueNames</STRONG><BR>
  885. <DD>
  886. Returns the list of value names stored directly in a Registry key.
  887. Note that the names returned do <EM>not</EM> have a delimiter prepended
  888. to them like with <A HREF="#item_MemberNames"><CODE>MemberNames()</CODE></A> and tied hashes.
  889. <P>Once you request this information, it is cached in the object and
  890. future requests will always return the same list unless <A HREF="#item_Flush"><CODE>Flush()</CODE></A>
  891. has been called.</P>
  892. <P></P>
  893. <DT><STRONG><A NAME="item_SubKeyNames">SubKeyNames</A></STRONG><BR>
  894. <DD>
  895. <DT><STRONG>@key_names= $key->SubKeyNames</STRONG><BR>
  896. <DD>
  897. Returns the list of subkey names stored directly in a Registry key.
  898. Note that the names returned do <EM>not</EM> have a delimiter appended
  899. to them like with <A HREF="#item_MemberNames"><CODE>MemberNames()</CODE></A> and tied hashes.
  900. <P>Once you request this information, it is cached in the object and
  901. future requests will always return the same list unless <A HREF="#item_Flush"><CODE>Flush()</CODE></A>
  902. has been called.</P>
  903. <P></P>
  904. <DT><STRONG><A NAME="item_SubKeyClasses">SubKeyClasses</A></STRONG><BR>
  905. <DD>
  906. <DT><STRONG>@classes= $key->SubKeyClasses</STRONG><BR>
  907. <DD>
  908. Returns the list of classes for subkeys stored directly in a
  909. Registry key.  The classes are returned in the same order as
  910. the subkey names returned by <A HREF="#item_SubKeyNames"><CODE>SubKeyNames()</CODE></A>.
  911. <P></P>
  912. <DT><STRONG><A NAME="item_SubKeyTimes">SubKeyTimes</A></STRONG><BR>
  913. <DD>
  914. <DT><STRONG>@times= $key->SubKeyTimes</STRONG><BR>
  915. <DD>
  916. Returns the list of last-modified times for subkeys stored
  917. directly in a Registry key.  The times are returned in the same
  918. order as the subkey names returned by <A HREF="#item_SubKeyNames"><CODE>SubKeyNames()</CODE></A>.  Each
  919. time is a <CODE>FILETIME</CODE> structure packed into a Perl string.
  920. <P>Once you request this information, it is cached in the object and
  921. future requests will always return the same list unless <A HREF="#item_Flush"><CODE>Flush()</CODE></A>
  922. has been called.</P>
  923. <P></P>
  924. <DT><STRONG><A NAME="item_MemberNames">MemberNames</A></STRONG><BR>
  925. <DD>
  926. <DT><STRONG>@members= $key->MemberNames</STRONG><BR>
  927. <DD>
  928. Returns the list of subkey names and value names stored directly
  929. in a Registry key.  Subkey names have a delimiter appended to the
  930. end and value names have a delimiter prepended to the front.
  931. <P>Note that a value name could end in a delimiter [or could be <CODE>""</CODE>
  932. so that the member name returned is just a delimiter] so the
  933. presence or absence of the leading delimiter is what should be
  934. used to determine whether a particular name is for a subkey or a
  935. value, not the presence or absence of a trailing delimiter.</P>
  936. <P>Once you request this information, it is cached in the object and
  937. future requests will always return the same list unless <A HREF="#item_Flush"><CODE>Flush()</CODE></A>
  938. has been called.</P>
  939. <P></P>
  940. <DT><STRONG><A NAME="item_Information">Information</A></STRONG><BR>
  941. <DD>
  942. <DT><STRONG>%info= $key->Information</STRONG><BR>
  943. <DD>
  944. <DT><STRONG>@items= $key->Information( @itemNames );</STRONG><BR>
  945. <DD>
  946. Returns the following information about a Registry key:
  947. <DL>
  948. <DT><STRONG><A NAME="item_LastWrite">LastWrite</A></STRONG><BR>
  949. <DD>
  950. A <CODE>FILETIME</CODE> structure indicating when the key was last modified
  951. and packed into a Perl string.
  952. <P></P>
  953. <DT><STRONG><A NAME="item_CntSubKeys">CntSubKeys</A></STRONG><BR>
  954. <DD>
  955. The number of subkeys stored directly in this key.
  956. <P></P>
  957. <DT><STRONG><A NAME="item_CntValues">CntValues</A></STRONG><BR>
  958. <DD>
  959. The number of values stored directly in this key.
  960. <P></P>
  961. <DT><STRONG><A NAME="item_SecurityLen">SecurityLen</A></STRONG><BR>
  962. <DD>
  963. The length [in bytes] of the largest[?] <CODE>SECURITY_DESCRIPTOR</CODE>
  964. associated with the Registry key.
  965. <P></P>
  966. <DT><STRONG><A NAME="item_MaxValDataLen">MaxValDataLen</A></STRONG><BR>
  967. <DD>
  968. The length [in bytes] of the longest value data associated with
  969. a value stored in this key.
  970. <P></P>
  971. <DT><STRONG><A NAME="item_MaxSubKeyLen">MaxSubKeyLen</A></STRONG><BR>
  972. <DD>
  973. The length [in chars] of the longest subkey name associated with
  974. a subkey stored in this key.
  975. <P></P>
  976. <DT><STRONG><A NAME="item_MaxSubClassLen">MaxSubClassLen</A></STRONG><BR>
  977. <DD>
  978. The length [in chars] of the longest class name associated with
  979. a subkey stored directly in this key.
  980. <P></P>
  981. <DT><STRONG><A NAME="item_MaxValNameLen">MaxValNameLen</A></STRONG><BR>
  982. <DD>
  983. The length [in chars] of the longest value name associated with
  984. a value stored in this key.
  985. <P></P></DL>
  986. <P>With no arguments, returns a hash [not a reference to a hash] where
  987. the keys are the names for the items given above and the values
  988. are the information describe above.  For example:</P>
  989. <PRE>
  990.     %info= ( "CntValues" => 25,         # Key contains 25 values.
  991.              "MaxValNameLen" => 20,     # One of which has a 20-char name.
  992.              "MaxValDataLen" => 42,     # One of which has a 42-byte value.
  993.              "CntSubKeys" => 1,         # Key has 1 immediate subkey.
  994.              "MaxSubKeyLen" => 13,      # One of which has a 12-char name.
  995.              "MaxSubClassLen" => 0,     # All of which have class names of "".
  996.              "SecurityLen" => 232,      # One SECURITY_DESCRIPTOR is 232 bytes.
  997.              "LastWrite" => "\x90mZ\cX{\xA3\xBD\cA\c@\cA"
  998.                            # Key was last modifed 1998/06/01 16:29:32 GMT
  999.            );</PRE>
  1000. <P>With arguments, each one must be the name of a item given above.
  1001. The return value is the information associated with the listed
  1002. names.  In other words:</P>
  1003. <PRE>
  1004.     return $key->Information( @names );</PRE>
  1005. <P>returns the same list as:</P>
  1006. <PRE>
  1007.     %info= $key->Information;
  1008.     return @info{@names};</PRE>
  1009. <DT><STRONG><A NAME="item_Delimiter">Delimiter</A></STRONG><BR>
  1010. <DD>
  1011. <DT><STRONG>$oldDelim= $key->Delimiter</STRONG><BR>
  1012. <DD>
  1013. <DT><STRONG>$oldDelim= $key->Delimiter( $newDelim )</STRONG><BR>
  1014. <DD>
  1015. Gets and possibly changes the delimiter used for this object.  The
  1016. delimiter is appended to subkey names and prepended to value names
  1017. in many return values.  It is also used when parsing keys passed
  1018. to tied hashes.
  1019. <P>The delimiter defaults to backslash (<CODE>'\\'</CODE>) but is inherited from
  1020. the object used to create a new object and can be specified by an
  1021. option when a new object is created.</P>
  1022. <P></P>
  1023. <DT><STRONG><A NAME="item_Handle">Handle</A></STRONG><BR>
  1024. <DD>
  1025. <DT><STRONG>$handle= $key->Handle</STRONG><BR>
  1026. <DD>
  1027. Returns the raw <CODE>HKEY</CODE> handle for the associated Registry key as
  1028. an integer value.  This value can then be used to Reg*() calls
  1029. from <EM>Win32API::Registry</EM>.  However, it is usually easier to just
  1030. call the <EM>Win32API::Registry</EM> calls directly via:
  1031. <PRE>
  1032.     $key->RegNotifyChangeKeyValue( ... );</PRE>
  1033. <P>For the virtual root of the local or a remote Registry,
  1034. <A HREF="#item_Handle"><CODE>Handle()</CODE></A> return <CODE>"NONE"</CODE>.</P>
  1035. <P></P>
  1036. <DT><STRONG><A NAME="item_Path">Path</A></STRONG><BR>
  1037. <DD>
  1038. <DT><STRONG>$path= $key->Path</STRONG><BR>
  1039. <DD>
  1040. Returns a string describing the path of key names to this
  1041. Registry key.  The string is built so that if it were passed
  1042. to <CODE>$Registry-</CODE>Open()>, it would reopen the same Registry key
  1043. [except in the rare case where one of the key names contains
  1044. <CODE>$key-</CODE>Delimiter>].
  1045. <P></P>
  1046. <DT><STRONG><A NAME="item_Machine">Machine</A></STRONG><BR>
  1047. <DD>
  1048. <DT><STRONG>$computerName= $key->Machine</STRONG><BR>
  1049. <DD>
  1050. Returns the name of the computer [or ``machine''] on which this Registry
  1051. key resides.  Returns <CODE>""</CODE> for local Registry keys.
  1052. <P></P>
  1053. <DT><STRONG><A NAME="item_Access">Access</A></STRONG><BR>
  1054. <DD>
  1055. Returns the numeric value of the bit mask used to specify the
  1056. types of access requested when this Registry key was opened.  Can
  1057. be compared to <CODE>KEY_*</CODE> values.
  1058. <P></P>
  1059. <DT><STRONG><A NAME="item_OS_Delimiter">OS_Delimiter</A></STRONG><BR>
  1060. <DD>
  1061. Returns the delimiter used by the operating system's <CODE>RegOpenKeyEx()</CODE>
  1062. call.  For Win32, this is always backslash (<CODE>"\\"</CODE>).
  1063. <P></P>
  1064. <DT><STRONG><A NAME="item_Roots">Roots</A></STRONG><BR>
  1065. <DD>
  1066. Returns the mapping from root key names like <CODE>"LMachine"</CODE> to their
  1067. associated <CODE>HKEY_*</CODE> constants.  Primarily for internal use and
  1068. subject to change.
  1069. <P></P>
  1070. <DT><STRONG><A NAME="item_Tie">Tie</A></STRONG><BR>
  1071. <DD>
  1072. <DT><STRONG>$key->Tie( \%hash );</STRONG><BR>
  1073. <DD>
  1074. Ties the referenced hash to that Registry key.  Pretty much the
  1075. same as
  1076. <PRE>
  1077.     tie %hash, ref($key), $key;</PRE>
  1078. <P>Since <A HREF="../../../lib/Pod/perlfunc.html#item_ref"><CODE>ref($key)</CODE></A> is the class [package] to tie the hash to and
  1079. <CODE>TIEHASH()</CODE> just returns its argument, <CODE>$key</CODE>, [without calling
  1080. <A HREF="#item_new"><CODE>new()</CODE></A>] when it sees that it is already a blessed object.</P>
  1081. <P></P>
  1082. <DT><STRONG><A NAME="item_TiedRef">TiedRef</A></STRONG><BR>
  1083. <DD>
  1084. <DT><STRONG>$TiedHashRef= $hash_or_obj_ref->TiedRef</STRONG><BR>
  1085. <DD>
  1086. For a simple object, returns a reference to a hash tied to the
  1087. object.  Used to promote a simple object into a combined object
  1088. and hash ref.
  1089. <P>If already a reference to a tied hash [that is also an object],
  1090. it just returns itself [<CODE>$ref == $ref-</CODE>TiedRef>].</P>
  1091. <P>Mostly used internally.</P>
  1092. <P></P>
  1093. <DT><STRONG><A NAME="item_ArrayValues">ArrayValues</A></STRONG><BR>
  1094. <DD>
  1095. <DT><STRONG>$oldBool= $key->ArrayValues</STRONG><BR>
  1096. <DD>
  1097. <DT><STRONG>$oldBool= $key->ArrayValues( $newBool )</STRONG><BR>
  1098. <DD>
  1099. Gets the current setting of the <A HREF="#item_ArrayValues"><CODE>ArrayValues</CODE></A> option and possibly
  1100. turns it on or off.
  1101. <P>When off, Registry values fetched via a tied hash are returned as
  1102. just a value scalar [the same as <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A> in a scalar context].
  1103. When on, they are returned as a reference to an array containing
  1104. the value data as the <CODE>[0]</CODE> element and the data type as the <CODE>[1]</CODE>
  1105. element.</P>
  1106. <P></P>
  1107. <DT><STRONG><A NAME="item_TieValues">TieValues</A></STRONG><BR>
  1108. <DD>
  1109. <DT><STRONG><A NAME="item_%24oldBool%3D_TieValues">$oldBool= TieValues</A></STRONG><BR>
  1110. <DD>
  1111. <DT><STRONG>$oldBool= TieValues( $newBool )</STRONG><BR>
  1112. <DD>
  1113. Gets the current setting of the <A HREF="#item_TieValues"><CODE>TieValues</CODE></A> option and possibly
  1114. turns it on or off.
  1115. <P>Turning this option on is not yet supported in this release of
  1116. <EM>Win32::TieRegistry</EM>.  In a future release, turning this option
  1117. on will cause Registry values returned from a tied hash to be
  1118. a tied array that you can use to modify the value in the Registry.</P>
  1119. <P></P>
  1120. <DT><STRONG><A NAME="item_FastDelete">FastDelete</A></STRONG><BR>
  1121. <DD>
  1122. <DT><STRONG>$oldBool= $key->FastDelete</STRONG><BR>
  1123. <DD>
  1124. <DT><STRONG>$oldBool= $key->FastDelete( $newBool )</STRONG><BR>
  1125. <DD>
  1126. Gets the current setting of the <A HREF="#item_FastDelete"><CODE>FastDelete</CODE></A> option and possibly
  1127. turns it on or off.
  1128. <P>When on, successfully deleting a Registry key [via a tied hash]
  1129. simply returns <CODE>1</CODE>.</P>
  1130. <P>When off, successfully deleting a Registry key [via a tied hash
  1131. and not in a void context] returns a reference to a hash that
  1132. contains the values present in the key when it was deleted.  This
  1133. hash is just like that returned when referencing the key before it
  1134. was deleted except that it is an ordinary hash, not one tied to
  1135. the <EM>Win32::TieRegistry</EM> package.</P>
  1136. <P>Note that deleting either a Registry key or value via a tied hash
  1137. <EM>in a void context</EM> prevents any overhead in trying to build an
  1138. appropriate return value.</P>
  1139. <P>Note that deleting a Registry <EM>value</EM> via a tied hash [not in
  1140. a void context] returns the value data even if <FastDelete> is on.</P>
  1141. <P></P>
  1142. <DT><STRONG><A NAME="item_SplitMultis">SplitMultis</A></STRONG><BR>
  1143. <DD>
  1144. <DT><STRONG>$oldBool= $key->SplitMultis</STRONG><BR>
  1145. <DD>
  1146. <DT><STRONG>$oldBool= $key->SplitMultis( $newBool )</STRONG><BR>
  1147. <DD>
  1148. Gets the current setting of the <A HREF="#item_SplitMultis"><CODE>SplitMultis</CODE></A> option and possibly
  1149. turns it on or off.
  1150. <P>If on, Registry values of type <A HREF="#item_REG_MULTI_SZ"><CODE>REG_MULTI_SZ</CODE></A> are returned as
  1151. a reference to an array of strings.  See <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A> for more
  1152. information.</P>
  1153. <P></P>
  1154. <DT><STRONG><A NAME="item_DWordsToHex">DWordsToHex</A></STRONG><BR>
  1155. <DD>
  1156. <DT><STRONG>$oldBool= $key->DWordsToHex</STRONG><BR>
  1157. <DD>
  1158. <DT><STRONG>$oldBool= $key->DWordsToHex( $newBool )</STRONG><BR>
  1159. <DD>
  1160. Gets the current setting of the <A HREF="#item_DWordsToHex"><CODE>DWordsToHex</CODE></A> option and possibly
  1161. turns it on or off.
  1162. <P>If on, Registry values of type <A HREF="#item_REG_DWORD"><CODE>REG_DWORD</CODE></A> are returned as a hex
  1163. string with leading <CODE>"0x"</CODE> and longer than 4 characters.  See
  1164. <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A> for more information.</P>
  1165. <P></P>
  1166. <DT><STRONG><A NAME="item_FixSzNulls">FixSzNulls</A></STRONG><BR>
  1167. <DD>
  1168. <DT><STRONG>$oldBool= $key->FixSzNulls</STRONG><BR>
  1169. <DD>
  1170. <DT><STRONG>$oldBool= $key->FixSzNulls( $newBool )</STRONG><BR>
  1171. <DD>
  1172. Gets the current setting of the <A HREF="#item_FixSzNulls"><CODE>FixSzNulls</CODE></A> option and possibly
  1173. turns it on or off.
  1174. <P>If on, Registry values of type <A HREF="#item_REG_SZ"><CODE>REG_SZ</CODE></A> and <A HREF="#item_REG_EXPAND_SZ"><CODE>REG_EXPAND_SZ</CODE></A> have
  1175. trailing <CODE>'\0'</CODE>s added before they are set and stripped before
  1176. they are returned.  See <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A> and <A HREF="#item_SetValue"><CODE>SetValue()</CODE></A> for more
  1177. information.</P>
  1178. <P></P>
  1179. <DT><STRONG><A NAME="item_DualTypes">DualTypes</A></STRONG><BR>
  1180. <DD>
  1181. <DT><STRONG>$oldBool= $key->DualTypes</STRONG><BR>
  1182. <DD>
  1183. <DT><STRONG>$oldBool= $key->DualTypes( $newBool )</STRONG><BR>
  1184. <DD>
  1185. Gets the current setting of the <A HREF="#item_DualTypes"><CODE>DualTypes</CODE></A> option and possibly
  1186. turns it on or off.
  1187. <P>If on, data types are returned as a combined numeric/string value
  1188. holding both the numeric value of a <CODE>REG_*</CODE> constant and the
  1189. string value of the constant's name.  See <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A> for
  1190. more information.</P>
  1191. <P></P>
  1192. <DT><STRONG><A NAME="item_DualBinVals">DualBinVals</A></STRONG><BR>
  1193. <DD>
  1194. <DT><STRONG>$oldBool= $key->DualBinVals</STRONG><BR>
  1195. <DD>
  1196. <DT><STRONG>$oldBool= $key->DualBinVals( $newBool )</STRONG><BR>
  1197. <DD>
  1198. Gets the current setting of the <A HREF="#item_DualBinVals"><CODE>DualBinVals</CODE></A> option and possibly
  1199. turns it on or off.
  1200. <P>If on, Registry value data of type <A HREF="#item_REG_BINARY"><CODE>REG_BINARY</CODE></A> and no more than
  1201. 4 bytes long and Registry values of type <A HREF="#item_REG_DWORD"><CODE>REG_DWORD</CODE></A> are returned
  1202. as a combined numeric/string value where the numeric value is the
  1203. ``unpacked'' binary value as returned by:</P>
  1204. <PRE>
  1205.         hex reverse unpack( "h*", $valData )</PRE>
  1206. <P>on a ``little-endian'' computer.  [Would be <A HREF="../../../lib/Pod/perlfunc.html#item_unpack"><CODE>hex unpack("H*",$valData)</CODE></A>
  1207. on a ``big-endian'' computer if this module is ever ported to one.]</P>
  1208. <P>See <A HREF="#item_GetValue"><CODE>GetValue()</CODE></A> for more information.</P>
  1209. <P></P>
  1210. <DT><STRONG><A NAME="item_GetOptions">GetOptions</A></STRONG><BR>
  1211. <DD>
  1212. <DT><STRONG>@oldOptValues= $key->GetOptions( @optionNames )</STRONG><BR>
  1213. <DD>
  1214. <DT><STRONG>$refHashOfOldOpts= $key-><CODE>GetOptions()</CODE></STRONG><BR>
  1215. <DD>
  1216. <DT><STRONG>$key->GetOptions( \%hashForOldOpts )</STRONG><BR>
  1217. <DD>
  1218. Returns the current setting of any of the following options:
  1219. <PRE>
  1220.     Delimiter     FixSzNulls    DWordsToHex
  1221.     ArrayValues   SplitMultis   DualBinVals
  1222.     TieValues     FastDelete    DualTypes</PRE>
  1223. <P>Pass in one or more of the above names (as strings) to get back
  1224. an array of the corresponding current settings in the same order:</P>
  1225. <PRE>
  1226.   my( $fastDel, $delim )= $key->GetOptions("FastDelete","Delimiter");</PRE>
  1227. <P>Pass in no arguments to get back a reference to a hash where
  1228. the above option names are the keys and the values are
  1229. the corresponding current settings for each option:</P>
  1230. <PRE>
  1231.   my $href= $key->GetOptions();
  1232.   my $delim= $href->{Delimiter};</PRE>
  1233. <P>Pass in a single reference to a hash to have the above key/value
  1234. pairs <EM>added</EM> to the referenced hash.  For this case, the
  1235. return value is the original object so further methods can be
  1236. chained after the call to GetOptions:</P>
  1237. <PRE>
  1238.   my %oldOpts;
  1239.   $key->GetOptions( \%oldOpts )->SetOptions( Delimiter => "/" );</PRE>
  1240. <P></P>
  1241. <DT><STRONG><A NAME="item_SetOptions">SetOptions</A></STRONG><BR>
  1242. <DD>
  1243. <DT><STRONG>@oldOpts= $key->SetOptions( optNames=>$optValue,... )</STRONG><BR>
  1244. <DD>
  1245. Changes the current setting of any of the following options,
  1246. returning the previous setting(s):
  1247. <PRE>
  1248.     Delimiter     FixSzNulls    DWordsToHex   AllowLoad
  1249.     ArrayValues   SplitMultis   DualBinVals   AllowSave
  1250.     TieValues     FastDelete    DualTypes</PRE>
  1251. <P>For <A HREF="#item_AllowLoad"><CODE>AllowLoad</CODE></A> and <A HREF="#item_AllowSave"><CODE>AllowSave</CODE></A>, instead of the previous
  1252. setting, <A HREF="#item_SetOptions"><CODE>SetOptions</CODE></A> returns whether or not the change was
  1253. successful.</P>
  1254. <P>In a scalar context, returns only the last item.  The last
  1255. option can also be specified as <CODE>"ref"</CODE> or <CODE>"r"</CODE> [which doesn't
  1256. need to be followed by a value] to allow chaining:</P>
  1257. <PRE>
  1258.     $key->SetOptions(AllowSave=>1,"ref")->RegSaveKey(...)</PRE>
  1259. <P></P>
  1260. <DT><STRONG><A NAME="item_SetValue">SetValue</A></STRONG><BR>
  1261. <DD>
  1262. <DT><STRONG>$okay= $key->SetValue( $ValueName, $ValueData );</STRONG><BR>
  1263. <DD>
  1264. <DT><STRONG>$okay= $key->SetValue( $ValueName, $ValueData, $ValueType );</STRONG><BR>
  1265. <DD>
  1266. Adds or replaces a Registry value.  Returns a true value if
  1267. successfully, false otherwise.
  1268. <P><CODE>$ValueName</CODE> is the name of the value to add or replace and
  1269. should <EM>not</EM> have a delimiter prepended to it.  Case is ignored.</P>
  1270. <P><CODE>$ValueType</CODE> is assumed to be <A HREF="#item_REG_SZ"><CODE>REG_SZ</CODE></A> if it is omitted.  Otherwise,
  1271. it should be one the <CODE>REG_*</CODE> constants.</P>
  1272. <P><CODE>$ValueData</CODE> is the data to be stored in the value, probably packed
  1273. into a Perl string.  Other supported formats for value data are
  1274. listed below for each posible <CODE>$ValueType</CODE>.</P>
  1275. <DL>
  1276. <DT><STRONG><A NAME="item_REG_SZ_or_REG_EXPAND_SZ">REG_SZ or REG_EXPAND_SZ</A></STRONG><BR>
  1277. <DD>
  1278. The only special processing for these values is the addition of
  1279. the required trailing <CODE>'\0'</CODE> if it is missing.  This can be
  1280. turned off by disabling the <A HREF="#item_FixSzNulls"><CODE>FixSzNulls</CODE></A> option.
  1281. <P></P>
  1282. <DT><STRONG>REG_MULTI_SZ</STRONG><BR>
  1283. <DD>
  1284. These values can also be specified as a reference to a list of
  1285. strings.  For example, the following two lines are equivalent:
  1286. <PRE>
  1287.     $key->SetValue( "Val1\000Value2\000LastVal\000\000", "REG_MULTI_SZ" );
  1288.     $key->SetValue( ["Val1","Value2","LastVal"], "REG_MULTI_SZ" );</PRE>
  1289. <P>Note that if the required two trailing nulls (<CODE>"\000\000"</CODE>) are
  1290. missing, then this release of <A HREF="#item_SetValue"><CODE>SetValue()</CODE></A> will <EM>not</EM> add them.</P>
  1291. <P></P>
  1292. <DT><STRONG>REG_DWORD</STRONG><BR>
  1293. <DD>
  1294. These values can also be specified as a hex value with the leading
  1295. <CODE>"0x"</CODE> included and totaling <EM>more than</EM> 4 bytes.  These will be
  1296. packed into a 4-byte string via:
  1297. <PRE>
  1298.     $data= pack( "L", hex($data) );</PRE>
  1299. <P></P>
  1300. <DT><STRONG>REG_BINARY</STRONG><BR>
  1301. <DD>
  1302. This value type is listed just to emphasize that no alternate
  1303. format is supported for it.  In particular, you should <EM>not</EM> pass
  1304. in a numeric value for this type of data.  <A HREF="#item_SetValue"><CODE>SetValue()</CODE></A> cannot
  1305. distinguish such from a packed string that just happens to match
  1306. a numeric value and so will treat it as a packed string.
  1307. <P></P></DL>
  1308. <P>An alternate calling format:</P>
  1309. <PRE>
  1310.     $okay= $key->SetValue( $ValueName, [ $ValueData, $ValueType ] );</PRE>
  1311. <P>[two arguments, the second of which is a reference to an array
  1312. containing the value data and value type] is supported to ease
  1313. using tied hashes with <A HREF="#item_SetValue"><CODE>SetValue()</CODE></A>.</P>
  1314. <DT><STRONG><A NAME="item_CreateKey">CreateKey</A></STRONG><BR>
  1315. <DD>
  1316. <DT><STRONG>$newKey= $key->CreateKey( $subKey );</STRONG><BR>
  1317. <DD>
  1318. <DT><STRONG>$newKey= $key->CreateKey( $subKey, { Option=>OptVal,... } );</STRONG><BR>
  1319. <DD>
  1320. Creates a Registry key or just updates attributes of one.  Calls
  1321. <CODE>RegCreateKeyEx()</CODE> then, if it succeeded, creates an object
  1322. associated with the [possibly new] subkey.
  1323. <P><CODE>$subKey</CODE> is the name of a subkey [or a path to one] to be
  1324. created or updated.  It can also be a reference to an array
  1325. containing a list of subkey names.</P>
  1326. <P>The second argument, if it exists, should be a reference to a
  1327. hash specifying options either to be passed to <CODE>RegCreateKeyEx()</CODE>
  1328. or to be used when creating the associated object.  The following
  1329. items are the supported keys for this options hash:</P>
  1330. <DL>
  1331. <DT><STRONG>Delimiter</STRONG><BR>
  1332. <DD>
  1333. Specifies the delimiter to be used to parse <CODE>$subKey</CODE> and to be
  1334. used in the new object.  Defaults to <CODE>$key-</CODE>Delimiter>.
  1335. <P></P>
  1336. <DT><STRONG>Access</STRONG><BR>
  1337. <DD>
  1338. Specifies the types of access requested when the subkey is opened.
  1339. Should be a numeric bit mask that combines one or more <CODE>KEY_*</CODE>
  1340. constant values.
  1341. <P></P>
  1342. <DT><STRONG><A NAME="item_Class">Class</A></STRONG><BR>
  1343. <DD>
  1344. The name to assign as the class of the new or updated subkey.
  1345. Defaults to <CODE>""</CODE> as we have never seen a use for this information.
  1346. <P></P>
  1347. <DT><STRONG><A NAME="item_Disposition">Disposition</A></STRONG><BR>
  1348. <DD>
  1349. Lets you specify a reference to a scalar where, upon success, will be
  1350. stored either <CODE>REG_CREATED_NEW_KEY()</CODE> or <CODE>REG_OPENED_EXISTING_KEY()</CODE>
  1351. depending on whether a new key was created or an existing key was
  1352. opened.
  1353. <P>If you, for example, did <A HREF="../../../lib/Pod/perlfunc.html#item_qw"><CODE>use Win32::TieRegistry qw(REG_CREATED_NEW_KEY)</CODE></A>
  1354. then you can use <CODE>REG_CREATED_NEW_KEY()</CODE> to compare against the numeric
  1355. value stored in the referenced scalar.</P>
  1356. <P>If the <A HREF="#item_DualTypes"><CODE>DualTypes</CODE></A> option is enabled, then in addition to the
  1357. numeric value described above, the referenced scalar will also
  1358. have a string value equal to either <CODE>"REG_CREATED_NEW_KEY"</CODE> or
  1359. <CODE>"REG_OPENED_EXISTING_KEY"</CODE>, as appropriate.</P>
  1360. <P></P>
  1361. <DT><STRONG><A NAME="item_Security">Security</A></STRONG><BR>
  1362. <DD>
  1363. Lets you specify a <CODE>SECURITY_ATTRIBUTES</CODE> structure packed into a
  1364. Perl string.  See <CODE>Win32API::Registry::RegCreateKeyEx()</CODE> for more
  1365. information.
  1366. <P></P>
  1367. <DT><STRONG><A NAME="item_Volatile">Volatile</A></STRONG><BR>
  1368. <DD>
  1369. If true, specifies that the new key should be volatile, that is,
  1370. stored only in memory and not backed by a hive file [and not saved
  1371. if the computer is rebooted].  This option is ignored under
  1372. Windows 95.  Specifying <CODE>Volatile=1</CODE>  is the same as
  1373. specifying <CODE>Options=REG_OPTION_VOLATILE</CODE>.
  1374. <P></P>
  1375. <DT><STRONG><A NAME="item_Backup">Backup</A></STRONG><BR>
  1376. <DD>
  1377. If true, specifies that the new key should be opened for
  1378. backup/restore access.  The <A HREF="#item_Access"><CODE>Access</CODE></A> option is ignored.  If the
  1379. calling process has enabled <CODE>"SeBackupPrivilege"</CODE>, then the
  1380. subkey is opened with <CODE>KEY_READ</CODE> access as the <CODE>"LocalSystem"</CODE>
  1381. user which should have access to all subkeys.  If the calling
  1382. process has enabled <CODE>"SeRestorePrivilege"</CODE>, then the subkey is
  1383. opened with <CODE>KEY_WRITE</CODE> access as the <CODE>"LocalSystem"</CODE> user which
  1384. should have access to all subkeys.
  1385. <P>This option is ignored under Windows 95.  Specifying <CODE>Backup=1</CODE>
  1386. is the same as specifying <CODE>Options=REG_OPTION_BACKUP_RESTORE</CODE>.</P>
  1387. <P></P>
  1388. <DT><STRONG><A NAME="item_Options">Options</A></STRONG><BR>
  1389. <DD>
  1390. Lets you specify options to the <CODE>RegOpenKeyEx()</CODE> call.  The value
  1391. for this option should be a numeric value combining zero or more
  1392. of the <CODE>REG_OPTION_*</CODE> bit masks.  You may with to used the
  1393. <A HREF="#item_Volatile"><CODE>Volatile</CODE></A> and/or <A HREF="#item_Backup"><CODE>Backup</CODE></A> options instead of this one.
  1394. <P></P></DL>
  1395. <DT><STRONG><A NAME="item_StoreKey">StoreKey</A></STRONG><BR>
  1396. <DD>
  1397. <DT><STRONG>$newKey= $key->StoreKey( $subKey, \%Contents );</STRONG><BR>
  1398. <DD>
  1399. Primarily for internal use.
  1400. <P>Used to create or update a Registry key and any number of subkeys
  1401. or values under it or its subkeys.</P>
  1402. <P><CODE>$subKey</CODE> is the name of a subkey to be created [or a path of
  1403. subkey names separated by delimiters].  If that subkey already
  1404. exists, then it is updated.</P>
  1405. <P><CODE>\%Contents</CODE> is a reference to a hash containing pairs of
  1406. value names with value data and/or subkey names with hash
  1407. references similar to <CODE>\%Contents</CODE>.  Each of these cause
  1408. a value or subkey of <CODE>$subKey</CODE> to be created or updated.</P>
  1409. <P>If <CODE>$Contents{""}</CODE> exists and is a reference to a hash, then
  1410. it used as the options argument when <A HREF="#item_CreateKey"><CODE>CreateKey()</CODE></A> is called
  1411. for <CODE>$subKey</CODE>.  This allows you to specify ...</P>
  1412. <PRE>
  1413.     if(  defined( $$data{""} )  &&  "HASH" eq ref($$data{""})  ) {
  1414.         $self= $this->CreateKey( $subKey, delete $$data{""} );</PRE>
  1415. <P></P>
  1416. <DT><STRONG><A NAME="item_Load">Load</A></STRONG><BR>
  1417. <DD>
  1418. <DT><STRONG>$newKey= $key->Load( $file )</STRONG><BR>
  1419. <DD>
  1420. <DT><STRONG>$newKey= $key->Load( $file, $newSubKey )</STRONG><BR>
  1421. <DD>
  1422. <DT><STRONG>$newKey= $key->Load( $file, $newSubKey, { Option=>OptVal... } )</STRONG><BR>
  1423. <DD>
  1424. <DT><STRONG>$newKey= $key->Load( $file, { Option=>OptVal... } )</STRONG><BR>
  1425. <DD>
  1426. Loads a hive file into a Registry.  That is, creates a new subkey
  1427. and associates a hive file with it.
  1428. <P><CODE>$file</CODE> is a hive file, that is a file created by calling
  1429. <CODE>RegSaveKey()</CODE>.  The <CODE>$file</CODE> path is interpreted relative to
  1430. <CODE>%SystemRoot%/System32/config</CODE> on the machine where <CODE>$key</CODE>
  1431. resides.</P>
  1432. <P><CODE>$newSubKey</CODE> is the name to be given to the new subkey.  If
  1433. <CODE>$newSubKey</CODE> is specified, then <CODE>$key</CODE> must be
  1434. <CODE>HKEY_LOCAL_MACHINE</CODE> or <CODE>HKEY_USERS</CODE> of the local computer
  1435. or a remote computer and <CODE>$newSubKey</CODE> should not contain any
  1436. occurrences of either the delimiter or the OS delimiter.</P>
  1437. <P>If <CODE>$newSubKey</CODE> is not specified, then it is as if <CODE>$key</CODE>
  1438. was <CODE>$Registry-{LMachine}</CODE> and <CODE>$newSubKey</CODE> is
  1439. <CODE>"PerlTie:999"</CODE> where <CODE>"999"</CODE> is actually a sequence number
  1440. incremented each time this process calls <A HREF="#item_Load"><CODE>Load()</CODE></A>.</P>
  1441. <P>You can specify as the last argument a reference to a hash
  1442. containing options.  You can specify the same options that you
  1443. can specify to <A HREF="#item_Open"><CODE>Open()</CODE></A>.  See <A HREF="#item_Open"><CODE>Open()</CODE></A> for more information on
  1444. those.  In addition, you can specify the option <CODE>"NewSubKey"</CODE>.
  1445. The value of this option is interpretted exactly as if it was
  1446. specified as the <CODE>$newSubKey</CODE> parameter and overrides the
  1447. <CODE>$newSubKey</CODE> if one was specified.</P>
  1448. <P>The hive is automatically unloaded when the returned object
  1449. [<CODE>$newKey</CODE>] is destroyed.  Registry key objects opened within
  1450. the hive will keep a reference to the <CODE>$newKey</CODE> object so that
  1451. it will not be destroyed before these keys are closed.</P>
  1452. <P></P>
  1453. <DT><STRONG><A NAME="item_UnLoad">UnLoad</A></STRONG><BR>
  1454. <DD>
  1455. <DT><STRONG>$okay= $key->UnLoad</STRONG><BR>
  1456. <DD>
  1457. Unloads a hive that was loaded via <A HREF="#item_Load"><CODE>Load()</CODE></A>.  Cannot unload other
  1458. hives.  <CODE>$key</CODE> must be the return from a previous call to <A HREF="#item_Load"><CODE>Load()</CODE></A>.
  1459. <CODE>$key</CODE> is closed and then the hive is unloaded.
  1460. <P></P>
  1461. <DT><STRONG><A NAME="item_AllowSave">AllowSave</A></STRONG><BR>
  1462. <DD>
  1463. <DT><STRONG>$okay= AllowSave( $bool )</STRONG><BR>
  1464. <DD>
  1465. Enables or disables the <CODE>"ReBackupPrivilege"</CODE> privilege for the
  1466. current process.  You will probably have to enable this privilege
  1467. before you can use <CODE>RegSaveKey()</CODE>.
  1468. <P>The return value indicates whether the operation succeeded, not
  1469. whether the privilege was previously enabled.</P>
  1470. <P></P>
  1471. <DT><STRONG><A NAME="item_AllowLoad">AllowLoad</A></STRONG><BR>
  1472. <DD>
  1473. <DT><STRONG>$okay= AllowLoad( $bool )</STRONG><BR>
  1474. <DD>
  1475. Enables or disables the <CODE>"ReRestorePrivilege"</CODE> privilege for the
  1476. current process.  You will probably have to enable this privilege
  1477. before you can use <CODE>RegLoadKey()</CODE>, <CODE>RegUnLoadKey()</CODE>,
  1478. <CODE>RegReplaceKey()</CODE>, or <CODE>RegRestoreKey</CODE> and thus <A HREF="#item_Load"><CODE>Load()</CODE></A> and
  1479. <A HREF="#item_UnLoad"><CODE>UnLoad()</CODE></A>.
  1480. <P>The return value indicates whether the operation succeeded, not
  1481. whether the privilege was previously enabled.</P>
  1482. <P></P></DL>
  1483. <P>
  1484. <H2><A NAME="exports [use and import()]">Exports [<A HREF="../../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> and <A HREF="../../../lib/Pod/perlfunc.html#item_import"><CODE>import()</CODE></A>]</A></H2>
  1485. <P>To have nothing imported into your package, use something like:</P>
  1486. <PRE>
  1487.     use Win32::TieRegistry 0.20 ();</PRE>
  1488. <P>which would verify that you have at least version 0.20 but wouldn't
  1489. call <A HREF="../../../lib/Pod/perlfunc.html#item_import"><CODE>import()</CODE></A>.  The <EM>Changes</EM> file can be useful in figuring out
  1490. which, if any, prior versions of <EM>Win32::TieRegistry</EM> you want to
  1491. support in your script.</P>
  1492. <P>The code</P>
  1493. <PRE>
  1494.     use Win32::TieRegistry;</PRE>
  1495. <P>imports the variable <CODE>$Registry</CODE> into your package and sets it
  1496. to be a reference to a hash tied to a copy of the master Registry
  1497. virtual root object with the default options.  One disadvantage
  1498. to this ``default'' usage is that Perl does not support checking
  1499. the module version when you use it.</P>
  1500. <P>Alternately, you can specify a list of arguments on the <A HREF="../../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A>
  1501. line that will be passed to the <CODE>Win32::TieRegistry-</CODE>import()>
  1502. method to control what items to import into your package.  These
  1503. arguments fall into the following broad categories:</P>
  1504. <DL>
  1505. <DT><STRONG><A NAME="item_Import_a_reference_to_a_hash_tied_to_a_Registry_vi">Import a reference to a hash tied to a Registry virtual root</A></STRONG><BR>
  1506. <DD>
  1507. You can request that a scalar variable be imported (possibly)
  1508. and set to be a reference to a hash tied to a Registry virtual root
  1509. using any of the following types of arguments or argument pairs:
  1510. <DL>
  1511. <DT><STRONG><A NAME="item_%22TiedRef%22%2C_%27%24scalar%27">``TiedRef'', '$scalar'</A></STRONG><BR>
  1512. <DD>
  1513. <DT><STRONG><A NAME="item_%22TiedRef%22%2C_%27%24pack%3A%3Ascalar%27">``TiedRef'', '$pack::scalar'</A></STRONG><BR>
  1514. <DD>
  1515. <DT><STRONG><A NAME="item_%22TiedRef%22%2C_%27scalar%27">``TiedRef'', 'scalar'</A></STRONG><BR>
  1516. <DD>
  1517. <DT><STRONG><A NAME="item_%22TiedRef%22%2C_%27pack%3A%3Ascalar%27">``TiedRef'', 'pack::scalar'</A></STRONG><BR>
  1518. <DD>
  1519. All of the above import a scalar named <CODE>$scalar</CODE> into your package
  1520. (or the package named ``pack'') and then sets it.
  1521. <P></P>
  1522. <DT><STRONG><A NAME="item_%27%24scalar%27">'$scalar'</A></STRONG><BR>
  1523. <DD>
  1524. <DT><STRONG><A NAME="item_%27%24pack%3A%3Ascalar%27">'$pack::scalar'</A></STRONG><BR>
  1525. <DD>
  1526. These are equivalent to the previous items to support a more
  1527. traditional appearance to the list of exports.  Note that the
  1528. scalar name cannot be ``RegObj'' here.
  1529. <P></P>
  1530. <DT><STRONG><A NAME="item_%22TiedRef%22%2C_%5C%24scalar">``TiedRef'', \$scalar</A></STRONG><BR>
  1531. <DD>
  1532. <DT><STRONG><A NAME="item_%5C%24scalar">\$scalar</A></STRONG><BR>
  1533. <DD>
  1534. These versions don't import anything but set the referenced <CODE>$scalar</CODE>.
  1535. <P></P></DL>
  1536. <DT><STRONG><A NAME="item_Import_a_hash_tied_to_the_Registry_virtual_root">Import a hash tied to the Registry virtual root</A></STRONG><BR>
  1537. <DD>
  1538. You can request that a hash variable be imported (possibly)
  1539. and tied to a Registry virtual root using any of the following
  1540. types of arguments or argument pairs:
  1541. <DL>
  1542. <DT><STRONG><A NAME="item_%22TiedHash%22%2C_%27%25hash%27">``TiedHash'', '%hash'</A></STRONG><BR>
  1543. <DD>
  1544. <DT><STRONG><A NAME="item_%22TiedHash%22%2C_%27%25pack%3A%3Ahash%27">``TiedHash'', '%pack::hash'</A></STRONG><BR>
  1545. <DD>
  1546. <DT><STRONG><A NAME="item_%22TiedHash%22%2C_%27hash%27">``TiedHash'', 'hash'</A></STRONG><BR>
  1547. <DD>
  1548. <DT><STRONG><A NAME="item_%22TiedHash%22%2C_%27pack%3A%3Ahash%27">``TiedHash'', 'pack::hash'</A></STRONG><BR>
  1549. <DD>
  1550. All of the above import a hash named <CODE>%hash</CODE> into your package
  1551. (or the package named ``pack'') and then sets it.
  1552. <P></P>
  1553. <DT><STRONG><A NAME="item_%27%25hash%27">'%hash'</A></STRONG><BR>
  1554. <DD>
  1555. <DT><STRONG><A NAME="item_%27%25pack%3A%3Ahash%27">'%pack::hash'</A></STRONG><BR>
  1556. <DD>
  1557. These are equivalent to the previous items to support a more
  1558. traditional appearance to the list of exports.
  1559. <P></P>
  1560. <DT><STRONG><A NAME="item_%22TiedHash%22%2C_%5C%25hash">``TiedHash'', \%hash</A></STRONG><BR>
  1561. <DD>
  1562. <DT><STRONG><A NAME="item_%5C%25hash">\%hash</A></STRONG><BR>
  1563. <DD>
  1564. These versions don't import anything but set the referenced <CODE>%hash</CODE>.
  1565. <P></P></DL>
  1566. <DT><STRONG><A NAME="item_Import_a_Registry_virtual_root_object">Import a Registry virtual root object</A></STRONG><BR>
  1567. <DD>
  1568. You can request that a scalar variable be imported (possibly)
  1569. and set to be a Registry virtual root object using any of the
  1570. following types of arguments or argument pairs:
  1571. <DL>
  1572. <DT><STRONG><A NAME="item_%22ObjectRef%22%2C_%27%24scalar%27">``ObjectRef'', '$scalar'</A></STRONG><BR>
  1573. <DD>
  1574. <DT><STRONG><A NAME="item_%22ObjectRef%22%2C_%27%24pack%3A%3Ascalar%27">``ObjectRef'', '$pack::scalar'</A></STRONG><BR>
  1575. <DD>
  1576. <DT><STRONG><A NAME="item_%22ObjectRef%22%2C_%27scalar%27">``ObjectRef'', 'scalar'</A></STRONG><BR>
  1577. <DD>
  1578. <DT><STRONG><A NAME="item_%22ObjectRef%22%2C_%27pack%3A%3Ascalar%27">``ObjectRef'', 'pack::scalar'</A></STRONG><BR>
  1579. <DD>
  1580. All of the above import a scalar named <CODE>$scalar</CODE> into your package
  1581. (or the package named ``pack'') and then sets it.
  1582. <P></P>
  1583. <DT><STRONG><A NAME="item_%27%24RegObj%27">'$RegObj'</A></STRONG><BR>
  1584. <DD>
  1585. This is equivalent to the previous items for backward compatibility.
  1586. <P></P>
  1587. <DT><STRONG><A NAME="item_%22ObjectRef%22%2C_%5C%24scalar">``ObjectRef'', \$scalar</A></STRONG><BR>
  1588. <DD>
  1589. This version doesn't import anything but sets the referenced <CODE>$scalar</CODE>.
  1590. <P></P></DL>
  1591. <DT><STRONG><A NAME="item_constant">Import <CODE>constant(s)</CODE> exported by <EM>Win32API::Registry</EM></A></STRONG><BR>
  1592. <DD>
  1593. You can list any constants that are exported by <EM>Win32API::Registry</EM>
  1594. to have them imported into your package.  These constants have names
  1595. starting with ``KEY_'' or ``REG_'' (or even ``HKEY_'').
  1596. <P>You can also specify <CODE>":KEY_"</CODE>, <CODE>":REG_"</CODE>, and even <CODE>":HKEY_"</CODE> to
  1597. import a whole set of constants.</P>
  1598. <P>See <EM>Win32API::Registry</EM> documentation for more information.</P>
  1599. <P></P>
  1600. <DT><STRONG>Options</STRONG><BR>
  1601. <DD>
  1602. You can list any option names that can be listed in the <A HREF="#item_SetOptions"><CODE>SetOptions()</CODE></A>
  1603. method call, each folowed by the value to use for that option.
  1604. A Registry virtual root object is created, all of these options are
  1605. set for it, then each variable to be imported/set is associated with
  1606. this object.
  1607. <P>In addition, the following special options are supported:</P>
  1608. <DL>
  1609. <DT><STRONG><A NAME="item_ExportLevel">ExportLevel</A></STRONG><BR>
  1610. <DD>
  1611. Whether to import variables into your package or some
  1612. package that uses your package.  Defaults to the value of
  1613. <CODE>$Exporter::ExportLevel</CODE> and has the same meaning.  See
  1614. the <A HREF="../../../lib/Exporter.html">the Exporter manpage</A> module for more information.
  1615. <P></P>
  1616. <DT><STRONG><A NAME="item_ExportTo">ExportTo</A></STRONG><BR>
  1617. <DD>
  1618. The name of the package to import variables and constants into.
  1619. Overrides <EM>ExportLevel</EM>.
  1620. <P></P></DL>
  1621. </DL>
  1622. <P>
  1623. <H3><A NAME="specifying constants in your perl code">Specifying constants in your Perl code</A></H3>
  1624. <P>This module was written with a strong emphasis on the convenience of
  1625. the module user.  Therefore, most places where you can specify a
  1626. constant like <A HREF="#item_REG_SZ"><CODE>REG_SZ()</CODE></A> also allow you to specify a string
  1627. containing the name of the constant, <CODE>"REG_SZ"</CODE>.  This is convenient
  1628. because you may not have imported that symbolic constant.</P>
  1629. <P>Perl also emphasizes programmer convenience so the code <A HREF="#item_REG_SZ"><CODE>REG_SZ</CODE></A>
  1630. can be used to mean <A HREF="#item_REG_SZ"><CODE>REG_SZ()</CODE></A> or <CODE>"REG_SZ"</CODE> or be illegal.
  1631. Note that using <CODE>&REG_SZ</CODE> (as we've seen in much Win32 Perl code)
  1632. is not a good idea since it passes the current <CODE>@_</CODE> to the
  1633. <A HREF="#item_constant"><CODE>constant()</CODE></A> routine of the module which, at the least, can give
  1634. you a warning under <STRONG>-w</STRONG>.</P>
  1635. <P>Although greatly a matter of style, the ``safest'' practice is probably
  1636. to specifically list all constants in the <CODE>use Win32::TieRegistry</CODE>
  1637. statement, specify <CODE>use strict</CODE> [or at least <A HREF="../../../lib/Pod/perlfunc.html#item_qw"><CODE>use strict qw(subs)</CODE></A>],
  1638. and use bare constant names when you want the numeric value.  This will
  1639. detect mispelled constant names at compile time.</P>
  1640. <PRE>
  1641.     use strict;
  1642.     my $Registry;
  1643.     use Win32::TieRegistry 0.20 (
  1644.         TiedRef => \$Registry,  Delimiter => "/",  ArrayValues => 1,
  1645.         SplitMultis => 1,  AllowLoad => 1,
  1646.         qw( REG_SZ REG_EXPAND_SZ REG_DWORD REG_BINARY REG_MULTI_SZ
  1647.             KEY_READ KEY_WRITE KEY_ALL_ACCESS ),
  1648.     );
  1649.     $Registry->{"LMachine/Software/FooCorp/"}= {
  1650.         "FooWriter/" => {
  1651.             "/Fonts" => [ ["Times","Courier","Lucinda"], REG_MULTI_SZ ],
  1652.             "/WindowSize" => [ pack("LL",24,80), REG_BINARY ],
  1653.             "/TaskBarIcon" => [ "0x0001", REG_DWORD ],
  1654.         },
  1655.     }  or  die "Can't create Software/FooCorp/: $^E\n";</PRE>
  1656. <P>If you don't want to <A HREF="../../../lib/Pod/perlfunc.html#item_qw"><CODE>use strict qw(subs)</CODE></A>, the second safest practice
  1657. is similar to the above but use the <A HREF="#item_REG_SZ"><CODE>REG_SZ()</CODE></A> form for constants
  1658. when possible and quoted constant names when required.  Note that
  1659. <A HREF="../../../lib/Pod/perlfunc.html#item_qw"><CODE>qw()</CODE></A> is a form of quoting.</P>
  1660. <PRE>
  1661.     use Win32::TieRegistry 0.20 qw(
  1662.         TiedRef $Registry
  1663.         Delimiter /  ArrayValues 1  SplitMultis 1  AllowLoad 1
  1664.         REG_SZ REG_EXPAND_SZ REG_DWORD REG_BINARY REG_MULTI_SZ
  1665.         KEY_READ KEY_WRITE KEY_ALL_ACCESS
  1666.     );
  1667.     $Registry->{"LMachine/Software/FooCorp/"}= {
  1668.         "FooWriter/" => {
  1669.             "/Fonts" => [ ["Times","Courier","Lucinda"], REG_MULTI_SZ() ],
  1670.             "/WindowSize" => [ pack("LL",24,80), REG_BINARY() ],
  1671.             "/TaskBarIcon" => [ "0x0001", REG_DWORD() ],
  1672.         },
  1673.     }  or  die "Can't create Software/FooCorp/: $^E\n";</PRE>
  1674. <P>The examples in this document mostly use quoted constant names
  1675. (<CODE>"REG_SZ"</CODE>) since that works regardless of which constants
  1676. you imported and whether or not you have <CODE>use strict</CODE> in your
  1677. script.  It is not the best choice for you to use for real
  1678. scripts (vs. examples) because it is less efficient and is not
  1679. supported by most other similar modules.</P>
  1680. <P>
  1681. <HR>
  1682. <H1><A NAME="summary">SUMMARY</A></H1>
  1683. <P>Most things can be done most easily via tied hashes.  Skip down to the
  1684. the <A HREF="#tied hashes summary">Tied Hashes Summary</A> to get started quickly.</P>
  1685. <P>
  1686. <H2><A NAME="objects summary">Objects Summary</A></H2>
  1687. <P>Here are quick examples that document the most common functionality
  1688. of all of the method functions [except for a few almost useless ones].</P>
  1689. <PRE>
  1690.     # Just another way of saying Open():
  1691.     $key= new Win32::TieRegistry "LMachine\\Software\\",
  1692.       { Access=>KEY_READ()|KEY_WRITE(), Delimiter=>"\\" };</PRE>
  1693. <PRE>
  1694.     # Open a Registry key:
  1695.     $subKey= $key->Open( "SubKey/SubSubKey/",
  1696.       { Access=>KEY_ALL_ACCESS, Delimiter=>"/" } );</PRE>
  1697. <PRE>
  1698.     # Connect to a remote Registry key:
  1699.     $remKey= $Registry->Connect( "MachineName", "LMachine/",
  1700.       { Access=>KEY_READ, Delimiter=>"/" } );</PRE>
  1701. <PRE>
  1702.     # Get value data:
  1703.     $valueString= $key->GetValue("ValueName");
  1704.     ( $valueString, $valueType )= $key->GetValue("ValueName");</PRE>
  1705. <PRE>
  1706.     # Get list of value names:
  1707.     @valueNames= $key->ValueNames;</PRE>
  1708. <PRE>
  1709.     # Get list of subkey names:
  1710.     @subKeyNames= $key->SubKeyNames;</PRE>
  1711. <PRE>
  1712.     # Get combined list of value names (with leading delimiters)
  1713.     # and subkey names (with trailing delimiters):
  1714.     @memberNames= $key->MemberNames;</PRE>
  1715. <PRE>
  1716.     # Get all information about a key:
  1717.     %keyInfo= $key->Information;
  1718.     # keys(%keyInfo)= qw( Class LastWrite SecurityLen
  1719.     #   CntSubKeys MaxSubKeyLen MaxSubClassLen
  1720.     #   CntValues MaxValNameLen MaxValDataLen );</PRE>
  1721. <PRE>
  1722.     # Get selected information about a key:
  1723.     ( $class, $cntSubKeys )= $key->Information( "Class", "CntSubKeys" );</PRE>
  1724. <PRE>
  1725.     # Get and/or set delimiter:
  1726.     $delim= $key->Delimiter;
  1727.     $oldDelim= $key->Delimiter( $newDelim );</PRE>
  1728. <PRE>
  1729.     # Get "path" for an open key:
  1730.     $path= $key->Path;
  1731.     # For example, "/CUser/Control Panel/Mouse/"
  1732.     # or "//HostName/LMachine/System/DISK/".</PRE>
  1733. <PRE>
  1734.     # Get name of machine where key is from:
  1735.     $mach= $key->Machine;
  1736.     # Will usually be "" indicating key is on local machine.</PRE>
  1737. <PRE>
  1738.     # Control different options (see main documentation for descriptions):
  1739.     $oldBool= $key->ArrayValues( $newBool );
  1740.     $oldBool= $key->FastDelete( $newBool );
  1741.     $oldBool= $key->FixSzNulls( $newBool );
  1742.     $oldBool= $key->SplitMultis( $newBool );
  1743.     $oldBool= $key->DWordsToHex( $newBool );
  1744.     $oldBool= $key->DualBinVals( $newBool );
  1745.     $oldBool= $key->DualTypes( $newBool );
  1746.     @oldBools= $key->SetOptions( ArrayValues=>1, FastDelete=>1, FixSzNulls=>0,
  1747.       Delimiter=>"/", AllowLoad=>1, AllowSave=>1 );
  1748.     @oldBools= $key->GetOptions( ArrayValues, FastDelete, FixSzNulls );</PRE>
  1749. <PRE>
  1750.     # Add or set a value:
  1751.     $key->SetValue( "ValueName", $valueDataString );
  1752.     $key->SetValue( "ValueName", pack($format,$valueData), "REG_BINARY" );</PRE>
  1753. <PRE>
  1754.     # Add or set a key:
  1755.     $key->CreateKey( "SubKeyName" );
  1756.     $key->CreateKey( "SubKeyName",
  1757.       { Access=>"KEY_ALL_ACCESS", Class=>"ClassName",
  1758.         Delimiter=>"/", Volatile=>1, Backup=>1 } );</PRE>
  1759. <PRE>
  1760.     # Load an off-line Registry hive file into the on-line Registry:
  1761.     $newKey= $Registry->Load( "C:/Path/To/Hive/FileName" );
  1762.     $newKey= $key->Load( "C:/Path/To/Hive/FileName", "NewSubKeyName",
  1763.                      { Access=>"KEY_READ" } );
  1764.     # Unload a Registry hive file loaded via the Load() method:
  1765.     $newKey->UnLoad;</PRE>
  1766. <PRE>
  1767.     # (Dis)Allow yourself to load Registry hive files:
  1768.     $success= $Registry->AllowLoad( $bool );</PRE>
  1769. <PRE>
  1770.     # (Dis)Allow yourself to save a Registry key to a hive file:
  1771.     $success= $Registry->AllowSave( $bool );</PRE>
  1772. <PRE>
  1773.     # Save a Registry key to a new hive file:
  1774.     $key->RegSaveKey( "C:/Path/To/Hive/FileName", [] );</PRE>
  1775. <P>
  1776. <H3><A NAME="other useful methods">Other Useful Methods</A></H3>
  1777. <P>See <EM>Win32API::Registry</EM> for more information on these methods.
  1778. These methods are provided for coding convenience and are
  1779. identical to the <EM>Win32API::Registry</EM> functions except that these
  1780. don't take a handle to a Registry key, instead getting the handle
  1781. from the invoking object [<CODE>$key</CODE>].</P>
  1782. <PRE>
  1783.     $key->RegGetKeySecurity( $iSecInfo, $sSecDesc, $lenSecDesc );
  1784.     $key->RegLoadKey( $sSubKeyName, $sPathToFile );
  1785.     $key->RegNotifyChangeKeyValue(
  1786.       $bWatchSubtree, $iNotifyFilter, $hEvent, $bAsync );
  1787.     $key->RegQueryMultipleValues(
  1788.       $structValueEnts, $cntValueEnts, $Buffer, $lenBuffer );
  1789.     $key->RegReplaceKey( $sSubKeyName, $sPathToNewFile, $sPathToBackupFile );
  1790.     $key->RegRestoreKey( $sPathToFile, $iFlags );
  1791.     $key->RegSetKeySecurity( $iSecInfo, $sSecDesc );
  1792.     $key->RegUnLoadKey( $sSubKeyName );</PRE>
  1793. <P>
  1794. <H2><A NAME="tied hashes summary">Tied Hashes Summary</A></H2>
  1795. <P>For fast learners, this may be the only section you need to read.
  1796. Always append one delimiter to the end of each Registry key name
  1797. and prepend one delimiter to the front of each Registry value name.</P>
  1798. <P>
  1799. <H3><A NAME="opening keys">Opening keys</A></H3>
  1800. <PRE>
  1801.     use Win32::TieRegistry ( Delimiter=>"/", ArrayValues=>1 );
  1802.     $Registry->Delimiter("/");                  # Set delimiter to "/".
  1803.     $swKey= $Registry->{"LMachine/Software/"};
  1804.     $winKey= $swKey->{"Microsoft/Windows/CurrentVersion/"};
  1805.     $userKey= $Registry->
  1806.       {"CUser/Software/Microsoft/Windows/CurrentVersion/"};
  1807.     $remoteKey= $Registry->{"//HostName/LMachine/"};</PRE>
  1808. <P>
  1809. <H3><A NAME="reading values">Reading values</A></H3>
  1810. <PRE>
  1811.     $progDir= $winKey->{"/ProgramFilesDir"};    # "C:\\Program Files"
  1812.     $tip21= $winKey->{"Explorer/Tips//21"};     # Text of tip #21.</PRE>
  1813. <PRE>
  1814.     $winKey->ArrayValues(1);
  1815.     ( $devPath, $type )= $winKey->{"/DevicePath"};
  1816.     # $devPath eq "%SystemRoot%\\inf"
  1817.     # $type eq "REG_EXPAND_SZ"  [if you have SetDualVar.pm installed]
  1818.     # $type == REG_EXPAND_SZ()  [if did C<use Win32::TieRegistry qw(:REG_)>]</PRE>
  1819. <P>
  1820. <H3><A NAME="setting values">Setting values</A></H3>
  1821. <PRE>
  1822.     $winKey->{"Setup//SourcePath"}= "\\\\SwServer\\SwShare\\Windows";
  1823.     # Simple.  Assumes data type of REG_SZ.</PRE>
  1824. <PRE>
  1825.     $winKey->{"Setup//Installation Sources"}=
  1826.       [ "D:\x00\\\\SwServer\\SwShare\\Windows\0\0", "REG_MULTI_SZ" ];
  1827.     # "\x00" and "\0" used to mark ends of each string and end of list.</PRE>
  1828. <PRE>
  1829.     $winKey->{"Setup//Installation Sources"}=
  1830.       [ ["D:","\\\\SwServer\\SwShare\\Windows"], "REG_MULTI_SZ" ];
  1831.     # Alternate method that is easier to read.</PRE>
  1832. <PRE>
  1833.     $userKey->{"Explorer/Tips//DisplayInitialTipWindow"}=
  1834.       [ pack("L",0), "REG_DWORD" ];
  1835.     $userKey->{"Explorer/Tips//Next"}= [ pack("S",3), "REG_BINARY" ];
  1836.     $userKey->{"Explorer/Tips//Show"}= [ pack("L",0), "REG_BINARY" ];</PRE>
  1837. <P>
  1838. <H3><A NAME="adding keys">Adding keys</A></H3>
  1839. <PRE>
  1840.     $swKey->{"FooCorp/"}= {
  1841.         "FooWriter/" => {
  1842.             "/Version" => "4.032",
  1843.             "Startup/" => {
  1844.                 "/Title" => "Foo Writer Deluxe ][",
  1845.                 "/WindowSize" => [ pack("LL",$wid,$ht), "REG_BINARY" ],
  1846.                 "/TaskBarIcon" => [ "0x0001", "REG_DWORD" ],
  1847.             },
  1848.             "Compatibility/" => {
  1849.                 "/AutoConvert" => "Always",
  1850.                 "/Default Palette" => "Windows Colors",
  1851.             },
  1852.         },
  1853.         "/License", => "0123-9C8EF1-09-FC",
  1854.     };</PRE>
  1855. <P>
  1856. <H3><A NAME="listing all subkeys and values">Listing all subkeys and values</A></H3>
  1857. <PRE>
  1858.     @members= keys( %{$swKey} );
  1859.     @subKeys= grep(  m#^/#,  keys( %{$swKey->{"Classes/batfile/"}} )  );
  1860.     # @subKeys= ( "/", "/EditFlags" );
  1861.     @valueNames= grep(  ! m#^/#,  keys( %{$swKey->{"Classes/batfile/"}} )  );
  1862.     # @valueNames= ( "DefaultIcon/", "shell/", "shellex/" );</PRE>
  1863. <P>
  1864. <H3><A NAME="deleting values or keys with no subkeys">Deleting values or keys with no subkeys</A></H3>
  1865. <PRE>
  1866.     $oldValue= delete $userKey->{"Explorer/Tips//Next"};</PRE>
  1867. <PRE>
  1868.     $oldValues= delete $userKey->{"Explorer/Tips/"};
  1869.     # $oldValues will be reference to hash containing deleted keys values.</PRE>
  1870. <P>
  1871. <H3><A NAME="closing keys">Closing keys</A></H3>
  1872. <PRE>
  1873.     undef $swKey;               # Explicit way to close a key.
  1874.     $winKey= "Anything else";   # Implicitly closes a key.
  1875.     exit 0;                     # Implicitly closes all keys.</PRE>
  1876. <P>
  1877. <H2><A NAME="tie::registry">Tie::Registry</A></H2>
  1878. <P>This module was originally called <EM>Tie::Registry</EM>.  Changing code
  1879. that used <EM>Tie::Registry</EM> over to <EM>Win32::TieRegistry</EM> is trivial
  1880. as the module name should only be mentioned once, in the <A HREF="../../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A>
  1881. line.  However, finding all of the places that used <EM>Tie::Registry</EM>
  1882. may not be completely trivial so we have included <EM>Tie/Registry.pm</EM>
  1883. which you can install to provide backward compatibility.</P>
  1884. <P>
  1885. <HR>
  1886. <H1><A NAME="author">AUTHOR</A></H1>
  1887. <P>Tye McQueen.  See <A HREF="http://www.metronet.com/~tye/">http://www.metronet.com/~tye/</A> or e-mail
  1888. <A HREF="mailto:tye@metronet.com">tye@metronet.com</A> with bug reports.</P>
  1889. <P>
  1890. <HR>
  1891. <H1><A NAME="see also">SEE ALSO</A></H1>
  1892. <P><EM>Win32API::Registry</EM> - Provides access to <CODE>Reg*()</CODE>, <CODE>HKEY_*</CODE>,
  1893. <CODE>KEY_*</CODE>, <CODE>REG_*</CODE> [required].</P>
  1894. <P><EM>Win32::WinError</EM> - Defines <CODE>ERROR_*</CODE> values [optional].</P>
  1895. <P><EM>SetDualVar</EM> - For returning <CODE>REG_*</CODE> values as combined
  1896. string/integer values [optional].</P>
  1897. <P>
  1898. <HR>
  1899. <H1><A NAME="bugs">BUGS</A></H1>
  1900. <P>Perl5.004_02 has bugs that make <EM>Win32::TieRegistry</EM> fail in
  1901. strange and subtle ways.</P>
  1902. <P>Using <EM>Win32::TieRegistry</EM> with versions of Perl prior to 5.005
  1903. can be tricky or impossible.  Most notes about this have been
  1904. removed from the documentation (they get rather complicated
  1905. and confusing).  This includes references to <CODE>$^E</CODE> perhaps not
  1906. being meaningful.</P>
  1907. <P>Because Perl hashes are case sensitive, certain lookups are also
  1908. case sensistive.  In particular, the root keys (``Classes'', ``CUser'',
  1909. ``LMachine'', ``Users'', ``PerfData'', ``CConfig'', ``DynData'', and HKEY_*)
  1910. must always be entered without changing between upper and lower
  1911. case letters.  Also, the special rule for matching subkey names
  1912. that contain the user-selected delimiter only works if case is
  1913. matched.  All other key name and value name lookups should be case
  1914. insensitive because the underlying Reg*() calls ignore case.</P>
  1915. <P>Information about each key is cached when using a tied hash.
  1916. This cache is not flushed nor updated when changes are made,
  1917. <EM>even when the same tied hash is used</EM> to make the changes.</P>
  1918. <P>Current implementations of Perl's ``global destruction'' phase can
  1919. cause objects returned by <A HREF="#item_Load"><CODE>Load()</CODE></A> to be destroyed while keys
  1920. within the hive are still open, if the objects still exist when
  1921. the script starts to exit.  When this happens, the automatic
  1922. <A HREF="#item_UnLoad"><CODE>UnLoad()</CODE></A> will report a failure and the hive will remain loaded
  1923. in the Registry.</P>
  1924. <P>Trying to <A HREF="#item_Load"><CODE>Load()</CODE></A> a hive file that is located on a remote network
  1925. share may silently delete all data from the hive.  This is a bug
  1926. in the Win32 APIs, not any Perl code or modules.  This module does
  1927. not try to protect you from this bug.</P>
  1928. <P>There is no test suite.</P>
  1929. <P>
  1930. <HR>
  1931. <H1><A NAME="future directions">FUTURE DIRECTIONS</A></H1>
  1932. <P>The following items are desired by the author and may appear in a
  1933. future release of this module.</P>
  1934. <DL>
  1935. <DT><STRONG><A NAME="item_TieValues_option">TieValues option</A></STRONG><BR>
  1936. <DD>
  1937. Currently described in main documentation but no yet implemented.
  1938. <P></P>
  1939. <DT><STRONG><A NAME="item_AutoRefresh_option">AutoRefresh option</A></STRONG><BR>
  1940. <DD>
  1941. Trigger use of <CODE>RegNotifyChangeKeyValue()</CODE> to keep tied hash
  1942. caches up-to-date even when other programs make changes.
  1943. <P></P>
  1944. <DT><STRONG><A NAME="item_Error_options">Error options</A></STRONG><BR>
  1945. <DD>
  1946. Allow the user to have unchecked calls (calls in a ``void context'')
  1947. to automatically report errors via <A HREF="../../../lib/Pod/perlfunc.html#item_warn"><CODE>warn</CODE></A> or <A HREF="../../../lib/Pod/perlfunc.html#item_die"><CODE>die</CODE></A>.
  1948. <P>For complex operations, such a copying an entire subtree, provide
  1949. access to detailed information about errors (and perhaps some
  1950. warnings) that were encountered.  Let the user control whether
  1951. the complex operation continues in spite of errors.</P>
  1952. <P></P></DL>
  1953. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1954. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1955. <STRONG><P CLASS=block> Win32::TieRegistry - Powerful and easy ways to manipulate a registry
  1956. [on Win32 for now].</P></STRONG>
  1957. </TD></TR>
  1958. </TABLE>
  1959.  
  1960. </BODY>
  1961.  
  1962. </HTML>
  1963.