This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: Exceptions in IPC::Open2
[perl5.git] / pod / perlfaq3.pod
CommitLineData
68dc0745 1=head1 NAME
2
fc36a67e 3perlfaq3 - Programming Tools ($Revision: 1.22 $, $Date: 1997/04/24 22:43:42 $)
68dc0745 4
5=head1 DESCRIPTION
6
7This section of the FAQ answers questions related to programmer tools
8and programming support.
9
10=head2 How do I do (anything)?
11
12Have you looked at CPAN (see L<perlfaq2>)? The chances are that
13someone has already written a module that can solve your problem.
46fc3d4c 14Have you read the appropriate man pages? Here's a brief index:
68dc0745 15
16 Objects perlref, perlmod, perlobj, perltie
17 Data Structures perlref, perllol, perldsc
f102b883 18 Modules perlmod, perlmodlib, perlsub
68dc0745 19 Regexps perlre, perlfunc, perlop
20 Moving to perl5 perltrap, perl
21 Linking w/C perlxstut, perlxs, perlcall, perlguts, perlembed
22 Various http://www.perl.com/CPAN/doc/FMTEYEWTK/index.html
23 (not a man-page but still useful)
24
46fc3d4c 25L<perltoc> provides a crude table of contents for the perl man page set.
68dc0745 26
27=head2 How can I use Perl interactively?
28
29The typical approach uses the Perl debugger, described in the
46fc3d4c 30perldebug(1) man page, on an "empty" program, like this:
68dc0745 31
32 perl -de 42
33
34Now just type in any legal Perl code, and it will be immediately
35evaluated. You can also examine the symbol table, get stack
36backtraces, check variable values, set breakpoints, and other
37operations typically found in symbolic debuggers
38
39=head2 Is there a Perl shell?
40
41In general, no. The Shell.pm module (distributed with perl) makes
42perl try commands which aren't part of the Perl language as shell
43commands. perlsh from the source distribution is simplistic and
44uninteresting, but may still be what you want.
45
46=head2 How do I debug my Perl programs?
47
48Have you used C<-w>?
49
50Have you tried C<use strict>?
51
52Did you check the returns of each and every system call?
53
54Did you read L<perltrap>?
55
56Have you tried the Perl debugger, described in L<perldebug>?
57
58=head2 How do I profile my Perl programs?
59
60You should get the Devel::DProf module from CPAN, and also use
61Benchmark.pm from the standard distribution. Benchmark lets you time
62specific portions of your code, while Devel::DProf gives detailed
63breakdowns of where your code spends its time.
64
65=head2 How do I cross-reference my Perl programs?
66
67The B::Xref module, shipped with the new, alpha-release Perl compiler
68(not the general distribution), can be used to generate
69cross-reference reports for Perl programs.
70
71 perl -MO=Xref[,OPTIONS] foo.pl
72
73=head2 Is there a pretty-printer (formatter) for Perl?
74
75There is no program that will reformat Perl as much as indent(1) will
76do for C. The complex feedback between the scanner and the parser
77(this feedback is what confuses the vgrind and emacs programs) makes it
78challenging at best to write a stand-alone Perl parser.
79
80Of course, if you simply follow the guidelines in L<perlstyle>, you
81shouldn't need to reformat.
82
83Your editor can and should help you with source formatting. The
84perl-mode for emacs can provide a remarkable amount of help with most
85(but not all) code, and even less programmable editors can provide
86significant assistance.
87
7b8d334a 88If you are used to using vgrind program for printing out nice code to
68dc0745 89a laser printer, you can take a stab at this using
90http://www.perl.com/CPAN/doc/misc/tips/working.vgrind.entry, but the
91results are not particularly satisfying for sophisticated code.
92
93=head2 Is there a ctags for Perl?
94
95There's a simple one at
96http://www.perl.com/CPAN/authors/id/TOMC/scripts/ptags.gz which may do
97the trick.
98
99=head2 Where can I get Perl macros for vi?
100
101For a complete version of Tom Christiansen's vi configuration file,
102see ftp://ftp.perl.com/pub/vi/toms.exrc, the standard benchmark file
103for vi emulators. This runs best with nvi, the current version of vi
104out of Berkeley, which incidentally can be built with an embedded Perl
105interpreter -- see http://www.perl.com/CPAN/src/misc .
106
107=head2 Where can I get perl-mode for emacs?
108
109Since Emacs version 19 patchlevel 22 or so, there have been both a
110perl-mode.el and support for the perl debugger built in. These should
111come with the standard Emacs 19 distribution.
112
113In the perl source directory, you'll find a directory called "emacs",
114which contains a cperl-mode that color-codes keywords, provides
115context-sensitive help, and other nifty things.
116
117Note that the perl-mode of emacs will have fits with "main'foo"
118(single quote), and mess up the indentation and hilighting. You
119should be using "main::foo", anyway.
120
121=head2 How can I use curses with Perl?
122
123The Curses module from CPAN provides a dynamically loadable object
124module interface to a curses library.
125
126=head2 How can I use X or Tk with Perl?
127
128Tk is a completely Perl-based, object-oriented interface to the Tk
129toolkit that doesn't force you to use Tcl just to get at Tk. Sx is an
130interface to the Athena Widget set. Both are available from CPAN.
131
132=head2 How can I generate simple menus without using CGI or Tk?
133
134The http://www.perl.com/CPAN/authors/id/SKUNZ/perlmenu.v4.0.tar.gz
135module, which is curses-based, can help with this.
136
137=head2 Can I dynamically load C routines into Perl?
138
139If your system architecture supports it, then the standard perl
140on your system should also provide you with this via the
141DynaLoader module. Read L<perlxstut> for details.
142
143=head2 What is undump?
144
145See the next questions.
146
147=head2 How can I make my Perl program run faster?
148
149The best way to do this is to come up with a better algorithm.
150This can often make a dramatic difference. Chapter 8 in the Camel
151has some efficiency tips in it you might want to look at.
152
153Other approaches include autoloading seldom-used Perl code. See the
154AutoSplit and AutoLoader modules in the standard distribution for
155that. Or you could locate the bottleneck and think about writing just
156that part in C, the way we used to take bottlenecks in C code and
157write them in assembler. Similar to rewriting in C is the use of
158modules that have critical sections written in C (for instance, the
159PDL module from CPAN).
160
161In some cases, it may be worth it to use the backend compiler to
162produce byte code (saving compilation time) or compile into C, which
163will certainly save compilation time and sometimes a small amount (but
164not much) execution time. See the question about compiling your Perl
165programs.
166
167If you're currently linking your perl executable to a shared libc.so,
168you can often gain a 10-25% performance benefit by rebuilding it to
169link with a static libc.a instead. This will make a bigger perl
170executable, but your Perl programs (and programmers) may thank you for
171it. See the F<INSTALL> file in the source distribution for more
172information.
173
174Unsubstantiated reports allege that Perl interpreters that use sfio
175outperform those that don't (for IO intensive applications). To try
176this, see the F<INSTALL> file in the source distribution, especially
177the "Selecting File IO mechanisms" section.
178
179The undump program was an old attempt to speed up your Perl program
180by storing the already-compiled form to disk. This is no longer
181a viable option, as it only worked on a few architectures, and
182wasn't a good solution anyway.
183
184=head2 How can I make my Perl program take less memory?
185
186When it comes to time-space tradeoffs, Perl nearly always prefers to
187throw memory at a problem. Scalars in Perl use more memory than
188strings in C, arrays take more that, and hashes use even more. While
189there's still a lot to be done, recent releases have been addressing
190these issues. For example, as of 5.004, duplicate hash keys are
191shared amongst all hashes using them, so require no reallocation.
192
193In some cases, using substr() or vec() to simulate arrays can be
194highly beneficial. For example, an array of a thousand booleans will
195take at least 20,000 bytes of space, but it can be turned into one
196125-byte bit vector for a considerable memory savings. The standard
197Tie::SubstrHash module can also help for certain types of data
198structure. If you're working with specialist data structures
199(matrices, for instance) modules that implement these in C may use
200less memory than equivalent Perl modules.
201
202Another thing to try is learning whether your Perl was compiled with
54310121 203the system malloc or with Perl's builtin malloc. Whichever one it
68dc0745 204is, try using the other one and see whether this makes a difference.
205Information about malloc is in the F<INSTALL> file in the source
206distribution. You can find out whether you are using perl's malloc by
207typing C<perl -V:usemymalloc>.
208
209=head2 Is it unsafe to return a pointer to local data?
210
211No, Perl's garbage collection system takes care of this.
212
213 sub makeone {
214 my @a = ( 1 .. 10 );
215 return \@a;
216 }
217
218 for $i ( 1 .. 10 ) {
219 push @many, makeone();
220 }
221
222 print $many[4][5], "\n";
223
224 print "@many\n";
225
226=head2 How can I free an array or hash so my program shrinks?
227
228You can't. Memory the system allocates to a program will never be
229returned to the system. That's why long-running programs sometimes
230re-exec themselves.
231
232However, judicious use of my() on your variables will help make sure
233that they go out of scope so that Perl can free up their storage for
234use in other parts of your program. (NB: my() variables also execute
235about 10% faster than globals.) A global variable, of course, never
236goes out of scope, so you can't get its space automatically reclaimed,
237although undef()ing and/or delete()ing it will achieve the same effect.
46fc3d4c 238In general, memory allocation and de-allocation isn't something you can
68dc0745 239or should be worrying about much in Perl, but even this capability
240(preallocation of data types) is in the works.
241
242=head2 How can I make my CGI script more efficient?
243
244Beyond the normal measures described to make general Perl programs
245faster or smaller, a CGI program has additional issues. It may be run
246several times per second. Given that each time it runs it will need
46fc3d4c 247to be re-compiled and will often allocate a megabyte or more of system
68dc0745 248memory, this can be a killer. Compiling into C B<isn't going to help
46fc3d4c 249you> because the process start-up overhead is where the bottleneck is.
68dc0745 250
251There are at least two popular ways to avoid this overhead. One
252solution involves running the Apache HTTP server (available from
253http://www.apache.org/) with either of the mod_perl or mod_fastcgi
254plugin modules. With mod_perl and the Apache::* modules (from CPAN),
46fc3d4c 255httpd will run with an embedded Perl interpreter which pre-compiles
68dc0745 256your script and then executes it within the same address space without
257forking. The Apache extension also gives Perl access to the internal
258server API, so modules written in Perl can do just about anything a
259module written in C can. With the FCGI module (from CPAN), a Perl
260executable compiled with sfio (see the F<INSTALL> file in the
261distribution) and the mod_fastcgi module (available from
262http://www.fastcgi.com/) each of your perl scripts becomes a permanent
7b8d334a 263CGI daemon process.
68dc0745 264
265Both of these solutions can have far-reaching effects on your system
266and on the way you write your CGI scripts, so investigate them with
267care.
268
269=head2 How can I hide the source for my Perl program?
270
271Delete it. :-) Seriously, there are a number of (mostly
272unsatisfactory) solutions with varying levels of "security".
273
274First of all, however, you I<can't> take away read permission, because
275the source code has to be readable in order to be compiled and
276interpreted. (That doesn't mean that a CGI script's source is
277readable by people on the web, though.) So you have to leave the
278permissions at the socially friendly 0755 level.
279
280Some people regard this as a security problem. If your program does
281insecure things, and relies on people not knowing how to exploit those
282insecurities, it is not secure. It is often possible for someone to
283determine the insecure things and exploit them without viewing the
284source. Security through obscurity, the name for hiding your bugs
285instead of fixing them, is little security indeed.
286
287You can try using encryption via source filters (Filter::* from CPAN).
fc36a67e 288But crackers might be able to decrypt it. You can try using the byte
289code compiler and interpreter described below, but crackers might be
290able to de-compile it. You can try using the native-code compiler
68dc0745 291described below, but crackers might be able to disassemble it. These
292pose varying degrees of difficulty to people wanting to get at your
293code, but none can definitively conceal it (this is true of every
294language, not just Perl).
295
296If you're concerned about people profiting from your code, then the
297bottom line is that nothing but a restrictive licence will give you
298legal security. License your software and pepper it with threatening
299statements like "This is unpublished proprietary software of XYZ Corp.
300Your access to it does not give you permission to use it blah blah
301blah." We are not lawyers, of course, so you should see a lawyer if
302you want to be sure your licence's wording will stand up in court.
303
54310121 304=head2 How can I compile my Perl program into byte code or C?
68dc0745 305
306Malcolm Beattie has written a multifunction backend compiler,
307available from CPAN, that can do both these things. It is as of
308Feb-1997 in late alpha release, which means it's fun to play with if
46fc3d4c 309you're a programmer but not really for people looking for turn-key
68dc0745 310solutions.
311
312I<Please> understand that merely compiling into C does not in and of
313itself guarantee that your code will run very much faster. That's
314because except for lucky cases where a lot of native type inferencing
315is possible, the normal Perl run time system is still present and thus
316will still take just as long to run and be just as big. Most programs
317save little more than compilation time, leaving execution no more than
31810-30% faster. A few rare programs actually benefit significantly
319(like several times faster), but this takes some tweaking of your
320code.
321
322Malcolm will be in charge of the 5.005 release of Perl itself
323to try to unify and merge his compiler and multithreading work into
324the main release.
325
326You'll probably be astonished to learn that the current version of the
327compiler generates a compiled form of your script whose executable is
328just as big as the original perl executable, and then some. That's
329because as currently written, all programs are prepared for a full
330eval() statement. You can tremendously reduce this cost by building a
331shared libperl.so library and linking against that. See the
332F<INSTALL> podfile in the perl source distribution for details. If
333you link your main perl binary with this, it will make it miniscule.
334For example, on one author's system, /usr/bin/perl is only 11k in
335size!
336
46fc3d4c 337=head2 How can I get '#!perl' to work on [MS-DOS,NT,...]?
68dc0745 338
339For OS/2 just use
340
341 extproc perl -S -your_switches
342
343as the first line in C<*.cmd> file (C<-S> due to a bug in cmd.exe's
46fc3d4c 344`extproc' handling). For DOS one should first invent a corresponding
68dc0745 345batch file, and codify it in C<ALTERNATIVE_SHEBANG> (see the
346F<INSTALL> file in the source distribution for more information).
347
348The Win95/NT installation, when using the Activeware port of Perl,
349will modify the Registry to associate the .pl extension with the perl
350interpreter. If you install another port, or (eventually) build your
351own Win95/NT Perl using WinGCC, then you'll have to modify the
352Registry yourself.
353
46fc3d4c 354Macintosh perl scripts will have the the appropriate Creator and
68dc0745 355Type, so that double-clicking them will invoke the perl application.
356
357I<IMPORTANT!>: Whatever you do, PLEASE don't get frustrated, and just
358throw the perl interpreter into your cgi-bin directory, in order to
359get your scripts working for a web server. This is an EXTREMELY big
360security risk. Take the time to figure out how to do it correctly.
361
362=head2 Can I write useful perl programs on the command line?
363
364Yes. Read L<perlrun> for more information. Some examples follow.
365(These assume standard Unix shell quoting rules.)
366
367 # sum first and last fields
368 perl -lane 'print $F[0] + $F[-1]'
369
370 # identify text files
371 perl -le 'for(@ARGV) {print if -f && -T _}' *
372
373 # remove comments from C program
374 perl -0777 -pe 's{/\*.*?\*/}{}gs' foo.c
375
376 # make file a month younger than today, defeating reaper daemons
377 perl -e '$X=24*60*60; utime(time(),time() + 30 * $X,@ARGV)' *
378
379 # find first unused uid
380 perl -le '$i++ while getpwuid($i); print $i'
381
382 # display reasonable manpath
383 echo $PATH | perl -nl -072 -e '
384 s![^/+]*$!man!&&-d&&!$s{$_}++&&push@m,$_;END{print"@m"}'
385
386Ok, the last one was actually an obfuscated perl entry. :-)
387
46fc3d4c 388=head2 Why don't perl one-liners work on my DOS/Mac/VMS system?
68dc0745 389
390The problem is usually that the command interpreters on those systems
391have rather different ideas about quoting than the Unix shells under
392which the one-liners were created. On some systems, you may have to
393change single-quotes to double ones, which you must I<NOT> do on Unix
394or Plan9 systems. You might also have to change a single % to a %%.
395
396For example:
397
398 # Unix
399 perl -e 'print "Hello world\n"'
400
46fc3d4c 401 # DOS, etc.
68dc0745 402 perl -e "print \"Hello world\n\""
403
46fc3d4c 404 # Mac
68dc0745 405 print "Hello world\n"
406 (then Run "Myscript" or Shift-Command-R)
407
408 # VMS
409 perl -e "print ""Hello world\n"""
410
411The problem is that none of this is reliable: it depends on the command
46fc3d4c 412interpreter. Under Unix, the first two often work. Under DOS, it's
68dc0745 413entirely possible neither works. If 4DOS was the command shell, I'd
414probably have better luck like this:
415
416 perl -e "print <Ctrl-x>"Hello world\n<Ctrl-x>""
417
46fc3d4c 418Under the Mac, it depends which environment you are using. The MacPerl
68dc0745 419shell, or MPW, is much like Unix shells in its support for several
46fc3d4c 420quoting variants, except that it makes free use of the Mac's non-ASCII
68dc0745 421characters as control characters.
422
423I'm afraid that there is no general solution to all of this. It is a
424mess, pure and simple.
425
426[Some of this answer was contributed by Kenneth Albanowski.]
427
428=head2 Where can I learn about CGI or Web programming in Perl?
429
430For modules, get the CGI or LWP modules from CPAN. For textbooks,
431see the two especially dedicated to web stuff in the question on
432books. For problems and questions related to the web, like "Why
433do I get 500 Errors" or "Why doesn't it run from the browser right
434when it runs fine on the command line", see these sources:
435
436 The Idiot's Guide to Solving Perl/CGI Problems, by Tom Christiansen
437 http://www.perl.com/perl/faq/idiots-guide.html
438
439 Frequently Asked Questions about CGI Programming, by Nick Kew
440 ftp://rtfm.mit.edu/pub/usenet/news.answers/www/cgi-faq
441 http://www3.pair.com/webthing/docs/cgi/faqs/cgifaq.shtml
442
443 Perl/CGI programming FAQ, by Shishir Gundavaram and Tom Christiansen
444 http://www.perl.com/perl/faq/perl-cgi-faq.html
445
446 The WWW Security FAQ, by Lincoln Stein
447 http://www-genome.wi.mit.edu/WWW/faqs/www-security-faq.html
448
449 World Wide Web FAQ, by Thomas Boutell
450 http://www.boutell.com/faq/
451
452=head2 Where can I learn about object-oriented Perl programming?
453
454L<perltoot> is a good place to start, and you can use L<perlobj> and
455L<perlbot> for reference. Perltoot didn't come out until the 5.004
456release, but you can get a copy (in pod, html, or postscript) from
457http://www.perl.com/CPAN/doc/FMTEYEWTK/ .
458
459=head2 Where can I learn about linking C with Perl? [h2xs, xsubpp]
460
461If you want to call C from Perl, start with L<perlxstut>,
462moving on to L<perlxs>, L<xsubpp>, and L<perlguts>. If you want to
463call Perl from C, then read L<perlembed>, L<perlcall>, and
464L<perlguts>. Don't forget that you can learn a lot from looking at
465how the authors of existing extension modules wrote their code and
466solved their problems.
467
468=head2 I've read perlembed, perlguts, etc., but I can't embed perl in
469my C program, what am I doing wrong?
470
471Download the ExtUtils::Embed kit from CPAN and run `make test'. If
472the tests pass, read the pods again and again and again. If they
46fc3d4c 473fail, see L<perlbug> and send a bugreport with the output of
68dc0745 474C<make test TEST_VERBOSE=1> along with C<perl -V>.
475
476=head2 When I tried to run my script, I got this message. What does it
477mean?
478
479L<perldiag> has a complete list of perl's error messages and warnings,
480with explanatory text. You can also use the splain program (distributed
481with perl) to explain the error messages:
482
483 perl program 2>diag.out
484 splain [-v] [-p] diag.out
485
486or change your program to explain the messages for you:
487
488 use diagnostics;
489
490or
491
492 use diagnostics -verbose;
493
494=head2 What's MakeMaker?
495
496This module (part of the standard perl distribution) is designed to
497write a Makefile for an extension module from a Makefile.PL. For more
498information, see L<ExtUtils::MakeMaker>.
499
500=head1 AUTHOR AND COPYRIGHT
501
502Copyright (c) 1997 Tom Christiansen and Nathan Torkington.
503All rights reserved. See L<perlfaq> for distribution information.
46fc3d4c 504