File: protocols.html

package info (click to toggle)
yap 5.1.1-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 16,124 kB
  • ctags: 14,650
  • sloc: ansic: 122,796; perl: 22,545; sh: 3,768; java: 1,277; makefile: 1,191; xml: 739; tcl: 624; lisp: 142; awk: 9
file content (220 lines) | stat: -rw-r--r-- 10,435 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>
	<meta http-equiv="content-type" content="application/xml+xhtml; charset=utf-8" />
	<title>Logtalk user manual: protocols</title>
	<link rel="stylesheet" href="../screen.css" type="text/css" media="screen"/>
	<link rel="stylesheet" href="../print.css" type="text/css" media="print"/>
</head>

<body>

<div class="top-left">Logtalk user manual</div> 
<div class="top-right">Protocols</div>
<div class="bottom-left"><span class="page"/></div> 
<div class="bottom-right"><span class="page"/></div>
<div class="navtop"><a href="../index.html">contents</a> &gt; <a href="index.html">user manual</a></div>

<h1>Protocols</h1>

<p>
Protocols enable the separation between interface and implementation: several objects can implement the same protocol and an object can implement several protocols. There are no pre-defined protocols in Logtalk.
</p>

<h2>Defining a new protocol<a id="defining"></a></h2>

<p>
We can define a new object in the same way we write Prolog code: by using a text editor. Logtalk source files may contain one or more objects, categories, or protocols. If you prefer to define each entity in its own source file, it is recommended that the file be named after the protocol. By default, all Logtalk source files use the extension <code>.lgt</code> but this is optional and can be set in the configuration files. Compiled source files (by the Logtalk preprocessor) have, by default, a <code>.pl</code> extension. Again, this can be set to match the needs of a particular Prolog compiler in the corresponding configuration file. For example, we may define a protocol named <code>listp</code> and save it in a <code>listp.lgt</code> source file that will be compiled to a <code>listp.pl</code> Prolog file.
</p>
<p>
Protocol names must be atoms. Objects, categories and protocols share the same name space: we can not have a protocol with the same name as an object or a category.
</p>
<p>
Protocol directives are textually encapsulated by using two Logtalk directives: <a title="Consult reference manual" href="../refman/directives/protocol1_2.html"><code>protocol/1-2</code></a> and <a title="Consult reference manual" href="../refman/directives/end_protocol0.html"><code>end_protocol/0</code></a>. The most simple protocol will be one that is self-contained, not depending on any other Logtalk entity:
</p>
<pre>:- protocol(Protocol).
    ...
:- end_protocol.</pre>
<p>
If a protocol extends one or more protocols, then the opening directive will be:
</p>
<pre>:- protocol(Protocol,
    extends(OtherProtocol)).
    ...
:- end_protocol.</pre>

<h2>Finding defined protocols<a id="finding"></a></h2>

<p>
We can find, by backtracking, all defined protocols by using the <a title="Consult reference manual" href="../refman/builtins/current_protocol1.html"><code>current_protocol/1</code></a> built-in predicate with an uninstantiated variable:
</p>
<pre>| ?- current_protocol(Protocol).</pre>
<p>
This predicate can also be used to test if a protocol is defined by calling it with a valid protocol identifier (an atom).
</p>

<h2>Creating a new protocol in runtime<a id="creating"></a></h2>

<p>
We can create a new (dynamic) protocol in runtime by calling the Logtalk built-in predicate <a title="Consult reference manual" href="../refman/builtins/create_protocol3.html"><code>create_protocol/3</code></a>:
</p>
<pre>| ?- create_protocol(Protocol, Relations, Directives).</pre>
<p>
The first argument, the name of the new protocol (a Prolog atom), should not match an existing entity name. The remaining two arguments correspond to the relations described in the opening protocol directive and to the protocol  directives.
</p>
<p>
For instance, the call:
</p>
<pre>| ?- create_protocol(ppp, [extends(qqq)], [public(foo/1, bar/1)]).</pre>
<p>
is equivalent to compiling and loading the protocol:
</p>
<pre>:- protocol(ppp,
    extends(qqq)).

    :- dynamic.

    :- public(foo/1, bar/1).

:- end_protocol.</pre>
<p>
If we need to create a lot of (dynamic) protocols at runtime, then is best to define a metaclass or a prototype with a predicate that will call this built-in predicate in order to provide more sophisticated behavior.
</p>

<h2>Abolishing an existing protocol<a id="abolishing"></a></h2>

<p>
Dynamic protocols can be abolished using the <a title="Consult reference manual" href="../refman/builtins/abolish_protocol1.html"><code>abolish_protocol/1</code></a> built-in predicate:
</p>
<pre>| ?- abolish_protocol(Protocol).</pre>
<p>
The argument must be an identifier of a defined dynamic protocol, otherwise an error will be thrown.
</p>

<h2>Protocol directives<a id="directives"></a></h2>

<p>
Protocol directives are used to set initialization goals and protocol properties.
</p>

<h3>Protocol initialization<a id="initialization"></a></h3>

<p>
We can define a goal to be executed as soon as a protocol is (compiled and) loaded to memory with the <a title="Consult reference manual" href="../refman/directives/initialization1.html"><code>initialization/1</code></a> directive:
</p>
<pre>:- initialization(Goal).</pre>
<p>
The argument can be any valid Prolog or Logtalk goal, including a message sending call.
</p>

<h3>Dynamic protocols<a id="dynamic"></a></h3>

<p>
As usually happens with Prolog code, a protocol can be either static or dynamic. A protocol created during the execution of a program is always dynamic. A protocol defined in a file can be either dynamic or static. Dynamic protocols are declared by using the <a title="Consult reference manual" href="../refman/directives/dynamic0.html"><code>dynamic/0</code></a> directive in the protocol source code:
</p>
<pre>:- dynamic.</pre>
<p>
The directive must precede any predicate directives. Please be aware that using dynamic code implies a performance hit when compared to  static code. We should only use dynamic protocols when these need to be abolished during program execution.
</p>

<h3>Protocol documentation<a id="documentation"></a></h3>

<p>
A protocol can be documented with arbitrary user-defined information by using the <a title="Consult reference manual" href="../refman/directives/info1.html"><code>info/1</code></a> directive:
</p>
<pre>:- info(List).</pre>
<p>
See the <a href="documenting.html">documenting Logtalk programs</a> session for details.
</p>

<h2>Protocol relationships<a id="relationships"></a></h2>

<p>
Logtalk provides two sets of built-in predicates that enable us to query the system about the possible relationships that a protocol have with other entities.
</p>
<p>
The built-in predicates <a title="Consult reference manual" href="../refman/builtins/extends_protocol2_3.html"><code>extends_protocol/2</code></a> and <a title="Consult reference manual" href="../refman/builtins/extends_protocol2_3.html"><code>extends_protocol/3</code></a> return all pairs of protocols so that the first one extends the second:
</p>
<pre>| ?- extends_protocol(Protocol1, Protocol2).</pre>
<p>
or, if we want to know the extension scope:
</p>
<pre>| ?- extends_protocol(Protocol1, Protocol2, Scope).</pre>
<p>
To find which objects or categories implement which protocols we can call the <a title="Consult reference manual" href="../refman/builtins/implements_protocol2_3.html"><code>implements_protocol/2</code></a> or <a title="Consult reference manual" href="../refman/builtins/implements_protocol2_3.html"><code>implements_protocol/2</code></a> built-in predicates:
</p>
<pre>| ?- implements_protocol(ObjectOrCategory, Protocol).</pre>
<p>
or, if we want to know the implementation scope:
</p>
<pre>| ?- implements_protocol(ObjectOrCategory, Protocol, Scope).</pre>
<p>
Note that, if we use an uninstantiated variable for the first argument, we will need to use the <a title="Consult reference manual" href="../refman/builtins/current_object1.html"><code>current_object/1</code></a> or <a title="Consult reference manual" href="../refman/builtins/current_category1.html"><code>current_category/1</code></a> built-in predicates to identify the kind of entity returned.
</p>

<h2>Protocol properties<a id="properties"></a></h2>

<p>
We can find the properties of defined protocols by calling the <a title="Consult reference manual" href="../refman/builtins/protocol_property2.html"><code>protocol_property/2</code></a> built-in predicate:
</p>
<pre>| ?- protocol_property(Protocol, Property).</pre>
<p>
A protocol may have the property <code>static</code>, <code>dynamic</code>, or <code>built_in</code>. Dynamic protocols can be abolished in runtime by calling the <a title="Consult reference manual" href="../refman/builtins/abolish_protocol1.html"><code>abolish_protocol/1</code></a> built-in predicate.
</p>

<h2>Implementing protocols<a id="implementing"></a></h2>

<p>
Any number of objects or categories can implement a protocol. The syntax is very simple:
</p>
<pre>:- object(Object,
    implements(Protocol)).
    ...
:- end_object.</pre>
<p>
or, in the case of a category:
</p>
<pre>:- category(Object,
    implements(Protocol)).
    ...
:- end_category.</pre>
<p>
To make all public predicates declared via an implemented protocol protected or to make all public and protected predicates private we prefix the protocol's name with the corresponding keyword. For instance:
</p>
<pre>:- object(Object,
    implements(private::Protocol)).
    ...
:- end_object.</pre>
<p>
or:
</p>
<pre>:- object(Object,
    implements(protected::Protocol)).
    ...
:- end_object.</pre>
<p>
Omitting the scope keyword is equivalent to writing:
</p>
<pre>:- object(Object,
    implements(public::Protocol)).
    ...
:- end_object.</pre>
<p>
The same rules applies to protocols implemented by categories.
</p>

	<div class="navbottom"><a href="objects.html">previous</a> | <a href="../glossary.html">glossary</a> | <a href="categories.html">next</a><div class="footer">
</div>
	<div class="copyright">Copyright &copy; <a href="mailto:pmoura@logtalk.org">Paulo Moura</a> &mdash; <a href="http://www.logtalk.org">Logtalk.org</a></div>
	<div class="footnote">
		<span class="validators"><a href="http://validator.w3.org/check/referer">XHTML</a> + <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></span>
		<span class="date">Last updated on: January 21, 2006</span>
	</div>
</div>

</body>
</html>