File: remote_protocol.rst

package info (click to toggle)
xapian-core 1.2.19-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 19,420 kB
  • ctags: 12,656
  • sloc: cpp: 101,561; sh: 11,340; ansic: 8,193; perl: 757; makefile: 635; tcl: 308; python: 40
file content (274 lines) | stat: -rw-r--r-- 8,155 bytes parent folder | download | duplicates (3)
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
Remote Backend Protocol
=======================

This document describes *version 35.1* of the protocol used by Xapian's
remote backend. The major protocol version increased to 35 in Xapian
1.1.5, and the minor protocol version to 1 in Xapian 1.2.4. Clients and
servers must support matching major protocol versions and the client's
minor protocol version must be the same or lower. This means that for a
minor protocol version change, you can upgrade first servers and then
clients and everything should work during the upgrades.

The protocol assumes a reliable two-way connection across which
arbitrary data can be sent - this could be provided by a TCP socket for
example (as it is with xapian-tcpsrv), but any such connection could be
used. For example, you could used xapian-progsrv across an ssh
connection, or even a custom server across a suitable serial connection.

All messages start with a single byte identifying code. A message from
client to server has a ``MSG_XXX`` identifying code, while a message
from server to client has a ``REPLY_XXX`` identifying code (but note
that a reply might not actually be in response to a message -
REPLY\_GREETING isn't - and some messages result in multiple replies).

The identifying code is followed by the encoded length of the contents
followed by the contents themselves.

Inside the contents, strings are generally passed as an encoded length
followed by the string data (this is indicated below by ``L<...>``)
except when the string is the last or only thing in the contents in
which case we know the length because we know the length of the contents
so we don't need to explicitly specify it.

Integers are encoded using the same encoding used for string lengths
(indicated by ``I<...>`` below).

Floating pointing values are passed using a bit packed encoding of the
sign and exponent and a base-256 encoding of the mantissa which avoids
any rounding issues (assuming that both machines have FLT\_RADIX equal
to some power of 2). This is indicated by ``F<...>`` below.

Boolean values are passed as a single byte which is the ASCII character
value for ``0`` or ``1``. This is indicated by ``B<...>`` below.

Server greeting and statistics
------------------------------

-  ``REPLY_GREETING <protocol major version> <protocol minor version> I<db doc count> I<last docid> B<has positions?> I<db total length> <UUID>``

The protocol major and minor versions are passed as a single byte each
(e.g. ``'\x1e\x01'`` for version 30.1). The server and client must
understand the same protocol major version, and the server protocol
minor version must be greater than or equal to that of the client (this
means that the server understands newer MSG\_\ *XXX*, but will only send
newer REPLY\_\ *YYY* in response to an appropriate client message.

Exception
---------

-  ``REPLY_EXCEPTION <serialised Xapian::Error object>``

If an unknown exception is caught by the server, this message is sent
but with empty contents.

This message can be sent at any point - the serialised exception is
unserialised by the client and thrown. The server and client both abort
any current sequence of messages.

Write Access
------------

-  ``MSG_WRITEACCESS``
-  ``REPLY_UPDATE I<db doc count> I<last docid> B<has positions?> I<db total length> <UUID>``

The reply is the same as for ``MSG_UPDATE``. If write access isn't
supported or the database is locked by another writer, then an exception
is thrown.

By default the server is also read-only, even if writing is supported.
If the client wants to be able to write, it needs to request this
explicitly. We do this so that the same server can support multiple
read-only clients and one writing client at once, without the protocol
for read-only clients requiring an extra message. The overhead of an
extra message exchange for a writer is unlikely to matter as indexing is
rarely so real-time critical as searching.

All Terms
---------

-  ``MSG_ALLTERMS``
-  ``REPLY_ALLTERMS I<term freq> L<term name>``
-  ``...``
-  ``REPLY_DONE``

Term Exists
-----------

-  ``MSG_TERMEXISTS <term name>``
-  ``REPLY_TERMEXISTS`` or ``REPLY_TERMDOESNTEXIST``

Term Frequency
--------------

-  ``MSG_TERMFREQ <term name>``
-  ``REPLY_TERMFREQ I<term freq>``

Collection Frequency
--------------------

-  ``MSG_COLLFREQ <term name>``
-  ``REPLY_COLLFREQ I<collection freq>``

Document
--------

-  ``MSG_DOCUMENT I<document id>``
-  ``REPLY_DOCDATA <document data>``
-  ``REPLY_VALUE I<value no> <value>``
-  ``...``
-  ``REPLY_DONE``

Document Length
---------------

-  ``MSG_DOCLENGTH I<document id>``
-  ``REPLY_DOCLENGTH I<document length>``

Keep Alive
----------

-  ``MSG_KEEPALIVE``
-  ``REPLY_DONE``

Reopen
------

-  ``MSG_REOPEN``
-  ``REPLY_UPDATE I<db doc count> I<last docid> B<has positions?> I<db total length> <UUID>``

The reply is the same as for ``MSG_UPDATE``.

Query
-----

-  ``MSG_QUERY L<serialised Xapian::Query object> I<query length> I<collapse max> [I<collapse key number> (if collapse_max non-zero)] <docid order> I<sort key number> <sort by> B<sort value forward> <percent cutoff> F<weight cutoff> <serialised Xapian::Weight object> <serialised Xapian::RSet object> [L<serialised Xapian::MatchSpy object>...]``
-  ``REPLY_STATS <serialised Stats object>``
-  ``MSG_GETMSET I<first> I<max items> I<check at least> <serialised global Stats object>``
-  ``REPLY_RESULTS L<the result of calling serialise_results() on each Xapian::MatchSpy> <serialised Xapian::MSet object>``

docid order is ``'0'``, ``'1'`` or ``'2'``.

sort by is ``'0'``, ``'1'``, ``'2'`` or ``'3'``.

Termlist
--------

-  ``MSG_TERMLIST I<document id>``
-  ``REPLY_DOCLENGTH I<document length>``
-  ``REPLY_TERMLIST I<wdf> I<term freq> L<term name>``
-  ``...``
-  ``REPLY_DONE``

Positionlist
------------

-  ``MSG_POSITIONLIST I<document id> <term name>``
-  ``REPLY_POSITIONLIST I<termpos delta - 1>``
-  ``...``
-  ``REPLY_DONE``

Since positions must be strictly monotonically increasing, we encode
``(pos - lastpos - 1)`` so that small differences between large position
values can still be encoded compactly. The first position is encoded as
its true value.

Postlist
--------

-  ``MSG_POSTLIST <term name>``
-  ``REPLY_POSTLISTSTART I<termfreq> I<collfreq>``
-  ``REPLY_POSTLISTITEM I<docid delta - 1> I<wdf> F<document length>``
-  ``...``
-  ``REPLY_DONE``

Since document IDs in postlists must be strictly monotonically
increasing, we encode ``(docid - lastdocid - 1)`` so that small
differences between large document IDs can still be encoded compactly.
The first document ID is encoded as its true value - 1 (since document
IDs are always > 0).

Shut Down
---------

-  ``MSG_SHUTDOWN``

No reply is sent - this message signals that the client has ended the
session.

Update
------

-  ``MSG_UPDATE``
-  ``REPLY_UPDATE I<db doc count> I<last docid> B<has positions?> I<db total length> <UUID>``

Only useful for a ``WritableDatabase`` (since the same statistics are
sent when the connection is initiated in the ``REPLY_GREETING`` and they
don't change if the database can't change).

Add document
------------

-  ``MSG_ADDDOCUMENT <serialised Xapian::Document object>``
-  ``REPLY_ADDDOCUMENT I<document id>``

Delete document
---------------

-  ``MSG_DELETEDOCUMENT I<document id>``
-  ``REPLY_DONE``

Delete document by term
-----------------------

-  ``MSG_DELETEDOCUMENTTERM <term name>``

Replace document
----------------

-  ``MSG_REPLACEDOCUMENT I<document id> <serialised Xapian::Document object>``

Replace document by term
------------------------

-  ``MSG_REPLACEDOCUMENTTERM L<term name> <serialised Xapian::Document object>``

Cancel
------

-  ``MSG_CANCEL``

Commit
------

-  ``MSG_COMMIT``
-  ``REPLY_DONE``

Set metadata
------------

-  ``MSG_SETMETADATA L<key> <value>``

Get metadata
------------

-  ``MSG_GETMETADATA <key>``
-  ``REPLY_METADATA <value>``

Metadata keys
-------------

-  ``MSG_METADATAKEYLIST <prefix>``
-  ``REPLY_METADATAKEYLIST <key>``
-  ``...``
-  ``REPLY_DONE``

Add spelling
------------

-  ``MSG_ADDSPELLING I<freqinc> <word>``

Remove spelling
---------------

-  ``MSG_REMOVESPELLING I<freqdec> <word>``