org.extex.unit.etex.file
Class Readline

java.lang.Object
  extended by org.extex.interpreter.type.AbstractCode
      extended by org.extex.interpreter.type.AbstractAssignment
          extended by org.extex.unit.etex.file.Readline
All Implemented Interfaces:
java.io.Serializable, Code

public class Readline
extends AbstractAssignment

This class provides an implementation for the primitive \readline.

The Primitive \readline

The primitive \readline read characters from an input stream until the end of line is encountered. The characters are translated to tokens with the category code OTHER except the white-space characters which receive the category code SPACE. This mapping is performed ignoring the setting of \catcode. The resulting token list is bound to the control sequence given.

Syntax

The formal description of this primitive is the following:
    ⟨readline⟩
      → ⟨optional prefix⟩ \readline ⟨infile name⟩ to ⟨control sequence⟩

    ⟨optional prefix⟩
      →
       |  \global ⟨optional prefix⟩ 

Examples

 \openin3= abc.def
 \readline3 to \line
 \closein3 

Version:
$Revision: 4770 $
Author:
Gerd Neugebauer
See Also:
Serialized Form

Field Summary
protected static long serialVersionUID
          The constant serialVersionUID contains the id for serialization.
 
Constructor Summary
Readline(CodeToken token)
          Creates a new object.
 
Method Summary
 void assign(Flags prefix, Context context, TokenSource source, Typesetter typesetter)
          The method assign is the core of the functionality of execute().
 void enableLogging(java.util.logging.Logger log)
          Setter for the logger.
 
Methods inherited from class org.extex.interpreter.type.AbstractAssignment
execute
 
Methods inherited from class org.extex.interpreter.type.AbstractCode
getLocalizer, getName, getToken, isIf, isOuter, readResolve, toString, toText, toText
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

protected static final long serialVersionUID
The constant serialVersionUID contains the id for serialization.

See Also:
Constant Field Values
Constructor Detail

Readline

public Readline(CodeToken token)
Creates a new object.

Parameters:
token - the initial token for the primitive
Method Detail

assign

public void assign(Flags prefix,
                   Context context,
                   TokenSource source,
                   Typesetter typesetter)
            throws HelpingException,
                   TypesetterException
The method assign is the core of the functionality of execute(). This method is preferable to execute() since the execute() method provided in this class takes care of \afterassignment and \globaldefs as well.

Specified by:
assign in class AbstractAssignment
Parameters:
prefix - the prefix controlling the execution
context - the interpreter context
source - the token source
typesetter - the typesetter
Throws:
HelpingException - in case of an error
TypesetterException - in case of an error in the typesetter
See Also:
AbstractAssignment.assign( org.extex.interpreter.Flags, org.extex.interpreter.context.Context, org.extex.interpreter.TokenSource, org.extex.typesetter.Typesetter)

enableLogging

public void enableLogging(java.util.logging.Logger log)
Setter for the logger.

Parameters:
log - the logger to use
See Also:
org.extex.framework.logger.LogEnabled#enableLogging( java.util.logging.Logger)