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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlopentut - tutorial on opening things in Perl</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlopentut - tutorial on opening things in Perl</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <LI><A HREF="#open la shell">Open à la shell</A></LI>
  23.     <UL>
  24.  
  25.         <LI><A HREF="#simple opens">Simple Opens</A></LI>
  26.         <LI><A HREF="#pipe opens">Pipe Opens</A></LI>
  27.         <LI><A HREF="#the minus file">The Minus File</A></LI>
  28.         <LI><A HREF="#mixing reads and writes">Mixing Reads and Writes</A></LI>
  29.         <LI><A HREF="#filters">Filters</A></LI>
  30.     </UL>
  31.  
  32.     <LI><A HREF="#open la c">Open à la C</A></LI>
  33.     <UL>
  34.  
  35.         <LI><A HREF="#permissions la mode">Permissions à la mode</A></LI>
  36.     </UL>
  37.  
  38.     <LI><A HREF="#obscure open tricks">Obscure Open Tricks</A></LI>
  39.     <UL>
  40.  
  41.         <LI><A HREF="#reopening files (dups)">Re-Opening Files (dups)</A></LI>
  42.         <LI><A HREF="#dispelling the dweomer">Dispelling the Dweomer</A></LI>
  43.         <LI><A HREF="#paths as opens">Paths as Opens</A></LI>
  44.         <LI><A HREF="#single argument open">Single Argument Open</A></LI>
  45.         <LI><A HREF="#playing with stdin and stdout">Playing with STDIN and STDOUT</A></LI>
  46.     </UL>
  47.  
  48.     <LI><A HREF="#other i/o issues">Other I/O Issues</A></LI>
  49.     <UL>
  50.  
  51.         <LI><A HREF="#opening nonfile files">Opening Non-File Files</A></LI>
  52.         <LI><A HREF="#binary files">Binary Files</A></LI>
  53.         <LI><A HREF="#file locking">File Locking</A></LI>
  54.     </UL>
  55.  
  56.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  57.     <LI><A HREF="#author and copyright">AUTHOR and COPYRIGHT</A></LI>
  58.     <LI><A HREF="#history">HISTORY</A></LI>
  59. </UL>
  60. <!-- INDEX END -->
  61.  
  62. <HR>
  63. <P>
  64. <H1><A NAME="name">NAME</A></H1>
  65. <P>perlopentut - tutorial on opening things in Perl</P>
  66. <P>
  67. <HR>
  68. <H1><A NAME="description">DESCRIPTION</A></H1>
  69. <P>Perl has two simple, built-in ways to open files: the shell way for
  70. convenience, and the C way for precision.  The choice is yours.</P>
  71. <P>
  72. <HR>
  73. <H1><A NAME="open la shell">Open à la shell</A></H1>
  74. <P>Perl's <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> function was designed to mimic the way command-line
  75. redirection in the shell works.  Here are some basic examples
  76. from the shell:</P>
  77. <PRE>
  78.     $ myprogram file1 file2 file3
  79.     $ myprogram    <  inputfile
  80.     $ myprogram    >  outputfile
  81.     $ myprogram    >> outputfile
  82.     $ myprogram    |  otherprogram 
  83.     $ otherprogram |  myprogram</PRE>
  84. <P>And here are some more advanced examples:</P>
  85. <PRE>
  86.     $ otherprogram      | myprogram f1 - f2
  87.     $ otherprogram 2>&1 | myprogram -
  88.     $ myprogram     <&3
  89.     $ myprogram     >&4</PRE>
  90. <P>Programmers accustomed to constructs like those above can take comfort
  91. in learning that Perl directly supports these familiar constructs using
  92. virtually the same syntax as the shell.</P>
  93. <P>
  94. <H2><A NAME="simple opens">Simple Opens</A></H2>
  95. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> function takes two arguments: the first is a filehandle,
  96. and the second is a single string comprising both what to open and how
  97. to open it.  <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> returns true when it works, and when it fails,
  98. returns a false value and sets the special variable $! to reflect
  99. the system error.  If the filehandle was previously opened, it will
  100. be implicitly closed first.</P>
  101. <P>For example:</P>
  102. <PRE>
  103.     open(INFO,      "datafile") || die("can't open datafile: $!");
  104.     open(INFO,   "<  datafile") || die("can't open datafile: $!");
  105.     open(RESULTS,">  runstats") || die("can't open runstats: $!");
  106.     open(LOG,    ">> logfile ") || die("can't open logfile:  $!");</PRE>
  107. <P>If you prefer the low-punctuation version, you could write that this way:</P>
  108. <PRE>
  109.     open INFO,   "<  datafile"  or die "can't open datafile: $!";
  110.     open RESULTS,">  runstats"  or die "can't open runstats: $!";
  111.     open LOG,    ">> logfile "  or die "can't open logfile:  $!";</PRE>
  112. <P>A few things to notice.  First, the leading less-than is optional.
  113. If omitted, Perl assumes that you want to open the file for reading.</P>
  114. <P>The other important thing to notice is that, just as in the shell,
  115. any white space before or after the filename is ignored.  This is good,
  116. because you wouldn't want these to do different things:</P>
  117. <PRE>
  118.     open INFO,   "<datafile"   
  119.     open INFO,   "< datafile" 
  120.     open INFO,   "<  datafile"</PRE>
  121. <P>Ignoring surround whitespace also helps for when you read a filename in
  122. from a different file, and forget to trim it before opening:</P>
  123. <PRE>
  124.     $filename = <INFO>;         # oops, \n still there
  125.     open(EXTRA, "< $filename") || die "can't open $filename: $!";</PRE>
  126. <P>This is not a bug, but a feature.  Because <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> mimics the shell in
  127. its style of using redirection arrows to specify how to open the file, it
  128. also does so with respect to extra white space around the filename itself
  129. as well.  For accessing files with naughty names, see <A HREF="#dispelling the dweomer">Dispelling the Dweomer</A>.</P>
  130. <P>
  131. <H2><A NAME="pipe opens">Pipe Opens</A></H2>
  132. <P>In C, when you want to open a file using the standard I/O library,
  133. you use the <CODE>fopen</CODE> function, but when opening a pipe, you use the
  134. <CODE>popen</CODE> function.  But in the shell, you just use a different redirection
  135. character.  That's also the case for Perl.  The <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> call 
  136. remains the same--just its argument differs.</P>
  137. <P>If the leading character is a pipe symbol, <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> starts up a new
  138. command and open a write-only filehandle leading into that command.
  139. This lets you write into that handle and have what you write show up on
  140. that command's standard input.  For example:</P>
  141. <PRE>
  142.     open(PRINTER, "| lpr -Plp1")    || die "cannot fork: $!";
  143.     print PRINTER "stuff\n";
  144.     close(PRINTER)                  || die "can't close lpr: $!";</PRE>
  145. <P>If the trailing character is a pipe, you start up a new command and open a
  146. read-only filehandle leading out of that command.  This lets whatever that
  147. command writes to its standard output show up on your handle for reading.
  148. For example:</P>
  149. <PRE>
  150.     open(NET, "netstat -i -n |")    || die "cannot fork: $!";
  151.     while (<NET>) { }               # do something with input
  152.     close(NET)                      || die "can't close netstat: $!";</PRE>
  153. <P>What happens if you try to open a pipe to or from a non-existent command?
  154. In most systems, such an <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> will not return an error. That's
  155. because in the traditional <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork</CODE></A>/<A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A> model, running the other
  156. program happens only in the forked child process, which means that
  157. the failed <A HREF="../../lib/Pod/perlfunc.html#item_exec"><CODE>exec</CODE></A> can't be reflected in the return value of <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A>.
  158. Only a failed <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork</CODE></A> shows up there.  See <A HREF="../../lib/Pod/perlfaq8.html#why doesn't open() return an error when a pipe open fails">Why doesn't open() return an error when a pipe open fails? in the perlfaq8 manpage</A> to see how to cope with this.
  159. There's also an explanation in <A HREF="../../lib/Pod/perlipc.html">the perlipc manpage</A>.</P>
  160. <P>If you would like to open a bidirectional pipe, the IPC::Open2
  161. library will handle this for you.  Check out <A HREF="../../lib/Pod/perlipc.html#bidirectional communication with another process">Bidirectional Communication with Another Process in the perlipc manpage</A></P>
  162. <P>
  163. <H2><A NAME="the minus file">The Minus File</A></H2>
  164. <P>Again following the lead of the standard shell utilities, Perl's
  165. <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> function treats a file whose name is a single minus, ``-'', in a
  166. special way.  If you open minus for reading, it really means to access
  167. the standard input.  If you open minus for writing, it really means to
  168. access the standard output.</P>
  169. <P>If minus can be used as the default input or default output, what happens
  170. if you open a pipe into or out of minus?  What's the default command it
  171. would run?  The same script as you're currently running!  This is actually
  172. a stealth <A HREF="../../lib/Pod/perlfunc.html#item_fork"><CODE>fork</CODE></A> hidden inside an <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> call.  See <A HREF="../../lib/Pod/perlipc.html#safe pipe opens">Safe Pipe Opens in the perlipc manpage</A> for details.</P>
  173. <P>
  174. <H2><A NAME="mixing reads and writes">Mixing Reads and Writes</A></H2>
  175. <P>It is possible to specify both read and write access.  All you do is
  176. add a ``+'' symbol in front of the redirection.  But as in the shell,
  177. using a less-than on a file never creates a new file; it only opens an
  178. existing one.  On the other hand, using a greater-than always clobbers
  179. (truncates to zero length) an existing file, or creates a brand-new one
  180. if there isn't an old one.  Adding a ``+'' for read-write doesn't affect
  181. whether it only works on existing files or always clobbers existing ones.</P>
  182. <PRE>
  183.     open(WTMP, "+< /usr/adm/wtmp") 
  184.         || die "can't open /usr/adm/wtmp: $!";</PRE>
  185. <PRE>
  186.     open(SCREEN, "+> /tmp/lkscreen")
  187.         || die "can't open /tmp/lkscreen: $!";</PRE>
  188. <PRE>
  189.     open(LOGFILE, "+>> /tmp/applog"
  190.         || die "can't open /tmp/applog: $!";</PRE>
  191. <P>The first one won't create a new file, and the second one will always
  192. clobber an old one.  The third one will create a new file if necessary
  193. and not clobber an old one, and it will allow you to read at any point
  194. in the file, but all writes will always go to the end.  In short,
  195. the first case is substantially more common than the second and third
  196. cases, which are almost always wrong.  (If you know C, the plus in
  197. Perl's <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> is historically derived from the one in C's fopen(3S),
  198. which it ultimately calls.)</P>
  199. <P>In fact, when it comes to updating a file, unless you're working on
  200. a binary file as in the WTMP case above, you probably don't want to
  201. use this approach for updating.  Instead, Perl's <STRONG>-i</STRONG> flag comes to
  202. the rescue.  The following command takes all the C, C++, or yacc source
  203. or header files and changes all their foo's to bar's, leaving
  204. the old version in the original file name with a ``.orig'' tacked
  205. on the end:</P>
  206. <PRE>
  207.     $ perl -i.orig -pe 's/\bfoo\b/bar/g' *.[Cchy]</PRE>
  208. <P>This is a short cut for some renaming games that are really
  209. the best way to update textfiles.  See the second question in 
  210. <A HREF="../../lib/Pod/perlfaq5.html">the perlfaq5 manpage</A> for more details.</P>
  211. <P>
  212. <H2><A NAME="filters">Filters</A></H2>
  213. <P>One of the most common uses for <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> is one you never
  214. even notice.  When you process the ARGV filehandle using
  215. <CODE><ARGV></CODE>, Perl actually does an implicit open 
  216. on each file in @ARGV.  Thus a program called like this:</P>
  217. <PRE>
  218.     $ myprogram file1 file2 file3</PRE>
  219. <P>Can have all its files opened and processed one at a time
  220. using a construct no more complex than:</P>
  221. <PRE>
  222.     while (<>) {
  223.         # do something with $_
  224.     }</PRE>
  225. <P>If @ARGV is empty when the loop first begins, Perl pretends you've opened
  226. up minus, that is, the standard input.  In fact, $ARGV, the currently
  227. open file during <CODE><ARGV></CODE> processing, is even set to ``-''
  228. in these circumstances.</P>
  229. <P>You are welcome to pre-process your @ARGV before starting the loop to
  230. make sure it's to your liking.  One reason to do this might be to remove
  231. command options beginning with a minus.  While you can always roll the
  232. simple ones by hand, the Getopts modules are good for this.</P>
  233. <PRE>
  234.     use Getopt::Std;</PRE>
  235. <PRE>
  236.     # -v, -D, -o ARG, sets $opt_v, $opt_D, $opt_o
  237.     getopts("vDo:");</PRE>
  238. <PRE>
  239.     # -v, -D, -o ARG, sets $args{v}, $args{D}, $args{o}
  240.     getopts("vDo:", \%args);</PRE>
  241. <P>Or the standard Getopt::Long module to permit named arguments:</P>
  242. <PRE>
  243.     use Getopt::Long;
  244.     GetOptions( "verbose"  => \$verbose,        # --verbose
  245.                 "Debug"    => \$debug,          # --Debug
  246.                 "output=s" => \$output );       
  247.             # --output=somestring or --output somestring</PRE>
  248. <P>Another reason for preprocessing arguments is to make an empty
  249. argument list default to all files:</P>
  250. <PRE>
  251.     @ARGV = glob("*") unless @ARGV;</PRE>
  252. <P>You could even filter out all but plain, text files.  This is a bit
  253. silent, of course, and you might prefer to mention them on the way.</P>
  254. <PRE>
  255.     @ARGV = grep { -f && -T } @ARGV;</PRE>
  256. <P>If you're using the <STRONG>-n</STRONG> or <STRONG>-p</STRONG> command-line options, you
  257. should put changes to @ARGV in a <CODE>BEGIN{}</CODE> block.</P>
  258. <P>Remember that a normal <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> has special properties, in that it might
  259. call <CODE>fopen(3S)</CODE> or it might called popen(3S), depending on what its
  260. argument looks like; that's why it's sometimes called ``magic open''.
  261. Here's an example:</P>
  262. <PRE>
  263.     $pwdinfo = `domainname` =~ /^(\(none\))?$/
  264.                     ? '< /etc/passwd'
  265.                     : 'ypcat passwd |';</PRE>
  266. <PRE>
  267.     open(PWD, $pwdinfo)                 
  268.                 or die "can't open $pwdinfo: $!";</PRE>
  269. <P>This sort of thing also comes into play in filter processing.  Because
  270. <CODE><ARGV></CODE> processing employs the normal, shell-style Perl <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A>,
  271. it respects all the special things we've already seen:</P>
  272. <PRE>
  273.     $ myprogram f1 "cmd1|" - f2 "cmd2|" f3 < tmpfile</PRE>
  274. <P>That program will read from the file <EM>f1</EM>, the process <EM>cmd1</EM>, standard
  275. input (<EM>tmpfile</EM> in this case), the <EM>f2</EM> file, the <EM>cmd2</EM> command,
  276. and finally the <EM>f3</EM> file.</P>
  277. <P>Yes, this also means that if you have a file named ``-'' (and so on) in
  278. your directory, that they won't be processed as literal files by <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A>.
  279. You'll need to pass them as ``./-'' much as you would for the <EM>rm</EM> program.
  280. Or you could use <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> as described below.</P>
  281. <P>One of the more interesting applications is to change files of a certain
  282. name into pipes.  For example, to autoprocess gzipped or compressed
  283. files by decompressing them with <EM>gzip</EM>:</P>
  284. <PRE>
  285.     @ARGV = map { /^\.(gz|Z)$/ ? "gzip -dc $_ |" : $_  } @ARGV;</PRE>
  286. <P>Or, if you have the <EM>GET</EM> program installed from LWP,
  287. you can fetch URLs before processing them:</P>
  288. <PRE>
  289.     @ARGV = map { m#^\w+://# ? "GET $_ |" : $_ } @ARGV;</PRE>
  290. <P>It's not for nothing that this is called magic <CODE><ARGV></CODE>.
  291. Pretty nifty, eh?</P>
  292. <P>
  293. <HR>
  294. <H1><A NAME="open la c">Open à la C</A></H1>
  295. <P>If you want the convenience of the shell, then Perl's <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> is
  296. definitely the way to go.  On the other hand, if you want finer precision
  297. than C's simplistic <CODE>fopen(3S)</CODE> provides, then you should look to Perl's
  298. <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A>, which is a direct hook into the <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open(2)</CODE></A> system call.
  299. That does mean it's a bit more involved, but that's the price of 
  300. precision.</P>
  301. <P><A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> takes 3 (or 4) arguments.</P>
  302. <PRE>
  303.     sysopen HANDLE, PATH, FLAGS, [MASK]</PRE>
  304. <P>The HANDLE argument is a filehandle just as with <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A>.  The PATH is
  305. a literal path, one that doesn't pay attention to any greater-thans or
  306. less-thans or pipes or minuses, nor ignore white space.  If it's there,
  307. it's part of the path.  The FLAGS argument contains one or more values
  308. derived from the Fcntl module that have been or'd together using the
  309. bitwise ``|'' operator.  The final argument, the MASK, is optional; if
  310. present, it is combined with the user's current umask for the creation
  311. mode of the file.  You should usually omit this.</P>
  312. <P>Although the traditional values of read-only, write-only, and read-write
  313. are 0, 1, and 2 respectively, this is known not to hold true on some
  314. systems.  Instead, it's best to load in the appropriate constants first
  315. from the Fcntl module, which supplies the following standard flags:</P>
  316. <PRE>
  317.     O_RDONLY            Read only
  318.     O_WRONLY            Write only
  319.     O_RDWR              Read and write
  320.     O_CREAT             Create the file if it doesn't exist
  321.     O_EXCL              Fail if the file already exists
  322.     O_APPEND            Append to the file
  323.     O_TRUNC             Truncate the file
  324.     O_NONBLOCK          Non-blocking access</PRE>
  325. <P>Less common flags that are sometimes available on some operating
  326. systems include <CODE>O_BINARY</CODE>, <CODE>O_TEXT</CODE>, <CODE>O_SHLOCK</CODE>, <CODE>O_EXLOCK</CODE>,
  327. <CODE>O_DEFER</CODE>, <CODE>O_SYNC</CODE>, <CODE>O_ASYNC</CODE>, <CODE>O_DSYNC</CODE>, <CODE>O_RSYNC</CODE>,
  328. <CODE>O_NOCTTY</CODE>, <CODE>O_NDELAY</CODE> and <CODE>O_LARGEFILE</CODE>.  Consult your <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open(2)</CODE></A>
  329. manpage or its local equivalent for details.  (Note: starting from
  330. Perl release 5.6 the O_LARGEFILE flag, if available, is automatically
  331. added to the <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen()</CODE></A> flags because large files are the the default.)</P>
  332. <P>Here's how to use <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> to emulate the simple <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> calls we had
  333. before.  We'll omit the <CODE>|| die $!</CODE> checks for clarity, but make sure
  334. you always check the return values in real code.  These aren't quite
  335. the same, since <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> will trim leading and trailing white space,
  336. but you'll get the idea:</P>
  337. <P>To open a file for reading:</P>
  338. <PRE>
  339.     open(FH, "< $path");
  340.     sysopen(FH, $path, O_RDONLY);</PRE>
  341. <P>To open a file for writing, creating a new file if needed or else truncating
  342. an old file:</P>
  343. <PRE>
  344.     open(FH, "> $path");
  345.     sysopen(FH, $path, O_WRONLY | O_TRUNC | O_CREAT);</PRE>
  346. <P>To open a file for appending, creating one if necessary:</P>
  347. <PRE>
  348.     open(FH, ">> $path");
  349.     sysopen(FH, $path, O_WRONLY | O_APPEND | O_CREAT);</PRE>
  350. <P>To open a file for update, where the file must already exist:</P>
  351. <PRE>
  352.     open(FH, "+< $path");
  353.     sysopen(FH, $path, O_RDWR);</PRE>
  354. <P>And here are things you can do with <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> that you cannot do with
  355. a regular <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A>.  As you see, it's just a matter of controlling the
  356. flags in the third argument.</P>
  357. <P>To open a file for writing, creating a new file which must not previously
  358. exist:</P>
  359. <PRE>
  360.     sysopen(FH, $path, O_WRONLY | O_EXCL | O_CREAT);</PRE>
  361. <P>To open a file for appending, where that file must already exist:</P>
  362. <PRE>
  363.     sysopen(FH, $path, O_WRONLY | O_APPEND);</PRE>
  364. <P>To open a file for update, creating a new file if necessary:</P>
  365. <PRE>
  366.     sysopen(FH, $path, O_RDWR | O_CREAT);</PRE>
  367. <P>To open a file for update, where that file must not already exist:</P>
  368. <PRE>
  369.     sysopen(FH, $path, O_RDWR | O_EXCL | O_CREAT);</PRE>
  370. <P>To open a file without blocking, creating one if necessary:</P>
  371. <PRE>
  372.     sysopen(FH, $path, O_WRONLY | O_NONBLOCK | O_CREAT);</PRE>
  373. <P>
  374. <H2><A NAME="permissions la mode">Permissions à la mode</A></H2>
  375. <P>If you omit the MASK argument to <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A>, Perl uses the octal value
  376. 0666.  The normal MASK to use for executables and directories should
  377. be 0777, and for anything else, 0666.</P>
  378. <P>Why so permissive?  Well, it isn't really.  The MASK will be modified
  379. by your process's current <A HREF="../../lib/Pod/perlfunc.html#item_umask"><CODE>umask</CODE></A>.  A umask is a number representing
  380. <EM>disabled</EM> permissions bits; that is, bits that will not be turned on
  381. in the created files' permissions field.</P>
  382. <P>For example, if your <A HREF="../../lib/Pod/perlfunc.html#item_umask"><CODE>umask</CODE></A> were 027, then the 020 part would
  383. disable the group from writing, and the 007 part would disable others
  384. from reading, writing, or executing.  Under these conditions, passing
  385. <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> 0666 would create a file with mode 0640, since <CODE>0666 &~ 027</CODE>
  386. is 0640.</P>
  387. <P>You should seldom use the MASK argument to <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen()</CODE></A>.  That takes
  388. away the user's freedom to choose what permission new files will have.
  389. Denying choice is almost always a bad thing.  One exception would be for
  390. cases where sensitive or private data is being stored, such as with mail
  391. folders, cookie files, and internal temporary files.</P>
  392. <P>
  393. <HR>
  394. <H1><A NAME="obscure open tricks">Obscure Open Tricks</A></H1>
  395. <P>
  396. <H2><A NAME="reopening files (dups)">Re-Opening Files (dups)</A></H2>
  397. <P>Sometimes you already have a filehandle open, and want to make another
  398. handle that's a duplicate of the first one.  In the shell, we place an
  399. ampersand in front of a file descriptor number when doing redirections.
  400. For example, <CODE>2>&1</CODE> makes descriptor 2 (that's STDERR in Perl)
  401. be redirected into descriptor 1 (which is usually Perl's STDOUT).
  402. The same is essentially true in Perl: a filename that begins with an
  403. ampersand is treated instead as a file descriptor if a number, or as a
  404. filehandle if a string.</P>
  405. <PRE>
  406.     open(SAVEOUT, ">&SAVEERR") || die "couldn't dup SAVEERR: $!";
  407.     open(MHCONTEXT, "<&4")     || die "couldn't dup fd4: $!";</PRE>
  408. <P>That means that if a function is expecting a filename, but you don't
  409. want to give it a filename because you already have the file open, you
  410. can just pass the filehandle with a leading ampersand.  It's best to
  411. use a fully qualified handle though, just in case the function happens
  412. to be in a different package:</P>
  413. <PRE>
  414.     somefunction("&main::LOGFILE");</PRE>
  415. <P>This way if <CODE>somefunction()</CODE> is planning on opening its argument, it can
  416. just use the already opened handle.  This differs from passing a handle,
  417. because with a handle, you don't open the file.  Here you have something
  418. you can pass to open.</P>
  419. <P>If you have one of those tricky, newfangled I/O objects that the C++
  420. folks are raving about, then this doesn't work because those aren't a
  421. proper filehandle in the native Perl sense.  You'll have to use <A HREF="../../lib/Pod/perlfunc.html#item_fileno"><CODE>fileno()</CODE></A>
  422. to pull out the proper descriptor number, assuming you can:</P>
  423. <PRE>
  424.     use IO::Socket;
  425.     $handle = IO::Socket::INET->new("www.perl.com:80");
  426.     $fd = $handle->fileno;
  427.     somefunction("&$fd");  # not an indirect function call</PRE>
  428. <P>It can be easier (and certainly will be faster) just to use real
  429. filehandles though:</P>
  430. <PRE>
  431.     use IO::Socket;
  432.     local *REMOTE = IO::Socket::INET->new("www.perl.com:80");
  433.     die "can't connect" unless defined(fileno(REMOTE));
  434.     somefunction("&main::REMOTE");</PRE>
  435. <P>If the filehandle or descriptor number is preceded not just with a simple
  436. ``&'' but rather with a ``&='' combination, then Perl will not create a
  437. completely new descriptor opened to the same place using the <CODE>dup(2)</CODE>
  438. system call.  Instead, it will just make something of an alias to the
  439. existing one using the <CODE>fdopen(3S)</CODE> library call  This is slightly more
  440. parsimonious of systems resources, although this is less a concern
  441. these days.  Here's an example of that:</P>
  442. <PRE>
  443.     $fd = $ENV{"MHCONTEXTFD"};
  444.     open(MHCONTEXT, "<&=$fd")   or die "couldn't fdopen $fd: $!";</PRE>
  445. <P>If you're using magic <CODE><ARGV></CODE>, you could even pass in as a
  446. command line argument in @ARGV something like <CODE>"<&=$MHCONTEXTFD"</CODE>,
  447. but we've never seen anyone actually do this.</P>
  448. <P>
  449. <H2><A NAME="dispelling the dweomer">Dispelling the Dweomer</A></H2>
  450. <P>Perl is more of a DWIMmer language than something like Java--where DWIM
  451. is an acronym for ``do what I mean''.  But this principle sometimes leads
  452. to more hidden magic than one knows what to do with.  In this way, Perl
  453. is also filled with <EM>dweomer</EM>, an obscure word meaning an enchantment.
  454. Sometimes, Perl's DWIMmer is just too much like dweomer for comfort.</P>
  455. <P>If magic <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> is a bit too magical for you, you don't have to turn
  456. to <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A>.  To open a file with arbitrary weird characters in
  457. it, it's necessary to protect any leading and trailing whitespace.
  458. Leading whitespace is protected by inserting a <CODE>"./"</CODE> in front of a
  459. filename that starts with whitespace.  Trailing whitespace is protected
  460. by appending an ASCII NUL byte (<CODE>"\0"</CODE>) at the end off the string.</P>
  461. <PRE>
  462.     $file =~ s#^(\s)#./$1#;
  463.     open(FH, "< $file\0")   || die "can't open $file: $!";</PRE>
  464. <P>This assumes, of course, that your system considers dot the current
  465. working directory, slash the directory separator, and disallows ASCII
  466. NULs within a valid filename.  Most systems follow these conventions,
  467. including all POSIX systems as well as proprietary Microsoft systems.
  468. The only vaguely popular system that doesn't work this way is the
  469. proprietary Macintosh system, which uses a colon where the rest of us
  470. use a slash.  Maybe <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> isn't such a bad idea after all.</P>
  471. <P>If you want to use <CODE><ARGV></CODE> processing in a totally boring
  472. and non-magical way, you could do this first:</P>
  473. <PRE>
  474.     #   "Sam sat on the ground and put his head in his hands.  
  475.     #   'I wish I had never come here, and I don't want to see 
  476.     #   no more magic,' he said, and fell silent."
  477.     for (@ARGV) { 
  478.         s#^([^./])#./$1#;
  479.         $_ .= "\0";
  480.     } 
  481.     while (<>) {  
  482.         # now process $_
  483.     }</PRE>
  484. <P>But be warned that users will not appreciate being unable to use ``-''
  485. to mean standard input, per the standard convention.</P>
  486. <P>
  487. <H2><A NAME="paths as opens">Paths as Opens</A></H2>
  488. <P>You've probably noticed how Perl's <A HREF="../../lib/Pod/perlfunc.html#item_warn"><CODE>warn</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_die"><CODE>die</CODE></A> functions can
  489. produce messages like:</P>
  490. <PRE>
  491.     Some warning at scriptname line 29, <FH> line 7.</PRE>
  492. <P>That's because you opened a filehandle FH, and had read in seven records
  493. from it.  But what was the name of the file, not the handle?</P>
  494. <P>If you aren't running with <CODE>strict refs</CODE>, or if you've turn them off
  495. temporarily, then all you have to do is this:</P>
  496. <PRE>
  497.     open($path, "< $path") || die "can't open $path: $!";
  498.     while (<$path>) {
  499.         # whatever
  500.     }</PRE>
  501. <P>Since you're using the pathname of the file as its handle,
  502. you'll get warnings more like</P>
  503. <PRE>
  504.     Some warning at scriptname line 29, </etc/motd> line 7.</PRE>
  505. <P>
  506. <H2><A NAME="single argument open">Single Argument Open</A></H2>
  507. <P>Remember how we said that Perl's open took two arguments?  That was a
  508. passive prevarication.  You see, it can also take just one argument.
  509. If and only if the variable is a global variable, not a lexical, you
  510. can pass <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> just one argument, the filehandle, and it will 
  511. get the path from the global scalar variable of the same name.</P>
  512. <PRE>
  513.     $FILE = "/etc/motd";
  514.     open FILE or die "can't open $FILE: $!";
  515.     while (<FILE>) {
  516.         # whatever
  517.     }</PRE>
  518. <P>Why is this here?  Someone has to cater to the hysterical porpoises.
  519. It's something that's been in Perl since the very beginning, if not
  520. before.</P>
  521. <P>
  522. <H2><A NAME="playing with stdin and stdout">Playing with STDIN and STDOUT</A></H2>
  523. <P>One clever move with STDOUT is to explicitly close it when you're done
  524. with the program.</P>
  525. <PRE>
  526.     END { close(STDOUT) || die "can't close stdout: $!" }</PRE>
  527. <P>If you don't do this, and your program fills up the disk partition due
  528. to a command line redirection, it won't report the error exit with a
  529. failure status.</P>
  530. <P>You don't have to accept the STDIN and STDOUT you were given.  You are
  531. welcome to reopen them if you'd like.</P>
  532. <PRE>
  533.     open(STDIN, "< datafile")
  534.         || die "can't open datafile: $!";</PRE>
  535. <PRE>
  536.     open(STDOUT, "> output")
  537.         || die "can't open output: $!";</PRE>
  538. <P>And then these can be read directly or passed on to subprocesses.
  539. This makes it look as though the program were initially invoked
  540. with those redirections from the command line.</P>
  541. <P>It's probably more interesting to connect these to pipes.  For example:</P>
  542. <PRE>
  543.     $pager = $ENV{PAGER} || "(less || more)";
  544.     open(STDOUT, "| $pager")
  545.         || die "can't fork a pager: $!";</PRE>
  546. <P>This makes it appear as though your program were called with its stdout
  547. already piped into your pager.  You can also use this kind of thing
  548. in conjunction with an implicit fork to yourself.  You might do this
  549. if you would rather handle the post processing in your own program,
  550. just in a different process:</P>
  551. <PRE>
  552.     head(100);
  553.     while (<>) {
  554.         print;
  555.     }</PRE>
  556. <PRE>
  557.     sub head {
  558.         my $lines = shift || 20;
  559.         return unless $pid = open(STDOUT, "|-");
  560.         die "cannot fork: $!" unless defined $pid;
  561.         while (<STDIN>) {
  562.             print;
  563.             last if --$lines < 0;
  564.         } 
  565.         exit;
  566.     }</PRE>
  567. <P>This technique can be applied to repeatedly push as many filters on your
  568. output stream as you wish.</P>
  569. <P>
  570. <HR>
  571. <H1><A NAME="other i/o issues">Other I/O Issues</A></H1>
  572. <P>These topics aren't really arguments related to <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A>,
  573. but they do affect what you do with your open files.</P>
  574. <P>
  575. <H2><A NAME="opening nonfile files">Opening Non-File Files</A></H2>
  576. <P>When is a file not a file?  Well, you could say when it exists but
  577. isn't a plain file.   We'll check whether it's a symbolic link first,
  578. just in case.</P>
  579. <PRE>
  580.     if (-l $file || ! -f _) {
  581.         print "$file is not a plain file\n";
  582.     }</PRE>
  583. <P>What other kinds of files are there than, well, files?  Directories,
  584. symbolic links, named pipes, Unix-domain sockets, and block and character
  585. devices.  Those are all files, too--just not <EM>plain</EM> files.  This isn't
  586. the same issue as being a text file. Not all text files are plain files.
  587. Not all plain files are textfiles.  That's why there are separate <CODE>-f</CODE>
  588. and <CODE>-T</CODE> file tests.</P>
  589. <P>To open a directory, you should use the <A HREF="../../lib/Pod/perlfunc.html#item_opendir"><CODE>opendir</CODE></A> function, then
  590. process it with <A HREF="../../lib/Pod/perlfunc.html#item_readdir"><CODE>readdir</CODE></A>, carefully restoring the directory 
  591. name if necessary:</P>
  592. <PRE>
  593.     opendir(DIR, $dirname) or die "can't opendir $dirname: $!";
  594.     while (defined($file = readdir(DIR))) {
  595.         # do something with "$dirname/$file"
  596.     }
  597.     closedir(DIR);</PRE>
  598. <P>If you want to process directories recursively, it's better to use the
  599. File::Find module.  For example, this prints out all files recursively,
  600. add adds a slash to their names if the file is a directory.</P>
  601. <PRE>
  602.     @ARGV = qw(.) unless @ARGV;
  603.     use File::Find;
  604.     find sub { print $File::Find::name, -d && '/', "\n" }, @ARGV;</PRE>
  605. <P>This finds all bogus symbolic links beneath a particular directory:</P>
  606. <PRE>
  607.     find sub { print "$File::Find::name\n" if -l && !-e }, $dir;</PRE>
  608. <P>As you see, with symbolic links, you can just pretend that it is
  609. what it points to.  Or, if you want to know <EM>what</EM> it points to, then
  610. <A HREF="../../lib/Pod/perlfunc.html#item_readlink"><CODE>readlink</CODE></A> is called for:</P>
  611. <PRE>
  612.     if (-l $file) {
  613.         if (defined($whither = readlink($file))) {
  614.             print "$file points to $whither\n";
  615.         } else {
  616.             print "$file points nowhere: $!\n";
  617.         } 
  618.     }</PRE>
  619. <P>Named pipes are a different matter.  You pretend they're regular files,
  620. but their opens will normally block until there is both a reader and
  621. a writer.  You can read more about them in <A HREF="../../lib/Pod/perlipc.html#named pipes">Named Pipes in the perlipc manpage</A>.
  622. Unix-domain sockets are rather different beasts as well; they're
  623. described in <A HREF="../../lib/Pod/perlipc.html#unixdomain tcp clients and servers">Unix-Domain TCP Clients and Servers in the perlipc manpage</A>.</P>
  624. <P>When it comes to opening devices, it can be easy and it can tricky.
  625. We'll assume that if you're opening up a block device, you know what
  626. you're doing.  The character devices are more interesting.  These are
  627. typically used for modems, mice, and some kinds of printers.  This is
  628. described in <A HREF="../../lib/Pod/perlfaq8.html#how do i read and write the serial port">How do I read and write the serial port? in the perlfaq8 manpage</A>
  629. It's often enough to open them carefully:</P>
  630. <PRE>
  631.     sysopen(TTYIN, "/dev/ttyS1", O_RDWR | O_NDELAY | O_NOCTTY)
  632.                 # (O_NOCTTY no longer needed on POSIX systems)
  633.         or die "can't open /dev/ttyS1: $!";
  634.     open(TTYOUT, "+>&TTYIN")
  635.         or die "can't dup TTYIN: $!";</PRE>
  636. <PRE>
  637.     $ofh = select(TTYOUT); $| = 1; select($ofh);</PRE>
  638. <PRE>
  639.     print TTYOUT "+++at\015";
  640.     $answer = <TTYIN>;</PRE>
  641. <P>With descriptors that you haven't opened using <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A>, such as a
  642. socket, you can set them to be non-blocking using <A HREF="../../lib/Pod/perlfunc.html#item_fcntl"><CODE>fcntl</CODE></A>:</P>
  643. <PRE>
  644.     use Fcntl;
  645.     fcntl(Connection, F_SETFL, O_NONBLOCK) 
  646.         or die "can't set non blocking: $!";</PRE>
  647. <P>Rather than losing yourself in a morass of twisting, turning <A HREF="../../lib/Pod/perlfunc.html#item_ioctl"><CODE>ioctl</CODE></A>s,
  648. all dissimilar, if you're going to manipulate ttys, it's best to
  649. make calls out to the <CODE>stty(1)</CODE> program if you have it, or else use the
  650. portable POSIX interface.  To figure this all out, you'll need to read the
  651. <CODE>termios(3)</CODE> manpage, which describes the POSIX interface to tty devices,
  652. and then <A HREF="../../lib/POSIX.html">the POSIX manpage</A>, which describes Perl's interface to POSIX.  There are
  653. also some high-level modules on CPAN that can help you with these games.
  654. Check out Term::ReadKey and Term::ReadLine.</P>
  655. <P>What else can you open?  To open a connection using sockets, you won't use
  656. one of Perl's two open functions.  See <A HREF="../../lib/Pod/perlipc.html#sockets: client/server communication">Sockets: Client/Server Communication in the perlipc manpage</A> for that.  Here's an example.  Once you have it,
  657. you can use FH as a bidirectional filehandle.</P>
  658. <PRE>
  659.     use IO::Socket;
  660.     local *FH = IO::Socket::INET->new("www.perl.com:80");</PRE>
  661. <P>For opening up a URL, the LWP modules from CPAN are just what
  662. the doctor ordered.  There's no filehandle interface, but
  663. it's still easy to get the contents of a document:</P>
  664. <PRE>
  665.     use LWP::Simple;
  666.     $doc = get('<A HREF="http://www.linpro.no/lwp/">http://www.linpro.no/lwp/</A>');</PRE>
  667. <P>
  668. <H2><A NAME="binary files">Binary Files</A></H2>
  669. <P>On certain legacy systems with what could charitably be called terminally
  670. convoluted (some would say broken) I/O models, a file isn't a file--at
  671. least, not with respect to the C standard I/O library.  On these old
  672. systems whose libraries (but not kernels) distinguish between text and
  673. binary streams, to get files to behave properly you'll have to bend over
  674. backwards to avoid nasty problems.  On such infelicitous systems, sockets
  675. and pipes are already opened in binary mode, and there is currently no
  676. way to turn that off.  With files, you have more options.</P>
  677. <P>Another option is to use the <A HREF="../../lib/Pod/perlfunc.html#item_binmode"><CODE>binmode</CODE></A> function on the appropriate
  678. handles before doing regular I/O on them:</P>
  679. <PRE>
  680.     binmode(STDIN);
  681.     binmode(STDOUT);
  682.     while (<STDIN>) { print }</PRE>
  683. <P>Passing <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> a non-standard flag option will also open the file in
  684. binary mode on those systems that support it.  This is the equivalent of
  685. opening the file normally, then calling <A HREF="../../lib/Pod/perlfunc.html#item_binmode"><CODE>binmode</CODE></A>ing on the handle.</P>
  686. <PRE>
  687.     sysopen(BINDAT, "records.data", O_RDWR | O_BINARY)
  688.         || die "can't open records.data: $!";</PRE>
  689. <P>Now you can use <A HREF="../../lib/Pod/perlfunc.html#item_read"><CODE>read</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_print"><CODE>print</CODE></A> on that handle without worrying
  690. about the system non-standard I/O library breaking your data.  It's not
  691. a pretty picture, but then, legacy systems seldom are.  CP/M will be
  692. with us until the end of days, and after.</P>
  693. <P>On systems with exotic I/O systems, it turns out that, astonishingly
  694. enough, even unbuffered I/O using <A HREF="../../lib/Pod/perlfunc.html#item_sysread"><CODE>sysread</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_syswrite"><CODE>syswrite</CODE></A> might do
  695. sneaky data mutilation behind your back.</P>
  696. <PRE>
  697.     while (sysread(WHENCE, $buf, 1024)) {
  698.         syswrite(WHITHER, $buf, length($buf));
  699.     }</PRE>
  700. <P>Depending on the vicissitudes of your runtime system, even these calls
  701. may need <A HREF="../../lib/Pod/perlfunc.html#item_binmode"><CODE>binmode</CODE></A> or <CODE>O_BINARY</CODE> first.  Systems known to be free of
  702. such difficulties include Unix, the Mac OS, Plan9, and Inferno.</P>
  703. <P>
  704. <H2><A NAME="file locking">File Locking</A></H2>
  705. <P>In a multitasking environment, you may need to be careful not to collide
  706. with other processes who want to do I/O on the same files as others
  707. are working on.  You'll often need shared or exclusive locks
  708. on files for reading and writing respectively.  You might just
  709. pretend that only exclusive locks exist.</P>
  710. <P>Never use the existence of a file <CODE>-e $file</CODE> as a locking indication,
  711. because there is a race condition between the test for the existence of
  712. the file and its creation.  Atomicity is critical.</P>
  713. <P>Perl's most portable locking interface is via the <A HREF="../../lib/Pod/perlfunc.html#item_flock"><CODE>flock</CODE></A> function,
  714. whose simplicity is emulated on systems that don't directly support it,
  715. such as SysV or WindowsNT.  The underlying semantics may affect how
  716. it all works, so you should learn how <A HREF="../../lib/Pod/perlfunc.html#item_flock"><CODE>flock</CODE></A> is implemented on your
  717. system's port of Perl.</P>
  718. <P>File locking <EM>does not</EM> lock out another process that would like to
  719. do I/O.  A file lock only locks out others trying to get a lock, not
  720. processes trying to do I/O.  Because locks are advisory, if one process
  721. uses locking and another doesn't, all bets are off.</P>
  722. <P>By default, the <A HREF="../../lib/Pod/perlfunc.html#item_flock"><CODE>flock</CODE></A> call will block until a lock is granted.
  723. A request for a shared lock will be granted as soon as there is no
  724. exclusive locker.  A request for a exclusive lock will be granted as
  725. soon as there is no locker of any kind.  Locks are on file descriptors,
  726. not file names.  You can't lock a file until you open it, and you can't
  727. hold on to a lock once the file has been closed.</P>
  728. <P>Here's how to get a blocking shared lock on a file, typically used
  729. for reading:</P>
  730. <PRE>
  731.     use 5.004;
  732.     use Fcntl qw(:DEFAULT :flock);
  733.     open(FH, "< filename")  or die "can't open filename: $!";
  734.     flock(FH, LOCK_SH)      or die "can't lock filename: $!";
  735.     # now read from FH</PRE>
  736. <P>You can get a non-blocking lock by using <CODE>LOCK_NB</CODE>.</P>
  737. <PRE>
  738.     flock(FH, LOCK_SH | LOCK_NB)
  739.         or die "can't lock filename: $!";</PRE>
  740. <P>This can be useful for producing more user-friendly behaviour by warning
  741. if you're going to be blocking:</P>
  742. <PRE>
  743.     use 5.004;
  744.     use Fcntl qw(:DEFAULT :flock);
  745.     open(FH, "< filename")  or die "can't open filename: $!";
  746.     unless (flock(FH, LOCK_SH | LOCK_NB)) {
  747.         $| = 1;
  748.         print "Waiting for lock...";
  749.         flock(FH, LOCK_SH)  or die "can't lock filename: $!";
  750.         print "got it.\n"
  751.     } 
  752.     # now read from FH</PRE>
  753. <P>To get an exclusive lock, typically used for writing, you have to be
  754. careful.  We <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> the file so it can be locked before it gets
  755. emptied.  You can get a nonblocking version using <CODE>LOCK_EX | LOCK_NB</CODE>.</P>
  756. <PRE>
  757.     use 5.004;
  758.     use Fcntl qw(:DEFAULT :flock);
  759.     sysopen(FH, "filename", O_WRONLY | O_CREAT)
  760.         or die "can't open filename: $!";
  761.     flock(FH, LOCK_EX)
  762.         or die "can't lock filename: $!";
  763.     truncate(FH, 0)
  764.         or die "can't truncate filename: $!";
  765.     # now write to FH</PRE>
  766. <P>Finally, due to the uncounted millions who cannot be dissuaded from
  767. wasting cycles on useless vanity devices called hit counters, here's
  768. how to increment a number in a file safely:</P>
  769. <PRE>
  770.     use Fcntl qw(:DEFAULT :flock);</PRE>
  771. <PRE>
  772.     sysopen(FH, "numfile", O_RDWR | O_CREAT)
  773.         or die "can't open numfile: $!";
  774.     # autoflush FH
  775.     $ofh = select(FH); $| = 1; select ($ofh);
  776.     flock(FH, LOCK_EX)
  777.         or die "can't write-lock numfile: $!";</PRE>
  778. <PRE>
  779.     $num = <FH> || 0;
  780.     seek(FH, 0, 0)
  781.         or die "can't rewind numfile : $!";
  782.     print FH $num+1, "\n"
  783.         or die "can't write numfile: $!";</PRE>
  784. <PRE>
  785.     truncate(FH, tell(FH))
  786.         or die "can't truncate numfile: $!";
  787.     close(FH)
  788.         or die "can't close numfile: $!";</PRE>
  789. <P>
  790. <HR>
  791. <H1><A NAME="see also">SEE ALSO</A></H1>
  792. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_sysopen"><CODE>sysopen</CODE></A> function in perlfunc(1);
  793. the standard open(2), dup(2), fopen(3), and <CODE>fdopen(3)</CODE> manpages;
  794. the POSIX documentation.</P>
  795. <P>
  796. <HR>
  797. <H1><A NAME="author and copyright">AUTHOR and COPYRIGHT</A></H1>
  798. <P>Copyright 1998 Tom Christiansen.</P>
  799. <P>When included as part of the Standard Version of Perl, or as part of
  800. its complete documentation whether printed or otherwise, this work may
  801. be distributed only under the terms of Perl's Artistic License.  Any
  802. distribution of this file or derivatives thereof outside of that
  803. package require that special arrangements be made with copyright
  804. holder.</P>
  805. <P>Irrespective of its distribution, all code examples in these files are
  806. hereby placed into the public domain.  You are permitted and
  807. encouraged to use this code in your own programs for fun or for profit
  808. as you see fit.  A simple comment in the code giving credit would be
  809. courteous but is not required.</P>
  810. <P>
  811. <HR>
  812. <H1><A NAME="history">HISTORY</A></H1>
  813. <P>First release: Sat Jan  9 08:09:11 MST 1999</P>
  814. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  815. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  816. <STRONG><P CLASS=block> perlopentut - tutorial on opening things in Perl</P></STRONG>
  817. </TD></TR>
  818. </TABLE>
  819.  
  820. </BODY>
  821.  
  822. </HTML>
  823.