This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Document D_PPP_ prefix for macros
[perl5.git] / dist / Devel-PPPort / HACKERS
CommitLineData
adfe19db
MHM
1=head1 NAME
2
3HACKERS - Devel::PPPort internals for hackers
4
5=head1 SYNOPSIS
6
7So you probably want to hack C<Devel::PPPort>?
8
9Well, here's some information to get you started with what's
10lying around in this distribution.
11
12=head1 DESCRIPTION
13
b2049988 14=head2 How to build 366 versions of Perl
adfe19db
MHM
15
16C<Devel::PPPort> supports Perl versions between 5.003 and bleadperl.
17To guarantee this support, I need some of these versions on my
b2049988 18machine. I currently have 366 different Perl version/configuration
adfe19db
MHM
19combinations installed on my laptop.
20
21As many of the old Perl distributions need patching to compile
b2049988 22cleanly on newer systems (and because building 366 Perls by hand
adfe19db
MHM
23just isn't fun), I wrote a tool to build all the different
24versions and configurations. You can find it in F<devel/buildperl.pl>.
25It can currently build the following Perl releases:
26
27 5.003
28 5.004 - 5.004_05
29 5.005 - 5.005_04
30 5.6.x
31 5.7.x
32 5.8.x
33 5.9.x
b2049988 34 5.1x.x
adfe19db
MHM
35
36=head2 Fully automatic API checks
37
38Knowing which parts of the API are not backwards compatible and
39probably need C<Devel::PPPort> support is another problem that's
40not easy to deal with manually. If you run
41
42 perl Makefile.PL --with-apicheck
43
44a C file is generated by F<parts/apicheck.pl> that is compiled
45and linked with C<Devel::PPPort>. This C file has the purpose of
46using each of the public API functions/macros once.
47
5cde1e48
KW
48The required information is derived from F<parts/embed.fnc> (just
49a copy of bleadperl's F<embed.fnc>), F<parts/apidoc.fnc> (which
adfe19db 50is generated by F<devel/mkapidoc.sh> and simply collects the rest
679ad62d 51of the apidoc entries spread over the Perl source code) and
5cde1e48 52F<parts/ppport.fnc> (which lists all API provided purely by
679ad62d 53Devel::PPPort).
5cde1e48 54The generated C file F<apicheck.c> is currently about 500k in size
adfe19db
MHM
55and takes quite a while to compile.
56
5cde1e48 57Usually, F<apicheck.c> won't compile with older perls. And even if
adfe19db
MHM
58it compiles, there's still a good chance of the dynamic linker
59failing at C<make test> time. But that's on purpose!
60
61We can use these failures to find changes in the API automatically.
62The two Perl scripts F<devel/mktodo> and F<devel/mktodo.pl>
63repeatedly run C<Devel::PPPort> with the apicheck code through
64all different versions of perl. Scanning the output of the compiler
65and the dynamic linker for errors, the files in F<parts/todo/> are
66generated. These files list all parts of the public API that don't
67work with less than a certain version of Perl.
68
69This information is in turn used by F<parts/apicheck.pl> to mask
70API calls in the generated C file for these versions, so the
71process can be stopped by the time F<apicheck.c> compiles cleanly
ba120f6f
MHM
72and the dynamic linker is happy. (Actually, this process may generate
73false positives, so by default each API call is checked once more
74afterwards.)
adfe19db 75
5cde1e48 76Running F<devel/mktodo> takes about an hour, depending of course
ba120f6f
MHM
77on the machine you're running it on. If you run it with
78the C<--nocheck> option, it won't recheck the API calls that failed
79in the compilation stage and it'll take significantly less time.
80Running with C<--nocheck> should usually be safe.
adfe19db 81
5cde1e48 82When running F<devel/mktodo> with the C<--base> option, it will
adfe19db
MHM
83generate the I<baseline> todo files by disabling all functionality
84provided by C<Devel::PPPort>. These are required for implementing
5cde1e48 85the C<--compat-version> option of the F<ppport.h> script. The
adfe19db
MHM
86baseline todo files hold the information about which version of
87Perl lacks a certain part of the API.
88
89However, only the documented public API can be checked this way.
90And since C<Devel::PPPort> provides more macros, these would not be
91affected by C<--compat-version>. It's the job of F<devel/scanprov>
92to figure out the baseline information for all remaining provided
93macros by scanning the include files in the F<CORE> directory of
94various Perl versions.
95
ba120f6f
MHM
96The whole process isn't platform independent. It has currently been
97tested only under Linux, and it definitely requires at least C<gcc> and
98the C<nm> utility.
99
100It's not very often that one has to regenerate the baseline and todo
101files. If you have to, you can either run F<devel/regenerate> or just
102execute the following steps by hand:
adfe19db
MHM
103
104=over 4
105
106=item *
107
108You need a whole bunch of different Perls. The more, the better.
109You can use F<devel/buildperl.pl> to build them. I keep my perls
110in F</tmp/perl>, so most of the tools take this as a default.
111
112=item *
113
56093a11
MHM
114You also need a freshly built bleadperl that is in the path under
115exactly this name. (The name of the executable is currently hardcoded
116in F<devel/mktodo> and F<devel/scanprov>.)
117
118=item *
119
adfe19db
MHM
120Remove all existing todo files in the F<parts/base> and
121F<parts/todo> directories.
122
123=item *
124
125Update the API information. Copy the latest F<embed.fnc> file from
126bleadperl to the F<parts> directory and run F<devel/mkapidoc.sh> to
127collect the remaining information in F<parts/apidoc.fnc>.
128
129=item *
130
131Build the new baseline by running
132
133 perl devel/mktodo --base
134
135in the root directory of the distribution. When it's finished,
136move all files from the F<parts/todo> directory to F<parts/base>.
137
138=item *
139
140Build the new todo files by running
141
142 perl devel/mktodo
143
144in the root directory of the distribution.
145
146=item *
147
148Finally, add the remaining baseline information by running
149
4a582685 150 perl Makefile.PL && make
49ef49fe 151 perl devel/scanprov --mode=write
adfe19db
MHM
152
153=back
154
155=head2 Implementation
156
157Residing in F<parts/inc/> is the "heart" of C<Devel::PPPort>. Each
158of the files implements a part of the supported API, along with
159hints, dependency information, XS code and tests.
160The files are in a POD-like format that is parsed using the
161functions in F<parts/ppptools.pl>.
162
3bfe1c68 163The scripts F<PPPort_pm.PL>, F<RealPPPort_xs.PL> and F<mktests.PL> all
adfe19db 164use the information in F<parts/inc/> to generate the main module
1d088ed8 165F<PPPort.pm>, the XS code in F<RealPPPort.xs> and various test files
adfe19db
MHM
166in F<t/>.
167
168All of these files could be generated on the fly while building
5cde1e48 169C<Devel::PPPort>, but not having the tests in F<t/> will confuse
1d088ed8
MHM
170TEST/harness in the core. Not having F<PPPort.pm> will be bad for
171viewing the docs on C<search.cpan.org>. So unfortunately, it's
172unavoidable to put some redundancy into the package.
adfe19db
MHM
173
174=head2 Adding stuff to Devel::PPPort
175
176First, check if the code you plan to add fits into one of the
177existing files in F<parts/inc/>. If not, just start a new one and
178remember to include it from within F<PPPort_pm.PL>.
179
180Each file holds all relevant data for implementing a certain part
181of the API:
182
183=over 2
184
185=item *
186
187A list of the provided API in the C<=provides> section.
188
189=item *
190
191The implementation to add to F<ppport.h> in the C<=implementation>
192section.
193
194=item *
195
196The code required to add to PPPort.xs for testing the implementation.
197This code goes into the C<=xshead>, C<=xsinit>, C<=xsmisc>, C<=xsboot>
0d0f8426 198and C<=xsubs> section. Have a look at the template at the bottom
3bfe1c68 199of F<RealPPPort_xs.PL> to see where the code ends up.
adfe19db
MHM
200
201=item *
202
203The tests in the C<=tests> section. Remember not to use any fancy
204modules or syntax elements, as the test code should be able to run
205with Perl 5.003, which, for example, doesn't support C<my> in
206C<for>-loops:
207
0d0f8426 208 for my $x (1, 2, 3) { } # won't work with 5.003
adfe19db 209
0d0f8426
MHM
210You can use C<ok()> to report success or failure:
211
212 ok($got == 42);
213 ok($got, $expected);
214
215Regular expressions are not supported as the second argument to C<ok>,
216because older perls do not support the C<qr> operator.
adfe19db
MHM
217
218=back
219
220It's usually the best approach to just copy an existing file and
221use it as a template.
222
0d0f8426
MHM
223=head2 Implementation Hints
224
225In the C<=implementation> section, you can use
226
227 __UNDEFINED__ macro some definition
228
229instead of
230
231 #ifndef macro
232 # define macro some definition
233 #endif
234
235The macro can have optional arguments and the definition can even
236span multiple lines, like in
237
238 __UNDEFINED__ SvMAGIC_set(sv, val) \
239 STMT_START { assert(SvTYPE(sv) >= SVt_PVMG); \
240 (((XPVMG*) SvANY(sv))->xmg_magic = (val)); } STMT_END
241
960a24c4
KW
242This usually makes the code more compact and readable. And you only have to add
243the line C<__UNDEFINED__> to the C<=provides> section to get all macros
244implemented this way to be imported into this section, so they all get
245documented as being provided.
0d0f8426 246
3451ddaf
P
247If you need to define a helper macro which is not part of C<Devel::PPPort> API
248and its usage is only for definition of other C<Devel::PPPort> macros then use
249the C<D_PPP_> prefix for this macro name (e.g. C<D_PPP_SVPV_NOLEN_LP_ARG>).
250Some C<Devel::PPPort> scripts would report a warning when there is defined a
251macro which is not part of Perl public API, except those macros which start
252with the C<D_PPP_> prefix.
253
0d0f8426
MHM
254Version checking can be tricky if you want to do it correct.
255You can use
256
257 #if { VERSION < 5.9.3 }
258
259instead of
260
261 #if ((PERL_VERSION < 9) || (PERL_VERSION == 9 && PERL_SUBVERSION < 3))
262
263The version number can be either of the new form C<5.x.x> or of the older
264form C<5.00x_yy>. Both are translated into the correct preprocessor
265statements. It is also possible to combine this with other statements:
266
267 #if { VERSION >= 5.004 } && !defined(sv_vcatpvf)
b2049988 268 /* a */
0d0f8426
MHM
269 #elif { VERSION < 5.004_63 } && { VERSION != 5.004_05 }
270 /* b */
271 #endif
272
273This not only works in the C<=implementation> section, but also in
274the C<=xsubs>, C<=xsinit>, C<=xsmisc>, C<=xshead> and C<=xsboot> sections.
275
adfe19db
MHM
276=head2 Testing
277
278To automatically test C<Devel::PPPort> with lots of different Perl
279versions, you can use the F<soak> script. Just pass it a list of
280all Perl binaries you want to test.
281
282=head2 Special Makefile targets
283
4a582685 284You can use
adfe19db
MHM
285
286 make regen
287
4a582685
NC
288to regenerate all of the autogenerated files. To get rid of all
289generated files (except for F<parts/todo/*> and F<parts/base/*>),
290use
adfe19db
MHM
291
292 make purge_all
293
294That's it.
295
0d0f8426
MHM
296=head2 Submitting Patches
297
298If you've added some functionality to C<Devel::PPPort>, please
c601e8c7
SA
299consider submitting a patch with your work to P5P by sending a mail
300L<perlbug@perl.org|mailto:perlbug@perl.org>.
0d0f8426
MHM
301
302When submitting patches, please only add the relevant changes
303and don't include the differences of the generated files. You
304can use the C<purge_all> target to delete all autogenerated
305files.
306
56093a11
MHM
307=head2 Integrating into the Perl core
308
309When integrating this module into the Perl core, be sure to
310remove the following files from the distribution. They are
311either not needed or generated on the fly when building this
312module in the core:
313
314 MANIFEST
315 META.yml
316 PPPort.pm
317
adfe19db
MHM
318=head1 COPYRIGHT
319
b2049988 320Version 3.x, Copyright (C) 2004-2013, Marcus Holland-Moritz.
adfe19db
MHM
321
322Version 2.x, Copyright (C) 2001, Paul Marquess.
323
324Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
325
326This program is free software; you can redistribute it and/or
327modify it under the same terms as Perl itself.
328
329=head1 SEE ALSO
330
5cde1e48 331See F<ppport.h> and F<devel/regenerate>.
adfe19db
MHM
332
333=cut