This page provides an overview of Logtalk installation requirements and instructions and a description of the files contained on the Logtalk distribution. For detailed, up-to-date installation and configuration instructions, please see the README.txt
, INSTALL.txt
, and CUSTOMIZE.txt
files distributed with Logtalk. The broad compatibility of Logtalk, both with Prolog compilers and operating-systems, together with all the possible user scenarios, means that installation can vary from very simple by running an installer or a couple of scripts to the need of patching both Logtalk and Prolog compilers to workaround the lack of strong Prolog standards.
The preferred installation scenario is to have Logtalk installed in a system-wide location, thus available for all users, and a local copy of user-modifiable files on each user home directory (even when you are the single user of your computer). This scenario allows each user to independently customize Logtalk and to freely modify the provided programming examples. Logtalk installers, installation shell scripts, and Prolog integration scripts favor this installation scenario, although alternative installation scenarios are always possible. The installers set two environment variables, LOGTALKHOME
and LOGTALKUSER
, pointing, respectively, to the Logtalk installation folder and to the Logtalk user folder.
Logtalk is compatible with almost any computer/operating-system with a modern Prolog compiler available. Currently, the main development environment is an Apple MacBook Pro running MacOS X. Being written in Prolog and distributed in source form, the only issue regarding operating system compatibility are the end-of-line codes in the source text files!
In writing Logtalk I have tried to follow the current ISO Prolog Part 1 standard whenever possible. Capabilities needed by Logtalk that are not defined in the ISO standard are:
dynamic
, static
, built_in
)
Logtalk needs access to the predicate property built_in
to properly compile objects and categories that contain Prolog built-in predicates calls. In addition, some Logtalk built-ins need to know the dynamic/static status of predicates to ensure correct application. The ISO standard for Prolog modules defines a predicate_property/2
predicate that is already implemented by most Prolog compilers. Note that if these capabilities are not built-in the user cannot easily define them.
For optimal performance, Logtalk requires that the Prolog compiler supports first-argument indexing for both static and dynamic code (most modern compilers support this feature).
Since most Prolog compilers are moving closer to the ISO Prolog standard [ISO 95], it is advisable that you try to use the most recent version of your favorite Prolog compiler.
Logtalk installers are available for MacOS X, Linux, and Microsoft Windows 2000/XP/2003. Depending on the chosen installer, some tasks (e.g. setting environment variables or integrating Logtalk with some Prolog compilers) may need to be performed manually.
Logtalk sources are available in a tar
archive compressed with bzip2
, lgt2xxx.tar.bz2
. You may expand the archive by using a decompressing utility or by typing the following commands at the command-line:
% tar -jxvf lgt2xxx.tar.bz2
This will create a sub-directory named lgt2xxx
in your current directory. Almost all files in the Logtalk distribution are text files. Different operating-systems use different end-of-line codes for text files. Ensure that your decompressing utility convert the end-of-lines of all text files to match your operating system.
In the Logtalk installation directory, you will find the following files and directories:
BIBLIOGRAPHY.bib
– Logtalk bibliography in BibTeX formatCUSTOMIZE.txt
– Logtalk end-user customization instructionsINSTALL.txt
– Logtalk installation instructionsLICENSE.txt
– Logtalk user licenseQUICK_START.txt
– Quick start instructions for those that do not like to read manualsREADME.txt
– several useful informationRELEASE_NOTES.txt
– release notes for this versionUPGRADING.txt
– instructions on how to upgrade your programs to the current Logtalk versionVERSION.txt
– file containing the current Logtalk version number (used for compatibility checking when upgrading Logtalk)settings.lgt
– file containing user-defined Logtalk settingscompiler
NOTES.txt
– notes on the current status of the compiler...
– compiler source filesconfigs
NOTES.txt
– notes on the provided configuration filestemplate.pl
– template configuration file...
– specific configuration filescontributions
NOTES.txt
– notes on the user-contributed code...
– user-contributed code filesexamples
NOTES.txt
– short description of the provided examplesbricks
NOTES.txt
– example description and other notesSCRIPT.txt
– step by step example tutorialloader.lgt
– loader utility file for the example objects...
– bricks example source files...
– other examplesintegration
NOTES.txt
– notes on scripts for Logtalk integration with Prolog compilers...
– Prolog integration scriptslibpaths
NOTES.txt
– description on how to setup library and examples pathslibpaths.pl
– default library and example pathslibrary
NOTES.txt
– short description of the library contentsall_loader.lgt
– loader utility file for all library entities...
– library source filesmanuals
NOTES.txt
– notes on the provided documentationbibliography.html
– bibliographyglossary.html
– glossaryindex.html
– root document for all documentation...
– other documentation filesman
...
– POSIX man pages for the shell scriptsscripts
NOTES.txt
– notes on scripts for Logtalk user setup, packaging, and installation...
– packaging, installation, and setup scriptswenv
NOTES.txt
– notes on syntax highlighter and text editor configuration files providing syntax coloring for publishing and editing Logtalk source code...
– syntax coloring configuration filesxml
NOTES.txt
– notes on the automatic generation of XML documentation fileslogtalk.css
– cascade style sheet file for the HTML output of the XSLT conversion of the XML fileslogtalk.dtd
– Document Type Description file describing the structure of the XML fileslgthtml.xsl
– transformation style sheet to output HTML code from the XML files...
– other XSL fileslgt2html.sh
– shell script for converting XML documenting files to (X)HTML files...
– other script filesConfiguration files provide the glue code between the Logtalk compiler/runtime and a Prolog compiler. Each configuration file contains two sets of predicates: ISO Prolog standard predicates and directives not built-in in the target Prolog compiler and Logtalk-specific predicates.
Logtalk already includes ready to use configuration files for most academic and commercial Prolog compilers. If a configuration file is not available for the compiler that you intend to use, then you need to build a new one, starting from the included template.pl
file. Start by making a copy of the template file. Carefully check (or complete if needed) each listed definition. If your Prolog compiler conforms to the ISO standard, this task should only take you a few minutes. In most cases, you can borrow code from some of the predefined configuration files. If you are unsure that your Prolog compiler provides all the ISO predicates needed by Logtalk, try to run the system by setting the unknown predicate error handler to report as an error any call to a missing predicate. Better yet, switch to a modern, ISO compliant, Prolog compiler. If you send me your configuration file, with a reference to the target Prolog compiler, maybe I can include it in the next release of Logtalk.
The configuration files specifies default values for all the Logtalk compiler flags. Most of these compiler flags are described in the next section. A few of these flags have read-only values which cannot be changed at runtime. These are:
prolog_dialect
prolog_version
(Major, Minor, Patch)
, whose arguments are integers). This flag availability depends on the Prolog compiler. Checking the value of this flag fails for any Prolog compiler that does not provide access to version data.break_predicate
break/0
predicate (which can be used by the Logtalk built-in debugger). Possible flag values are supported
and unsupported
.encoding_directive
encoding/1
directive. This directive is used for declaring the text encoding of source files. Possible flag values are unsupported
, full
(can be used in both Logtalk source files and compiler generated Prolog files), and source
(can be used only in Logtalk source files).multifile_directive
multifile/1
predicate directive. Possible flag values are unsupported
and supported
(requires that multifile predicates can be either static or dynamic).tabling
unsupported
and supported
.threads
unsupported
and supported
.modules
unsupported
and supported
(Logtalk provides limited support for compiling Prolog modules as objects).coinduction
unsupported
and supported
.
Although is always possible to edit the back-end Prolog compiler configuration files, the recommended solution to customize compiler flags is to edit the settings.lgt
file in the Logtalk user folder. Depending on the back-end Prolog compiler and on the operating-system, is also possible to define per-project settings files by creating a settings.lgt
file in the project directory and by starting Logtalk from this directory. At startup, Logtalk tries to load a settings.lgt
file from the startup directory. If not found, Logtalk tries to load a settings.lgt
file from the Logtalk user folder. If no settings files are found, Logtalk will use the default compiler flag values set on the back-end Prolog compiler configuration files. When limitations of the back-end Prolog compiler or on the operating-system prevent Logtalk from finding the settings files, these can always be loaded manually after Logtalk startup.
Settings files are normal Logtalk source files (although when automatically loaded by Logtalk they are compiled silently with any errors being simply ignored). The usual contents is an initialization/1
Prolog directive containing calls to the set_logtalk_flag/2
Logtalk built-in predicate and asserting clauses for the logtalk_library_path/2
multifile dynamic predicate. Note that the set_logtalk_flag/2
directive cannot be used as its scope is local to the source file being compiled. For example, one of the troubles of writing portable applications is the different feature sets of Prolog compilers. A typical issue is the lack of support for multifile directives. Using the Logtalk support for conditional compilation you could write:
:- if(current_logtalk_flag(multifile_directive, supported)). :- multifile(logtalk_library_path/2). :- dynamic(logtalk_library_path/2). logtalk_library_path(my_project, '$HOME/my_project_dir/'). :- initialization(( set_logtalk_flag(altdirs, on), set_logtalk_flag(smart_compilation, on) )). :- else. :- initialization(( assertz(logtalk_library_path(my_project, '$HOME/my_project_dir/')), set_logtalk_flag(altdirs, on), set_logtalk_flag(smart_compilation, on) )). :- endif.
The Logtalk flag prolog_dialect
may also be used with the conditional compilation directives in order to define a single settings file that can be used with several back-end Prolog compilers.
The compiler
sub-directory contains the Prolog source file(s) that implement the Logtalk compiler and the Logtalk runtime. The compiler and the runtime may be split in two (or more) separate files or combined in a single file, depending on the Logtalk release that you are installing.
Starting from version 2.7.0, Logtalk contains a standard library of useful objects, categories, and protocols. Read the corresponding NOTES.txt
file for details about the library contents.
Logtalk 2.x contains new implementations of some of the examples provided with previous 1.x versions. The sources of each one of these examples can be found included in a subdirectory with the same name, inside the directory examples. The majority of these examples include a file named SCRIPT.txt
that contains cases of simple utilization. Some examples may depend on other examples and library objects to work properly. Read the corresponding NOTES.txt
file for details before running an example.
Logtalk source files are text files containing entity definitions (objects, categories, or protocols). The extension .lgt
is normally used. Logtalk compiles these files to plain Prolog, replacing the .lgt
extension with .pl
(the default Prolog extension). If your Prolog compiler expects the Prolog source filenames to end with a specific, different extension, you can set it in the corresponding configuration file.