1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
|
#!/usr/bin/perl -w
# Copyright © 2004, 2005 Nicolas FRANÇOIS <nicolas.francois@centraliens.net>
#
# This file is part of po4a.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with po4a; if not, write to the Free Software
# Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
########################################################################
=encoding UTF-8
=head1 NAME
Locale::Po4a::TeX - convert TeX documents and derivatives from/to PO files
=head1 DESCRIPTION
The po4a (PO for anything) project goal is to ease translations (and more
interestingly, the maintenance of translations) using gettext tools on
areas where they were not expected like documentation.
Locale::Po4a::TeX is a module to help the translation of TeX documents into
other [human] languages. It can also be used as a base to build modules for
TeX-based documents.
Users should probably use the LaTeX module, which inherits from the TeX module
and contains the definitions of common LaTeX commands.
=head1 TRANSLATING WITH PO4A::TEX
This module can be used directly to handle generic TeX documents.
This will split your document in smaller blocks (paragraphs, verbatim
blocks, or even smaller like titles or indexes).
There are some options (described in the next section) that can customize
this behavior. If this doesn't fit to your document format you're encouraged
to write your own derivative module from this, to describe your format's details.
See the section B<WRITING DERIVATIVE MODULES> below, for the process description.
This module can also be customized by lines starting with "% po4a:" in the
TeX file. This process is described in the B<INLINE CUSTOMIZATION> section.
=cut
package Locale::Po4a::TeX;
use 5.16.0;
use strict;
use warnings;
require Exporter;
use vars qw(@ISA @EXPORT);
@ISA = qw(Locale::Po4a::TransTractor);
@EXPORT = qw(%commands %environments
$RE_ESCAPE $ESCAPE $RE_VERBATIM
$no_wrap_environments
$verbatim_environments
%separated_command
%separated_environment
%translate_buffer_env
&add_comment
&generic_command
®ister_generic_command
®ister_generic_environment);
use Locale::Po4a::TransTractor;
use Locale::Po4a::Common;
use File::Basename qw(dirname);
use Carp qw(croak);
use Encode;
use Encode::Guess;
# hash of known commands and environments, with parsing sub.
# See end of this file
use vars qw(%commands %environments);
# hash to describe the number of parameters and which one have to be
# translated. Used by generic commands
our %command_parameters = ();
our %environment_parameters = ();
# hash to describe the separators of environments.
our %env_separators = ();
# The escape character used to introduce commands.
our $RE_ESCAPE = "\\\\";
our $ESCAPE = "\\";
# match the beginning of a verbatim block
our $RE_VERBATIM = "\\\\begin\\{(?:verbatim)\\*?\\}";
# match the beginning of a comment.
# NOTE: It must contain a group, with chars preceding the comment
our $RE_PRE_COMMENT = "(?<!\\\\)(?:\\\\\\\\)*";
our $RE_COMMENT = "\\\%";
# Space separated list of environments that should not be re-wrapped.
our $no_wrap_environments = "verbatim";
our $verbatim_environments = "verbatim";
# hash with the commands that have to be separated (or have to be joined).
# 3 modes are currently used:
# '*' The command is separated if it appear at an extremity of a
# paragraph
# '+' The command is separated, but its arguments are joined together
# with the command name for the translation
# '-' The command is not separated, unless it appear alone on a paragraph
# (e.g. \strong)
our %separated_command = ();
our %separated_environment = ();
=head1 OPTIONS ACCEPTED BY THIS MODULE
These are this module's particular options:
=over 4
=item B<debug>
Activate debugging for some internal mechanisms of this module.
Use the source to see which parts can be debugged.
=item B<no_wrap>
Comma-separated list of environments which should not be re-wrapped.
Note that there is a difference between verbatim and no_wrap environments.
There is no command and comments analysis in verbatim blocks.
If this environment was not already registered, po4a will consider that
this environment does not take any parameters.
=item B<exclude_include>
Colon-separated list of files that should not be included by \input and
\include.
=item B<definitions>
The name of a file containing definitions for po4a, as defined in the
B<INLINE CUSTOMIZATION> section.
You can use this option if it is not possible to put the definitions in
the document being translated.
=item B<verbatim>
Comma-separated list of environments which should be taken as verbatim.
If this environment was not already registered, po4a will consider that
this environment does not take any parameters.
=back
Use these options to override the default behavior of the defined commands.
=head1 INLINE CUSTOMIZATION
The TeX module can be customized with lines starting by B<% po4a:>.
These lines are interpreted as commands to the parser.
The following commands are recognized:
=over 4
=item B<% po4a: command> I<command1> B<alias> I<command2>
Indicates that the arguments of the I<command1> command should be
treated as the arguments of the I<command2> command.
=item B<% po4a: command> I<command1> I<parameters>
This describes in detail the parameters of the I<command1>
command.
This information will be used to check the number of arguments and their
types.
You can precede the I<command1> command by
=over 4
=item an asterisk (B<*>)
po4a will extract this command from paragraphs (if it is located at
the beginning or the end of a paragraph).
The translators will then have to translate the parameters that are marked
as translatable.
=item a plus (B<+>)
As for an asterisk, the command will be extracted if it appear at an
extremity of a block, but the parameters won't be translated separately.
The translator will have to translate the command concatenated to all its
parameters.
This keeps more context, and is useful for commands with small
words in parameter, which can have multiple meanings (and translations).
Note: In this case you don't have to specify which parameters are
translatable, but po4a must know the type and number of parameters.
=item a minus (B<->)
In this case, the command won't be extracted from any block.
But if it appears alone on a block, then only the parameters marked as
translatable will be presented to the translator.
This is useful for font commands. These commands should generally not be
separated from their paragraph (to keep the context), but there is no
reason to annoy the translator with them if a whole string is enclosed in
such a command.
=back
The I<parameters> argument is a set of [] (to indicate an optional
argument) or {} (to indicate a mandatory argument).
You can place an underscore (_) between these brackets to indicate that
the parameter must be translated. For example:
% po4a: command *chapter [_]{_}
This indicates that the chapter command has two parameters: an optional
(short title) and a mandatory one, which must both be translated.
If you want to specify that the href command has two mandatory parameters,
that you don't want to translate the URL (first parameter), and that you
don't want this command to be separated from its paragraph (which allow
the translator to move the link in the sentence), you can use:
% po4a: command -href {}{_}
In this case, the information indicating which arguments must be
translated is only used if a paragraph is only composed of this href
command.
=item B<% po4a: environment> I<env> I<parameters>
This defines the parameters accepted by the I<env> environment and specifies the ones to be translated.
This information is later used to check the number of arguments of the
\begin command.
The syntax of the I<parameters> argument is the same as described for the
others commands.
The first parameter of the \begin command is the name of the environment.
This parameter must not be specified in the list of parameters. Here are
some examples:
% po4a: environment multicols {}
% po4a: environment equation
As for the commands, I<env> can be preceded by a plus (+) to indicate
that the \begin command must be translated with all its arguments.
=item B<% po4a: separator> I<env> B<">I<regex>B<">
Indicates that an environment should be split according to the given
regular expression.
The regular expression is delimited by quotes.
It should not create any back-reference.
You should use (?:) if you need a group.
It may also need some escapes.
For example, the LaTeX module uses the "(?:&|\\\\)" regular expression to
translate separately each cell of a table (lines are separated by '\\' and
cells by '&').
The notion of environment is expanded to the type displayed in the PO file.
This can be used to split on "\\\\" in the first mandatory argument of the
title command. In this case, the environment is title{#1}.
=item B<% po4a: verbatim environment> I<env>
Indicate that I<env> is a verbatim environment.
Comments and commands will be ignored in this environment.
If this environment was not already registered, po4a will consider that
this environment does not take any parameters.
=back
=cut
# Directory name of the main file.
# It is the directory where included files will be searched.
# See read_file.
my $my_dirname;
# Array of files that should not be included by read_file.
# See read_file.
our @exclude_include;
my %type_end = ( '{' => '}', '[' => ']', ' ' => '' );
#########################
#### DEBUGGING STUFF ####
#########################
my %debug = (
'pretrans' => 0, # see pre-conditioning of translation
'postrans' => 0, # see post-conditioning of translation
'translate' => 0, # see translation
'extract_commands' => 0, # see commands extraction
'commands' => 0, # see command subroutines
'environments' => 0, # see environment subroutines
'translate_buffer' => 0 # see buffer translation
);
=head1 WRITING DERIVATE MODULES
=over 4
=item B<pre_trans>
=cut
sub pre_trans {
my ( $self, $str, $ref, $type ) = @_;
# Preformatting, so that translators don't see
# strange chars
my $origstr = $str;
print STDERR "pre_trans($str)="
if ( $debug{'pretrans'} );
# Accentuated characters
# FIXME: only do this if the encoding is UTF-8?
# $str =~ s/${RE_ESCAPE}`a/à/g;
## $str =~ s/${RE_ESCAPE}c{c}/ç/g; # not in texinfo: @,{c}
# $str =~ s/${RE_ESCAPE}^e/ê/g;
# $str =~ s/${RE_ESCAPE}'e/é/g;
# $str =~ s/${RE_ESCAPE}`e/è/g;
# $str =~ s/${RE_ESCAPE}`u/ù/g;
# $str =~ s/${RE_ESCAPE}"i/ï/g;
# # Non breaking space. FIXME: should we change $\sim$ to ~
# $str =~ s/~/\xA0/g; # FIXME: not in texinfo: @w{ }
print STDERR "$str\n" if ( $debug{'pretrans'} );
return $str;
}
=item B<post_trans>
=cut
sub post_trans {
my ( $self, $str, $ref, $type ) = @_;
my $transstr = $str;
print STDERR "post_trans($str)="
if ( $debug{'postrans'} );
# Accentuated characters
# $str =~ s/à/${ESCAPE}`a/g;
## $str =~ s/ç/$ESCAPEc{c}/g; # FIXME: not in texinfo
# $str =~ s/ê/${ESCAPE}^e/g;
# $str =~ s/é/${ESCAPE}'e/g;
# $str =~ s/è/${ESCAPE}`e/g;
# $str =~ s/ù/${ESCAPE}`u/g;
# $str =~ s/ï/${ESCAPE}"i/g;
# # Non breaking space. FIXME: should we change ~ to $\sim$
# $str =~ s/\xA0/~/g; # FIXME: not in texinfo
print STDERR "$str\n" if ( $debug{'postrans'} );
return $str;
}
# Comments are extracted in the parse function.
# They are stored in the @comments array, and then displayed as a PO
# comment with the first translated string of the paragraph.
my @comments = ();
=item B<add_comment>
Add a string as a comment to be added around the next translated element.
This is mostly useful to the texinfo module, as comments are automatically handled in TeX.
=cut
sub add_comment {
my ( $self, $comment ) = @_;
push @comments, $comment;
}
=item B<translate>
Wrapper around Transtractor's translate, with pre- and post-processing
filters.
Comments of a paragraph are inserted as a PO comment for the first
translated string of this paragraph.
=cut
sub translate {
my ( $self, $str, $ref, $type ) = @_;
my (%options) = @_;
my $origstr = $str;
print STDERR "translate($str)="
if ( $debug{'translate'} );
return $str unless ( defined $str ) && length($str);
return $str if ( $str eq "\n" );
$str = pre_trans( $self, $str, $ref || $self->{ref}, $type );
# add comments (if any and not already added to the PO)
if (@comments) {
$options{'comment'} .= join( '\n', @comments );
@comments = ();
}
# FIXME: translate may append a newline, keep the trailing spaces so we can
# recover them.
my $spaces = "";
if ( $options{'wrap'} and $str =~ m/^(.*?)(\s+)$/s ) {
$str = $1;
$spaces = $2;
}
# Translate this
$str = $self->SUPER::translate( $str, $ref || $self->{ref}, $type || $self->{type}, %options );
# FIXME: translate may append a newline, see above
if ( $options{'wrap'} ) {
chomp $str;
$str .= $spaces;
}
$str = post_trans( $self, $str, $ref || $self->{ref}, $type );
print STDERR "'$str'\n" if ( $debug{'translate'} );
return $str;
}
###########################
### COMMANDS SEPARATION ###
###########################
=item B<get_leading_command>($buffer)
This function returns:
=over 4
=item A command name
If no command is found at the beginning of the given buffer, this string
will be empty. Only commands that can be separated are considered.
The %separated_command hash contains the list of these commands.
=item A variant
This indicates if a variant is used. For example, an asterisk (*) can
be added at the end of sections command to specify that they should
not be numbered. In this case, this field will contain "*". If there
is no variant, the field is an empty string.
=item An array of tuples (type of argument, argument)
The type of argument can be either '{' (for mandatory arguments) or '['
(for optional arguments).
=item The remaining buffer
The rest of the buffer after the removal of this leading command and
its arguments. If no command is found, the original buffer is not
touched and returned in this field.
=back
=cut
sub get_leading_command {
my ( $self, $buffer ) = ( shift, shift );
my $command = ""; # the command name
my $variant = ""; # a varriant for the command (e.g. an asterisk)
my @args; # array of arguments
print STDERR "get_leading_command($buffer)="
if ( $debug{'extract_commands'} );
if ( $buffer =~ m/^$RE_ESCAPE([[:alnum:]]+)(\*?)(.*)$/s
&& defined $separated_command{$1} )
{
# The buffer begin by a comand (possibly preceded by some
# whitespaces).
$command = $1;
$variant = $2;
$buffer = $3;
# read the arguments (if any)
while ( $buffer =~ m/^\s*$RE_PRE_COMMENT([\[\{])(.*)$/s ) {
my $type = $1;
my $arg = "";
my $count = 1;
$buffer = $2;
# stop reading the buffer when the number of ] (or }) matches the
# the number of [ (or {).
while ( $count > 0 ) {
if ( $buffer =~ m/^(.*?$RE_PRE_COMMENT)([\[\]\{\}])(.*)$/s ) {
$arg .= $1;
$buffer = $3;
if ( $2 eq $type ) {
$count++;
} elsif ( $2 eq $type_end{$type} ) {
$count--;
}
if ( $count > 0 ) {
$arg .= $2;
}
} else {
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "un-balanced %s in '%s'" ),
$type, $buffer );
}
}
push @args, ( $type, $arg );
}
}
if ( defined $command and length $command ) {
# verify the number of arguments
my ( $check, $reason, $remainder ) = check_arg_count( $self, $command, \@args );
if ( not $check ) {
die wrap_ref_mod(
$self->{ref},
"po4a::tex",
dgettext( "po4a", "Error while checking the number of " . "arguments of the '%s' command: %s" ) . "\n",
$command,
$reason
);
}
if (@$remainder) {
# FIXME: we should also keep the spaces to be idempotent
my ( $temp, $type, $arg );
while (@$remainder) {
$type = shift @$remainder;
$arg = shift @$remainder;
$temp .= $type . $arg . $type_end{$type};
# And remove the same number of arguments from @args
pop @args;
pop @args;
}
$buffer = $temp . $buffer;
}
}
print STDERR "($command,$variant,@args,$buffer)\n"
if ( $debug{'extract_commands'} );
return ( $command, $variant, \@args, $buffer );
}
=item B<get_trailing_command>($buffer)
The same as B<get_leading_command>, but for commands at the end of a buffer.
=cut
sub get_trailing_command {
my ( $self, $buffer ) = ( shift, shift );
my $orig_buffer = $buffer;
print STDERR "get_trailing_command($buffer)="
if ( $debug{'extract_commands'} );
my @args;
my $command = "";
my $variant = "";
# While the buffer ends by }, consider it is a mandatory argument
# and extract this argument.
while ($buffer =~ m/^(.*$RE_PRE_COMMENT(\{).*)$RE_PRE_COMMENT\}$/s
or $buffer =~ m/^(.*$RE_PRE_COMMENT(\[).*)$RE_PRE_COMMENT\]$/s )
{
my $arg = "";
my $count = 1;
$buffer = $1;
my $type = $2;
# stop reading the buffer when the number of } (or ]) matches the
# the number of { (or [).
while ( $count > 0 ) {
if ( $buffer =~ m/^(.*$RE_PRE_COMMENT)([\{\}\[\]])(.*)$/s ) {
$arg = $3 . $arg;
$buffer = $1;
if ( $2 eq $type ) {
$count--;
} elsif ( $2 eq $type_end{$type} ) {
$count++;
}
if ( $count > 0 ) {
$arg = $2 . $arg;
}
} else {
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "un-balanced %s in '%s'" ),
$type_end{$type}, $buffer );
}
}
unshift @args, ( $type, $arg );
}
# There should now be a command, maybe followed by an asterisk.
if ( $buffer =~ m/^(.*$RE_PRE_COMMENT)$RE_ESCAPE([[:alnum:]]+)(\*?)\s*$/s
&& defined $separated_command{$2} )
{
$buffer = $1;
$command = $2;
$variant = $3;
my ( $check, $reason, $remainder ) = check_arg_count( $self, $command, \@args );
if ( not $check ) {
die wrap_ref_mod(
$self->{ref},
"po4a::tex",
dgettext( "po4a", "Error while checking the number of " . "arguments of the '%s' command: %s" ) . "\n",
$command,
$reason
);
}
if (@$remainder) {
# There are some arguments after the command.
# We can't extract this comand.
$command = "";
}
}
# sanitize return values if no command was found.
if ( !length($command) ) {
$command = "";
$variant = "";
undef @args;
$buffer = $orig_buffer;
}
# verify the number of arguments
print STDERR "($command,$variant,@args,$buffer)\n"
if ( $debug{'extract_commands'} );
return ( $command, $variant, \@args, $buffer );
}
=item B<translate_buffer>
Recursively translate a buffer by separating leading and trailing
commands (those which should be translated separately) from the
buffer.
If a function is defined in %translate_buffer_env for the current
environment, this function will be used to translate the buffer instead of
translate_buffer().
=cut
our %translate_buffer_env = ();
sub translate_buffer {
my ( $self, $buffer, $no_wrap, @env ) = ( shift, shift, shift, @_ );
if ( @env and defined $translate_buffer_env{ $env[-1] } ) {
return &{ $translate_buffer_env{ $env[-1] } }( $self, $buffer, $no_wrap, @env );
}
print STDERR "translate_buffer($buffer,$no_wrap,@env)="
if ( $debug{'translate_buffer'} );
my ( $command, $variant ) = ( "", "" );
my $args;
my $translated_buffer = "";
my $orig_buffer = $buffer;
my $t = ""; # a temporary string
if ( $buffer =~ /^\s*$/s ) {
print STDERR "($buffer,@env)\n"
if ( $debug{'translate_buffer'} );
return ( $buffer, @env );
}
# verbatim blocks.
# Buffers starting by \end{verbatim} are handled after.
if ( in_verbatim(@env) and $buffer !~ m/^\n?\Q$ESCAPE\Eend\{$env[-1]\*?\}/ ) {
if ( $buffer =~ m/^(.*?)(\n?\Q$ESCAPE\Eend\{$env[-1]\*?\}.*)$/s ) {
# end of a verbatim block
my ( $begin, $end ) = ( $1 ? $1 : "", $2 );
my ( $t1, $t2 ) = ( "", "" );
if ( defined $begin ) {
$t1 = $self->translate( $begin, $self->{ref}, $env[-1], "wrap" => 0 );
}
( $t2, @env ) = translate_buffer( $self, $end, $no_wrap, @env );
print STDERR "($t1$t2,@env)\n"
if ( $debug{'translate_buffer'} );
return ( $t1 . $t2, @env );
} else {
$translated_buffer = $self->translate( $buffer, $self->{ref}, $env[-1], "wrap" => 0 );
print STDERR "($translated_buffer,@env)\n"
if ( $debug{'translate_buffer'} );
return ( $translated_buffer, @env );
}
}
# early detection of verbatim environment
if ( $buffer =~ /^($RE_VERBATIM\n?)(.*)$/s and length $2 ) {
my ( $begin, $end ) = ( $1, $2 );
my ( $t1, $t2 ) = ( "", "" );
( $t1, @env ) = translate_buffer( $self, $begin, $no_wrap, @env );
( $t2, @env ) = translate_buffer( $self, $end, $no_wrap, @env );
print STDERR "($t1$t2,@env)\n"
if ( $debug{'translate_buffer'} );
return ( $t1 . $t2, @env );
}
# detect \begin and \end (if they are not commented)
if (
$buffer =~ /^((?:.*?\n)? # $1 is
(?:[^%] # either not a %
| # or
(?<!\\)(?:\\\\)*\\%)*? # a % preceded by an odd nb of \
) # $2 is a \begin{ with the end of the line
(${RE_ESCAPE}(?:begin|end)\{.*)$/sx
and length $1
)
{
my ( $begin, $end ) = ( $1, $2 );
my ( $t1, $t2 ) = ( "", "" );
if ( is_closed($begin) ) {
( $t1, @env ) = translate_buffer( $self, $begin, $no_wrap, @env );
( $t2, @env ) = translate_buffer( $self, $end, $no_wrap, @env );
print STDERR "($t1$t2,@env)\n"
if ( $debug{'translate_buffer'} );
return ( $t1 . $t2, @env );
}
}
# remove comments from the buffer.
# Comments are stored in an array and shown as comments in the PO.
while ( $buffer =~ m/($RE_PRE_COMMENT)$RE_COMMENT([^\n]*)(\n[ \t]*)(.*)$/s ) {
my $comment = $2;
my $end = "";
if ( $4 =~ m/^\n/s and $buffer !~ m/^$RE_COMMENT/s ) {
# a line with comments, followed by an empty line.
# Keep the empty line, but remove the comment.
# This is an empirical heuristic, but seems to work;)
$end = "\n";
}
if ( defined $comment and $comment !~ /^\s*$/s ) {
push @comments, $comment;
}
$buffer =~ s/($RE_PRE_COMMENT)$RE_COMMENT([^\n]*)(\n[ \t]*)/$1$end/s;
}
# translate leading commands.
do {
# keep the leading space to put them back after the translation of
# the command.
my $spaces = "";
if ( $buffer =~ /^(\s+)(.*?)$/s ) {
$spaces = $1;
# $buffer = $2; # FIXME: this also remove trailing spaces!!
$buffer =~ s/^\s*//s;
}
my $buffer_save = $buffer;
( $command, $variant, $args, $buffer ) = get_leading_command( $self, $buffer );
if (
( length $command )
and ( defined $separated_command{$command} )
and ( $separated_command{$command} eq '-' )
and ( ( not( defined($buffer) ) )
or ( $buffer !~ m/^\s*$/s ) )
)
{
# This command can be separated only if alone on a buffer.
# We need to remove the trailing commands first, and see if it
# will be alone on this buffer.
$buffer = $buffer_save;
$command = "";
}
if ( length($command) ) {
# call the command subroutine.
# These command subroutines will probably call translate_buffer
# with the content of each argument that need a translation.
if ( defined( $commands{$command} ) ) {
( $t, @env ) = &{ $commands{$command} }( $self, $command, $variant, $args, \@env, $no_wrap );
$translated_buffer .= $spaces . $t;
# Handle spaces after a command.
$spaces = "";
if ( $buffer =~ /^(\s+)(.*?)$/s ) {
$spaces = $1;
# $buffer = $2; # FIXME: this also remove trailing spaces!!
$buffer =~ s/^\s*//s;
}
$translated_buffer .= $spaces;
} else {
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "Unknown command: '%s'" ), $command );
}
} else {
$buffer = $spaces . $buffer;
}
} while ( length($command) );
# array of trailing commands, which will be translated later.
my @trailing_commands = ();
do {
my $spaces = "";
if ( $buffer =~ /^(.*?)(\s+)$/s ) {
$buffer = $1;
$spaces = $2;
}
my $buffer_save = $buffer;
( $command, $variant, $args, $buffer ) = get_trailing_command( $self, $buffer );
if (
( length $command )
and ( defined $separated_command{$command} )
and ( $separated_command{$command} eq '-' )
and ( ( not defined $buffer )
or ( $buffer !~ m/^\s*$/s ) )
)
{
# We can extract this command.
$command = "";
$buffer = $buffer_save;
}
if ( length($command) ) {
unshift @trailing_commands, ( $command, $variant, $args, $spaces );
} else {
$buffer .= $spaces;
}
} while ( length($command) );
# Now, $buffer is just a block that can be translated.
# environment specific treatment
if ( @env and defined $env_separators{ $env[-1] } ) {
my $re_separator = $env_separators{ $env[-1] };
my $buf_begin = "";
# FIXME: the separator may have to be translated.
while ( $buffer =~ m/^(.*?)(\s*$re_separator\s*)(.*)$/s ) {
my ( $begin, $sep, $end ) = ( $1, $2, $3 );
$buf_begin .= $begin;
if ( is_closed($buf_begin) ) {
my $t = "";
( $t, @env ) = translate_buffer( $self, $buf_begin, $no_wrap, @env );
$translated_buffer .= $t . $sep;
$buf_begin = "";
} else {
# the command is in a command argument
$buf_begin .= $sep;
}
$buffer = $end;
}
$buffer = $buf_begin . $buffer;
}
# finally, translate
if ( length($buffer) ) {
my $wrap = 1;
my ( $e1, $e2 );
NO_WRAP_LOOP: foreach $e1 (@env) {
foreach $e2 ( split( ' ', $no_wrap_environments ) ) {
if ( $e1 eq $e2 ) {
$wrap = 0;
last NO_WRAP_LOOP;
}
}
}
$wrap = 0 if ( defined $no_wrap and $no_wrap == 1 );
# Keep spaces at the end of the buffer.
my $spaces_end = "";
if ( $buffer =~ /^(.*?)(\s+)$/s ) {
$spaces_end = $2;
$buffer = $1;
}
if ( $wrap and $buffer =~ s/^(\s+)//s ) {
$translated_buffer .= $1;
}
$translated_buffer .=
$self->translate( $buffer, $self->{ref}, @env ? $env[-1] : "Plain text", "wrap" => $wrap );
# Restore spaces at the end of the buffer.
$translated_buffer .= $spaces_end;
}
# append the translation of the trailing commands
while (@trailing_commands) {
my $command = shift @trailing_commands;
my $variant = shift @trailing_commands;
my $args = shift @trailing_commands;
my $spaces = shift @trailing_commands;
if ( defined( $commands{$command} ) ) {
( $t, @env ) = &{ $commands{$command} }( $self, $command, $variant, $args, \@env, $no_wrap );
$translated_buffer .= $t . $spaces;
} else {
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "Unknown command: '%s'" ), $command );
}
}
print STDERR "($translated_buffer,@env)\n"
if ( $debug{'translate_buffer'} );
return ( $translated_buffer, @env );
}
################################
#### EXTERNAL CUSTOMIZATION ####
################################
=item B<read>
Overloads Transtractor's read().
=cut
sub read ($$$$) {
my $self = shift;
my $filename = shift;
my $refname = shift;
my $charset = shift;
# keep the directory name of the main file.
$my_dirname = dirname($filename);
push @{ $self->{TT}{doc_in} }, read_file( $self, $filename, $refname, $charset );
}
=item B<read_file>
Recursively read a file, appending included files which are not listed in the
@exclude_include array. Included files are searched using the B<kpsewhich>
command from the Kpathsea library.
Except from the file inclusion part, it is a cut and paste from
Transtractor's read.
=cut
# TODO: fix DOS end of lines
sub read_file {
my $self = shift;
my $filename = shift
or croak wrap_mod( "po4a::tex", dgettext( "po4a", "Cannot read from file without having a filename" ) );
my $refname = shift // $filename;
my $charset = shift || 'UTF-8';
my $linenum = 0;
my @entries = ();
open( my $in, "<:encoding($charset)", $filename )
or croak wrap_mod( "po4a::tex", dgettext( "po4a", "Cannot read from %s: %s" ), $filename, $! );
while ( defined( my $textline = <$in> ) ) {
$linenum++;
my $ref = "$refname:$linenum";
# TODO: add support for includeonly
# The next regular expression matches \input or \includes that are
# not commented (but can be preceded by a \%.
while (
$textline =~ /^((?:[^%]|(?<!\\)(?:\\\\)*\\%)*)
\\(include|input)
\{([^\{]*)\}(.*)$/x
)
{
my ( $begin, $newfilename, $end ) = ( $1, $3, $4 );
my $tag = $2;
my $include = 1;
foreach my $f (@exclude_include) {
if ( $f eq $newfilename ) {
$include = 0;
$begin .= "\\$tag" . "{$newfilename}";
$textline = $end;
last;
}
}
if ( $include and ( $tag eq "include" ) ) {
$begin .= "\\clearpage";
}
if ( $begin !~ /^\s*$/ ) {
push @entries, ( $begin, $ref );
}
if ($include) {
# search the file
open( KPSEA, "kpsewhich " . $newfilename . " |" );
my $newfilepath = <KPSEA>;
if ( $newfilename ne "" and ( $newfilepath // '' ) eq '' ) {
die wrap_mod(
"po4a::tex",
dgettext(
"po4a",
"Cannot find '%s' with kpsewhich. To prevent this file to be included, add '-o exclude_include=%s' to the options, either on the command line or in your po4a.conf file."
),
$newfilename,
$newfilename
);
}
push @entries, read_file( $self, $newfilepath, $newfilename, $charset );
if ( $tag eq "include" ) {
$textline = "\\clearpage" . $end;
} else {
$textline = $end;
}
}
}
if ( length($textline) ) {
my @entry = ( $textline, $ref );
push @entries, @entry;
}
}
close $in
or croak wrap_mod( "po4a::tex", dgettext( "po4a", "Cannot close %s after reading: %s" ), $filename, $! );
return @entries;
}
=back
=over 4
=item B<parse_definition_file>
Subroutine for parsing a file with po4a directives (definitions for
new commands).
=cut
sub parse_definition_file {
my ( $self, $filename, $only_try ) = @_;
my $filename_org = $filename;
open( KPSEA, "kpsewhich " . $filename . " |" );
$filename = <KPSEA>;
if ( not defined $filename ) {
warn wrap_mod( "po4a::tex", dgettext( "po4a", "kpsewhich cannot find %s" ), $filename_org );
if ( defined $only_try && $only_try ) {
return;
} else {
exit 1;
}
}
if ( !open( IN, "<$filename" ) ) {
warn wrap_mod( "po4a::tex", dgettext( "po4a", "Cannot open %s: %s" ), $filename, $! );
if ( defined $only_try && $only_try ) {
return;
} else {
exit 1;
}
}
while (<IN>) {
if (/^\s*%\s*po4a\s*:/) {
parse_definition_line( $self, $_ );
}
}
}
=item B<parse_definition_line>
Parse a definition line of the form "% po4a: ".
See the B<INLINE CUSTOMIZATION> section for more details.
=cut
sub parse_definition_line {
my ( $self, $line ) = @_;
$line =~ s/^\s*%\s*po4a\s*:\s*//;
if ( $line =~ /^command\s+([-*+]?)(\w+)\s+(.*)$/ ) {
my $command = $2;
$line = $3;
if ($1) {
$separated_command{$command} = $1;
}
if ( $line =~ /^alias\s+(\w+)\s*$/ ) {
if ( defined( $commands{$1} ) ) {
$commands{$command} = $commands{$1};
$command_parameters{$command} = $command_parameters{$1};
} else {
die wrap_mod( "po4a::tex", dgettext( "po4a", "Cannot use an alias to the unknown command '%s'" ), $2 );
}
} elsif ( $line =~ /^(-1|\d+),(-1|\d+),(-1|[ 0-9]*),(-1|[ 0-9]*?)\s*$/ ) {
die wrap_ref_mod(
$self->{ref},
"po4a::tex",
dgettext(
"po4a", "You are using the old definitions format (%s). Please update this definition line."
),
$_[1]
);
} elsif ( $line =~ m/^((?:\{_?\}|\[_?\])*)\s*$/ ) {
register_generic_command("$command,$1");
}
} elsif ( $line =~ /^environment\s+([+]?\w+\*?)(.*)$/ ) {
my $env = $1;
$line = $2;
if ( $line =~ m/^\s*((?:\{_?\}|\[_?\])*)\s*$/ ) {
register_generic_environment("$env,$1");
}
} elsif ( $line =~ /^separator\s+(\w+(?:\[#[0-9]+\])?)\s+\"(.*)\"\s*$/ ) {
my $env = $1; # This is not necessarily an environment.
# It can also be something like 'title[#1]'.
$env_separators{$env} = $2;
} elsif ( $line =~ /^verbatim\s+environment\s+(\w+)\s*$/ ) {
register_verbatim_environment($1);
}
}
=item B<is_closed>
=cut
sub is_closed {
my $paragraph = shift;
# FIXME: [ and ] are more difficult to handle, because it is not easy to detect if it introduce an optional argument
my $tmp = $paragraph;
my $closing = 0;
my $opening = 0;
# FIXME: { and } should not be counted in verbatim blocks
# Remove comments
$tmp =~ s/$RE_PRE_COMMENT$RE_COMMENT.*//mg;
while ( $tmp =~ /^.*?$RE_PRE_COMMENT\{(.*)$/s ) {
$opening += 1;
$tmp = $1;
}
$tmp = $paragraph;
# Remove comments
$tmp =~ s/$RE_PRE_COMMENT$RE_COMMENT.*//mg;
while ( $tmp =~ /^.*?$RE_PRE_COMMENT\}(.*)$/s ) {
$closing += 1;
$tmp = $1;
}
return $opening eq $closing;
}
sub in_verbatim {
foreach my $e1 (@_) {
foreach my $e2 ( split( ' ', $verbatim_environments ) ) {
if ( $e1 eq $e2 ) {
return 1;
}
}
}
return 0;
}
#############################
#### MAIN PARSE FUNCTION ####
#############################
=item B<parse>
=cut
sub parse {
my $self = shift;
my ( $line, $ref );
my $paragraph = ""; # Buffer where we put the paragraph while building
my @env = (); # environment stack
my $t = "";
LINE:
undef $self->{type};
( $line, $ref ) = $self->shiftline();
while ( defined($line) ) {
chomp($line);
$self->{ref} = "$ref";
if ( $line =~ /^\s*%\s*po4a\s*:/ ) {
parse_definition_line( $self, $line );
goto LINE;
}
my $closed = is_closed($paragraph);
#FIXME: what happens if a \begin{verbatim} or \end{verbatim} is in the
# middle of a line. (This is only an issue if the verbatim
# environment contains an un-closed bracket)
if (
(
$closed and ( $line =~ /^\s*$/
or $line =~ /^\s*$RE_VERBATIM\s*$/ )
)
or ( in_verbatim(@env) and $line =~ /^\s*\Q$ESCAPE\Eend\{$env[-1]\}\s*$/ )
)
{
# An empty line. This indicates the end of the current
# paragraph.
$paragraph .= $line . "\n";
if ( length($paragraph) ) {
( $t, @env ) = translate_buffer( $self, $paragraph, undef, @env );
$self->pushline($t);
$paragraph = "";
@comments = ();
}
} else {
# continue the same paragraph
$paragraph .= $line . "\n";
}
# Reinit the loop
( $line, $ref ) = $self->shiftline();
undef $self->{type};
}
if ( length($paragraph) ) {
( $t, @env ) = translate_buffer( $self, $paragraph, undef, @env );
$self->pushline($t);
$paragraph = "";
}
} # end of parse
=item B<docheader>
=back
=cut
sub docheader {
return "% This file was generated with po4a. Translate the source file.\n" . "%\n";
}
####################################
#### DEFINITION OF THE COMMANDS ####
####################################
=head1 INTERNAL FUNCTIONS used to write derivative parsers
Command and environment functions take the following arguments (in
addition to the $self object):
=over
=item A command name
=item A variant
=item An array of (type, argument) tuples
=item The current environment
=back
The first 3 arguments are extracted by get_leading_command or
get_trailing_command.
Command and environment functions return the translation of the command
with its arguments and a new environment.
Environment functions are called when a \begin command is found. They are
called with the \begin command and its arguments.
The TeX module only proposes one command function and one environment
function: generic_command and generic_environment.
generic_command uses the information specified by
register_generic_command or by adding definition to the TeX file:
% po4a: command I<command1> I<parameters>
generic_environment uses the information specified by
register_generic_environment or by adding definition to the TeX file:
% po4a: environment I<env> I<parameters>
Both functions will only translate the parameters that were specified as
translatable (with a '_').
generic_environment will append the name of the environment to the
environment stack and generic_command will append the name of the command
followed by an identifier of the parameter (like {#7} or [#2]).
=cut
# definition of environment related commands
$commands{'begin'} = sub {
my $self = shift;
my ( $command, $variant, $args, $env ) = ( shift, shift, shift, shift );
my $no_wrap = shift || 0;
print "begin($command,$variant,@$args,@$env,$no_wrap)="
if ( $debug{'commands'} || $debug{'environments'} );
my ( $t, @e ) = ( "", () );
my $envir = $args->[1];
if ( defined($envir) and $envir =~ /^(.*)\*$/ ) {
$envir = $1;
}
if ( defined($envir) && defined( $environments{$envir} ) ) {
( $t, @e ) = &{ $environments{$envir} }( $self, $command, $variant, $args, $env, $no_wrap );
} else {
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "unknown environment: '%s'" ), $args->[1] );
}
print "($t, @e)\n"
if ( $debug{'commands'} || $debug{'environments'} );
return ( $t, @e );
};
# Use register_generic to set the type of arguments. The function is then
# overwritten:
register_generic_command("*end,{}");
$commands{'end'} = sub {
my $self = shift;
my ( $command, $variant, $args, $env ) = ( shift, shift, shift, shift );
my $no_wrap = shift || 0;
print "end($command,$variant,@$args,@$env,$no_wrap)="
if ( $debug{'commands'} || $debug{'environments'} );
# verify that this environment was the last pushed environment.
if ( !@$env || @$env[-1] ne $args->[1] ) {
# a begin may have been hidden in the middle of a translated
# buffer. FIXME: Just warn for now.
warn wrap_ref_mod( $self->{'ref'}, "po4a::tex", dgettext( "po4a", "unmatched end of environment '%s'" ),
$args->[1] );
} else {
pop @$env;
}
my ( $t, @e ) = generic_command( $self, $command, $variant, $args, $env, $no_wrap );
print "($t, @$env)\n"
if ( $debug{'commands'} || $debug{'environments'} );
return ( $t, @$env );
};
$separated_command{'begin'} = '*';
sub generic_command {
my $self = shift;
my ( $command, $variant, $args, $env ) = ( shift, shift, shift, shift );
my $no_wrap = shift || 0;
print "generic_command($command,$variant,@$args,@$env,$no_wrap)="
if ( $debug{'commands'} || $debug{'environments'} );
my ( $t, @e ) = ( "", () );
my $translated = "";
# the number of arguments is checked during the extraction of the
# arguments
if ( ( not( defined $separated_command{$command} ) )
or $separated_command{$command} ne '+' )
{
# Use the information from %command_parameters to only translate
# the needed parameters
$translated = "$ESCAPE$command$variant";
# handle arguments
my @arg_types = @{ $command_parameters{$command}{'types'} };
my @arg_translated = @{ $command_parameters{$command}{'translated'} };
my ( $type, $opt );
my @targs = @$args;
my $count = 0;
while (@targs) {
$type = shift @targs;
$opt = shift @targs;
my $have_to_be_translated = 0;
TEST_TYPE:
if ( $count >= scalar @arg_types ) {
# The number of arguments does not match,
# and a variable number of arguments was not specified
die wrap_ref_mod( $self->{ref}, "po4a::tex",
dgettext( "po4a", "Wrong number of arguments for " . "the '%s' command." ) . "\n", $command );
} elsif ( $type eq $arg_types[$count] ) {
$have_to_be_translated = $arg_translated[$count];
$count++;
} elsif ( $type eq '{' and $arg_types[$count] eq '[' ) {
# an optionnal argument was not provided,
# try with the next argument.
$count++;
goto TEST_TYPE;
} else {
my $reason =
dgettext( "po4a", "An optional argument " . "was provided, but a mandatory one " . "is expected." );
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "Command '%s': %s" ) . "\n",
$command, $reason );
}
if ($have_to_be_translated) {
( $t, @e ) = translate_buffer( $self, $opt, $no_wrap,
( @$env, $command . $type . "#" . $count . $type_end{$type} ) );
} else {
$t = $opt;
}
$translated .= $type . $t . $type_end{$type};
}
} else {
# Translate the command with all its arguments joined
my $tmp = "$ESCAPE$command$variant";
my ( $type, $opt );
while (@$args) {
$type = shift @$args;
$opt = shift @$args;
$tmp .= $type . $opt . $type_end{$type};
}
@e = @$env;
my $wrap = 1;
$wrap = 0 if ( defined $no_wrap and $no_wrap == 1 );
$translated = $self->translate( $tmp, $self->{ref}, @e ? $e[-1] : "Plain text", "wrap" => $wrap );
}
print "($translated, @$env)\n"
if ( $debug{'commands'} || $debug{'environments'} );
return ( $translated, @$env );
}
sub register_generic_command {
if ( $_[0] =~ m/^(.*),((\{_?\}|\[_?\]| _? )*)$/ ) {
my $command = $1;
my $arg_types = $2;
if ( $command =~ /^([-*+])(.*)$/ ) {
$command = $2;
$separated_command{$command} = $1;
}
my @types = ();
my @translated = ();
while ( defined $arg_types
and length $arg_types
and $arg_types =~ m/^(?:([\{\[ ])(_?)[\}\] ])(.*)$/ )
{
push @types, $1;
push @translated, ( $2 eq "_" ) ? 1 : 0;
$arg_types = $3;
}
$command_parameters{$command}{'types'} = \@types;
$command_parameters{$command}{'translated'} = \@translated;
$command_parameters{$command}{'nb_args'} = "";
$commands{$command} = \&generic_command;
} else {
die wrap_mod( "po4a::tex",
dgettext( "po4a", "register_generic_command: unsupported " . "format: '%s'." ) . "\n", $_[0] );
}
}
########################################
#### DEFINITION OF THE ENVIRONMENTS ####
########################################
sub generic_environment {
my $self = shift;
my ( $command, $variant, $args, $env ) = ( shift, shift, shift, shift );
my $no_wrap = shift;
print "generic_environment($command,$variant,$args,$env,$no_wrap)="
if ( $debug{'environments'} );
my ( $t, @e ) = ( "", () );
my $translated = "";
# The first argument (the name of the environment is never translated)
# For the others, @types and @translated are used.
$translated = "$ESCAPE$command$variant";
my @targs = @$args;
my $type = shift @targs;
my $opt = shift @targs;
my $new_env = $opt;
$translated .= $type . $new_env . $type_end{$type};
if ( ( not( defined $separated_environment{$new_env} ) )
or $separated_environment{$new_env} ne '+' )
{
# Use the information from %command_parameters to only translate
# the needed parameters
my @arg_types = @{ $environment_parameters{$new_env}{'types'} };
my @arg_translated = @{ $environment_parameters{$new_env}{'translated'} };
my $count = 0;
while (@targs) {
$type = shift @targs;
$opt = shift @targs;
my $have_to_be_translated = 0;
TEST_TYPE:
if ( $count >= scalar @arg_types ) {
die wrap_ref_mod( $self->{ref}, "po4a::tex",
dgettext( "po4a", "Wrong number of arguments for " . "the '%s' command." ) . "\n", $command );
} elsif ( $type eq $arg_types[$count] ) {
$have_to_be_translated = $arg_translated[$count];
$count++;
} elsif ( $type eq '{' and $arg_types[$count] eq '[' ) {
# an optionnal argument was not provided,
# try with the next argument.
$count++;
goto TEST_TYPE;
} else {
my $reason =
dgettext( "po4a", "An optional argument " . "was provided, but a mandatory one " . "is expected." );
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "Command '%s': %s" ) . "\n",
$command, $reason );
}
if ($have_to_be_translated) {
( $t, @e ) = translate_buffer( $self, $opt, $no_wrap,
( @$env, $new_env . $type . "#" . $count . $type_end{$type} ) );
} else {
$t = $opt;
}
$translated .= $type . $t . $type_end{$type};
}
} else {
# Translate the \begin command with all its arguments joined
my ( $type, $opt );
my $buf = $translated;
while (@targs) {
$type = shift @targs;
$opt = shift @targs;
$buf .= $type . $opt . $type_end{$type};
}
@e = @$env;
my $wrap = 1;
$wrap = 0 if $no_wrap == 1;
$translated = $self->translate( $buf, $self->{ref}, @e ? $e[-1] : "Plain text", "wrap" => $wrap );
}
@e = ( @$env, $new_env );
print "($translated,@e)\n"
if ( $debug{'environments'} );
return ( $translated, @e );
}
sub check_arg_count {
my $self = shift;
my $command = shift;
my $args = shift;
my @targs = @$args;
my $check = 1;
my @remainder = ();
my $reason = "";
my ( $type, $arg );
my @arg_types;
if ( $command eq 'begin' ) {
$type = shift @targs;
# The name of the environment is mandatory
if ( ( not defined $type )
or ( $type ne '{' ) )
{
$reason = dgettext( "po4a", "The first argument of \\begin is mandatory." );
$check = 0;
}
my $env = shift @targs;
if ( not defined $environment_parameters{$env} ) {
die wrap_ref_mod( $self->{ref}, "po4a::tex", dgettext( "po4a", "unknown environment: '%s'" ), $env );
}
@arg_types = @{ $environment_parameters{$env}{'types'} };
} else {
@arg_types = @{ $command_parameters{$command}{'types'} };
}
my $count = 0;
while ( $check and @targs ) {
$type = shift @targs;
$arg = shift @targs;
TEST_TYPE:
if ( $count >= scalar @arg_types ) {
# Too many arguments some will remain
@remainder = ( $type, $arg, @targs );
last;
} elsif ( $type eq $arg_types[$count] ) {
$count++;
} elsif ( $type eq '{' and $arg_types[$count] eq '[' ) {
# an optionnal argument was not provided,
# try with the next argument.
$count++;
goto TEST_TYPE;
} else {
$check = 0;
$reason = dgettext( "po4a", "An optional argument was " . "provided, but a mandatory one is expected." );
}
}
return ( $check, $reason, \@remainder );
}
sub register_generic_environment {
print "register_generic_environment($_[0])\n"
if ( $debug{'environments'} );
if ( $_[0] =~ m/^(.*),((?:\{_?\}|\[_?\])*)$/ ) {
my $env = $1;
my $arg_types = $2;
if ( $env =~ /^([+])(.*)$/ ) {
$separated_environment{$2} = $1;
$env = $2;
}
my @types = ();
my @translated = ();
while ( defined $arg_types
and length $arg_types
and $arg_types =~ m/^(?:([\{\[])(_?)[\}\]])(.*)$/ )
{
push @types, $1;
push @translated, ( $2 eq "_" ) ? 1 : 0;
$arg_types = $3;
}
$environment_parameters{$env} = {
'types' => \@types,
'translated' => \@translated
};
$environments{$env} = \&generic_environment;
}
}
sub register_verbatim_environment {
my $env = shift;
$no_wrap_environments .= " $env";
$verbatim_environments .= " $env";
$RE_VERBATIM = "\\\\begin\\{(?:" . join( "|", split( / /, $verbatim_environments ) ) . ")\\*?\\}";
register_generic_environment("$env,")
unless ( defined $environments{$env} );
}
####################################
### INITIALIZATION OF THE PARSER ###
####################################
sub initialize {
my $self = shift;
my %options = @_;
$self->{options}{'definitions'} = '';
$self->{options}{'exclude_include'} = '';
$self->{options}{'no_wrap'} = '';
$self->{options}{'verbatim'} = '';
$self->{options}{'debug'} = '';
$self->{options}{'verbose'} = '';
$self->{options}{'no-warn'} = 0; # TexInfo option to not warn about the state of the module
%debug = ();
# FIXME: %commands and %separated_command should also be restored to their
# default values.
foreach my $opt ( keys %options ) {
if ( $options{$opt} ) {
die wrap_mod( "po4a::tex", dgettext( "po4a", "Unknown option: %s" ), $opt )
unless exists $self->{options}{$opt};
$self->{options}{$opt} = $options{$opt};
}
}
if ( $options{'debug'} ) {
foreach ( $options{'debug'} ) {
$debug{$_} = 1;
}
}
if ( $options{'exclude_include'} ) {
foreach ( split( /:/, $options{'exclude_include'} ) ) {
push @exclude_include, $_;
}
}
if ( $options{'no_wrap'} ) {
foreach ( split( /,/, $options{'no_wrap'} ) ) {
$no_wrap_environments .= " $_";
register_generic_environment("$_,")
unless ( defined $environments{$_} );
}
}
if ( $options{'verbatim'} ) {
foreach ( split( /,/, $options{'verbatim'} ) ) {
register_verbatim_environment($_);
}
}
if ( $options{'definitions'} ) {
$self->parse_definition_file( $options{'definitions'} );
}
}
=head1 STATUS OF THIS MODULE
This module needs more tests.
It was tested on a book and with the Python documentation.
=head1 TODO LIST
=over 4
=item Automatic detection of new commands
The TeX module could parse the newcommand arguments and try to guess the
number of arguments, their type and whether or not they should be
translated.
=item Translation of the environment separator
When \item is used as an environment separator, the item argument is
attached to the following string.
=item Some commands should be added to the environment stack
These commands should be specified by couples.
This can be used to specify commands beginning or ending a verbatim
environment.
=item Others
Various other points are tagged TODO in the source.
=back
=head1 KNOWN BUGS
Various points are tagged FIXME in the source.
=head1 SEE ALSO
L<Locale::Po4a::LaTeX(3pm)|Locale::Po4a::LaTeX>,
L<Locale::Po4a::TransTractor(3pm)|Locale::Po4a::TransTractor>,
L<po4a(7)|po4a.7>
=head1 AUTHORS
Nicolas François <nicolas.francois@centraliens.net>
=head1 COPYRIGHT AND LICENSE
Copyright © 2004, 2005 Nicolas FRANÇOIS <nicolas.francois@centraliens.net>.
This program is free software; you may redistribute it and/or modify it
under the terms of GPL v2.0 or later (see the COPYING file).
=cut
1;
__END__
# LocalWords: Charset charset po UTF gettext msgid nostrip LaTeX
|