home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / Maketext.pm < prev    next >
Text File  |  2003-11-07  |  15KB  |  486 lines

  1.  
  2. # Time-stamp: "2003-06-21 23:41:57 AHDT"
  3.  
  4. require 5;
  5. package Locale::Maketext;
  6. use strict;
  7. use vars qw( @ISA $VERSION $MATCH_SUPERS $USING_LANGUAGE_TAGS
  8.              $USE_LITERALS);
  9. use Carp ();
  10. use I18N::LangTags 0.21 ();
  11.  
  12. #--------------------------------------------------------------------------
  13.  
  14. BEGIN { unless(defined &DEBUG) { *DEBUG = sub () {0} } }
  15.  # define the constant 'DEBUG' at compile-time
  16.  
  17. $VERSION = "1.06";
  18. @ISA = ();
  19.  
  20. $MATCH_SUPERS = 1;
  21. $USING_LANGUAGE_TAGS = 1;
  22.  # Turning this off is somewhat of a security risk in that little or no
  23.  # checking will be done on the legality of tokens passed to the
  24.  # eval("use $module_name") in _try_use.  If you turn this off, you have
  25.  # to do your own taint checking.
  26.  
  27. $USE_LITERALS = 1 unless defined $USE_LITERALS;
  28.  # a hint for compiling bracket-notation things.
  29.  
  30. my %isa_scan = ();
  31.  
  32. ###########################################################################
  33.  
  34. sub quant {
  35.   my($handle, $num, @forms) = @_;
  36.  
  37.   return $num if @forms == 0; # what should this mean?
  38.   return $forms[2] if @forms > 2 and $num == 0; # special zeroth case
  39.  
  40.   # Normal case:
  41.   # Note that the formatting of $num is preserved.
  42.   return( $handle->numf($num) . ' ' . $handle->numerate($num, @forms) );
  43.    # Most human languages put the number phrase before the qualified phrase.
  44. }
  45.  
  46.  
  47. sub numerate {
  48.  # return this lexical item in a form appropriate to this number
  49.   my($handle, $num, @forms) = @_;
  50.   my $s = ($num == 1);
  51.  
  52.   return '' unless @forms;
  53.   if(@forms == 1) { # only the headword form specified
  54.     return $s ? $forms[0] : ($forms[0] . 's'); # very cheap hack.
  55.   } else { # sing and plural were specified
  56.     return $s ? $forms[0] : $forms[1];
  57.   }
  58. }
  59.  
  60. #--------------------------------------------------------------------------
  61.  
  62. sub numf {
  63.   my($handle, $num) = @_[0,1];
  64.   if($num < 10_000_000_000 and $num > -10_000_000_000 and $num == int($num)) {
  65.     $num += 0;  # Just use normal integer stringification.
  66.          # Specifically, don't let %G turn ten million into 1E+007
  67.   } else {
  68.     $num = CORE::sprintf("%G", $num);
  69.      # "CORE::" is there to avoid confusion with the above sub sprintf.
  70.   }
  71.   while( $num =~ s/^([-+]?\d+)(\d{3})/$1,$2/s ) {1}  # right from perlfaq5
  72.    # The initial \d+ gobbles as many digits as it can, and then we
  73.    #  backtrack so it un-eats the rightmost three, and then we
  74.    #  insert the comma there.
  75.  
  76.   $num =~ tr<.,><,.> if ref($handle) and $handle->{'numf_comma'};
  77.    # This is just a lame hack instead of using Number::Format
  78.   return $num;
  79. }
  80.  
  81. sub sprintf {
  82.   no integer;
  83.   my($handle, $format, @params) = @_;
  84.   return CORE::sprintf($format, @params);
  85.     # "CORE::" is there to avoid confusion with myself!
  86. }
  87.  
  88. #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#
  89.  
  90. use integer; # vroom vroom... applies to the whole rest of the module
  91.  
  92. sub language_tag {
  93.   my $it = ref($_[0]) || $_[0];
  94.   return undef unless $it =~ m/([^':]+)(?:::)?$/s;
  95.   $it = lc($1);
  96.   $it =~ tr<_><->;
  97.   return $it;
  98. }
  99.  
  100. sub encoding {
  101.   my $it = $_[0];
  102.   return(
  103.    (ref($it) && $it->{'encoding'})
  104.    || "iso-8859-1"   # Latin-1
  105.   );
  106.  
  107. #--------------------------------------------------------------------------
  108.  
  109. sub fallback_languages { return('i-default', 'en', 'en-US') }
  110.  
  111. sub fallback_language_classes { return () }
  112.  
  113. #--------------------------------------------------------------------------
  114.  
  115. sub fail_with { # an actual attribute method!
  116.   my($handle, @params) = @_;
  117.   return unless ref($handle);
  118.   $handle->{'fail'} = $params[0] if @params;
  119.   return $handle->{'fail'};
  120. }
  121.  
  122. #--------------------------------------------------------------------------
  123.  
  124. sub failure_handler_auto {
  125.   # Meant to be used like:
  126.   #  $handle->fail_with('failure_handler_auto')
  127.  
  128.   my($handle, $phrase, @params) = @_;
  129.   $handle->{'failure_lex'} ||= {};
  130.   my $lex = $handle->{'failure_lex'};
  131.  
  132.   my $value;
  133.   $lex->{$phrase} ||= ($value = $handle->_compile($phrase));
  134.  
  135.   # Dumbly copied from sub maketext:
  136.   {
  137.     local $SIG{'__DIE__'};
  138.     eval { $value = &$value($handle, @_) };
  139.   }
  140.   # If we make it here, there was an exception thrown in the
  141.   #  call to $value, and so scream:
  142.   if($@) {
  143.     my $err = $@;
  144.     # pretty up the error message
  145.     $err =~ s<\s+at\s+\(eval\s+\d+\)\s+line\s+(\d+)\.?\n?>
  146.              <\n in bracket code [compiled line $1],>s;
  147.     #$err =~ s/\n?$/\n/s;
  148.     Carp::croak "Error in maketexting \"$phrase\":\n$err as used";
  149.     # Rather unexpected, but suppose that the sub tried calling
  150.     # a method that didn't exist.
  151.   } else {
  152.     return $value;
  153.   }
  154. }
  155.  
  156. #==========================================================================
  157.  
  158. sub new {
  159.   # Nothing fancy!
  160.   my $class = ref($_[0]) || $_[0];
  161.   my $handle = bless {}, $class;
  162.   $handle->init;
  163.   return $handle;
  164. }
  165.  
  166. sub init { return } # no-op
  167.  
  168. ###########################################################################
  169.  
  170. sub maketext {
  171.   # Remember, this can fail.  Failure is controllable many ways.
  172.   Carp::croak "maketext requires at least one parameter" unless @_ > 1;
  173.  
  174.   my($handle, $phrase) = splice(@_,0,2);
  175.  
  176.   # Look up the value:
  177.  
  178.   my $value;
  179.   foreach my $h_r (
  180.     @{  $isa_scan{ref($handle) || $handle} || $handle->_lex_refs  }
  181.   ) {
  182.     print "* Looking up \"$phrase\" in $h_r\n" if DEBUG;
  183.     if(exists $h_r->{$phrase}) {
  184.       print "  Found \"$phrase\" in $h_r\n" if DEBUG;
  185.       unless(ref($value = $h_r->{$phrase})) {
  186.         # Nonref means it's not yet compiled.  Compile and replace.
  187.         $value = $h_r->{$phrase} = $handle->_compile($value);
  188.       }
  189.       last;
  190.     } elsif($phrase !~ m/^_/s and $h_r->{'_AUTO'}) {
  191.       # it's an auto lex, and this is an autoable key!
  192.       print "  Automaking \"$phrase\" into $h_r\n" if DEBUG;
  193.       
  194.       $value = $h_r->{$phrase} = $handle->_compile($phrase);
  195.       last;
  196.     }
  197.     print "  Not found in $h_r, nor automakable\n" if DEBUG > 1;
  198.     # else keep looking
  199.   }
  200.  
  201.   unless(defined($value)) {
  202.     print "! Lookup of \"$phrase\" in/under ", ref($handle) || $handle,
  203.       " fails.\n" if DEBUG;
  204.     if(ref($handle) and $handle->{'fail'}) {
  205.       print "WARNING0: maketext fails looking for <$phrase>\n" if DEBUG;
  206.       my $fail;
  207.       if(ref($fail = $handle->{'fail'}) eq 'CODE') { # it's a sub reference
  208.         return &{$fail}($handle, $phrase, @_);
  209.          # If it ever returns, it should return a good value.
  210.       } else { # It's a method name
  211.         return $handle->$fail($phrase, @_);
  212.          # If it ever returns, it should return a good value.
  213.       }
  214.     } else {
  215.       # All we know how to do is this;
  216.       Carp::croak("maketext doesn't know how to say:\n$phrase\nas needed");
  217.     }
  218.   }
  219.  
  220.   return $$value if ref($value) eq 'SCALAR';
  221.   return $value unless ref($value) eq 'CODE';
  222.   
  223.   {
  224.     local $SIG{'__DIE__'};
  225.     eval { $value = &$value($handle, @_) };
  226.   }
  227.   # If we make it here, there was an exception thrown in the
  228.   #  call to $value, and so scream:
  229.   if($@) {
  230.     my $err = $@;
  231.     # pretty up the error message
  232.     $err =~ s<\s+at\s+\(eval\s+\d+\)\s+line\s+(\d+)\.?\n?>
  233.              <\n in bracket code [compiled line $1],>s;
  234.     #$err =~ s/\n?$/\n/s;
  235.     Carp::croak "Error in maketexting \"$phrase\":\n$err as used";
  236.     # Rather unexpected, but suppose that the sub tried calling
  237.     # a method that didn't exist.
  238.   } else {
  239.     return $value;
  240.   }
  241. }
  242.  
  243. ###########################################################################
  244.  
  245. sub get_handle {  # This is a constructor and, yes, it CAN FAIL.
  246.   # Its class argument has to be the base class for the current
  247.   # application's l10n files.
  248.   my($base_class, @languages) = @_;
  249.   $base_class = ref($base_class) || $base_class;
  250.    # Complain if they use __PACKAGE__ as a project base class?
  251.  
  252.   unless(@languages) {  # Calling with no args is magical!  wooo, magic!
  253.     if(length( $ENV{'REQUEST_METHOD'} || '' )) { # I'm a CGI
  254.       @languages = $base_class->_http_accept_langs;
  255.          # it's off in its own routine because it's complicated
  256.       
  257.     } else { # Not running as a CGI: try to puzzle out from the environment
  258.       if(length( $ENV{'LANG'} || '' )) {
  259.     push @languages, split m/[,:]/, $ENV{'LANG'};
  260.          # LANG can be only /one/ locale as far as I know, but what the hey.
  261.       }
  262.       if(length( $ENV{'LANGUAGE'} || '' )) {
  263.     push @languages, split m/[,:]/, $ENV{'LANGUAGE'};
  264.       }
  265.       print "Noting ENV LANG ", join(',', @languages),"\n" if DEBUG;
  266.       # Those are really locale IDs, but they get xlated a few lines down.
  267.       
  268.       if(&_try_use('Win32::Locale')) {
  269.         # If we have that module installed...
  270.         push @languages, Win32::Locale::get_language()
  271.          if defined &Win32::Locale::get_language;
  272.       }
  273.     }
  274.   }
  275.  
  276.   #------------------------------------------------------------------------
  277.   print "Lgs1: ", map("<$_>", @languages), "\n" if DEBUG;
  278.  
  279.   if($USING_LANGUAGE_TAGS) {
  280.     @languages = map &I18N::LangTags::locale2language_tag($_), @languages;
  281.      # if it's a lg tag, fine, pass thru (untainted)
  282.      # if it's a locale ID, try converting to a lg tag (untainted),
  283.      # otherwise nix it.
  284.  
  285.     push @languages, map I18N::LangTags::super_languages($_), @languages
  286.      if $MATCH_SUPERS;
  287.  
  288.     @languages =  map { $_, I18N::LangTags::alternate_language_tags($_) }
  289.                       @languages;    # catch alternation
  290.  
  291.     push @languages, I18N::LangTags::panic_languages(@languages)
  292.       if defined &I18N::LangTags::panic_languages;
  293.     
  294.     push @languages, $base_class->fallback_languages;
  295.      # You are free to override fallback_languages to return empty-list!
  296.  
  297.     @languages =  # final bit of processing:
  298.       map {
  299.         my $it = $_;  # copy
  300.         $it =~ tr<-A-Z><_a-z>; # lc, and turn - to _
  301.         $it =~ tr<_a-z0-9><>cd;  # remove all but a-z0-9_
  302.         $it;
  303.       } @languages
  304.     ;
  305.   }
  306.   print "Lgs2: ", map("<$_>", @languages), "\n" if DEBUG > 1;
  307.  
  308.   push @languages, $base_class->fallback_language_classes;
  309.    # You are free to override that to return whatever.
  310.  
  311.  
  312.   my %seen = ();
  313.   foreach my $module_name ( map { $base_class . "::" . $_ }  @languages )
  314.   {
  315.     next unless length $module_name; # sanity
  316.     next if $seen{$module_name}++        # Already been here, and it was no-go
  317.             || !&_try_use($module_name); # Try to use() it, but can't it.
  318.     return($module_name->new); # Make it!
  319.   }
  320.  
  321.   return undef; # Fail!
  322. }
  323.  
  324. ###########################################################################
  325. #
  326. # This is where most people should stop reading.
  327. #
  328. ###########################################################################
  329.  
  330. use Locale::Maketext::GutsLoader;
  331.  
  332. sub _http_accept_langs {
  333.   # Deal with HTTP "Accept-Language:" stuff.  Hassle.
  334.   # This code is more lenient than RFC 3282, which you must read.
  335.   # Hm.  Should I just move this into I18N::LangTags at some point?
  336.   no integer;
  337.  
  338.   my $in = (@_ > 1) ? $_[1] : $ENV{'HTTP_ACCEPT_LANGUAGE'};
  339.   # (always ends up untainting)
  340.  
  341.   return() unless defined $in and length $in;
  342.  
  343.   $in =~ s/\([^\)]*\)//g; # nix just about any comment
  344.   
  345.   if( $in =~ m/^\s*([a-zA-Z][-a-zA-Z]+)\s*$/s ) {
  346.     # Very common case: just one language tag
  347.     return lc $1;
  348.   } elsif( $in =~ m/^\s*[a-zA-Z][-a-zA-Z]+(?:\s*,\s*[a-zA-Z][-a-zA-Z]+)*\s*$/s ) {
  349.     # Common case these days: just "foo, bar, baz"
  350.     return map lc($_), $in =~ m/([a-zA-Z][-a-zA-Z]+)/g;
  351.   }
  352.  
  353.   # Else it's complicated...
  354.  
  355.   $in =~ s/\s+//g;  # Yes, we can just do without the WS!
  356.   my @in = $in =~ m/([^,]+)/g;
  357.   my %pref;
  358.   
  359.   my $q;
  360.   foreach my $tag (@in) {
  361.     next unless $tag =~
  362.      m/^([a-zA-Z][-a-zA-Z]+)
  363.         (?:
  364.          ;q=
  365.          (
  366.           \d*   # a bit too broad of a RE, but so what.
  367.           (?:
  368.             \.\d+
  369.           )?
  370.          )
  371.         )?
  372.        $
  373.       /sx
  374.     ;
  375.     $q = (defined $2 and length $2) ? $2 : 1;
  376.     #print "$1 with q=$q\n";
  377.     push @{ $pref{$q} }, lc $1;
  378.   }
  379.  
  380.   return # Read off %pref, in descending key order...
  381.     map @{$pref{$_}},
  382.     sort {$b <=> $a}
  383.     keys %pref;
  384. }
  385.  
  386. ###########################################################################
  387.  
  388. my %tried = ();
  389.   # memoization of whether we've used this module, or found it unusable.
  390.  
  391. sub _try_use {   # Basically a wrapper around "require Modulename"
  392.   # "Many men have tried..."  "They tried and failed?"  "They tried and died."
  393.   return $tried{$_[0]} if exists $tried{$_[0]};  # memoization
  394.  
  395.   my $module = $_[0];   # ASSUME sane module name!
  396.   { no strict 'refs';
  397.     return($tried{$module} = 1)
  398.      if defined(%{$module . "::Lexicon"}) or defined(@{$module . "::ISA"});
  399.     # weird case: we never use'd it, but there it is!
  400.   }
  401.  
  402.   print " About to use $module ...\n" if DEBUG;
  403.   {
  404.     local $SIG{'__DIE__'};
  405.     eval "require $module"; # used to be "use $module", but no point in that.
  406.   }
  407.   if($@) {
  408.     print "Error using $module \: $@\n" if DEBUG > 1;
  409.     return $tried{$module} = 0;
  410.   } else {
  411.     print " OK, $module is used\n" if DEBUG;
  412.     return $tried{$module} = 1;
  413.   }
  414. }
  415.  
  416. #--------------------------------------------------------------------------
  417.  
  418. sub _lex_refs {  # report the lexicon references for this handle's class
  419.   # returns an arrayREF!
  420.   no strict 'refs';
  421.   my $class = ref($_[0]) || $_[0];
  422.   print "Lex refs lookup on $class\n" if DEBUG > 1;
  423.   return $isa_scan{$class} if exists $isa_scan{$class};  # memoization!
  424.  
  425.   my @lex_refs;
  426.   my $seen_r = ref($_[1]) ? $_[1] : {};
  427.  
  428.   if( defined( *{$class . '::Lexicon'}{'HASH'} )) {
  429.     push @lex_refs, *{$class . '::Lexicon'}{'HASH'};
  430.     print "%" . $class . "::Lexicon contains ",
  431.          scalar(keys %{$class . '::Lexicon'}), " entries\n" if DEBUG;
  432.   }
  433.  
  434.   # Implements depth(height?)-first recursive searching of superclasses.
  435.   # In hindsight, I suppose I could have just used Class::ISA!
  436.   foreach my $superclass (@{$class . "::ISA"}) {
  437.     print " Super-class search into $superclass\n" if DEBUG;
  438.     next if $seen_r->{$superclass}++;
  439.     push @lex_refs, @{&_lex_refs($superclass, $seen_r)};  # call myself
  440.   }
  441.  
  442.   $isa_scan{$class} = \@lex_refs; # save for next time
  443.   return \@lex_refs;
  444. }
  445.  
  446. sub clear_isa_scan { %isa_scan = (); return; } # end on a note of simplicity!
  447.  
  448. ###########################################################################
  449. 1;
  450.  
  451. __END__
  452.  
  453. HEY YOU!  You need some FOOD!
  454.  
  455.  
  456.   ~~ Tangy Moroccan Carrot Salad ~~
  457.  
  458. * 6 to 8 medium carrots, peeled and then sliced in 1/4-inch rounds
  459. * 1/4 teaspoon chile powder (cayenne, chipotle, ancho, or the like)
  460. * 1 tablespoon ground cumin
  461. * 1 tablespoon honey
  462. * The juice of about a half a big lemon, or of a whole smaller one
  463. * 1/3 cup olive oil
  464. * 1 tablespoon of fresh dill, washed and chopped fine
  465. * Pinch of salt, maybe a pinch of pepper
  466.  
  467. Cook the carrots in a pot of boiling water until just tender -- roughly
  468. six minutes.  (Just don't let them get mushy!)  Drain the carrots.
  469.  
  470. In a largish bowl, combine the lemon juice, the cumin, the chile
  471. powder, and the honey.  Mix well.
  472. Add the olive oil and whisk it together well.  Add the dill and stir.
  473.  
  474. Add the warm carrots to the bowl and toss it all to coat the carrots
  475. well.  Season with salt and pepper, to taste.
  476.  
  477. Serve warm or at room temperature.
  478.  
  479. The measurements here are very approximate, and you should feel free to
  480. improvise and experiment.  It's a very forgiving recipe.  For example,
  481. you could easily halve or double the amount of cumin, or use chopped mint
  482. leaves instead of dill, or lime juice instead of lemon, et cetera.
  483.  
  484. [end]
  485.