Go to the first, previous, next, last section, table of contents.


Low-level Java to Prolog interface

Author(s): Jesús Correas.

Version: 1.5#118 (2000/4/19, 18:13:43 CEST)

Version of last change: 1.5#40 (2000/2/8, 16:32:42 CET)

This module defines a low level Java to Prolog interface. This Prolog side of the Java to Prolog interface only has one public predicate: a server that listens at the socket connection with Java, and executes the commands received from the Java side.

In order to evaluate the goals received from the Java side, this module can work in two ways: executing them in the same engine, or starting a thread for each goal. The easiest way is to launch them in the same engine, but the goals must be evaluated sequentially: once a goal provides the first solution, all the subsequent goals must be finished before this goal can backtrack to provide another solution. The Prolog side of this interface works as a top-level, and the goals partially evaluated are not independent.

The solution of this goal dependence is to evaluate the goals in a different prolog engine. Although Ciao includes a mechanism to evaluate goals in different engines, the approach used in this interface is to launch each goal in a different thread.

The decision of what kind of goal evaluation is selected is done by the Java side. Each evaluation type has its own command terms, so the Java side can choose the type it needs.

A Prolog server starts by calling the prolog_server/0 predicate. The user predicates and libraries to be called from Java must be included in the executable file, or be accesible using the built-in predicates dealing with code loading.

Usage and interface (jtopl)

Documentation on exports (jtopl)

PREDICATE: prolog_server/0:

Usage:

Documentation on internals (jtopl)

REGTYPE: command/1:

Usage: command(X)

REGTYPE: answer/1:

Usage: answer(X)

REGTYPE: prolog_query/1:

Usage: prolog_query(X)

PREDICATE: shell_s/0:

Usage:

PREDICATE: process_first_command/1:

Usage: process_first_command(+Command)

PREDICATE: process_next_command/2:

Usage: process_next_command(+Id,+Command)

PREDICATE: solve/1:

Usage: solve(+Query)

PREDICATE: solve_on_thread/1:

Usage: solve_on_thread(+Query)

PREDICATE: get_query_id/1:

Usage: get_query_id(-(Id))

PREDICATE: prolog_parse/2:

Usage: prolog_parse(+String,-(Term))

PREDICATE: read_command/1:

Usage: read_command(-(Command))

PREDICATE: write_answer/1:

Usage: write_answer(+Answer)


Go to the first, previous, next, last section, table of contents.