edcg
ï
This library provides a Logtalk port of the Peter Van Royâs extended DCG implementation. For full documentation on EDCGs, see:
https://www.info.ucl.ac.be/~pvr/edcg.html
This Logtalk version defines a hook object, edcg
. Source files
defining EDCGs must be compiled using the compiler option
hook(edcg)
:
| ?- logtalk_load(source, [hook(edcg)]).
Alternatively, the following directive can be added at the beginning of the source file containing the EDCGs:
:- set_logtalk_flag(hook, edcg).
The hook object automatically adds the EDCGs -->>
infix operator
scoped to the source file.
This port has simplified by copying and then modifying Michael
Hendricksâs edcg
repo at:
https://github.com/mndrix/edcg
A notable difference is that Michaelâs version declares Peterâs original
predicates for declaring accumulators and predicates using the hidden
arguments as multifile predicates. But this is risky as two independent
EDCGs may use e.g. the same accumulator names and introduce conflicts.
The Logtalk version uses instead the edcg
hook object internal state
to temporarily save those predicates in order to parse the corresponding
EDCGs.
API documentationï
Open the ../../docs/library_index.html#edcg link in a web browser.
Loadingï
To load all entities in this library, load the loader.lgt
utility
file:
| ?- logtalk_load(edcg(loader)).
Testingï
To test this library predicates, load the tester.lgt
file of the
edcgs
example:
| ?- logtalk_load(edcgs(tester)).
Usageï
Follows the usage documentation written by Michael Hendricks (with a contribution from Peter Ludemann), used here with permission, with the necessary changes for the Logtalk port.
% declare accumulators
acc_info(adder, X, In, Out, integer::plus(X,In,Out)).
% declare predicates using these hidden arguments
pred_info(len,0,[adder,dcg]).
pred_info(increment,0,[adder]).
increment -->>
% add one to the accumulator
[1]:adder.
len(Xs,N) :-
len(0,N,Xs,[]).
len -->>
% 'dcg' accumulator has an element
[_],
!,
% increment the 'adder' accumulator
increment,
len.
len -->>
[].
Introductionï
DCG notation gives us a single, hidden accumulator. Extended DCG
notation (implemented by this library) lets predicates have arbitrarily
many hidden accumulators. As demonstrated by the synopsis above, those
accumulators can be implemented with arbitrary goals (like
integer::plus/3
).
Benefits of this library:
avoid tedium and errors from manually threading accumulators through your predicates
add or remove accumulators with a single declaration
change accumulator implementation with a single declaration (ex, switching from ordsets to rbtrees)
Syntaxï
Extended DCG syntax is very similar to DCG notation. An EDCG is created
with clauses whose neck is the -->>
operator. The following syntax
is supported inside an EDCG clause:
{Goal}
- donât expand any hidden arguments ofGoal
Goal
- expand all hidden arguments of Goal that are also in the head. Those hidden arguments not in the head are given default values.Goal:L
- IfGoal
has no hidden arguments then force the expansion of all arguments inL
in the order given. IfGoal
has hidden arguments then expand all of them, using the contents ofL
to override the expansion.L
is either a term of the formAcc
,Acc(Left,Right)
,Pass
,Pass(Value)
, or a list of such terms. When present, the argumentsLeft
,Right
, andValue
override the default values of arguments not in the head.List:Acc
- Accumulate a list of terms in the accumulatorAcc
List
- Accumulate a list of terms in the accumulatordcg
X/Acc
- UnifyX
with the left term for the accumulatorAcc
Acc/X
- UnifyX
with the right term for the accumulatorAcc
X/Acc/Y
- UnifyX
with the left andY
with the right term for the accumulatorAcc
insert(X,Y):Acc
- Insert the argumentsX
andY
into the chain implementing the accumulatorAcc
. This is useful when the value of the accumulator changes radically becauseX
andY
may be the arguments of an arbitrary relationinsert(X,Y)
- Insert the argumentsX
andY
into the chain implementing the accumulatordcg
. This inserts the difference list X-Y into the accumulated list
Declaration of Predicatesï
Predicates are declared with facts of the following form:
pred_info(Name, Arity, List).
The predicate Name/Arity
has the hidden parameters given in
List
. The parameters are added in the order given by List
and
their names must be atoms.
Declaration of Accumulatorsï
Accumulators are declared with facts in one of two forms. The short form is:
acc_info(Acc, Term, Left, Right, Joiner).
The long form is:
acc_info(Acc, Term, Left, Right, Joiner, LStart, RStart).
In most cases the short form gives sufficient information. It declares
the accumulator Acc
, which must be an atom, along with the
accumulating function, Joiner
, and its arguments Term
, the term
to be accumulated, and Left
& Right
, the variables used in
chaining.
The long form of acc_info
is useful in more complex programs. It
contains two additional arguments, LStart
and RStart
, that are
used to give default starting values for an accumulator occurring in a
body goal that does not occur in the head. The starting values are given
to the unused accumulator to ensure that it will execute correctly even
though its value is not used. Care is needed to give correct values for
LStart
and RStart
. For DCG-like list accumulation both may
remain unbound.
Two conventions are used for the two variables used in chaining
depending on which direction the accumulation is done. For forward
accumulation, Left
is the input and Right
is the output. For
reverse accumulation, Right
is the input and Left
is the output.
Declaration of Passed Argumentsï
Passed arguments are conceptually the same as accumulators with =/2
as the joiner function. Passed arguments are declared as facts in one of
two forms. The short form is:
pass_info(Pass).
The long form is:
pass_info(Pass, PStart).
In most cases the short form is sufficient. It declares a passed
argument Pass
, that must be an atom. The long form also contains the
starting value PStart
that is used to give a default value for a
passed argument in a body goal that does not occur in the head. Most of
the time this situation does not occur.
Additional documentationï
Peter Van Royâs page: Declarative Programming with State
Technical Report UCB/CSD-90-583 Extended DCG Notation: A Tool for Applicative Programming in Prolog by Peter Van Roy
The Tech Reportâs PDF is here
A short Wikipedia article on DCGs and extensions.