intltool-update.in
上传用户:ledjyj
上传日期:2014-08-27
资源大小:2639k
文件大小:27k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. #!@INTLTOOL_PERL@ -w
  2. # -*- Mode: perl; indent-tabs-mode: nil; c-basic-offset: 4  -*-
  3. #
  4. #  The Intltool Message Updater
  5. #
  6. #  Copyright (C) 2000-2003 Free Software Foundation.
  7. #
  8. #  Intltool is free software; you can redistribute it and/or
  9. #  modify it under the terms of the GNU General Public License 
  10. #  version 2 published by the Free Software Foundation.
  11. #
  12. #  Intltool is distributed in the hope that it will be useful,
  13. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. #  General Public License for more details.
  16. #
  17. #  You should have received a copy of the GNU General Public License
  18. #  along with this program; if not, write to the Free Software
  19. #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. #
  21. #  As a special exception to the GNU General Public License, if you
  22. #  distribute this file as part of a program that contains a
  23. #  configuration script generated by Autoconf, you may include it under
  24. #  the same distribution terms that you use for the rest of that program.
  25. #
  26. #  Authors: Kenneth Christiansen <kenneth@gnu.org>
  27. #           Maciej Stachowiak
  28. #           Darin Adler <darin@bentspoon.com>
  29. ## Release information
  30. my $PROGRAM = "intltool-update";
  31. my $VERSION = "0.35.0";
  32. my $PACKAGE = "intltool";
  33. ## Loaded modules
  34. use strict;
  35. use Getopt::Long;
  36. use Cwd;
  37. use File::Copy;
  38. use File::Find;
  39. ## Scalars used by the option stuff
  40. my $HELP_ARG     = 0;
  41. my $VERSION_ARG    = 0;
  42. my $DIST_ARG    = 0;
  43. my $POT_ARG    = 0;
  44. my $HEADERS_ARG    = 0;
  45. my $MAINTAIN_ARG   = 0;
  46. my $REPORT_ARG     = 0;
  47. my $VERBOSE    = 0;
  48. my $GETTEXT_PACKAGE = "";
  49. my $OUTPUT_FILE    = "";
  50. my @languages;
  51. my %varhash = ();
  52. my %po_files_by_lang = ();
  53. # Regular expressions to categorize file types.
  54. # FIXME: Please check if the following is correct
  55. my $xml_support =
  56. "xml(?:\.in)*|". # http://www.w3.org/XML/ (Note: .in is not required)
  57. "ui|". # Bonobo specific - User Interface desc. files
  58. "lang|". # ?
  59. "glade2?(?:\.in)*|". # Glade specific - User Interface desc. files (Note: .in is not required)
  60. "scm(?:\.in)*|". # ? (Note: .in is not required)
  61. "oaf(?:\.in)+|". # DEPRECATED: Replaces by Bonobo .server files 
  62. "etspec|". # ?
  63. "server(?:\.in)+|". # Bonobo specific
  64. "sheet(?:\.in)+|". # ?
  65. "schemas(?:\.in)+|". # GConf specific
  66. "pong(?:\.in)+|". # DEPRECATED: PONG is not used [by GNOME] any longer.
  67. "kbd(?:\.in)+"; # GOK specific. 
  68. my $ini_support =
  69. "icon(?:\.in)+|". # http://www.freedesktop.org/Standards/icon-theme-spec
  70. "desktop(?:\.in)+|". # http://www.freedesktop.org/Standards/menu-spec
  71. "caves(?:\.in)+|". # GNOME Games specific
  72. "directory(?:\.in)+|". # http://www.freedesktop.org/Standards/menu-spec
  73. "soundlist(?:\.in)+|". # GNOME specific
  74. "keys(?:\.in)+|". # GNOME Mime database specific
  75. "theme(?:\.in)+|". # http://www.freedesktop.org/Standards/icon-theme-spec
  76. "service(?:\.in)+";    # DBus specific
  77. my $buildin_gettext_support = 
  78. "c|y|cs|cc|cpp|c\+\+|h|hh|gob|py";
  79. ## Always flush buffer when printing
  80. $| = 1;
  81. ## Sometimes the source tree will be rooted somewhere else.
  82. my $SRCDIR = ".";
  83. my $POTFILES_in;
  84. $SRCDIR = $ENV{"srcdir"} if $ENV{"srcdir"};
  85. $POTFILES_in = "<$SRCDIR/POTFILES.in";
  86. my $devnull = ($^O eq 'MSWin32' ? 'NUL:' : '/dev/null');
  87. ## Handle options
  88. GetOptions 
  89. (
  90.  "help"         => $HELP_ARG,
  91.  "version"         => $VERSION_ARG,
  92.  "dist|d"        => $DIST_ARG,
  93.  "pot|p"        => $POT_ARG,
  94.  "headers|s"        => $HEADERS_ARG,
  95.  "maintain|m"        => $MAINTAIN_ARG,
  96.  "report|r"        => $REPORT_ARG,
  97.  "verbose|x"        => $VERBOSE,
  98.  "gettext-package|g=s" => $GETTEXT_PACKAGE,
  99.  "output-file|o=s"     => $OUTPUT_FILE,
  100.  ) or &Console_WriteError_InvalidOption;
  101. &Console_Write_IntltoolHelp if $HELP_ARG;
  102. &Console_Write_IntltoolVersion if $VERSION_ARG;
  103. my $arg_count = ($DIST_ARG > 0)
  104.     + ($POT_ARG > 0)
  105.     + ($HEADERS_ARG > 0)
  106.     + ($MAINTAIN_ARG > 0)
  107.     + ($REPORT_ARG > 0);
  108. &Console_Write_IntltoolHelp if $arg_count > 1;
  109. # --version and --help don't require a module name
  110. my $MODULE = $GETTEXT_PACKAGE || &FindPackageName || "unknown";
  111. if ($POT_ARG)
  112. {
  113.     &GenerateHeaders;
  114.     &GeneratePOTemplate;
  115. }
  116. elsif ($HEADERS_ARG)
  117. {
  118.     &GenerateHeaders;
  119. }
  120. elsif ($MAINTAIN_ARG)
  121. {
  122.     &FindLeftoutFiles;
  123. }
  124. elsif ($REPORT_ARG)
  125. {
  126.     &GenerateHeaders;
  127.     &GeneratePOTemplate;
  128.     &Console_Write_CoverageReport;
  129. }
  130. elsif ((defined $ARGV[0]) && $ARGV[0] =~ /^[a-z]/)
  131. {
  132.     my $lang = $ARGV[0];
  133.     ## Report error if the language file supplied
  134.     ## to the command line is non-existent
  135.     &Console_WriteError_NotExisting("$SRCDIR/$lang.po")
  136.         if ! -s "$SRCDIR/$lang.po";
  137.     if (!$DIST_ARG)
  138.     {
  139. print "Working, please wait..." if $VERBOSE;
  140. &GenerateHeaders;
  141. &GeneratePOTemplate;
  142.     }
  143.     &POFile_Update ($lang, $OUTPUT_FILE);
  144.     &Console_Write_TranslationStatus ($lang, $OUTPUT_FILE);
  145. else 
  146. {
  147.     &Console_Write_IntltoolHelp;
  148. }
  149. exit;
  150. #########
  151. sub Console_Write_IntltoolVersion
  152. {
  153.     print <<_EOF_;
  154. ${PROGRAM} (${PACKAGE}) $VERSION
  155. Written by Kenneth Christiansen, Maciej Stachowiak, and Darin Adler.
  156. Copyright (C) 2000-2003 Free Software Foundation, Inc.
  157. This is free software; see the source for copying conditions.  There is NO
  158. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  159. _EOF_
  160.     exit;
  161. }
  162. sub Console_Write_IntltoolHelp
  163. {
  164.     print <<_EOF_;
  165. Usage: ${PROGRAM} [OPTION]... LANGCODE
  166. Updates PO template files and merge them with the translations.
  167. Mode of operation (only one is allowed):
  168.   -p, --pot                   generate the PO template only
  169.   -s, --headers               generate the header files in POTFILES.in
  170.   -m, --maintain              search for left out files from POTFILES.in
  171.   -r, --report                display a status report for the module
  172.   -d, --dist                  merge LANGCODE.po with existing PO template
  173. Extra options:
  174.   -g, --gettext-package=NAME  override PO template name, useful with --pot
  175.   -o, --output-file=FILE      write merged translation to FILE
  176.   -x, --verbose               display lots of feedback
  177.       --help                  display this help and exit
  178.       --version               output version information and exit
  179. Examples of use:
  180. ${PROGRAM} --pot    just create a new PO template
  181. ${PROGRAM} xy       create new PO template and merge xy.po with it
  182. Report bugs to http://bugzilla.gnome.org/ (product name "$PACKAGE")
  183. or send email to <xml-i18n-tools@gnome.org>.
  184. _EOF_
  185.     exit;
  186. }
  187. sub echo_n
  188. {
  189.     my $str = shift;
  190.     my $ret = `echo "$str"`;
  191.     $ret =~ s/n$//; # do we need the "s" flag?
  192.     return $ret;
  193. }
  194. sub POFile_DetermineType ($) 
  195. {
  196.    my $type = $_;
  197.    my $gettext_type;
  198.    my $xml_regex     = "(?:" . $xml_support . ")";
  199.    my $ini_regex     = "(?:" . $ini_support . ")";
  200.    my $buildin_regex = "(?:" . $buildin_gettext_support . ")";
  201.    if ($type =~ /[type: gettext/([^]].*)]/) 
  202.    {
  203. $gettext_type=$1;
  204.    }
  205.    elsif ($type =~ /schemas(.in)+$/) 
  206.    {
  207. $gettext_type="schemas";
  208.    }
  209.    elsif ($type =~ /glade2?(.in)*$/) 
  210.    {
  211.        $gettext_type="glade";
  212.    }
  213.    elsif ($type =~ /scm(.in)*$/) 
  214.    {
  215.        $gettext_type="scheme";
  216.    }
  217.    elsif ($type =~ /keys(.in)+$/) 
  218.    {
  219.        $gettext_type="keys";
  220.    }
  221.    # bucket types
  222.    elsif ($type =~ /$xml_regex$/) 
  223.    {
  224.        $gettext_type="xml";
  225.    }
  226.    elsif ($type =~ /$ini_regex$/) 
  227.    { 
  228.        $gettext_type="ini";
  229.    }
  230.    elsif ($type =~ /$buildin_regex$/) 
  231.    {
  232.        $gettext_type="buildin";
  233.    }
  234.    else
  235.    { 
  236.        $gettext_type="unknown"; 
  237.    }
  238.    return "gettext/$gettext_type";
  239. }
  240. sub TextFile_DetermineEncoding ($) 
  241. {
  242.     my $gettext_code="ASCII"; # All files are ASCII by default
  243.     my $filetype=`file $_ | cut -d ' ' -f 2`;
  244.     if ($? eq "0")
  245.     {
  246. if ($filetype =~ /^(ISO|UTF)/)
  247. {
  248.     chomp ($gettext_code = $filetype);
  249. }
  250. elsif ($filetype =~ /^XML/)
  251. {
  252.     $gettext_code="UTF-8"; # We asume that .glade and other .xml files are UTF-8
  253. }
  254.     }
  255.     return $gettext_code;
  256. }
  257. sub isNotValidMissing
  258. {
  259.     my ($file) = @_;
  260.     return if $file =~ /^{arch}/.*$/;
  261.     return if $file =~ /^$varhash{"PACKAGE"}-$varhash{"VERSION"}/.*$/;
  262. }
  263. sub FindLeftoutFiles
  264. {
  265.     my (@buf_i18n_plain,
  266. @buf_i18n_xml,
  267. @buf_i18n_xml_unmarked,
  268. @buf_i18n_ini,
  269. @buf_potfiles,
  270. @buf_potfiles_ignore,
  271. @buf_allfiles,
  272. @buf_allfiles_sorted,
  273. @buf_potfiles_sorted
  274.     );
  275.     ## Search and find all translatable files
  276.     find sub { 
  277. push @buf_i18n_plain,        "$File::Find::name" if /.($buildin_gettext_support)$/;
  278. push @buf_i18n_xml,          "$File::Find::name" if /.($xml_support)$/;
  279. push @buf_i18n_ini,          "$File::Find::name" if /.($ini_support)$/;
  280. push @buf_i18n_xml_unmarked, "$File::Find::name" if /.(schemas(.in)+)$/;
  281. }, "..";
  282.     open POTFILES, $POTFILES_in or die "$PROGRAM:  there's no POTFILES.in!n";
  283.     @buf_potfiles = grep !/^(#|s*$)/, <POTFILES>;
  284.     close POTFILES;
  285.     foreach (@buf_potfiles) {
  286. s/^[.*]s*//;
  287.     }
  288.     print "Searching for missing translatable files...n" if $VERBOSE;
  289.     ## Check if we should ignore some found files, when
  290.     ## comparing with POTFILES.in
  291.     foreach my $ignore ("POTFILES.skip", "POTFILES.ignore")
  292.     {
  293. (-s $ignore) or next;
  294. if ("$ignore" eq "POTFILES.ignore")
  295. {
  296.     print "The usage of POTFILES.ignore is deprecated. Please consider moving then".
  297.   "content of this file to POTFILES.skip.n";
  298. }
  299. print "Found $ignore: Ignoring files...n" if $VERBOSE;
  300. open FILE, "<$ignore" or die "ERROR: Failed to open $ignore!n";
  301.     
  302. while (<FILE>)
  303. {
  304.     push @buf_potfiles_ignore, $_ unless /^(#|s*$)/;
  305. }
  306. close FILE;
  307. @buf_potfiles = (@buf_potfiles_ignore, @buf_potfiles);
  308.     }
  309.     foreach my $file (@buf_i18n_plain)
  310.     {
  311. my $in_comment = 0;
  312. my $in_macro = 0;
  313. open FILE, "<$file";
  314. while (<FILE>)
  315. {
  316.     # Handle continued multi-line comment.
  317.     if ($in_comment)
  318.     {
  319. next unless s-.**/--;
  320. $in_comment = 0;
  321.     }
  322.     # Handle continued macro.
  323.     if ($in_macro)
  324.     {
  325. $in_macro = 0 unless /\$/;
  326. next;
  327.     }
  328.     # Handle start of macro (or any preprocessor directive).
  329.     if (/^s*#/)
  330.     {
  331. $in_macro = 1 if /^([^\]|\.)*\$/;
  332. next;
  333.     }
  334.     # Handle comments and quoted text.
  335.     while (m-(/*|//|'|")-) # ' and " keep emacs perl mode happy
  336.     {
  337. my $match = $1;
  338. if ($match eq "/*")
  339. {
  340.     if (!s-/*.*?*/--)
  341.     {
  342. s-/*.*--;
  343. $in_comment = 1;
  344.     }
  345. }
  346. elsif ($match eq "//")
  347. {
  348.     s-//.*--;
  349. }
  350. else # ' or "
  351. {
  352.     if (!s-$match([^\]|\.)*?$match-QUOTEDTEXT-)
  353.     {
  354. warn "mismatched quotes at line $. in $filen";
  355. s-$match.*--;
  356.     }
  357. }
  358.     }     
  359.     if (/.GetString ?(QUOTEDTEXT/)
  360.     {
  361.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  362.                     ## Remove the first 3 chars and add newline
  363.                     push @buf_allfiles, unpack("x3 A*", $file) . "n";
  364.                 }
  365. last;
  366.     }
  367.     if (/_(QUOTEDTEXT/)
  368.     {
  369.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  370.                     ## Remove the first 3 chars and add newline
  371.                     push @buf_allfiles, unpack("x3 A*", $file) . "n";
  372.                 }
  373. last;
  374.     }
  375. }
  376. close FILE;
  377.     }
  378.     foreach my $file (@buf_i18n_xml) 
  379.     {
  380. open FILE, "<$file";
  381. while (<FILE>) 
  382. {
  383.     # FIXME: share the pattern matching code with intltool-extract
  384.     if (/s_[-A-Za-z0-9._:]+s*=s*"([^"]+)"/ || /<_[^>]+>/ || /translatable="yes"/)
  385.     {
  386.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  387.                     push @buf_allfiles, unpack("x3 A*", $file) . "n";
  388.                 }
  389. last;
  390.     }
  391. }
  392. close FILE;
  393.     }
  394.     foreach my $file (@buf_i18n_ini)
  395.     {
  396. open FILE, "<$file";
  397. while (<FILE>) 
  398. {
  399.     if (/_(.*)=/)
  400.     {
  401.                 if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  402.                     push @buf_allfiles, unpack("x3 A*", $file) . "n";
  403.                 }
  404. last;
  405.     }
  406. }
  407. close FILE;
  408.     }
  409.     foreach my $file (@buf_i18n_xml_unmarked)
  410.     {
  411.         if (defined isNotValidMissing (unpack("x3 A*", $file))) {
  412.             push @buf_allfiles, unpack("x3 A*", $file) . "n";
  413.         }
  414.     }
  415.     @buf_allfiles_sorted = sort (@buf_allfiles);
  416.     @buf_potfiles_sorted = sort (@buf_potfiles);
  417.     my %in2;
  418.     foreach (@buf_potfiles_sorted) 
  419.     {
  420. $in2{$_} = 1;
  421.     }
  422.     my @result;
  423.     foreach (@buf_allfiles_sorted)
  424.     {
  425. if (!exists($in2{$_}))
  426. {
  427.     push @result, $_
  428. }
  429.     }
  430.     my @buf_potfiles_notexist;
  431.     foreach (@buf_potfiles_sorted)
  432.     {
  433. chomp (my $dummy = $_);
  434. if ("$dummy" ne "" and ! -f "../$dummy")
  435. {
  436.     push @buf_potfiles_notexist, $_;
  437. }
  438.     }
  439.     ## Save file with information about the files missing
  440.     ## if any, and give information about this procedure.
  441.     if (@result + @buf_potfiles_notexist > 0)
  442.     {
  443. if (@result) 
  444. {
  445.     print "n" if $VERBOSE;
  446.     unlink "missing";
  447.     open OUT, ">missing";
  448.     print OUT @result;
  449.     close OUT;
  450.     warn "e[1mThe following files contain translations and are currently not in use. Pleasee[0mn".
  451.          "e[1mconsider adding these to the POTFILES.in file, located in the po/ directory.e[0mnn";
  452.     print STDERR @result, "n";
  453.     warn "If some of these files are left out on purpose then please add them ton".
  454.  "POTFILES.skip instead of POTFILES.in. A file e[1m'missing'e[0m containing this listn".
  455.  "of left out files has been written in the current directory.n";
  456. }
  457. if (@buf_potfiles_notexist)
  458. {
  459.     unlink "notexist";
  460.     open OUT, ">notexist";
  461.     print OUT @buf_potfiles_notexist;
  462.     close OUT;
  463.     warn "n" if ($VERBOSE or @result);
  464.     warn "e[1mThe following files do not exist anymore:e[0mnn";
  465.     warn @buf_potfiles_notexist, "n";
  466.     warn "Please remove them from POTFILES.in or POTFILES.skip. A file e[1m'notexist'e[0mn".
  467.  "containing this list of absent files has been written in the current directory.n";
  468. }
  469.     }
  470.     ## If there is nothing to complain about, notify the user
  471.     else {
  472. print "nAll files containing translations are present in POTFILES.in.n" if $VERBOSE;
  473.     }
  474. }
  475. sub Console_WriteError_InvalidOption
  476. {
  477.     ## Handle invalid arguments
  478.     print STDERR "Try `${PROGRAM} --help' for more information.n";
  479.     exit 1;
  480. }
  481. sub GenerateHeaders
  482. {
  483.     my $EXTRACT = "@INTLTOOL_EXTRACT@";
  484.     chomp $EXTRACT;
  485.     $EXTRACT = $ENV{"INTLTOOL_EXTRACT"} if $ENV{"INTLTOOL_EXTRACT"};
  486.     ## Generate the .h header files, so we can allow glade and
  487.     ## xml translation support
  488.     if (! -x "$EXTRACT")
  489.     {
  490. print STDERR "n *** The intltool-extract script wasn't found!"
  491.      ."n *** Without it, intltool-update can not generate files.n";
  492. exit;
  493.     }
  494.     else
  495.     {
  496. open (FILE, $POTFILES_in) or die "$PROGRAM: POTFILES.in not found.n";
  497. while (<FILE>) 
  498. {
  499.    chomp;
  500.    next if /^[s*encoding/;
  501.    ## Find xml files in POTFILES.in and generate the
  502.    ## files with help from the extract script
  503.    my $gettext_type= &POFile_DetermineType ($1);
  504.    if (/.($xml_support|$ini_support)$/ || /^[/)
  505.    {
  506.        s/^[[^[].*]s*//;
  507.        my $filename = "../$_";
  508.        if ($VERBOSE)
  509.        {
  510.    system ($EXTRACT, "--update", "--srcdir=$SRCDIR",
  511.    "--type=$gettext_type", $filename);
  512.        } 
  513.        else 
  514.        {
  515.      system ($EXTRACT, "--update", "--type=$gettext_type", 
  516.    "--srcdir=$SRCDIR", "--quiet", $filename);
  517.        }
  518.    }
  519.        }
  520.        close FILE;
  521.    }
  522. }
  523. #
  524. # Generate .pot file from POTFILES.in
  525. #
  526. sub GeneratePOTemplate
  527. {
  528.     my $XGETTEXT = $ENV{"XGETTEXT"} || "@INTLTOOL_XGETTEXT@";
  529.     my $XGETTEXT_ARGS = $ENV{"XGETTEXT_ARGS"} || '';
  530.     chomp $XGETTEXT;
  531.     if (! -x $XGETTEXT)
  532.     {
  533. print STDERR " *** xgettext is not found on this system!n".
  534.      " *** Without it, intltool-update can not extract strings.n";
  535. exit;
  536.     }
  537.     print "Building $MODULE.pot...n" if $VERBOSE;
  538.     open INFILE, $POTFILES_in;
  539.     unlink "POTFILES.in.temp";
  540.     open OUTFILE, ">POTFILES.in.temp" or die("Cannot open POTFILES.in.temp for writing");
  541.     my $gettext_support_nonascii = 0;
  542.     # checks for GNU gettext >= 0.12
  543.     my $dummy = `$XGETTEXT --version --from-code=UTF-8 >$devnull 2>$devnull`;
  544.     if ($? == 0)
  545.     {
  546. $gettext_support_nonascii = 1;
  547.     }
  548.     else
  549.     {
  550. # urge everybody to upgrade gettext
  551. print STDERR "WARNING: This version of gettext does not support extracting non-ASCIIn".
  552.      "         strings. That means you should install a version of gettextn".
  553.      "         that supports non-ASCII strings (such as GNU gettext >= 0.12),n".
  554.      "         or have to let non-ASCII strings untranslated. (If there is any)n";
  555.     }
  556.     my $encoding = "ASCII";
  557.     my $forced_gettext_code;
  558.     my @temp_headers;
  559.     my $encoding_problem_is_reported = 0;
  560.     while (<INFILE>) 
  561.     {
  562. next if (/^#/ or /^s*$/);
  563. chomp;
  564. my $gettext_code;
  565. if (/^[s*encoding:s*(.*)s*]/)
  566. {
  567.     $forced_gettext_code=$1;
  568. }
  569. elsif (/.($xml_support|$ini_support)$/ || /^[/)
  570. {
  571.     s/^[.*]s*//;
  572.             print OUTFILE "../$_.hn";
  573.     push @temp_headers, "../$_.h";
  574.     $gettext_code = &TextFile_DetermineEncoding ("../$_.h") if ($gettext_support_nonascii and not defined $forced_gettext_code);
  575. else 
  576. {
  577.     if ($SRCDIR eq ".") {
  578.         print OUTFILE "../$_n";
  579.     } else {
  580.         print OUTFILE "$SRCDIR/../$_n";
  581.     }
  582.     $gettext_code = &TextFile_DetermineEncoding ("../$_") if ($gettext_support_nonascii and not defined $forced_gettext_code);
  583. }
  584. next if (! $gettext_support_nonascii);
  585. if (defined $forced_gettext_code)
  586. {
  587.     $encoding=$forced_gettext_code;
  588. }
  589. elsif (defined $gettext_code and "$encoding" ne "$gettext_code")
  590. {
  591.     if ($encoding eq "ASCII")
  592.     {
  593. $encoding=$gettext_code;
  594.     }
  595.     elsif ($gettext_code ne "ASCII")
  596.     {
  597. # Only report once because the message is quite long
  598. if (! $encoding_problem_is_reported)
  599. {
  600.     print STDERR "WARNING: You should use the same file encoding for all your project files,n".
  601.  "         but $PROGRAM thinks that most of the source files are inn".
  602.  "         $encoding encoding, while "$_" is (likely) inn".
  603.          "         $gettext_code encoding. If you are sure that all translatable stringsn".
  604.  "         are in same encoding (say UTF-8), please e[1m*prepend*e[0m the followingn".
  605.  "         line to POTFILES.in:nn".
  606.  "                 [encoding: UTF-8]nn".
  607.  "         and make sure that configure.in/ac checks for $PACKAGE >= 0.27 .n".
  608.  "(such warning message will only be reported once.)n";
  609.     $encoding_problem_is_reported = 1;
  610. }
  611.     }
  612. }
  613.     }
  614.     close OUTFILE;
  615.     close INFILE;
  616.     unlink "$MODULE.pot";
  617.     my @xgettext_argument=("$XGETTEXT",
  618.    "--add-comments",
  619.    "--directory=.",
  620.    "--output=$MODULE.pot",
  621.    "--files-from=./POTFILES.in.temp");
  622.     my $XGETTEXT_KEYWORDS = &FindPOTKeywords;
  623.     push @xgettext_argument, $XGETTEXT_KEYWORDS;
  624.     my $MSGID_BUGS_ADDRESS = &FindMakevarsBugAddress;
  625.     push @xgettext_argument, "--msgid-bugs-address=$MSGID_BUGS_ADDRESS" if $MSGID_BUGS_ADDRESS;
  626.     push @xgettext_argument, "--from-code=$encoding" if ($gettext_support_nonascii);
  627.     push @xgettext_argument, $XGETTEXT_ARGS if $XGETTEXT_ARGS;
  628.     my $xgettext_command = join ' ', @xgettext_argument;
  629.     # intercept xgettext error message
  630.     print "Running $xgettext_commandn" if $VERBOSE;
  631.     my $xgettext_error_msg = `$xgettext_command 2>&1`;
  632.     my $command_failed = $?;
  633.     unlink "POTFILES.in.temp";
  634.     print "Removing generated header (.h) files..." if $VERBOSE;
  635.     unlink foreach (@temp_headers);
  636.     print "done.n" if $VERBOSE;
  637.     if (! $command_failed)
  638.     {
  639. if (! -e "$MODULE.pot")
  640. {
  641.     print "None of the files in POTFILES.in contain strings marked for translation.n" if $VERBOSE;
  642. }
  643. else
  644. {
  645.     print "Wrote $MODULE.potn" if $VERBOSE;
  646. }
  647.     }
  648.     else
  649.     {
  650. if ($xgettext_error_msg =~ /--from-code/)
  651. {
  652.     # replace non-ASCII error message with a more useful one.
  653.     print STDERR "ERROR: xgettext failed to generate PO template file because there is non-ASCIIn".
  654.  "       string marked for translation. Please make sure that all strings markedn".
  655.  "       for translation are in uniform encoding (say UTF-8), then e[1m*prepend*e[0m then".
  656.  "       following line to POTFILES.in and rerun $PROGRAM:nn".
  657.  "           [encoding: UTF-8]nn";
  658. }
  659. else
  660. {
  661.     print STDERR "$xgettext_error_msg";
  662.     if (-e "$MODULE.pot")
  663.     {
  664. # is this possible?
  665. print STDERR "ERROR: xgettext failed but still managed to generate PO template file.n".
  666.      "       Please consult error message above if there is any.n";
  667.     }
  668.     else
  669.     {
  670. print STDERR "ERROR: xgettext failed to generate PO template file. Please consultn".
  671.      "       error message above if there is any.n";
  672.     }
  673. }
  674. exit (1);
  675.     }
  676. }
  677. sub POFile_Update
  678. {
  679.     -f "$MODULE.pot" or die "$PROGRAM: $MODULE.pot does not exist.n";
  680.     my $MSGMERGE = $ENV{"MSGMERGE"} || "@INTLTOOL_MSGMERGE@";
  681.     my ($lang, $outfile) = @_;
  682.     print "Merging $SRCDIR/$lang.po with $MODULE.pot..." if $VERBOSE;
  683.     my $infile = "$SRCDIR/$lang.po";
  684.     $outfile = "$SRCDIR/$lang.po" if ($outfile eq "");
  685.     # I think msgmerge won't overwrite old file if merge is not successful
  686.     system ("$MSGMERGE", "-o", $outfile, $infile, "$MODULE.pot");
  687. }
  688. sub Console_WriteError_NotExisting
  689. {
  690.     my ($file) = @_;
  691.     ## Report error if supplied language file is non-existing
  692.     print STDERR "$PROGRAM: $file does not exist!n";
  693.     print STDERR "Try '$PROGRAM --help' for more information.n";
  694.     exit;
  695. }
  696. sub GatherPOFiles
  697. {
  698.     my @po_files = glob ("./*.po");
  699.     @languages = map (&POFile_GetLanguage, @po_files);
  700.     foreach my $lang (@languages) 
  701.     {
  702. $po_files_by_lang{$lang} = shift (@po_files);
  703.     }
  704. }
  705. sub POFile_GetLanguage ($)
  706. {
  707.     s/^(.*/)?(.+).po$/$2/;
  708.     return $_;
  709. }
  710. sub Console_Write_TranslationStatus
  711. {
  712.     my ($lang, $output_file) = @_;
  713.     my $MSGFMT = $ENV{"MSGFMT"} || "@INTLTOOL_MSGFMT@";
  714.     $output_file = "$SRCDIR/$lang.po" if ($output_file eq "");
  715.     system ("$MSGFMT", "-o", "$devnull", "--verbose", $output_file);
  716. }
  717. sub Console_Write_CoverageReport
  718. {
  719.     my $MSGFMT = $ENV{"MSGFMT"} || "@INTLTOOL_MSGFMT@";
  720.     &GatherPOFiles;
  721.     foreach my $lang (@languages) 
  722.     {
  723. print "$lang: ";
  724. &POFile_Update ($lang, "");
  725.     }
  726.     print "nn * Current translation support in $MODULE nn";
  727.     foreach my $lang (@languages)
  728.     {
  729. print "$lang: ";
  730. system ("$MSGFMT", "-o", "$devnull", "--verbose", "$SRCDIR/$lang.po");
  731.     }
  732. }
  733. sub SubstituteVariable
  734. {
  735.     my ($str) = @_;
  736.     
  737.     # always need to rewind file whenever it has been accessed
  738.     seek (CONF, 0, 0);
  739.     # cache each variable. varhash is global to we can add
  740.     # variables elsewhere.
  741.     while (<CONF>)
  742.     {
  743. if (/^(w+)=(.*)$/)
  744. {
  745.     ($varhash{$1} = $2) =~  s/^["'](.*)["']$/$1/;
  746. }
  747.     }
  748.     
  749.     if ($str =~ /^(.*)${?([A-Z_]+)}?(.*)$/)
  750.     {
  751. my $rest = $3;
  752. my $untouched = $1;
  753. my $sub = "";
  754.         # Ignore recursive definitions of variables
  755.         $sub = $varhash{$2} if defined $varhash{$2} and $varhash{$2} !~ /${?$2}?/;
  756. return SubstituteVariable ("$untouched$sub$rest");
  757.     }
  758.     
  759.     # We're using Perl backticks ` and "echo -n" here in order to 
  760.     # expand any shell escapes (such as backticks themselves) in every variable
  761.     return echo_n ($str);
  762. }
  763. sub CONF_Handle_Open
  764. {
  765.     my $base_dirname = getcwd();
  766.     $base_dirname =~ s@.*/@@;
  767.     my ($conf_in, $src_dir);
  768.     if ($base_dirname =~ /^po(-.+)?$/) 
  769.     {
  770. if (-f "Makevars") 
  771. {
  772.     my $makefile_source;
  773.     local (*IN);
  774.     open (IN, "<Makevars") || die "can't open Makevars: $!";
  775.     while (<IN>) 
  776.     {
  777. if (/^top_builddir[ t]*=/) 
  778. {
  779.     $src_dir = $_;
  780.     $src_dir =~ s/^top_builddir[ t]*=[ t]*([^ tnr]*)/$1/;
  781.     chomp $src_dir;
  782.                     if (-f "$src_dir" . "/configure.ac") {
  783.                         $conf_in = "$src_dir" . "/configure.ac" . "n";
  784.                     } else {
  785.                         $conf_in = "$src_dir" . "/configure.in" . "n";
  786.                     }
  787.     last;
  788. }
  789.     }
  790.     close IN;
  791.     $conf_in || die "Cannot find top_builddir in Makevars.";
  792. }
  793. elsif (-f "../configure.ac") 
  794. {
  795.     $conf_in = "../configure.ac";
  796. elsif (-f "../configure.in") 
  797. {
  798.     $conf_in = "../configure.in";
  799. else 
  800. {
  801.     my $makefile_source;
  802.     local (*IN);
  803.     open (IN, "<Makefile") || return;
  804.     while (<IN>) 
  805.     {
  806. if (/^top_srcdir[ t]*=/) 
  807. {
  808.     $src_dir = $_;     
  809.     $src_dir =~ s/^top_srcdir[ t]*=[ t]*([^ tnr]*)/$1/;
  810.     chomp $src_dir;
  811.     $conf_in = "$src_dir" . "/configure.in" . "n";
  812.     last;
  813. }
  814.     }
  815.     close IN;
  816.     $conf_in || die "Cannot find top_srcdir in Makefile.";
  817. }
  818. open (CONF, "<$conf_in");
  819.     }
  820.     else
  821.     {
  822. print STDERR "$PROGRAM: Unable to proceed.n" .
  823.      "Make sure to run this script inside the po directory.n";
  824. exit;
  825.     }
  826. }
  827. sub FindPackageName
  828. {
  829.     my $version;
  830.     my $domain = &FindMakevarsDomain;
  831.     my $name = $domain || "untitled";
  832.     &CONF_Handle_Open;
  833.     my $conf_source; {
  834. local (*IN);
  835. open (IN, "<&CONF") || return $name;
  836. seek (IN, 0, 0);
  837. local $/; # slurp mode
  838. $conf_source = <IN>;
  839. close IN;
  840.     }
  841.     # priority for getting package name:
  842.     # 1. GETTEXT_PACKAGE
  843.     # 2. first argument of AC_INIT (with >= 2 arguments)
  844.     # 3. first argument of AM_INIT_AUTOMAKE (with >= 2 argument)
  845.     # /^AM_INIT_AUTOMAKE([s[]*([^,)s]]+)/m 
  846.     # the s makes this not work, why?
  847.     if ($conf_source =~ /^AM_INIT_AUTOMAKE(([^,)]+),([^,)]+)/m)
  848.     {
  849. ($name, $version) = ($1, $2);
  850. $name    =~ s/[[]s]//g;
  851. $version =~ s/[[]s]//g;
  852. $varhash{"PACKAGE_NAME"} = $name if (not $name =~ /${?AC_PACKAGE_NAME}?/);
  853. $varhash{"PACKAGE"} = $name if (not $name =~ /${?PACKAGE}?/);
  854. $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ /${?AC_PACKAGE_VERSION}?/);
  855. $varhash{"VERSION"} = $version if (not $name =~ /${?VERSION}?/);
  856.     }
  857.     
  858.     if ($conf_source =~ /^AC_INIT(([^,)]+),([^,)]+)/m) 
  859.     {
  860. ($name, $version) = ($1, $2);
  861. $name    =~ s/[[]s]//g;
  862. $version =~ s/[[]s]//g;
  863. $varhash{"PACKAGE_NAME"} = $name if (not $name =~ /${?AC_PACKAGE_NAME}?/);
  864. $varhash{"PACKAGE"} = $name if (not $name =~ /${?PACKAGE}?/);
  865. $varhash{"PACKAGE_VERSION"} = $version if (not $name =~ /${?AC_PACKAGE_VERSION}?/);
  866. $varhash{"VERSION"} = $version if (not $name =~ /${?VERSION}?/);
  867.     }
  868.     # s makes this not work, why?
  869.     $name = $1 if $conf_source =~ /^GETTEXT_PACKAGE=[?([^n]]+)/m;
  870.     
  871.     # m4 macros AC_PACKAGE_NAME, AC_PACKAGE_VERSION etc. have same value
  872.     # as corresponding $PACKAGE_NAME, $PACKAGE_VERSION etc. shell variables.
  873.     $name =~ s/bAC_PACKAGE_/$PACKAGE_/g;
  874.     $name = $domain if $domain;
  875.     $name = SubstituteVariable ($name);
  876.     $name =~ s/^["'](.*)["']$/$1/;
  877.     return $name if $name;
  878. }
  879. sub FindPOTKeywords
  880. {
  881.     my $keywords = "--keyword=_ --keyword=N_ --keyword=U_ --keyword=Q_";
  882.     my $varname = "XGETTEXT_OPTIONS";
  883.     my $make_source; {
  884. local (*IN);
  885. open (IN, "<Makevars") || (open(IN, "<Makefile.in.in") && ($varname = "XGETTEXT_KEYWORDS")) || return $keywords;
  886. seek (IN, 0, 0);
  887. local $/; # slurp mode
  888. $make_source = <IN>;
  889. close IN;
  890.     }
  891.     $keywords = $1 if $make_source =~ /^$varname[ ]*=[?([^n]]+)/m;
  892.     
  893.     return $keywords;
  894. }
  895. sub FindMakevarsDomain
  896. {
  897.     my $domain = "";
  898.     my $makevars_source; { 
  899. local (*IN);
  900. open (IN, "<Makevars") || return $domain;
  901. seek (IN, 0, 0);
  902. local $/; # slurp mode
  903. $makevars_source = <IN>;
  904. close IN;
  905.     }
  906.     $domain = $1 if $makevars_source =~ /^DOMAIN[ ]*=[?([^n]$]+)/m;
  907.     $domain =~ s/^s+//;
  908.     $domain =~ s/s+$//;
  909.     
  910.     return $domain;
  911. }
  912. sub FindMakevarsBugAddress
  913. {
  914.     my $address = "";
  915.     my $makevars_source; { 
  916. local (*IN);
  917. open (IN, "<Makevars") || return undef;
  918. seek (IN, 0, 0);
  919. local $/; # slurp mode
  920. $makevars_source = <IN>;
  921. close IN;
  922.     }
  923.     $address = $1 if $makevars_source =~ /^MSGID_BUGS_ADDRESS[ ]*=[?([^n]$]+)/m;
  924.     $address =~ s/^s+//;
  925.     $address =~ s/s+$//;
  926.     
  927.     return $address;
  928. }