This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make the 64-bit tests more paranoid.
[perl5.git] / x2p / a2p.pod
CommitLineData
53282e28
JM
1=head1 NAME
2
3a2p - Awk to Perl translator
4
5=head1 SYNOPSIS
6
7B<a2p [options] filename>
8
9=head1 DESCRIPTION
10
11I<A2p> takes an awk script specified on the command line (or from
12standard input) and produces a comparable I<perl> script on the
13standard output.
14
15=head2 Options
16
17Options include:
18
19=over 5
20
21=item B<-DE<lt>numberE<gt>>
22
23sets debugging flags.
24
25=item B<-FE<lt>characterE<gt>>
26
27tells a2p that this awk script is always invoked with this B<-F>
28switch.
29
30=item B<-nE<lt>fieldlistE<gt>>
31
32specifies the names of the input fields if input does not have to be
33split into an array. If you were translating an awk script that
34processes the password file, you might say:
35
36 a2p -7 -nlogin.password.uid.gid.gcos.shell.home
37
38Any delimiter can be used to separate the field names.
39
40=item B<-E<lt>numberE<gt>>
41
42causes a2p to assume that input will always have that many fields.
43
a5571d59
CS
44=item B<-o>
45
2efaeb47
AD
46tells a2p to use old awk behavior. The only current differences are:
47
48=over 5
49
50=item
51
52Old awk always has a line loop, even if there are no line
a5571d59
CS
53actions, whereas new awk does not.
54
2efaeb47
AD
55=item
56
57In old awk, sprintf is extremely greedy about its arguments.
58For example, given the statement
59
60 print sprintf(some_args), extra_args;
61
62old awk considers I<extra_args> to be arguments to C<sprintf>; new awk
63considers them arguments to C<print>.
64
53282e28
JM
65=back
66
67=head2 "Considerations"
68
69A2p cannot do as good a job translating as a human would, but it
70usually does pretty well. There are some areas where you may want to
71examine the perl script produced and tweak it some. Here are some of
72them, in no particular order.
73
74There is an awk idiom of putting int() around a string expression to
75force numeric interpretation, even though the argument is always
76integer anyway. This is generally unneeded in perl, but a2p can't
77tell if the argument is always going to be integer, so it leaves it
78in. You may wish to remove it.
79
80Perl differentiates numeric comparison from string comparison. Awk
81has one operator for both that decides at run time which comparison to
82do. A2p does not try to do a complete job of awk emulation at this
83point. Instead it guesses which one you want. It's almost always
84right, but it can be spoofed. All such guesses are marked with the
85comment "C<#???>". You should go through and check them. You might
86want to run at least once with the B<-w> switch to perl, which will
87warn you if you use == where you should have used eq.
88
89Perl does not attempt to emulate the behavior of awk in which
90nonexistent array elements spring into existence simply by being
91referenced. If somehow you are relying on this mechanism to create
92null entries for a subsequent for...in, they won't be there in perl.
93
94If a2p makes a split line that assigns to a list of variables that
95looks like (Fld1, Fld2, Fld3...) you may want to rerun a2p using the
96B<-n> option mentioned above. This will let you name the fields
97throughout the script. If it splits to an array instead, the script
98is probably referring to the number of fields somewhere.
99
100The exit statement in awk doesn't necessarily exit; it goes to the END
101block if there is one. Awk scripts that do contortions within the END
102block to bypass the block under such circumstances can be simplified
103by removing the conditional in the END block and just exiting directly
104from the perl script.
105
aa689395 106Perl has two kinds of array, numerically-indexed and associative.
107Perl associative arrays are called "hashes". Awk arrays are usually
108translated to hashes, but if you happen to know that the index is
109always going to be numeric you could change the {...} to [...].
110Iteration over a hash is done using the keys() function, but iteration
111over an array is NOT. You might need to modify any loop that iterates
112over such an array.
53282e28
JM
113
114Awk starts by assuming OFMT has the value %.6g. Perl starts by
115assuming its equivalent, $#, to have the value %.20g. You'll want to
116set $# explicitly if you use the default value of OFMT.
117
118Near the top of the line loop will be the split operation that is
119implicit in the awk script. There are times when you can move this
120down past some conditionals that test the entire record so that the
121split is not done as often.
122
123For aesthetic reasons you may wish to change the array base $[ from 1
124back to perl's default of 0, but remember to change all array
125subscripts AND all substr() and index() operations to match.
126
127Cute comments that say "# Here is a workaround because awk is dumb"
128are passed through unmodified.
129
130Awk scripts are often embedded in a shell script that pipes stuff into
131and out of awk. Often the shell script wrapper can be incorporated
132into the perl script, since perl can start up pipes into and out of
133itself, and can do other things that awk can't do by itself.
134
135Scripts that refer to the special variables RSTART and RLENGTH can
136often be simplified by referring to the variables $`, $& and $', as
137long as they are within the scope of the pattern match that sets them.
138
139The produced perl script may have subroutines defined to deal with
140awk's semantics regarding getline and print. Since a2p usually picks
141correctness over efficiency. it is almost always possible to rewrite
142such code to be more efficient by discarding the semantic sugar.
143
144For efficiency, you may wish to remove the keyword from any return
145statement that is the last statement executed in a subroutine. A2p
146catches the most common case, but doesn't analyze embedded blocks for
147subtler cases.
148
149ARGV[0] translates to $ARGV0, but ARGV[n] translates to $ARGV[$n]. A
150loop that tries to iterate over ARGV[0] won't find it.
151
152=head1 ENVIRONMENT
153
154A2p uses no environment variables.
155
156=head1 AUTHOR
157
55497cff 158Larry Wall E<lt>F<larry@wall.org>E<gt>
53282e28
JM
159
160=head1 FILES
161
162=head1 SEE ALSO
163
164 perl The perl compiler/interpreter
165
166 s2p sed to perl translator
167
168=head1 DIAGNOSTICS
169
170=head1 BUGS
171
172It would be possible to emulate awk's behavior in selecting string
173versus numeric operations at run time by inspection of the operands,
174but it would be gross and inefficient. Besides, a2p almost always
175guesses right.
176
177Storage for the awk syntax tree is currently static, and can run out.