This is my patch patch.1i for perl5.001.
[p5sagit/p5-mst-13.2.git] / vms / perlvms.pod
CommitLineData
748a9306 1=head1 Notes on Perl 5 for VMS
a0d0e21e 2
748a9306 3Gathered below are notes describing details of Perl 5's
4behavior on VMS. They are a supplement to the regular Perl 5
5documentation, so we have focussed on the ways in which Perl
65 functions differently under VMS than it does under Unix,
7and on the interactions between Perl and the rest of the
a0d0e21e 8operating system. We haven't tried to duplicate complete
748a9306 9descriptions of Perl features from the main Perl
a0d0e21e 10documentation, which can be found in the F<[.pod]>
748a9306 11subdirectory of the Perl distribution.
a0d0e21e 12
13We hope these notes will save you from confusion and lost
748a9306 14sleep when writing Perl scripts on VMS. If you find we've
a0d0e21e 15missed something you think should appear here, please don't
16hesitate to drop a line to vmsperl@genetics.upenn.edu.
17
748a9306 18=head1 Organization of Perl
19
20=head2 Perl Images
21
22During the installation process, three Perl images are produced.
23F<Miniperl.Exe> is an executable image which contains all of
24the basic functionality of Perl, but cannot take advantage of
25Perl extensions. It is used to generate several files needed
26to build the complete Perl and various extensions. Once you've
27finished installing Perl, you can delete this image.
28
29Most of the complete Perl resides in the shareable image
30F<PerlShr.Exe>, which provides a core to which the Perl executable
31image and all Perl extensions are linked. You should place this
32image in F<Sys$Share>, or define the logical name F<PerlShr> to
33translate to the full file specification of this image. It should
34be world readable. (Remember that if a user has execute only access
35to F<PerlShr>, VMS will treat it as if it were a privileged shareable
36image, and will therefore require all downstream shareable images to be
37INSTALLed, etc.)
38
39
40Finally, F<Perl.Exe> is an executable image containing the main
41entry point for Perl, as well as some initialization code. It
42should be placed in a public directory, and made world executable.
43In order to run Perl with command line arguments, you should
44define a foreign command to invoke this image.
45
46=head2 Perl Extensions
47
48Perl extensions are packages which provide both XS and Perl code
49to add new functionality to perl. (XS is a meta-language which
50simplifies writing C code which interacts with Perl, see
51L<perlapi> for more details.) The Perl code for an
52extension is treated like any other library module - it's
53made available in your script through the appropriate
54C<use> or C<require> statement, and usually defines a Perl
55package containing the extension.
56
57The portion of the extension provided by the XS code may be
58connected to the rest of Perl in either of two ways. In the
59B<static> configuration, the object code for the extension is
60linked directly into F<PerlShr.Exe>, and is initialized whenever
61Perl is invoked. In the B<dynamic> configuration, the extension's
62machine code is placed into a separate shareable image, which is
63mapped by Perl's DynaLoader when the extension is C<use>d or
64C<require>d in your script. This allows you to maintain the
65extension as a separate entity, at the cost of keeping track of the
66additional shareable image. Most extensions can be set up as either
67static or dynamic.
68
69The source code for an extension usually resides in its own
70directory. At least three files are generally provided:
71I<Extshortname>F<.xs> (where I<Extshortname> is the portion of
72the extension's name following the last C<::>), containing
73the XS code, I<Extshortname>F<.pm>, the Perl library module
74for the extension, and F<Makefile.PL>, a Perl script which uses
75the C<MakeMaker> library modules supplied with Perl to generate
76a F<Descrip.MMS> file for the extension.
77
78=head3 Installing static extensions
79
80Since static extensions are incorporated directly into
81F<PerlShr.Exe>, you'll have to rebuild Perl to incorporate a
82new extension. You should edit the main F<Descrip.MMS> or F<Makefile>
83you use to build Perl, adding the extension's name to the C<ext>
84macro, and the extension's object file to the C<extobj> macro.
85You'll also need to build the extension's object file, either
86by adding dependencies to the main F<Descrip.MMS>, or using a
87separate F<Descrip.MMS> for the extension. Then, rebuild
88F<PerlShr.Exe> to incorporate the new code.
89
90Finally, you'll need to copy the extension's Perl library
91module to the F<[.>I<Extname>F<]> subdirectory under one
92of the directories in C<@INC>, where I<Extname> is the name
93of the extension, with all C<::> replaced by C<.> (e.g.
94the library module for extension Foo::Bar would be copied
95to a F<[.Foo.Bar]> subdirectory).
96
97=head3 Installic dynamic extensions
98
99First, you'll need to compile the XS code into a shareable image,
100either by hand or using the F<Descrip.MMS> supplied with the
101extension. If you're building the shareable image by hand, please
102note the following points:
103 - The shareable image must be linked to F<PerlShr.Exe>, so it
104 has access to Perl's global variables and routines. In
105 order to specify the correct attributes for psects in
106 F<PerlShr.Exe>, you should include the linker options file
107 F<PerlShr_Attr.Opt> in the Link command. (This file is
108 generated when F<PerlShr.Exe> is built, and is found in the
109 main Perl source directory.
110 - The entry point for the C<boot_>I<Extname> routine (where
111 I<Extname> is the name of the extension, with all C<::>
112 replaced by C<__>) must be a universal symbol. No other
113 universal symbols are required to use the shareable image
114 with Perl, though you may want to include additional
115 universal symbols if you plan to share code or data among
116 different extensions.
117The shareable image can be placed in any of several locations:
118 - the F<[.Auto.>I<Extname>F<]> subdirectory of one of
119 the directories in C<@INC>, where I<Extname> is the
120 name of the extension, with each C<::> translated to C<.>
121 (e.g. for extension Foo::Bar, you would use the
122 F<[.Auto.Foo.Bar]> subdirectory), or
123 - one of the directories in C<@INC>, or
124 - a directory which the extensions Perl library module
125 passes to the DynaLoader when asking it to map
126 the shareable image, or
127 - F<Sys$Share> or F<Sys$Library>.
128If the shareable image isn't in any of these places, you'll need
129to define a logical name I<Extshortname>, where I<Extshortname>
130is the portion of the extension's name after the last C<::>, which
131translates to the full file specification of the shareable image.
132
133Once you've got the shareable image set up, you should copy the
134extension's Perl library module to the appropriate library directory
135(see the section above on installing static extensions).
136
137=head1 Installation
138
139Directions for building and installing Perl 5 can be found in
a0d0e21e 140the file F<ReadMe.VMS> in the main source directory of the
748a9306 141Perl distribution..
a0d0e21e 142
748a9306 143=head1 File specifications
a0d0e21e 144
748a9306 145We have tried to make Perl aware of both VMS-style and Unix-
a0d0e21e 146style file specifications wherever possible. You may use
147either style, or both, on the command line and in scripts,
148but you may not combine the two styles within a single fle
149specfication. Filenames are, of course, still case-
748a9306 150insensitive. For consistency, most Perl routines return
a0d0e21e 151filespecs using lower case latters only, regardless of the
152case used in the arguments passed to them. (This is true
748a9306 153only when running under VMS; Perl respects the case-
a0d0e21e 154sensitivity of OSs like Unix.)
155
748a9306 156We've tried to minimize the dependence of Perl library
a0d0e21e 157modules on Unix syntax, but you may find that some of these,
158as well as some scripts written for Unix systems, will
159require that you use Unix syntax, since they will assume that
160'/' is the directory separator, etc. If you find instances
748a9306 161of this in the Perl distribution itself, please let us know,
a0d0e21e 162so we can try to work around them.
163
748a9306 164=head1 Command line redirection
a0d0e21e 165
166Perl for VMS supports redirection of input and output on the
167command line, using a subset of Bourne shell syntax:
168 <F<file> reads stdin from F<file>,
169 >F<file> writes stdout to F<file>,
170 >>F<file> appends stdout to F<file>,
748a9306 171 2>F<file> writes stderr to F<file>, and
a0d0e21e 172 2>>F<file> appends stderr to F<file>.
173
174In addition, output may be piped to a subprocess, using the
175character '|'. Anything after this character on the command
176line is passed to a subprocess for execution; the subprocess
748a9306 177takes the output of Perl as its input.
a0d0e21e 178
179Finally, if the command line ends with '&', the entire
180command is run in the background as an asynchronous
181subprocess.
182
748a9306 183=head1 Pipes
a0d0e21e 184
748a9306 185Input and output pipes to Perl filehandles are supported; the
a0d0e21e 186"file name" is passed to lib$spawn() for asynchronous
187execution. You should be careful to close any pipes you have
748a9306 188opened in a Perl script, lest you leave any "orphaned"
189subprocesses around when Perl exits.
a0d0e21e 190
191You may also use backticks to invoke a DCL subprocess, whose
192output is used as the return value of the expression. The
193string between the backticks is passed directly to lib$spawn
748a9306 194as the command to execute. In this case, Perl will wait for
a0d0e21e 195the subprocess to complete before continuing.
196
748a9306 197=head1 Wildcard expansion
a0d0e21e 198
199File specifications containing wildcards are allowed both on
748a9306 200the command line and within Perl globs (e.g. <C<*.c>>). If
a0d0e21e 201the wildcard filespec uses VMS syntax, the resultant
202filespecs will follow VMS syntax; if a Unix-style filespec is
203passed in, Unix-style filespecs will be returned..
204
205If the wildcard filespec contains a device or directory
206specification, then the resultant filespecs will also contain
207a device and directory; otherwise, device and directory
208information are removed. VMS-style resultant filespecs will
209contain a full device and directory, while Unix-style
210resultant filespecs will contain only as much of a directory
211path as was present in the input filespec. For example, if
212your default directory is Perl_Root:[000000], the expansion
213of C<[.t]*.*> will yield filespecs like
214"perl_root:[t]base.dir", while the expansion of C<t/*/*> will
215yield filespecs like "t/base.dir". (This is done to match
216the behavior of glob expansion performed by Unix shells.)
217
218Similarly, the resultant filespec will the file version only
219if one was present in the input filespec.
220
748a9306 221=head1 PERL5LIB and PERLLIB
222
223The PERL5LIB and PERLLIB logical names work as
224documented L<perl>, except that the element
225separator is '|' instead of ':'. The directory
226specifications may use either VMS or Unix syntax.
227
228=head1 %ENV
a0d0e21e 229
230Reading the elements of the %ENV array returns the
231translation of the logical name specified by the key,
232according to the normal search order of access modes and
233logical name tables. In addition, the keys C<home>,
234C<path>,C<term>, and C<user> return the CRTL "environment
235variables" of the same names. The key C<default> returns the
236current default device and directory specification.
237
238Setting an element of %ENV defines a supervisor-mode logical
748a9306 239name in the process logical name table. C<Undef>ing or
240C<delete>ing an element of %ENV deletes the equivalent user-
a0d0e21e 241mode or supervisor-mode logical name from the process logical
748a9306 242name table. If you use C<undef>, the %ENV element remains
243empty. If you use C<delete>, another attempt is made at
a0d0e21e 244logical name translation after the deletion, so an inner-mode
245logical name or a name in another logical name table will
246replace the logical name just deleted.
247
248In all operations on %ENV, the key string is treated as if it
249were entirely uppercase, regardless of the case actually
748a9306 250specified in the Perl expression.
a0d0e21e 251
748a9306 252=head1 Perl functions
a0d0e21e 253
254As of the time this document was last revised, the following
748a9306 255Perl functions were implemented in the VMS port of Perl
a0d0e21e 256(functions marked with * are discussed in more detail below):
257
258 file tests*, abs, alarm, atan, binmode*, bless,
259 caller, chdir, chmod, chown, chomp, chop, chr,
260 close, closedir, cos, defined, delete, die, do,
748a9306 261 each, endpwent, eof, eval, exec*, exists, exit,
262 exp, fileno, fork*, getc, getpwent*, getpwnam*,
263 getpwuid*, glob, goto, grep, hex, import, index,
a0d0e21e 264 int, join, keys, kill, last, lc, lcfirst, length,
265 local, localtime, log, m//, map, mkdir, my, next,
266 no, oct, open, opendir, ord, pack, pipe, pop, pos,
267 print, printf, push, q//, qq//, qw//, qx//,
268 quotemeta, rand, read, readdir, redo, ref, rename,
269 require, reset, return, reverse, rewinddir, rindex,
270 rmdir, s///, scalar, seek, seekdir, select(internal)*,
748a9306 271 setpwent, shift, sin, sleep, sort, splice, split,
272 sprintf, sqrt, srand, stat, study, substr, sysread,
273 system*, syswrite, tell, telldir, tie, time, times*,
16d20bd9 274 tr///, uc, ucfirst, umask, undef, unlink*, unpack,
748a9306 275 untie, unshift, use, utime*, values, vec, wait,
276 waitpid*, wantarray, warn, write, y///
a0d0e21e 277
278The following functions were not implemented in the VMS port,
279and calling them produces a fatal error (usually) or
280undefined behavior (rarely, we hope):
281
282 chroot, crypt, dbmclose, dbmopen, dump, fcntl,
283 flock, getlogin, getpgrp, getppid, getpriority,
748a9306 284 getgrent, kill, getgrgid, getgrnam, setgrent,
285 endgrent, gmtime, ioctl, link, lstst, msgctl,
286 msgget, msgsend, msgrcv, readlink,
a0d0e21e 287 select(system call), semctl, semget, semop,
288 setpgrp, setpriority, shmctl, shmget, shmread,
748a9306 289 shmwrite, socketpair, symlink, syscall, truncate
a0d0e21e 290
291The following functions may or may not be implemented,
292depending on what type of socket support you've built into
748a9306 293your copy of Perl:
a0d0e21e 294 accept, bind, connect, getpeername,
295 gethostbyname, getnetbyname, getprotobyname,
296 getservbyname, gethostbyaddr, getnetbyaddr,
297 getprotobynumber, getservbyport, gethostent,
298 getnetent, getprotoent, getservent, sethostent,
299 setnetent, setprotoent, setservent, endhostent,
300 endnetent, endprotoent, endservent, getsockname,
301 getsockopt, listen, recv, send, setsockopt,
302 shutdown, socket
303
304
305=item File tests
306
748a9306 307The tests C<-b>, C<-B>, C<-c>, C<-C>, C<-d>, C<-e>, C<-f>,
308C<-o>, C<-M>, C<-s>, C<-S>, C<-t>, C<-T>, and C<-z> work as
309advertised. The return values for C<-r>, C<-w>, and C<-x>
310tell you whether you can actually access the file; this may
311not reflect the UIC-based file protections. Since real and
312effective UIC don't differ under VMS, C<-O>, C<-R>, C<-W>,
313and C<-X> are equivalent to C<-o>, C<-r>, C<-w>, and C<-x>.
314Similarly, several other tests, including C<-A>, C<-g>, C<-k>,
315C<-l>, C<-p>, and C<-u>, aren't particularly meaningful under
316VMS, and the values returned by these tests reflect whatever
317your CRTL C<stat()> routine does to the equivalent bits in the
318st_mode field. Finally, C<-d> returns true if passed a device
319specification without an explicit directory (e.g. C<DUA1:>), as
320well as if passed a directory.
321
322=item binmode FILEHANDLE
323
324The C<binmode> operator has no effect under VMS. It will
a0d0e21e 325return TRUE whenever called, but will not affect I/O
326operations on the filehandle given as its argument.
327
748a9306 328=item exec LIST
a0d0e21e 329
748a9306 330The C<exec> operator behaves in one of two different ways.
331If called after a call to C<fork>, it will invoke the CRTL
332C<execv()> routine, passing its arguments to the subprocess
333created by C<fork> for execution. In this case, it is
334subject to all limitations that affect C<execv()>. (In
a0d0e21e 335particular, this usually means that the command executed in
336the subprocess must be an image compiled from C source code,
337and that your options for passing file descriptors and signal
338handlers to the subprocess are limited.)
339
748a9306 340If the call to C<exec> does not follow a call to C<fork>, it
341will cause Perl to exit, and to invoke the command given as
342an argument to C<exec> via C<lib$do_command>. If the argument
a0d0e21e 343begins with a '$' (other than as part of a filespec), then it
344is executed as a DCL command. Otherwise, the first token on
345the command line is treated as the filespec of an image to
346run, and an attempt is made to invoke it (using F<.Exe> and
347the process defaults to expand the filespec) and pass the
748a9306 348rest of C<exec>'s argument to it as parameters.
a0d0e21e 349
748a9306 350You can use C<exec> in both ways within the same script, as
351long as you call C<fork> and C<exec> in pairs. Perl
352keeps track of how many times C<fork> and C<exec> have been
353called, and will call the CRTL C<execv()> routine if there have
354previously been more calls to C<fork> than to C<exec>.
a0d0e21e 355
356=item fork
357
748a9306 358The C<fork> operator works in the same way as the CRTL
359C<vfork()> routine, which is quite different under VMS than
360under Unix. Specifically, while C<fork> returns 0 after it
361is called and the subprocess PID after C<exec> is called, in
a0d0e21e 362both cases the thread of execution is within the parent
363process, so there is no opportunity to perform operations in
748a9306 364the subprocess before calling C<exec>.
a0d0e21e 365
748a9306 366In general, the use of C<fork> and C<exec> to create
a0d0e21e 367subprocess is not recommended under VMS; wherever possible,
748a9306 368use the C<system> operator or piped filehandles instead.
369
370=item getpwent
371=item getpwnam
372=item getpwuid
373
374These operators obtain the information described in L<perlfunc>,
375if you have the privileges necessary to retrieve the named user's
376UAF information via C<sys$getuai>. If not, then only the C<$name>,
377C<$uid>, and C<$gid> items are returned. The C<$dir> item contains
378the login directory in VMS syntax, while the C<$comment> item
379contains the login directory in Unix syntax. The C<$gcos> item
380contains the owner field from the UAF record. The C<$quota>
381item is not used.
a0d0e21e 382
748a9306 383=item stat EXPR
a0d0e21e 384
748a9306 385Since VMS keeps track of files according to a different scheme
386than Unix, it's not really possible to represent the file's ID
387in the C<st_dev> and C<st_ino> fields of a C<struct stat>. Perl
388tries its best, though, and the values it uses are pretty unlikely
389to be the same for two different files. We can't guarantee this,
390though, so caveat scriptor.
391
392=item system LIST
393
394The C<system> operator creates a subprocess, and passes its
a0d0e21e 395arguments to the subprocess for execution as a DCL command.
396Since the subprocess is created directly via lib$spawn, any
748a9306 397valid DCL command string may be specified. If LIST consists
398of the empty string, C<system> spawns an interactive DCL subprocess,
399in the same fashion as typiing B<SPAWN> at the DCL prompt.
400Perl waits for the subprocess to complete before continuing
401execution in the current process.
a0d0e21e 402
403=item times
404
748a9306 405The array returned by the C<times> operator is divided up
406according to the same rules the CRTL C<times()> routine.
a0d0e21e 407Therefore, the "system time" elements will always be 0, since
408there is no difference between "user time" and "system" time
409under VMS, and the time accumulated by subprocess may or may
410not appear separately in the "child time" field, depending on
748a9306 411whether L<times> keeps track of subprocesses separately. Note
412especially that the VAXCRTL (at least) keeps track only of
413subprocesses spawned using L<fork> and L<exec>; it will not
414accumulate the times of suprocesses spawned via pipes, L<system>,
415or backticks.
416
16d20bd9 417=item unlink LIST
418
419C<unlink> will delete the highest version of a file only; in
420order to delete all versions, you need to say
421 1 while (unlink LIST);
422You may need to make this change to scripts written for a
423Unix system which expect that after a call to C<unlink>,
424no files with the names passed to C<unlink> will exist.
425(Note: This can be changed at compile time by including
426C<#define UNLINK_ALL_VERSIONS> in config.h.
427
428C<unlink> will delete a file if at all possible, even if it
429requires changing file protection (though it won't try to
430change the protection of the parent directory). You can tell
431whether you've got explicit delete access to a file by using the
432C<VMS::Filespec::candelete> operator. For instance, in order
433to delete only files to which you have delete access, you could
434say something like
435 sub safe_unlink {
436 my($file,$num);
437 foreach $file (@_) {
438 next unless VMS::Filespec::candelete($file);
439 $num += unlink $file;
440 }
441 $num;
442 }
443Finally, if C<unlink> has to change the file protection to
444delete the file, and you interrupt it in midstream, the file
445may be left intact, but with a changed ACL allowing you delete
446access.
447
748a9306 448=item utime LIST
449
450Since ODS-2, the VMS file structure for disk files, does not keep
451track of access times, this operator changes only the modification
452time of the file (VMS revision date).
453
454=item waitpid PID,FLAGS
455
456If PID is a subprocess started by a piped L<open>, C<waitpid>
457will wait for that subprocess, and return its final
458status value. If PID is a subprocess created in some other way
459(e.g. SPAWNed before Perl was invoked), or is not a subprocess of
460the current process, C<waitpid> will check once per second whether
461the process has completed, and when it has, will return 0. (If PID
462specifies a process that isn't a subprocess of the current process,
463and you invoked Perl with the C<-w> switch, a warning will be issued.)
464
465The FLAGS argument is ignored in all cases.
a0d0e21e 466
748a9306 467=head1 Revision date
a0d0e21e 468
748a9306 469This document was last updated on 16-Dec-1994, for Perl 5,
a0d0e21e 470patchlevel 0.