Basic file/stream handling

Author(s): Daniel Cabeza, Mats Carlsson.

This module provides basic predicates for handling files and streams, in order to make input/output on them.

Documentation on exports

PREDICATE
open(File,Mode,Stream)

Open File with mode Mode and return in Stream the stream associated with the file. No extension is implicit in File.

Usage 1:ISO

Normal use.

  • Call and exit should be compatible with:
    (streams_basic:stream/1)Stream is an open stream.
  • The following properties should hold at call time:
    (streams_basic:sourcename/1)File is a source name.
    (streams_basic:io_mode/1)Mode is an opening mode ('read', 'write' or 'append').
  • The following properties should hold upon exit:
    (streams_basic:stream/1)Stream is an open stream.
  • The following properties should hold globally:
    (basic_props:native/1)This predicate is understood natively by CiaoPP.

Usage 2:

In the special case that File is an integer, it is assumed to be a file descriptor passed to Prolog from a foreign function call. The file descriptor is connected to a Prolog stream (invoking the C POSIX function fdopen()) which is unified with Stream.

  • Call and exit should be compatible with:
    (streams_basic:stream/1)Stream is an open stream.
  • The following properties should hold at call time:
    (basic_props:int/1)File is an integer.
    (streams_basic:io_mode/1)Mode is an opening mode ('read', 'write' or 'append').
  • The following properties should hold upon exit:
    (streams_basic:stream/1)Stream is an open stream.

PREDICATE
open(File,Mode,Stream,Options)

Same as open(File, Mode, Stream) with options Options. See the definition of open_option_list/1 for details.

Usage:

  • Call and exit should be compatible with:
    (streams_basic:stream/1)Stream is an open stream.
  • The following properties should hold at call time:
    (streams_basic:sourcename/1)File is a source name.
    (streams_basic:io_mode/1)Mode is an opening mode ('read', 'write' or 'append').
    (streams_basic:open_option_list/1)Options is a list of options for open/4.
  • The following properties should hold upon exit:
    (streams_basic:stream/1)Stream is an open stream.
  • The following properties should hold globally:
    (basic_props:native/1)This predicate is understood natively by CiaoPP.

REGTYPE
A list of options for open/4, currently the meaningful options are:

lock
Try to set an advisory lock for the file. If the open mode is read, the lock is a read (shared) lock, else it is a write (exclusive) lock. If the lock cannot be acquired, the call waits until it is released (but can fail in exceptional cases).

lock_nb
Same as lock, but the call immediately fails if the lock cannot be acquired.

lock(Lock_Mode)
Same as lock, but specifying in Lock_Mode whether the lock is read (also shared) or write (also exclusive). This option has be included for compatibility with the SWI-Prolog locking options, because in general the type of lock should match the open mode as in the lock option.

lock_nb(Lock_Mode)
Same as the previous option but with the lock_nb behavior.

All file locking is implemented via the POSIX function fcntl(). Please refer to its manual page for details.

(True) Usage:open_option_list(L)

L is a list of options for open/4.

    PREDICATE
    close(Stream)

    Close the stream Stream.

    (Trust) Usage:ISO

    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    set_input(Stream)

    Set the current input stream to Stream. A notion of current input stream is maintained by the system, so that input predicates with no explicit stream operate on the current input stream. Initially it is set to user_input.

    (Trust) Usage:ISO

    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    current_input(Stream)

    Unify Stream with the current input stream. In addition to the ISO behavior, stream aliases are allowed. This is useful for most applications checking whether a stream is the standard input or output.

    (Trust) Usage:ISO

    • Calls should, and exit will be compatible with:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    set_output(Stream)

    Set the current output stream to Stream. A notion of current output stream is maintained by the system, so that output predicates with no explicit stream operate on the current output stream. Initially it is set to user_output.

    (Trust) Usage:ISO

    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    current_output(Stream)

    Unify Stream with the current output stream. The same comment as for current_input/1 applies.

    (Trust) Usage:ISO

    • Calls should, and exit will be compatible with:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    character_count(Stream,Count)

    Count characters have been read from or written to Stream.

    (Trust) Usage:

    • Calls should, and exit will be compatible with:
      (basic_props:int/1)Count is an integer.
    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (basic_props:int/1)Count is an integer.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    line_count(Stream,Count)

    Count lines have been read from or written to Stream.

    (Trust) Usage:

    • Calls should, and exit will be compatible with:
      (basic_props:int/1)Count is an integer.
    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (basic_props:int/1)Count is an integer.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    line_position(Stream,Count)

    Count characters have been read from or written to the current line of Stream.

    (Trust) Usage:

    • Calls should, and exit will be compatible with:
      (basic_props:int/1)Count is an integer.
    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (basic_props:int/1)Count is an integer.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    flush_output(Stream)

    Flush any buffered data to output stream Stream.

    (Trust) Usage:ISO

    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    flush_output

    Behaves like current_output(S), flush_output(S)

    PREDICATE
    clearerr(Stream)

    Clear the end-of-file and error indicators for input stream Stream.

    (Trust) Usage:

    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Stream is an open stream.

    PREDICATE
    current_stream(Filename,Mode,Stream)

    Stream is a stream which was opened in mode Mode and which is connected to the absolute file name Filename (an atom) or to the file descriptor Filename (an integer). This predicate can be used for enumerating all currently open streams through backtracking.

    (Trust) Usage:

    • Calls should, and exit will be compatible with:
      (streams_basic:atm_or_int/1)streams_basic:atm_or_int(Filename)
      (streams_basic:io_mode/1)Mode is an opening mode ('read', 'write' or 'append').
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (streams_basic:atm_or_int/1)streams_basic:atm_or_int(Filename)
      (streams_basic:io_mode/1)Mode is an opening mode ('read', 'write' or 'append').
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    stream_code(Stream,StreamCode)

    StreamCode is the file descriptor (an integer) corresponding to the Prolog stream Stream.

    (Trust) Usage 1:

    • Calls should, and exit will be compatible with:
      (basic_props:int/1)StreamCode is an integer.
    • The following properties should hold at call time:
      (streams_basic:stream/1)Stream is an open stream.
    • The following properties hold upon exit:
      (basic_props:int/1)StreamCode is an integer.

    (Trust) Usage 2:

    • The following properties should hold at call time:
      (term_typing:var/1)Stream is a free variable.
      (basic_props:int/1)StreamCode is an integer.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Stream is an open stream.

    PREDICATE
    absolute_file_name(RelFileSpec,AbsFileSpec)

    If RelFileSpec is an absolute pathname then do an absolute lookup. If RelFileSpec is a relative pathname then prefix the name with the name of the current directory and do an absolute lookup. If RelFileSpec is a path alias, perform the lookup following the path alias rules (see sourcename/1). In all cases: if a matching file with suffix .pl exists, then AbsFileSpec will be unified with this file. Failure to open a file normally causes an exception. The behaviour can be controlled by the fileerrors prolog flag.

    Usage:absolute_file_name(RelFileSpec,AbsFileSpec)

    AbsFileSpec is the absolute name (with full path) of RelFileSpec.

    • Call and exit should be compatible with:
      (streams_basic:sourcename/1)RelFileSpec is a source name.
      (basic_props:atm/1)AbsFileSpec is an atom.
    • The following properties should hold at call time:
      (term_typing:nonvar/1)RelFileSpec is currently a term which is not a free variable.
      (term_typing:var/1)AbsFileSpec is a free variable.
    • The following properties should hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE
    absolute_file_name(Spec,Opt,Suffix,CurrDir,AbsFile,AbsBase,AbsDir)

    AbsFile is the absolute name (with full path) of Spec, which has an optional first suffix Opt and an optional second suffix Suffix, when the current directory is CurrDir. AbsBase is the same as AbsFile, but without the second suffix, and AbsDir is the absolute path of the directory where AbsFile is. The Ciao compiler invokes this predicate with Opt='_opt' and Suffix='.pl' when searching source files.

    Usage:

    • The following properties should hold at call time:
      (streams_basic:sourcename/1)Spec is a source name.
      (basic_props:atm/1)Opt is an atom.
      (basic_props:atm/1)Suffix is an atom.
      (basic_props:atm/1)CurrDir is an atom.
      (term_typing:var/1)AbsFile is a free variable.
      (term_typing:var/1)AbsBase is a free variable.
      (term_typing:var/1)AbsDir is a free variable.
    • The following properties should hold upon exit:
      (basic_props:atm/1)AbsFile is an atom.
      (basic_props:atm/1)AbsBase is an atom.
      (basic_props:atm/1)AbsDir is an atom.
    • The following properties should hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    PREDICATE

    (Trust) Usage:ISO

    • The following properties should hold at call time:
      (term_typing:var/1)Arg1 is a free variable.
      (term_typing:var/1)Arg2 is a free variable.
    • The following properties hold upon exit:
      (streams_basic:stream/1)Arg1 is an open stream.
      (streams_basic:stream/1)Arg2 is an open stream.
    • The following properties hold globally:
      (basic_props:native/1)This predicate is understood natively by CiaoPP.

    REGTYPE
    A source name is a flexible way of referring to a concrete file. A source name is either a relative or absolute filename given as:

    • an atom, or

    • a unary functor (which represents a path alias, see below) applied to a relative path, the latter being given as an atom.

    In all cases certain filename extensions (e.g., .pl) can be implicit. In the first form above, file names can be relative to the current directory. Also, file names beginning with ~ or $ are treated specially. For example,

    '~/ciao/sample.pl'
    is equivalent to '/home/staff/herme/ciao/sample.pl', if /home/staff/herme is the user's home directory. (On POSIX systems, this is equivalent to '$HOME/ciao/sample.pl' as explained below.)

    '~bardo/prolog/sample.pl'
    is equivalent to '/home/bardo/prolog/sample.pl', if /home/bardo is bardo's home directory.

    '$UTIL/sample.pl'
    is equivalent to '/usr/local/src/utilities/sample.pl', if /usr/local/src/utilities is the value of the environment variable UTIL.

    The second form allows using path aliases. Such aliases allow refering to files not with absolute file system paths but with paths which are relative to predefined (or user-defined) abstract names. For example, given the path alias myutils which has been defined to refer to path '/home/bardo/utilities', if that directory contains the file stuff.pl then the term myutils(stuff) in a use_module/1 declaration would refer to the file '/home/bardo/utilities/stuff.pl' (the .pl extension is implicit in the use_module/1 declaration). As a special case, if that directory contains a subdirectory named stuff which in turn contains the file stuff.pl, the same term would refer to the file '/home/bardo/utilities/stuff/stuff.pl'. If a path alias is related to several paths, all paths are scanned in sequence until a match is found. For information on predefined path aliases or how to define new path aliases, see file_search_path/2.

    (True) Usage:sourcename(F)

    F is a source name.

      REGTYPE
      Streams correspond to the file pointers used at the operating system level, and usually represent opened files. There are four special streams which correspond with the operating system standard streams:

      user_input
      The standard input stream, i.e. the terminal, usually.

      user_output
      The standard output stream, i.e. the terminal, usually.

      user_error
      The standard error stream.

      user
      The standard input or output stream, depending on context.

      (True) Usage:stream(S)

      S is an open stream.

        REGTYPE

        (True) Usage:stream_alias(S)

        S is the alias of an open stream, i.e., an atom which represents a stream at Prolog level.

          REGTYPE
          Can have the following values:

          read
          Open the file for input.

          write
          Open the file for output. The file is created if it does not already exist, the file will otherwise be truncated.

          append
          Open the file for output. The file is created if it does not already exist, the file will otherwise be appended to.

          Usage:io_mode(M)

          M is an opening mode ('read', 'write' or 'append').

            REGTYPE
            A regular type, defined as follows:
            atm_or_int(X) :-
                    atm(X).
            atm_or_int(X) :-
                    int(X).
            

            PREDICATE
            No further documentation available for this predicate.

            Documentation on multifiles

            PREDICATE
            file_search_path(Alias,Path)

            The path alias Alias is linked to path Path. Both arguments must be atoms. New facts (or clauses) of this predicate can be asserted to define new path aliases. Predefined path aliases in Ciao are:

            library
            Initially points to all Ciao library paths. See library_directory/1.

            engine
            The path of the Ciao engine builtins.

            .
            The current path ('.').

            The predicate is multifile.
            The predicate is of type dynamic.

            Trust:file_search_path(X,Y)

            • The following properties hold upon exit:
              (basic_props:gnd/1)X is ground.
              (basic_props:gnd/1)Y is ground.

            PREDICATE
            library_directory(Path)

            Path is a library path (a path represented by the path alias library). More library paths can be defined by asserting new facts (or clauses) of this predicate. The predicate is multifile.
            The predicate is of type dynamic.

            Trust:library_directory(X)

            • The following properties hold upon exit:
              (basic_props:gnd/1)X is ground.

            Known bugs and planned improvements

            • Run-time checks have been reported not to work with this code. That means that either the assertions here, or the code that implements the run-time checks are erroneous.