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 / piconv < prev    next >
Text File  |  2003-11-07  |  5KB  |  233 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4. #!./perl
  5. # $Id: piconv,v 1.27 2003/06/18 09:29:02 dankogai Exp $
  6. #
  7. use 5.8.0;
  8. use strict;
  9. use Encode ;
  10. use Encode::Alias;
  11. my %Scheme =  map {$_ => 1} qw(from_to decode_encode perlio);
  12.  
  13. use File::Basename;
  14. my $name = basename($0);
  15.  
  16. use Getopt::Long;
  17.  
  18. my %Opt;
  19.  
  20. help()
  21.     unless
  22.       GetOptions(\%Opt,
  23.          'from|f=s',
  24.          'to|t=s',
  25.          'list|l',
  26.          'string|s=s',
  27.          'check|C=i',
  28.          'c',
  29.          'perlqq|p',
  30.          'debug|D',
  31.          'scheme|S=s',
  32.          'resolve|r=s',
  33.          'help',
  34.          );
  35.  
  36. $Opt{help} and help();
  37. $Opt{list} and list_encodings();
  38. my $locale = $ENV{LC_CTYPE} || $ENV{LC_ALL} || $ENV{LANG};
  39. defined $Opt{resolve} and resolve_encoding($Opt{resolve});
  40. $Opt{from} || $Opt{to} || help();
  41. my $from = $Opt{from} || $locale or help("from_encoding unspecified");
  42. my $to   = $Opt{to}   || $locale or help("to_encoding unspecified");
  43. $Opt{string} and Encode::from_to($Opt{string}, $from, $to) and print $Opt{string} and exit;
  44. my $scheme = exists $Scheme{$Opt{Scheme}} ? $Opt{Scheme} :  'from_to';
  45. $Opt{check} ||= $Opt{c};
  46. $Opt{perlqq} and $Opt{check} = Encode::FB_PERLQQ;
  47.  
  48. if ($Opt{debug}){
  49.     my $cfrom = Encode->getEncoding($from)->name;
  50.     my $cto   = Encode->getEncoding($to)->name;
  51.     print <<"EOT";
  52. Scheme: $scheme
  53. From:   $from => $cfrom
  54. To:     $to => $cto
  55. EOT
  56. }
  57.  
  58. # default
  59. if     ($scheme eq 'from_to'){ 
  60.     while(<>){
  61.     Encode::from_to($_, $from, $to, $Opt{check}); print;
  62.     };
  63. # step-by-step
  64. }elsif ($scheme eq 'decode_encode'){
  65.    while(<>){
  66.        my $decoded = decode($from, $_, $Opt{check});
  67.        my $encoded = encode($to, $decoded);
  68.        print $encoded;
  69.     };
  70. # NI-S favorite
  71. }elsif ($scheme eq 'perlio'){ 
  72.     binmode(STDIN,  ":encoding($from)");
  73.     binmode(STDOUT, ":encoding($to)");
  74.     while(<>){ print; }
  75. } else { # won't reach
  76.     die "$name: unknown scheme: $scheme";
  77. }
  78.  
  79. sub list_encodings{
  80.     print join("\n", Encode->encodings(":all")), "\n";
  81.     exit 0;
  82. }
  83.  
  84. sub resolve_encoding {
  85.     if (my $alias = Encode::resolve_alias($_[0])) {
  86.     print $alias, "\n";
  87.     exit 0;
  88.     } else {
  89.     warn "$name: $_[0] is not known to Encode\n";
  90.     exit 1;
  91.     }
  92. }
  93.  
  94. sub help{
  95.     my $message = shift;
  96.     $message and print STDERR "$name error: $message\n";
  97.     print STDERR <<"EOT";
  98. $name [-f from_encoding] [-t to_encoding] [-s string] [files...]
  99. $name -l
  100. $name -r encoding_alias
  101.   -l,--list
  102.      lists all available encodings
  103.   -r,--resolve encoding_alias
  104.     resolve encoding to its (Encode) canonical name
  105.   -f,--from from_encoding  
  106.      when omitted, the current locale will be used
  107.   -t,--to to_encoding    
  108.      when omitted, the current locale will be used
  109.   -s,--string string         
  110.      "string" will be the input instead of STDIN or files
  111. The following are mainly of interest to Encode hackers:
  112.   -D,--debug          show debug information
  113.   -C N | -c | -p      check the validity of the input
  114.   -S,--scheme scheme  use the scheme for conversion
  115. EOT
  116.   exit;
  117. }
  118.  
  119. __END__
  120.  
  121. =head1 NAME
  122.  
  123. piconv -- iconv(1), reinvented in perl
  124.  
  125. =head1 SYNOPSIS
  126.  
  127.   piconv [-f from_encoding] [-t to_encoding] [-s string] [files...]
  128.   piconv -l
  129.   piconv [-C N|-c|-p]
  130.   piconv -S scheme ...
  131.   piconv -r encoding
  132.   piconv -D ...
  133.   piconv -h
  134.  
  135. =head1 DESCRIPTION
  136.  
  137. B<piconv> is perl version of B<iconv>, a character encoding converter
  138. widely available for various Unixen today.  This script was primarily
  139. a technology demonstrator for Perl 5.8.0, but you can use piconv in the
  140. place of iconv for virtually any case.
  141.  
  142. piconv converts the character encoding of either STDIN or files
  143. specified in the argument and prints out to STDOUT.
  144.  
  145. Here is the list of options.  Each option can be in short format (-f)
  146. or long (--from).
  147.  
  148. =over 4
  149.  
  150. =item -f,--from from_encoding
  151.  
  152. Specifies the encoding you are converting from.  Unlike B<iconv>,
  153. this option can be omitted.  In such cases, the current locale is used.
  154.  
  155. =item -t,--to to_encoding
  156.  
  157. Specifies the encoding you are converting to.  Unlike B<iconv>,
  158. this option can be omitted.  In such cases, the current locale is used.
  159.  
  160. Therefore, when both -f and -t are omitted, B<piconv> just acts
  161. like B<cat>.
  162.  
  163. =item -s,--string I<string>
  164.  
  165. uses I<string> instead of file for the source of text.
  166.  
  167. =item -l,--list
  168.  
  169. Lists all available encodings, one per line, in case-insensitive
  170. order.  Note that only the canonical names are listed; many aliases
  171. exist.  For example, the names are case-insensitive, and many standard
  172. and common aliases work, such as "latin1" for "ISO-8859-1", or "ibm850"
  173. instead of "cp850", or "winlatin1" for "cp1252".  See L<Encode::Supported>
  174. for a full discussion.
  175.  
  176. =item -C,--check I<N>
  177.  
  178. Check the validity of the stream if I<N> = 1.  When I<N> = -1, something
  179. interesting happens when it encounters an invalid character.
  180.  
  181. =item -c
  182.  
  183. Same as C<-C 1>.
  184.  
  185. =item -p,--perlqq
  186.  
  187. Same as C<-C -1>.
  188.  
  189. =item -h,--help
  190.  
  191. Show usage.
  192.  
  193. =item -D,--debug
  194.  
  195. Invokes debugging mode.  Primarily for Encode hackers.
  196.  
  197. =item -S,--scheme scheme
  198.  
  199. Selects which scheme is to be used for conversion.  Available schemes
  200. are as follows:
  201.  
  202. =over 4
  203.  
  204. =item from_to
  205.  
  206. Uses Encode::from_to for conversion.  This is the default.
  207.  
  208. =item decode_encode
  209.  
  210. Input strings are decode()d then encode()d.  A straight two-step
  211. implementation.
  212.  
  213. =item perlio
  214.  
  215. The new perlIO layer is used.  NI-S' favorite.
  216.  
  217. =back
  218.  
  219. Like the I<-D> option, this is also for Encode hackers.
  220.  
  221. =back
  222.  
  223. =head1 SEE ALSO
  224.  
  225. L<iconv/1>
  226. L<locale/3>
  227. L<Encode>
  228. L<Encode::Supported>
  229. L<Encode::Alias>
  230. L<PerlIO>
  231.  
  232. =cut
  233.