home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / ReadKey.pm < prev    next >
Text File  |  2002-07-28  |  15KB  |  545 lines

  1. #
  2. #  $Id: ReadKey.pm,v 1.7 2002/07/28 12:01:18 gellyfish Exp $
  3.  
  4. =head1 NAME
  5.  
  6. Term::ReadKey - A perl module for simple terminal control
  7.  
  8. =head1 SYNOPSIS
  9.  
  10.     use Term::ReadKey;
  11.     ReadMode 4; # Turn off controls keys
  12.     while (not defined ($key = ReadKey(-1)) {
  13.         # No key yet
  14.     }
  15.     print "Get key $key\n";
  16.     ReadMode 0; # Reset tty mode before exiting
  17.  
  18. =head1 DESCRIPTION
  19.  
  20. Term::ReadKey is a compiled perl module dedicated to providing simple
  21. control over terminal driver modes (cbreak, raw, cooked, etc.,) support for
  22. non-blocking reads, if the architecture allows, and some generalized handy
  23. functions for working with terminals. One of the main goals is to have the
  24. functions as portable as possible, so you can just plug in "use
  25. Term::ReadKey" on any architecture and have a good likelyhood of it working.
  26.  
  27. =over 8
  28.  
  29. =item ReadMode MODE [, Filehandle]
  30.  
  31. Takes an integer argument, which can currently be one of the following 
  32. values:
  33.  
  34.     0    Restore original settings.
  35.     1    Change to cooked mode.
  36.     2     Change to cooked mode with echo off. 
  37.           (Good for passwords)
  38.     3    Change to cbreak mode.
  39.     4    Change to raw mode.
  40.     5    Change to ultra-raw mode. 
  41.           (LF to CR/LF translation turned off) 
  42.           
  43.     Or, you may use the synonyms:
  44.     
  45.     restore
  46.     normal
  47.     noecho
  48.     cbreak
  49.     raw
  50.     ultra-raw
  51.  
  52. These functions are automatically applied to the STDIN handle if no
  53. other handle is supplied. Modes 0 and 5 have some special properties
  54. worth mentioning: not only will mode 0 restore original settings, but it
  55. cause the next ReadMode call to save a new set of default settings. Mode
  56. 5 is similar to mode 4, except no CR/LF translation is performed, and if
  57. possible, parity will be disabled (only if not being used by the terminal,
  58. however. It is no different from mode 4 under Windows.)
  59.  
  60. If you are executing another program that may be changing the terminal mode,
  61. you will either want to say
  62.  
  63.     ReadMode 1
  64.     system('someprogram');
  65.     ReadMode 1;
  66.     
  67. which resets the settings after the program has run, or:
  68.  
  69.     $somemode=1;
  70.     ReadMode 0;
  71.     system('someprogram');
  72.     ReadMode 1;
  73.     
  74. which records any changes the program may have made, before resetting the
  75. mode.
  76.  
  77. =item ReadKey MODE [, Filehandle]
  78.  
  79. Takes an integer argument, which can currently be one of the following 
  80. values:
  81.  
  82.     0    Perform a normal read using getc
  83.     -1   Perform a non-blocked read
  84.     >0     Perform a timed read
  85.  
  86. (If the filehandle is not supplied, it will default to STDIN.) If there is
  87. nothing waiting in the buffer during a non-blocked read, then undef will be
  88. returned. Note that if the OS does not provide any known mechanism for
  89. non-blocking reads, then a C<ReadKey -1> can die with a fatal error. This
  90. will hopefully not be common.
  91.  
  92. If MODE is greater then zero, then ReadKey will use it as a timeout value in
  93. seconds (fractional seconds are allowed), and won't return C<undef> until
  94. that time expires. (Note, again, that some OS's may not support this timeout
  95. behaviour.) If MODE is less then zero, then this is treated as a timeout
  96. of zero, and thus will return immediately if no character is waiting. A MODE
  97. of zero, however, will act like a normal getc.
  98.  
  99. There are currently some limitations with this call under Windows. It may be
  100. possible that non-blocking reads will fail when reading repeating keys from
  101. more then one console.
  102.  
  103. =item ReadLine MODE [, Filehandle]
  104.  
  105. Takes an integer argument, which can currently be one of the following 
  106. values:
  107.  
  108.     0    Perform a normal read using scalar(<FileHandle>)
  109.     -1   Perform a non-blocked read
  110.     >0     Perform a timed read
  111.  
  112. If there is nothing waiting in the buffer during a non-blocked read, then
  113. undef will be returned. Note that if the OS does not provide any known
  114. mechanism for non-blocking reads, then a C<ReadLine 1> can die with a fatal
  115. error. This will hopefully not be common. Note that a non-blocking test is
  116. only performed for the first character in the line, not the entire line.
  117. This call will probably B<not> do what you assume, especially with
  118. ReadMode's higher then 1. For example, pressing Space and then Backspace
  119. would appear to leave you where you started, but any timeouts would now
  120. be suspended.
  121.  
  122. This call is currently not available under Windows.
  123.  
  124. =item GetTerminalSize [Filehandle]
  125.  
  126. Returns either an empty array if this operation is unsupported, or a four
  127. element array containing: the width of the terminal in characters, the
  128. height of the terminal in character, the width in pixels, and the height in
  129. pixels. (The pixel size will only be valid in some environments.)
  130.  
  131. Under Windows, this function must be called with an "output" filehandle,
  132. such as STDOUT, or a handle opened to CONOUT$.
  133.  
  134. =item SetTerminalSize WIDTH,HEIGHT,XPIX,YPIX [, Filehandle]
  135.  
  136. Return -1 on failure, 0 otherwise. Note that this terminal size is only for
  137. B<informative> value, and changing the size via this mechanism will B<not>
  138. change the size of the screen. For example, XTerm uses a call like this when
  139. it resizes the screen. If any of the new measurements vary from the old, the
  140. OS will probably send a SIGWINCH signal to anything reading that tty or pty.
  141.  
  142. This call does not work under Windows.
  143.  
  144. =item GetSpeeds [, Filehandle]
  145.  
  146. Returns either an empty array if the operation is unsupported, or a two
  147. value array containing the terminal in and out speeds, in B<decimal>. E.g,
  148. an in speed of 9600 baud and an out speed of 4800 baud would be returned as
  149. (9600,4800). Note that currently the in and out speeds will always be
  150. identical in some OS's. No speeds are reported under Windows.
  151.  
  152. =item GetControlChars [, Filehandle]
  153.  
  154. Returns an array containing key/value pairs suitable for a hash. The pairs
  155. consist of a key, the name of the control character/signal, and the value
  156. of that character, as a single character. This call does nothing under Windows.
  157.  
  158. Each key will be an entry from the following list:
  159.  
  160.     DISCARD
  161.     DSUSPEND
  162.     EOF
  163.     EOL
  164.     EOL2
  165.     ERASE
  166.     ERASEWORD
  167.     INTERRUPT
  168.     KILL
  169.     MIN
  170.     QUIT
  171.     QUOTENEXT
  172.     REPRINT
  173.     START
  174.     STATUS
  175.     STOP
  176.     SUSPEND
  177.     SWITCH
  178.     TIME
  179.  
  180. Thus, the following will always return the current interrupt character,
  181. regardless of platform.
  182.  
  183.     %keys = GetControlChars;
  184.     $int = $keys{INTERRUPT};
  185.  
  186. =item SetControlChars [, Filehandle]
  187.  
  188. Takes an array containing key/value pairs, as a hash will produce. The pairs
  189. should consist of a key that is the name of a legal control
  190. character/signal, and the value should be either a single character, or a
  191. number in the range 0-255. SetControlChars will die with a runtime error if
  192. an invalid character name is passed or there is an error changing the
  193. settings. The list of valid names is easily available via
  194.  
  195.     %cchars = GetControlChars();
  196.     @cnames = keys %cchars;
  197.  
  198. This call does nothing under Windows.
  199.  
  200. =back
  201.  
  202. =head1 AUTHOR
  203.  
  204. Kenneth Albanowski <kjahds@kjahds.com>
  205.  
  206. Currently maintained by Jonathan Stowe <jns@gellyfish.com>
  207.  
  208. =cut
  209.  
  210. package Term::ReadKey;
  211.  
  212.  
  213. $VERSION = '2.21';
  214.  
  215. require Exporter;
  216. require AutoLoader;
  217. require DynaLoader;
  218. use Carp;
  219.  
  220. @ISA = qw(Exporter AutoLoader DynaLoader);
  221.  
  222. # Items to export into callers namespace by default
  223. # (move infrequently used names to @EXPORT_OK below)
  224.  
  225. @EXPORT =  qw(
  226.           ReadKey 
  227.               ReadMode 
  228.               ReadLine 
  229.               GetTerminalSize 
  230.               SetTerminalSize
  231.           GetSpeed 
  232.               GetControlChars 
  233.               SetControlChars
  234.              );
  235.  
  236.  
  237. @EXPORT_OK = qw();
  238.  
  239. bootstrap Term::ReadKey;
  240.  
  241. # Preloaded methods go here.  Autoload methods go after __END__, and are
  242. # processed by the autosplit program.
  243.  
  244.  
  245. # Should we use LINES and COLUMNS to try and get the terminal size?
  246. # Change this to zero if you have systems where these are commonly
  247. # set to erroneous values. (But if either are nero zero, they won't be
  248. # used anyhow.)
  249.  
  250. $UseEnv = 1;
  251.  
  252.  
  253. %modes=( original    => 0, 
  254.          restore     => 0, 
  255.          normal      => 1, 
  256.          noecho      => 2, 
  257.      cbreak      => 3, 
  258.          raw         => 4, 
  259.          'ultra-raw' => 5);
  260.  
  261. sub ReadMode {
  262.     my($mode) = $modes{$_[0]};
  263.     my($fh) = normalizehandle((@_>1?$_[1]:\*STDIN));
  264.     if(defined($mode))
  265.         { SetReadMode($mode,$fh) } 
  266.     elsif( $_[0] =~ /^\d/)
  267.         { SetReadMode($_[0],$fh) }
  268.     else
  269.         { croak("Unknown terminal mode `$_[0]'"); }
  270. }
  271.  
  272. sub normalizehandle {
  273.     my($file) = @_;
  274. #    print "Handle = $file\n";
  275.     if(ref($file)) { return $file; } # Reference is fine
  276. #    if($file =~ /^\*/) { return $file; } # Type glob is good
  277.     if (ref(\$file) eq 'GLOB') { return $file; } # Glob is good
  278. #    print "Caller = ",(caller(1))[0],"\n";
  279.     return \*{((caller(1))[0])."::$file"};
  280. }
  281.  
  282.  
  283. sub GetTerminalSize {
  284.     my($file) = normalizehandle((@_>1?$_[1]:\*STDOUT));
  285.     my(@results) = ();
  286.     my(@fail);
  287.     
  288.     if(&termsizeoptions() & 1) # VIO
  289.     {
  290.         @results = GetTermSizeVIO($file);
  291.         push(@fail,"VIOGetMode call");
  292.     } elsif(&termsizeoptions() & 2) # GWINSZ
  293.     {
  294.         @results = GetTermSizeGWINSZ($file);
  295.         push(@fail,"TIOCGWINSZ ioctl");
  296.     } elsif(&termsizeoptions() & 4) # GSIZE
  297.     {
  298.         @results = GetTermSizeGSIZE($file);
  299.         push(@fail,"TIOCGSIZE ioctl");
  300.     } elsif(&termsizeoptions() & 8) # WIN32
  301.     {
  302.         @results = GetTermSizeWin32($file);
  303.         push(@fail,"Win32 GetConsoleScreenBufferInfo call");
  304.     } else
  305.     {
  306.         @results = ();
  307.     }
  308.     
  309.     if(@results<4 and $UseEnv) {
  310.         my($C) = defined($ENV{COLUMNS}) ? $ENV{COLUMNS} : 0;
  311.         my($L) = defined($ENV{LINES}) ? $ENV{LINES} : 0;
  312.         if(($C >= 2) and ($L >=2)) {
  313.             @results = ($C+0,$L+0,0,0);
  314.         }
  315.         push(@fail,"COLUMNS and LINES environment variables");
  316.     }
  317.     
  318.     if(@results<4) {
  319.         my($prog) = "resize";
  320.         
  321.         # Workaround for Solaris path sillyness
  322.         if(-f "/usr/openwin/bin/resize") { $prog = "/usr/openwin/bin/resize"}
  323.         
  324.         my($resize) = scalar(`$prog 2>/dev/null`);
  325.         if(defined $resize and ($resize =~ /COLUMNS\s*=\s*(\d+)/ or 
  326.            $resize =~ /setenv\s+COLUMNS\s+'?(\d+)/))  {
  327.             $results[0] = $1;
  328.             if( $resize =~ /LINES\s*=\s*(\d+)/ or
  329.                 $resize =~ /setenv\s+LINES\s+'?(\d+)/) {
  330.                 $results[1] = $1;
  331.                 @results[2,3] = (0,0);
  332.             } else {
  333.                 @results = ();
  334.             }
  335.         } else {
  336.             @results = ();
  337.         }
  338.         push(@fail,"resize program");
  339.     }
  340.     
  341.     if(@results<4) {
  342.         die "Unable to get Terminal Size.".join("", map(" The $_ didn't work.",@fail));
  343.     }
  344.     
  345.     @results;
  346. }
  347.  
  348.  
  349.  
  350. if(&blockoptions() & 1) # Use nodelay
  351. {
  352.     if(&blockoptions() & 2) #poll
  353.     {
  354.         eval <<'DONE';
  355.         sub ReadKey {
  356.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  357.                   if (defined $_[0] && $_[0] > 0) {
  358.                     if ($_[0]) {
  359.                       return undef if &pollfile($File,$_[0]) == 0;
  360.                     }
  361.           }
  362.                   if (defined $_[0] && $_[0] < 0) {
  363.                      &setnodelay($File,1);
  364.                   }
  365.                   my ($value) = getc $File;
  366.                   if (defined $_[0] && $_[0] < 0) {
  367.                      &setnodelay($File,0);
  368.                   }
  369.                   $value;
  370.         }
  371.         sub ReadLine {
  372.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  373.  
  374.                   if (defined $_[0] && $_[0] > 0) {
  375.                      if ($_[0]) {
  376.                        return undef if &pollfile($File,$_[0]) == 0;
  377.                      }
  378.           }
  379.                   if (defined $_[0] && $_[0] < 0) {
  380.                      &setnodelay($File,1)
  381.                   };
  382.                   my ($value) = scalar(<$File>);
  383.                   if ( defined $_[0] && $_[0]<0 ) {
  384.                     &setnodelay($File,0)
  385.                   };
  386.                   $value;
  387.         }
  388. DONE
  389.     } 
  390.         elsif(&blockoptions() & 4) #select
  391.     {
  392.         eval <<'DONE';
  393.         sub ReadKey {
  394.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  395.                   if(defined $_[0] && $_[0]>0) {
  396.                 if($_[0]) {return undef if &selectfile($File,$_[0])==0}
  397.             }
  398.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1);}
  399.             my($value) = getc $File;
  400.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0);}
  401.             $value;
  402.         }
  403.         sub ReadLine {
  404.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  405.             if(defined $_[0] && $_[0]>0) {
  406.                 if($_[0]) {return undef if &selectfile($File,$_[0])==0}
  407.             }
  408.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1)};
  409.             my($value)=scalar(<$File>);
  410.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0)};
  411.             $value;
  412.         }
  413. DONE
  414.     } else { #nothing
  415.         eval <<'DONE';
  416.         sub ReadKey {
  417.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  418.             if(defined $_[0] && $_[0]>0) {
  419.                 # Nothing better seems to exist, so I just use time-of-day
  420.                 # to timeout the read. This isn't very exact, though.
  421.                 $starttime=time;
  422.                 $endtime=$starttime+$_[0];
  423.                 &setnodelay($File,1);
  424.                 my($value)=undef;
  425.                 while(time<$endtime) { # This won't catch wraparound!
  426.                     $value = getc $File;
  427.                     last if defined($value);
  428.                 }
  429.                 &setnodelay($File,0);
  430.                 return $value;
  431.             }
  432.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1);}
  433.             my($value) = getc $File;
  434.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0);}
  435.             $value;
  436.         }
  437.         sub ReadLine {
  438.           my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  439.             if(defined $_[0] && $_[0]>0) {
  440.                 # Nothing better seems to exist, so I just use time-of-day
  441.                 # to timeout the read. This isn't very exact, though.
  442.                 $starttime=time;
  443.                 $endtime=$starttime+$_[0];
  444.                 &setnodelay($File,1);
  445.                 my($value)=undef;
  446.                 while(time<$endtime) { # This won't catch wraparound!
  447.                     $value = scalar(<$File>);
  448.                     last if defined($value);
  449.                 }
  450.                 &setnodelay($File,0);
  451.                 return $value;
  452.             }
  453.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,1)};
  454.             my($value)=scalar(<$File>);
  455.             if(defined $_[0] && $_[0]<0) {&setnodelay($File,0)};
  456.             $value;
  457.         }
  458. DONE
  459.     }
  460. }
  461. elsif(&blockoptions() & 2) # Use poll
  462. {
  463.     eval <<'DONE';
  464.     sub ReadKey {
  465.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  466.         if(defined $_[0] && $_[0] != 0) {
  467.                      return undef if &pollfile($File,$_[0]) == 0
  468.                 }
  469.         getc $File;
  470.     }
  471.     sub ReadLine {
  472.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  473.         if(defined $_[0] && $_[0]!=0) {
  474.                      return undef if &pollfile($File,$_[0]) == 0;
  475.                 }
  476.         scalar(<$File>);
  477.     }
  478. DONE
  479. }
  480. elsif(&blockoptions() & 4) # Use select
  481. {
  482.     eval <<'DONE';
  483.     sub ReadKey {
  484.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  485.         if(defined $_[0] && $_[0] !=0 ) {
  486.                      return undef if &selectfile($File,$_[0])==0
  487.                 }
  488.         getc $File;
  489.     }
  490.     sub ReadLine {
  491.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  492.         if(defined $_[0] && $_[0] != 0) {
  493.                      return undef if &selectfile($File,$_[0]) == 0;
  494.                 }
  495.         scalar(<$File>);
  496.     }
  497. DONE
  498. }
  499. elsif(&blockoptions() & 8) # Use Win32
  500. {
  501.     eval <<'DONE';
  502.     sub ReadKey {
  503.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  504.         if ($_[0]) {
  505.             Win32PeekChar($File, $_[0]);
  506.         } else {
  507.             getc $File;
  508.         }
  509.         #if ($_[0]!=0) {return undef if !Win32PeekChar($File, $_[0])};
  510.         #getc $File;
  511.     }
  512.     sub ReadLine {
  513.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  514.         #if ($_[0]!=0) {return undef if !Win32PeekChar($File, $_[0])};
  515.         #scalar(<$File>);
  516.         if($_[0]) 
  517.             {croak("Non-blocking ReadLine is not supported on this architecture")}
  518.         scalar(<$File>);
  519.     }
  520. DONE
  521. }
  522. else
  523. {
  524.     eval <<'DONE';
  525.     sub ReadKey {
  526.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  527.         if($_[0]) 
  528.             {croak("Non-blocking ReadKey is not supported on this architecture")}
  529.         getc $File;
  530.     }
  531.     sub ReadLine {
  532.       my($File) = normalizehandle((@_>1?$_[1]:\*STDIN));
  533.         if($_[0]) 
  534.             {croak("Non-blocking ReadLine is not supported on this architecture")}
  535.         scalar(<$File>);
  536.     }
  537. DONE
  538. }
  539.  
  540. package Term::ReadKey; # return to package ReadKey so AutoSplit is happy
  541. 1;
  542.  
  543. __END__;
  544.