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