ciaosh is the Ciao interactive top-level shell. It provides the user with an interactive programming environment with tools for incrementally building programs, debugging programs by following their executions, and modifying parts of programs without having to start again from scratch. If available, it is strongly recommended to use it with the emacs interface provided, as it greatly simplifies the operation. This chapter documents general operation in the shell itself.
When invoked, the shell responds with a message of identification and the prompt ?- as soon as it is ready to accept input.
When the shell is initialized it looks for a file .ciaorc in the HOME directory and makes an include of it, if it exists. This file is useful for including use_module/1 declarations for the modules one wants to be loaded by default, changing prolog flags, etc. (Note that the .ciaorc file can only contain directives, not actual code; to load some code at startup put it in a separate file and load it using e.g. a use_module/1 declaration.) If the initialization file does not exist, the default package default is included, to provide more or less what other prologs define by default. Thus, if you want to have available all builtins you had before adding the initialization file, you have to include :- use_package(default) in it. Two command-line options control the loading of the initialization file:
After the shell outputs the prompt, it is expecting either an internal command (see the following sections) or a query (a goal or sequence of goals). When typing in the input, which must be a valid prolog term, if the term does not end in the first line, subsequent lines are indented. For example:
?- X = f(a, b). X = f(a,b) ? yes ?-
The queries are executed by the shell as if they appeared in the user module. Thus, in addition to builtin predicates, predicates available to be executed directly are all predicates defined by loaded user files (files with no module declaration), and imported predicates from modules by the use of use_module.
The possible answers of the shell, after executing an internal command or query, are:
To allow using connection variables in queries without having to report their results, variables whose name starts with _ are not considered in answers, the rest being the answer variables. This example illustrates the previous points:
?- member(a, [b, c]). no ?- member(a, [a, b]). yes ?- member(X, [a|L]). X = a ? ; L = [X|_] ? yes ?- atom_codes(ciao, _C), member(L, _C). L = 99 ? ; L = 105 ? ; L = 97 ? ; L = 111 ? ; no ?-
As stated before, when the user answers with `,' after a solution is presented, the shell enters a recursive level, changing its prompt to N ?- (where N is the recursion level) and keeping the bindings or constraints of the solution (this is inspired by the LogIn language developed by H. Ait-Kaci, P. Lincoln and Roger Nasr [AKNL86]). Thus, the following queries will be executed within that context, and all variables in the lower level solutions will be reported in subsequent solutions at this level. To exit a recursive level, input an EOF character or the command up. The last solution after entering the level is repeated, to allow asking for more solutions. Use command top to exit all recursive levels and return to the top level. Example interaction:
?- directory_files('.',_Fs), member(F,_Fs). F = 'stream_utils.po' ? , 1 ?- file_property(F, mod_time(T)). F = 'stream_utils.po', T = 923497679 ? yes 1 ?- up. F = 'stream_utils.po' ? ; F = 'stream_utils.pl' ? ; F = 'stream_utils.itf' ? , 1 ?- file_property(F, mod_time(T)). F = 'stream_utils.itf', T = 923497679 ? yes 1 ?- ^D F = 'stream_utils.itf' ? yes ?-
Usage:use_module(Module)
Load into the top-level the module defined in Module, importing all the predicates it exports.
Usage:use_module(Module,Imports)
Load into the top-level the module defined in Module, importing the predicates in Imports.
Usage:ensure_loaded(File)
Load into the top-level the code residing in file (or files) File, which is user (i.e. non-module) code.
Usage:make_exec(Files,ExecName)
Make a Ciao executable from file (or files) Files, giving it name ExecName. If ExecName is a variable, the compiler will choose a default name for the executable and will bind the variable ExecName to that name. The name is chosen as follows: if the main prolog file has no .pl extension or we are in Windows, the executable will have extension .cpx; else the executable will be named as the main prolog file without extension.
Usage:include(File)
The contents of the file File are included in the top-level shell. For the moment, it only works with some directives, which are interpreted by the shell, or with normal clauses (which are asserted).
Usage:use_package(Package)
Include the package or packages specified in Package. Most package contents can be handled in the top level, but there are currently still some limitations.
Usage:consult(File)
Provided for backward compatibility. Similar to ensure_loaded/1, but ensuring each listed file is loaded in consult mode (see The interactive debugger).
Usage:compile(File)
Provided for backward compatibility. Similar to ensure_loaded/1, but ensuring each listed file is loaded in compile mode (see The interactive debugger).
Usage:[File|Files]
Provided for backward compatibility, obsoleted by ensure_loaded/1.
Usage:make_po(Files)
Make object (.po) files from Files. Equivalent to executing "ciaoc -c" on the files.
Usage:unload(File)
Unloads dynamically loaded file File.
Usage:set_debug_mode(File)
Set the loading mode of File to consult. See The interactive debugger.
Usage:set_nodebug_mode(File)
Set the loading mode of File to compile. See The interactive debugger.
Usage:force_lazy(Module)
Force module of name Module to be loaded lazily in the subsequent created executables.
Usage:undo_force_lazy(Module)
Disable a previous force_lazy/1 on module Module (or, if it is uninstantiated, all previous force_lazy/1).
Usage:dynamic_search_path(Name)
Asserting a fact to this data predicate, files using path alias Name will be treated as dynamic in the subsequent created executables.
Usage:multifile Pred
Dynamically declare predicate Pred as multifile. This is useful at the top-level shell to be able to call multifile predicates of loaded files.
sourcenames(File) :- sourcename(File). sourcenames(Files) :- list(sourcename,Files).See sourcename/1 in Basic file/stream handling
Usage:sourcenames(Files)
Files is a source name or a list of source names.