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
|
package Publican;
use utf8;
use warnings;
use strict;
use Carp;
use Config::Simple '-strict';
use XML::TreeBuilder;
use I18N::LangTags::List;
use Term::ANSIColor qw(:constants uncolor);
use File::Find::Rule;
use Makefile::Parser;
use XML::LibXSLT;
use XML::LibXML;
use Publican::Localise;
use vars
qw(@ISA $VERSION @EXPORT @EXPORT_OK $SINGLETON $LOCALISE $SPEC_VERSION);
$VERSION = '2.8';
@ISA = qw(Exporter AutoLoader);
@EXPORT
= qw(dir_list debug_msg get_all_langs logger help_config maketext old2new new_tree);
# Track when the SPEC file generation is incompatible.
$SPEC_VERSION = '2.6';
my $DEFAULT_CONFIG_FILE = 'publican.cfg';
my $DEBUG = undef;
my $NOCOLOURS = undef;
my $QUIET = undef;
my %PARAM_OLD = (
ARCH => 'arch',
BOOKS => 'books',
BRAND => 'brand',
BREW_DIST => 'brew_dist',
CHUNK_FIRST => 'chunk_first',
CHUNK_SECTION_DEPTH => 'chunk_section_depth',
CLASSPATH => 'classpath',
COMMON_CONFIG => '',
COMMON_CONTENT => '',
CONDITION => 'condition',
CONFIDENTIAL => 'confidential',
DEFAULT_LANGS => '',
DOCNAME => '',
DOC_TYPE => 'type',
DOC_URL => 'doc_url',
DTD_VER => 'dtdver',
DT_OBSOLETES => 'dt_obsoletes',
GENERATE_SECTION_TOC_LEVEL => 'generate_section_toc_level',
IGNORED_TRANSLATIONS => 'ignored_translations',
LICENSE => 'license',
OS_VER => 'os_ver',
PRODUCT => '',
PROD_URL => 'prod_url',
PROD_VERSION => '',
PROGNAME => '', # l10n
SET_REPO => 'repo',
SET_REPO_TYPE => 'scm',
SHOW_REMARKS => 'show_remarks',
SOURCE => '', # l10n
SRC_URL => 'src_url',
STRICT => 'strict',
TRANSLATIONS => '',
TOC_SECTION_DEPTH => 'toc_section_depth',
WEB_BREW_DIST => 'web_brew_dist',
WEB_OBSOLETES => 'web_obsoletes',
XMLFILE => '',
XML_LANG => 'xml_lang',
);
# All the valid fields in the publican.cfg file
# constraint: a regex to validate the content
my %PARAMS = (
arch => {
descr => maketext('Arch to filter output on.'),
},
books => {
descr => maketext(
'A space-separated list of books used in this remote set.'),
},
brand => {
descr => maketext('The brand to use when building this package.'),
default => 'common',
},
brew_dist => {
descr => maketext(
'The brew dist to use for building the standalone desktop rpm.'),
default => 'docs-5E',
},
bridgehead_in_toc => {
descr => maketext('Display bridge head elements in the TOCs?'),
default => 0,
},
chunk_first => {
descr => maketext(
'For HTML, should the first section be on the same page as its parent?'
),
default => 0,
},
chunk_section_depth => {
descr => maketext(
'For HTML, what is the deepest level of nesting at which a section should be split onto its own page?'
),
default => 4,
},
classpath => {
descr => maketext('Path to jar files for FOP.'),
default =>
'/usr/share/java/ant/ant-trax-1.7.0.jar:/usr/share/java/xmlgraphics-commons.jar:/usr/share/java/batik-all.jar:/usr/share/java/xml-commons-apis.jar:/usr/share/java/xml-commons-apis-ext.jar',
},
common_config => {
descr => maketext('Path to publican content.'),
default => '/usr/share/publican',
},
common_content => {
descr => maketext('Path to publican common content.'),
default => '/usr/share/publican/Common_Content',
},
condition => {
descr => maketext(
'Conditions on which to prune XML before transformation.'),
},
confidential => {
descr => maketext('Is the content confidential?'),
default => 0,
},
confidential_text => {
descr =>
maketext('The text used to indicate content is confidential.'),
default => maketext('CONFIDENTIAL'),
},
cvs_root => {
descr => maketext(
'CVS root to import SRPM into. e.g. :ext:@cvs.fedoraproject.org:/cvs/pkgs'
),
},
cvs_pkg => { descr => maketext('The name of the package in CVS.'), },
cvs_branch => { descr => maketext('The Branch of the package in CVS.'), },
debug => {
descr => maketext('Print out extra messages?'),
default => 0,
},
docname => {
descr => maketext(
'Name of this package. Fetched from title tag in xml_lang/TYPE_Info.xml if not set in cfg file.'
),
constraint => '[^0-9a-zA-Z_\-\.\+]',
},
doc_url => {
descr => maketext(
'URL for the documentation team for this package. Used for top right URL on HTML.'
),
default => 'https://fedorahosted.org/publican',
},
dtdver => {
descr => maketext(
'Version of the DocBook DTD on which this project is based.'),
default => '4.5',
},
dt_obsoletes => {
descr => maketext(
'Space separated list of packages the desktop package obsoletes.'
),
},
dt_requires => {
descr => maketext(
'Space separated list of packages the desktop package requires.'),
},
'ec_id' => {
descr =>
maketext('Eclipse plugin ID. Defaults to "$product.$docname"'),
},
'ec_name' => {
descr =>
maketext('Eclipse plugin name. Defaults to "$product $docname"'),
},
'ec_provider' => {
descr => maketext(
'Eclipse plugin provider. Defaults to "Publican-[_1]"', $VERSION
),
},
edition => {
descr => maketext(
'Edition of this package. Fetched from edition tag in xml_lang/TYPE_Info.xml'
),
constraint => '[^0-9.]',
},
generate_section_toc_level => {
descr => maketext(
'Generate table of contents down to the given section depth.'),
default => 0,
},
ignored_translations => {
descr => maketext(
'Languages to replace with xml_lang regardless of translation status.'
),
},
license => {
descr => maketext('License this package uses.'),
default => 'GFDL',
},
mainfile => {
descr => maketext(
'The name of the main xml and ent files for this books, sans file extension and language. Fetched from docname if not set.'
),
},
max_image_width => {
descr => maketext(
'The maximum pixel width an image can be before it will be scaled.'
),
default => '444',
},
menu_category => {
descr => maketext(
'Semi colon separated list of menu categories for thedesktop package.'
),
},
no_embedtoc => {
descr => maketext(
'Brand option to disable embedding the navigational toc in web packages'
),
limit_to => 'brand',
},
os_ver => { descr => maketext('The OS for which to build packages.'), },
product => {
descr => maketext(
'Product this package covers. Fetched from productname tag in xml_lang/TYPE_Info.xml'
),
constraint => '[^0-9a-zA-Z_\-\.\+]',
},
prod_url => {
descr =>
maketext('URL for the product. Used in top left URL in HTML.'),
default => 'https://fedorahosted.org/publican',
},
release => {
descr => maketext(
'Release of this package. For xml_lang fetched from title tag in xml_lang/TYPE_Info.xml. For translations it is fetched from Project-Id-Version in lang/TYPE_Info.po'
),
constraint => '[^0-9.]',
},
repo => {
descr => maketext('Repository from which to fetch remote set books.'),
},
scm => {
descr => maketext(
'Type of repository in which books that form part of a remote set are stored. Supported types: SVN.'
),
},
show_remarks => {
descr => maketext('Display remarks in transformed output.'),
default => 0,
},
show_unknown => {
descr => maketext('Report unknown tags when processing XML.'),
default => 1,
},
src_url => {
descr => maketext(
'URL to find tar of source files. Used in RPM Spec files.'),
},
strict => {
descr => maketext(
'Use strict mode, which prevents the use of tags considered unusable for professional output and translation.'
),
default => 0,
},
tmp_dir => {
descr => maketext('Directory to use for building.'),
default => 'tmp',
},
toc_section_depth => {
descr => maketext(
'Depth of sections to include in the main table of contents.'),
default => 2,
},
type => {
descr => maketext(
'Type of content this package contains. Supported: set, book, article, brand'
),
default => 'Book',
},
version => {
descr => maketext(
'Version of this package. Fetched from productnumber tag in xml_lang/TYPE_Info.xml'
),
constraint => '^[^0-9]',
},
web_brew_dist => {
descr => maketext('The brew dist to use for building the web rpm.'),
default => 'docs-5E',
},
web_formats => {
descr => maketext(
'A comma separated list of the formats to use for the web packages.'
),
default => 'html,html-single,pdf,epub',
},
web_home => {
descr => maketext(
'This is a home page for a Publican-generated website, not a standard book.'
),
alert =>
'web_home is deprecated and will be removed from Publican in the future. Use "web_type: home" instead.',
},
web_type => {
descr => maketext(
'This is a special page for a Publican-generated website, not a standard book. Valid types are home, product, and version.'
),
},
web_host => {
descr => maketext(
'This is a host name for a Publican-generated website, used for searches and the Sitemap. Be sure to include the full path to your document tree. E.g. if your documents are in the docs directory: http://www.example.com/docs'
),
alert =>
'web_host is deprecated and will be removed from Publican in the future. Use "host" in the web site configuration file instead.',
},
web_obsoletes =>
{ descr => maketext('Packages to obsolete in web RPM.'), },
web_search => {
descr => maketext(
'Override the default search form for a Publican website. By default this will use Google search and do a site search if web_host is set.'
),
alert =>
'web_search is deprecated and will be removed from Publican in the future. Use "search" in the web site configuration file instead.',
},
web_name_label => {
descr => maketext(
'Override the book name, bottom level, menu label on a Publican website.'
),
},
web_product_label => {
descr => maketext(
'Override the product, top level, menu label on a Publican website.'
),
},
web_version_label => {
descr => maketext(
'Override the version, middle level, menu label on a Publican website. To hide this menu item set this to: UNUSED'
),
},
xml_lang => {
descr => maketext('Language in which XML is authored.'),
default => 'en-US',
},
);
# Setup localisation ASAP
BEGIN {
if ( !$LOCALISE ) {
$LOCALISE = Publican::Localise->get_handle()
|| croak("Could not create a Publican::Localise object");
$LOCALISE->encoding("UTF-8");
$LOCALISE->textdomain("publican");
}
}
=head1 NAME
Publican - Used to control settings for sub modules.
=head1 VERSION
This document describes Publican version $VERSION
=head1 SYNOPSIS
use Publican;
my $publican = Publican->new({DEBUG => 1});
=head1 DESCRIPTION
Handles general configuration of all sub modules.
=head1 INTERFACE
=cut
# Module implementation here
=head2 _load_config
Private method for loading a config file
=cut
sub _load_config {
my ( $self, $args ) = @_;
my $configfile = ( delete( $args->{configfile} )
|| croak( maketext("configfile is a mandatory argument") ) );
my $common_config = delete( $args->{common_config} );
my $common_content = delete( $args->{common_content} );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]", join( ", ", keys %{$args} )
)
);
}
if ( not -f $configfile ) {
croak(
maketext(
"Config file not found: [_1]. Perhaps you need to run 'publican old2new'",
$configfile
)
);
}
my $config = new Config::Simple();
$config->syntax('http');
$config->read($configfile)
|| croak(
maketext( "Failed to load config file: [_1]", $configfile ) );
foreach my $def ( keys(%PARAMS) ) {
if ( defined $PARAMS{$def}->{default}
and not defined( $config->param($def) ) )
{
$config->param( $def, $PARAMS{$def}->{default} );
}
# Output alerts about a parameter
if ( defined $PARAMS{$def}->{alert}
and defined( $config->param($def) ) )
{
_alert( $PARAMS{$def}->{alert} . "\n" );
}
}
$config->param( 'common_config', $common_config ) if $common_config;
$config->param( 'common_content', $common_content ) if $common_content;
$self->{configfile} = $configfile;
$self->{config} = $config;
my $type = $config->param('type');
my $xml_lang = $config->param('xml_lang');
my $brand = $config->param('brand');
# don't try and load version info for brand files
if ( $type ne 'brand' ) {
croak(
maketext(
"Can't locate required file: [_1]",
"$xml_lang/$type" . '_Info.xml'
)
) if ( !-f "$xml_lang/$type" . '_Info.xml' );
my $xml_doc = XML::TreeBuilder->new();
$xml_doc->parse_file( "$xml_lang/$type" . '_Info.xml' );
my $docname = $config->param('docname')
|| $xml_doc->root()->look_down( "_tag", "title" )->as_text();
if ($@) {
croak maketext("title not found in Info file");
}
$docname =~ s/\s/_/g;
my $product = $config->param('product') || eval {
$xml_doc->root()->look_down( "_tag", "productname" )->as_text();
};
if ($@) {
croak maketext("productname not found in Info file");
}
$product =~ s/\s/_/g;
my $version = $config->param('version') || eval {
$xml_doc->root()->look_down( "_tag", "productnumber" )->as_text();
};
if ($@) {
croak maketext("productnumber not found in Info file");
}
my $edition = $config->param('edition')
|| eval {
$xml_doc->root()->look_down( "_tag", "edition" )->as_text();
};
if ($@) {
croak maketext("edition not found in Info file");
}
my $release = $config->param('release') || eval {
$xml_doc->root()->look_down( "_tag", "pubsnumber" )->as_text();
};
if ($@) {
croak maketext("pubsnumber not found in Info file");
}
if ( not defined( $self->{config}->param('mainfile') ) ) {
$self->{config}->param( 'mainfile', $docname );
}
$self->{config}->param( 'docname', $docname );
$self->{config}->param( 'product', $product );
$self->{config}->param( 'version', $version );
$self->{config}->param( 'release', $release );
$self->{config}->param( 'edition', $edition );
my $path = $self->{config}->param('common_content') . "/$brand";
$path =~ s/\"//g;
# Override publican defaults with brand defaults
if ( -f "$path/defaults.cfg" ) {
my $tmp_cfg = new Config::Simple("$path/defaults.cfg")
|| croak(
maketext("Failed to load brand defaults.cfg file") );
my %Config = $tmp_cfg->vars();
foreach my $cfg ( keys(%Config) ) {
# If a book key is unset or equals the publican default, Override it
if ( ( !$self->{config}->param($cfg) )
or ( !defined( $PARAMS{$cfg}->{default} ) )
or ( $self->{config}->param($cfg) eq
$PARAMS{$cfg}->{default} )
)
{
$self->{config}->param( $cfg, $Config{$cfg} );
}
}
}
# Enforce Brand Overrides
if ( -f "$path/overrides.cfg" ) {
my $tmp_cfg = new Config::Simple("$path/overrides.cfg")
|| croak(
maketext("Failed to load brand overrides.cfg file") );
my %Config = $tmp_cfg->vars();
foreach my $cfg ( keys(%Config) ) {
$config->param( $cfg, $Config{$cfg} );
}
}
# Brand Settings
my $brand_cfg = new Config::Simple("$path/publican.cfg")
|| croak(
maketext(
"Failed to load brand file: [_1]",
"$path/publican.cfg"
)
);
$self->{brand_config} = $brand_cfg;
$config->param( 'ec_name', "$product $docname" )
unless defined $config->param('ec_name');
$config->param( 'ec_id', "org.$product.$docname" )
unless defined $config->param('ec_id');
$config->param( 'ec_provider', "Publican-$VERSION" )
unless defined $config->param('ec_provider');
}
$DEBUG = $self->{config}->param('debug') if ( !$DEBUG );
return;
}
=head2 _validate_config
Private method for validating configuration
=cut
sub _validate_config {
my ( $self, $args ) = @_;
foreach my $key ( keys(%PARAMS) ) {
if ( defined $PARAMS{$key}->{constraint} ) {
my $value = $self->{config}->param($key);
my $constraint = $PARAMS{$key}->{constraint};
if ( $value && $value =~ /$constraint/ ) {
croak(
maketext(
"Invalid format for [_1]. Value ([_2]) does not conform to constraint ([_3])",
$key, $value, $constraint
)
);
}
}
}
return;
}
=head2 new
Create a Publican object.
my $publican = Publican->new({debug => 1});
=head3 Parameters:
configfile Override Configuration file to use.
debug Use debug mode for messages.
common_config Override path to coomo configuration files.
common_content Override path to common content files.
=cut
sub new {
my ( $this, $args ) = @_;
my $class = ref($this) || $this;
my $self;
if ($SINGLETON) {
$self = $SINGLETON;
}
else {
my $configfile
= ( delete( $args->{configfile} ) || $DEFAULT_CONFIG_FILE );
$DEBUG = ( delete( $args->{debug} ) || $DEBUG );
my $common_config = delete( $args->{common_config} );
my $common_content = delete( $args->{common_content} );
$QUIET = delete( $args->{QUIET} );
$NOCOLOURS = delete( $args->{NOCOLOURS} );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]",
join( ", ", keys %{$args} )
)
);
}
$self = bless {}, $class;
$SINGLETON = $self;
if ( $^O eq 'MSWin32' ) {
eval { require Win32::TieRegistry; };
croak(
maketext(
"Failed to load Win32::TieRegistry module. Error: [_1]",
$@
)
) if ($@);
$ENV{ANSI_COLORS_DISABLED} = 1;
my $key = new Win32::TieRegistry( "LMachine\\Software\\Publican",
{ Delimiter => "\\" } );
if ( $key and $key->GetValue("") ) {
if ( !$common_config ) {
$common_config = $key->GetValue("");
$common_config =~ s/\\/\//g;
}
$common_content = "$common_config/Common_Content"
if ( !$common_content );
}
$common_config = qq{"$common_config"} if ($common_config);
$common_content = qq{"$common_content"} if ($common_content);
}
$self->_load_config(
{ configfile => $configfile,
common_config => $common_config,
common_content => $common_content
}
);
debug_msg( maketext("config loaded") . "\n" );
$self->_validate_config();
}
return $self;
}
=head2 debug_msg
Print out debugging information.
=cut
sub debug_msg {
my ($arg) = @_;
my ( $caller, $func, $line, @rest ) = caller(1); # caller(0) eg
# Complete, caller(1)
# eg readline
# bail ASAP if not debugging
if ( !$DEBUG ) {
return;
}
($caller) = caller(0);
# $caller =~ s/.*:://;
$arg = "" unless defined $arg;
$func = "" unless defined $func;
$line = "" unless defined $line;
my $rest = join "|", map { defined $_ ? $_ : "UNDEF" } @rest;
logger( "\nDEBUG: ", RED );
if ( 0 and $arg and ref $arg ) {
eval { require Data::Dumper };
if ($@) {
logger( $arg->as_string, RED );
}
else {
logger( Data::Dumper::Dumper($arg), RED );
}
}
else {
# logger( "$caller: $func, $line\n\t$arg\n", RED );
logger( "$caller: $arg", RED );
}
return;
}
sub _alert {
my ($msg) = @_;
logger( $msg, RED );
return;
}
=head2 param
Return the current value of a configuration parameter
$publican->param('debug');
=cut
sub param {
my ( $self, $name ) = @_;
return $self->{config}->param($name)
if defined( $self->{config}->param($name) );
return $PARAMS{$name}->{default} if defined $PARAMS{$name}->{default};
return;
}
=head2 help_config
Display a list of config file parameters and a short description of them.
=cut
sub help_config {
my ( $self, $name ) = @_;
logger( maketext("Parameters used in the config file:") . "\n" );
foreach my $param ( sort( keys(%PARAMS) ) ) {
logger( "\t$param:\n\t\t" . $PARAMS{$param}->{descr} . "\n" );
logger( "\t\t"
. maketext( "Default: [_1]", $PARAMS{$param}->{default} )
. "\n" )
if ( defined( $PARAMS{$param}->{default} ) );
logger( "\t\t"
. maketext( "Constraint: [_1]",
$PARAMS{$param}->{constraint} )
. "\n" )
if ( defined( $PARAMS{$param}->{constraint} ) );
logger("\n");
}
return;
}
=head2 dir_list
list all the files in a directory, and its sub-directories, matching the supplied regex.
=cut
sub dir_list {
my ( $dir, $regex ) = @_;
croak( maketext("dir is a required argument") ) unless ($dir);
unless ( -d $dir ) {
logger( maketext( "skipping non existent directory: [_1]", $dir ) );
return;
}
croak( maketext("regex is a required argument") )
if ( !$regex || $regex eq "" );
my @filelist = File::Find::Rule->file->name($regex)->in($dir);
return @filelist;
}
=head2 get_all_langs
Get all valid language directories.
=cut
sub get_all_langs {
my ( $handle, %filelist, @langs );
my $tmp_dir = $SINGLETON->param('tmp_dir');
opendir( $handle, '.' )
|| croak( maketext( "Can't open directory: [_1]", $@ ) );
my @dirs = sort( readdir($handle) );
closedir($handle);
foreach my $dir (@dirs) {
if ( -d $dir ) {
next
if (
$dir =~ /^(\.|\.\.|pot|$tmp_dir|xsl|\..*|CVS|publish)$/ );
if ( valid_lang($dir) ) {
push( @langs, $dir );
}
else {
logger( maketext( "Skipping unknown language: [_1]", $dir )
. "\n" );
}
}
}
return ( join( ',', @langs ) );
}
=head2 logger
Log something, currently emits to STDOUT
TODO: consider using Log::Dispatch or similar
=cut
sub logger {
my ( $msg, $colour ) = @_;
return if ($QUIET);
if ( $colour && !$NOCOLOURS ) {
print( STDOUT $colour, $msg, RESET );
}
else {
print( STDOUT $msg );
}
return;
}
=head2 valid_lang
Is the requested language valid according to I18N::LangTags::List
=cut
sub valid_lang {
my $lang = shift;
my $name = ( I18N::LangTags::List::name($lang) || '' );
return ( I18N::LangTags::List::is_decent($lang) && ( $name ne '' ) );
}
=head2 maketext
Get localised strings
=cut
sub maketext {
my $string = shift();
my @params = @_;
if ($LOCALISE) {
return ( $LOCALISE->maketext( $string, @params ) );
}
else {
carp( RED, "Warning localisation not enabled!\n", RESET );
}
return ($string);
}
=head2 old2new
Parse a publican 0.x Makefile and create a publican 1.x config file.
=cut
sub old2new {
my $parser = Makefile::Parser->new();
$parser->parse('Makefile') or croak( Makefile::Parser->error() );
# get all the variable names defined in the Makefile:
my @vars = $parser->vars();
print( STDOUT "found: " . join( ' ', sort @vars ) . "\n" );
my $config = new Config::Simple();
$config->syntax('http');
foreach my $var (@vars) {
if ( !defined $PARAM_OLD{$var} ) {
logger( maketext( "[_1] is not handled yet.", $var ) . "\n" );
next;
}
if ( $PARAM_OLD{$var} eq '' ) {
logger( maketext( "[_1] is not used anymore.", $var ) . "\n" );
next;
}
$config->param( $PARAM_OLD{$var}, $parser->var($var) );
}
$config->param( 'debug', '1' );
$config->write('publican.cfg');
return;
}
=head2 get_abstract
Return the abstract for the supplied langauge with all white space truncted.
=cut
sub get_abstract {
my ( $self, $args ) = @_;
my $lang = delete( $args->{lang} )
|| croak( maketext("lang is a mandatory argument") );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]", join( ", ", keys %{$args} )
)
);
}
my $tmp_dir = $self->param('tmp_dir');
my $info_file
= "$tmp_dir/$lang/xml/" . $self->param('type') . '_Info.xml';
croak( maketext("abstract can not be calculated before building.") )
unless ( -f $info_file );
my $xsl_file = $self->param('common_config') . "/xsl/abstract.xsl";
my $abstract = $self->run_xslt(
{ xml_file => $info_file, xsl_file => $xsl_file } );
# tidy up white space
$abstract =~ s/^[ \t]*//gm;
$abstract =~ s/^\n\n+//;
$abstract =~ s/\n\n+$//;
$abstract =~ s/\n\n\n/\n\n/g;
$abstract =~ s/[ \t][ \t]+/ /gm;
# RPM doesn't like non-breaking-space
$abstract =~ s/\x{A0}/ /gm;
return ($abstract);
}
=head2 get_subtitle
Return the subtitle for the supplied langauge with white space truncted.
=cut
sub get_subtitle {
my ( $self, $args ) = @_;
my $lang = delete( $args->{lang} )
|| croak( maketext("lang is a mandatory argument") );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]", join( ", ", keys %{$args} )
)
);
}
my $tmp_dir = $self->param('tmp_dir');
my $info_file
= "$tmp_dir/$lang/xml/" . $self->param('type') . '_Info.xml';
croak( maketext("subtitle can not be calculated before building.") )
unless ( -f $info_file );
my $xsl_file = $self->param('common_config') . "/xsl/subtitle.xsl";
my $subtitle = $self->run_xslt(
{ xml_file => $info_file, xsl_file => $xsl_file } );
# tidy up white space
$subtitle =~ s/^\s*//gm;
# RPM doesn't like non-breaking-space
$subtitle =~ s/\x{A0}/ /gm;
$subtitle =~ s/\s+/ /;
return ($subtitle);
}
=head2 run_xslt
Apply the supplied xslt file to teh supplied XML and return a string of the output.
=cut
sub run_xslt {
my ( $self, $args ) = @_;
my $xml_file = delete( $args->{xml_file} )
|| croak( maketext("xml_file is a mandatory argument") );
my $xsl_file = delete( $args->{xsl_file} )
|| croak( maketext("xsl_file is a mandatory argument") );
if ( %{$args} ) {
croak(
maketext(
"unknown arguments: [_1]", join( ", ", keys %{$args} )
)
);
}
my $parser = XML::LibXML->new();
my $xslt = XML::LibXSLT->new();
$parser->expand_entities(1);
my $source;
eval { $source = $parser->parse_file($xml_file); };
if ($@) {
if ( ref($@) ) {
# handle a structured error (XML::LibXML::Error object)
croak(
maketext(
"FATAL ERROR: [_1]:[_2] in [_3] on line [_4]: [_5]",
$@->domain(),
$@->code(),
$@->file(),
$@->line(),
$@->message(),
)
);
}
else {
croak( maketext( "FATAL ERROR: [_1]", $@ ) );
}
}
my $style_doc = $parser->parse_file($xsl_file);
if ( $^O eq 'MSWin32' ) {
eval { require Win32::TieRegistry; };
croak(
maketext(
"Failed to load Win32::TieRegistry module. Error: [_1]", $@
)
) if ($@);
my $defualt_href
= 'http://docbook.sourceforge.net/release/xsl/current';
my $key = new Win32::TieRegistry( "LMachine\\Software\\Publican",
{ Delimiter => "\\" } );
my $new_href = 'file:///D:/Data/temp/Redhat/docbook-xsl-1.75.2';
if ( $key and $key->GetValue("xsl_path") ) {
$new_href = 'file:///' . $key->GetValue("xsl_path");
$new_href =~ s/ /%20/g;
$new_href =~ s/\\/\//g;
}
my @nodelist = $style_doc->getElementsByTagName('xsl:import');
foreach my $node (@nodelist) {
my $href = $node->getAttribute('href');
debug_msg("changing $defualt_href to $new_href\n");
$href =~ s|$defualt_href|$new_href|;
$node->setAttribute( 'href', $href );
}
}
my $stylesheet = $xslt->parse_stylesheet($style_doc);
my $results = $stylesheet->transform($source);
my $value;
eval { $value = $stylesheet->output_string($results) };
return ($value);
}
=head2 new_tree
Create a new XML::TreeBuilder object with the required attributes for DocBook.
TODO: Make XmlClean use this.
=cut
sub new_tree {
my $store_comments = ( shift() || 0 );
my $xml_doc = XML::TreeBuilder->new(
{ 'NoExpand' => "1", 'ErrorContext' => "2" } );
my $empty_element_map = $xml_doc->_empty_element_map;
$empty_element_map->{'xref'} = 1;
$empty_element_map->{'index'} = 1;
$empty_element_map->{'imagedata'} = 1;
$empty_element_map->{'area'} = 1;
$empty_element_map->{'ulink'} = 1;
$empty_element_map->{'xi:include'} = 1;
$xml_doc->store_comments(1) if ($store_comments);
return ($xml_doc);
}
1; # Magic true value required at end of module
__END__
=head1 DIAGNOSTICS
=over
=item C<< unknown args %s >>
All subs with named parameters will return this error when unexpected named arguments are provided.
=item C<< %s is a required argument >>
Any sub with a mandatory parameter will return this error if the parameter is undef.
=item C<< Config file not found: %s >>
publican can not find the named configuration file.
=item C<< Failed to load config file: %s >>
The named configuration file could not be loaded.
=item C<< Can't locate required file: %s >>
A file required for processing could not be found.
=item C<< title not found in Info file >>
The <type>_Info.xml file does not contain a title tag.
=item C<< productname not found in Info file >>
The <type>_Info.xml file does not contain a productname tag.
=item C<< productnumber not found in Info file >>
The <type>_Info.xml file does not contain a productnumber tag.
=item C<< edition not found in Info file >>
The <type>_Info.xml file does not contain a edition tag.
=item C<< pubsnumber not found in Info file >>
The <type>_Info.xml file does not contain a pubsnumber tag.
=item C<< Failed to load brand default config file >>
A detected defaults.cfg for the current brand could not be loaded.
=item C<< Failed to load brand overrides config file >>
A detected overrides.cfg for the current brand could not be loaded.
=item C<< Could not create a Publican::Localise object >>
Could not create a Publican::Localise object
=item C<< Can't open directory >>
=back
=head1 CONFIGURATION AND ENVIRONMENT
Publican requires no configuration files or environment variables.
=head1 DEPENDENCIES
Carp
version
Config::Simple
XML::TreeBuilder
I18N::LangTags::List
Term::ANSIColor
File::Find::Rule;
Publican::Localise;
=head1 INCOMPATIBILITIES
None reported.
=head1 BUGS AND LIMITATIONS
No bugs have been reported.
Please report any bugs or feature requests to
C<publican-list@redhat.com>, or through the web interface at
L<https://bugzilla.redhat.com/bugzilla/enter_bug.cgi?product=Publican&component=publican>.
=head1 AUTHOR
Jeff Fearn C<< <jfearn@redhat.com> >>
|