forked from SWI-Prolog/packages-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http_stream.pl
376 lines (337 loc) · 14.7 KB
/
http_stream.pl
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (c) 2007-2016, University of Amsterdam
VU University Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
:- module(http_stream,
[ http_chunked_open/3, % +Stream, -DataStream, +Options
http_is_chunked/1, % +DataStream
http_chunked_flush/2, % +DataStream, +Extensions
http_chunked_add_trailer/3, % +DataStream, +Key, +Value
stream_range_open/3, % +Stream, -DataStream, +Options
multipart_open/3, % +Stream, +DataStream, +Options)
multipart_open_next/1, % +DataStream
% CGI Stream interaction
cgi_open/4, % +Stream, -DataStream, :Hook, +Options
cgi_property/2, % +Stream, -Property
cgi_set/2, % +Stream, -Property
cgi_discard/1, % +Stream
is_cgi_stream/1, % +Stream
cgi_statistics/1 % ?Statistics
]).
:- use_foreign_library(foreign(http_stream)).
:- public http_stream_debug/1. % set debug level
:- meta_predicate
stream_range_open(+,-,:). % onclose option is module sensitive
/** <module> HTTP Streams
This module realises encoding and decoding filters, implemented as
Prolog streams that read/write to an underlying stream. This allows for
sequences of streams acting as an in-process pipeline.
The predicate http_chunked_open/3 realises encoding and decoding of the
HTTP _Chunked_ encoding. This encoding is an obligatory part of the HTTP
1.1 specification. Messages are split into chunks, each preceeded by the
length of the chunk. Chunked encoding allows sending messages over a
serial link (typically a TCP/IP stream) for which the reader knows when
the message is ended. Unlike standard HTTP though, the sender does not
need to know the message length in advance. The protocol allows for
sending short chunks. This is supported totally transparent using a
flush on the output stream.
The predicate stream_range_open/3 handles the Content-length on an input
stream for handlers that are designed to process an entire file. The
filtering stream claims end-of-file after reading a specified number of
bytes, dispite the fact that the underlying stream may be longer.
@see The HTTP 1.1 protocol http://www.w3.org/Protocols/rfc2616/rfc2616.html
*/
%! http_chunked_open(+RawStream, -DataStream, +Options) is det.
%
% Create a stream to realise HTTP chunked encoding or decoding. The
% technique is similar to library(zlib), using a Prolog stream as a
% filter on another streQam. Options:
%
% - close_parent(+Bool)
% If `true` (default `false`), the parent stream is closed
% if DataStream is closed.
%
% - max_chunk_size(+PosInt)
% Define the maximum size of a chunk. Default is the default
% buffer size of fully buffered streams (4096). Larger values may
% improve throughput. It is also allowed to use
% set_stream(DataStream, buffer(line)) on the data stream to
% get line-buffered output. See set_stream/2 for details.
% Switching buffering to `false` is supported.
%
% Here is example code to write a chunked data to a stream
%
% ```
% http_chunked_open(Out, S, []),
% format(S, 'Hello world~n', []),
% close(S).
% ```
%
% If a stream is known to contain chunked data, we can extract
% this data using
%
% ```
% http_chunked_open(In, S, []),
% read_stream_to_codes(S, Codes),
% close(S).
% ```
%
% The chunked protocol allows for two types of _out of band_ data.
% Each chunk may be associated with additional metadata. That is
% achieved using http_chunked_flush/2. The last chunk may be followed
% by HTTP header lines. That can be achieved by calling
% http_chunked_add_trailer/3 before closing the chunked stream.
%
% After http_chunked_open/3, the encoding of DataStream is the same as
% the encoding of RawStream, while the encoding of RawStream is
% =octet=, the only value allowed for HTTP chunked streams. Closing
% the DataStream restores the old encoding on RawStream.
%
% @error io_error(read, Stream) where the message context provides
% an indication of the problem. This error is raised if
% the input is not valid HTTP chunked data.
%! http_is_chunked(+DataStream) is semidet.
%
% True if DataStream is created using http_chunked_open/3.
%! http_chunked_flush(+DataStream, +Extensions) is det.
%
% Emits the next chunk flush_output/1 on DataStream, but in addition
% adds extension parameters to the chunk. Extensions is a list of
% `Key=Value` terms. For example, to close a chunked stream with an
% error chunk we something like below. First, we flush the last
% pending data, next we fill a new chunk and flush it with
% extensions.
%
% ```
% flush_output(current_output),
% format("Sorry, something went wrong!\n"),
% http_chunked_flush(current_output, [error=true])
% ```
%
% @compat It turns out that most clients ignore chunked extensions.
%! http_chunked_add_trailer(+DataStream, +Key:atom, +Value:atom) is det.
%
% Add a trailer key/value to DataStream. If the stream is closed,
% each call adds a line ``Key: Value\r\n`` to the output. The
% strings for Key and Value need to be compliant with the HTTP
% header syntax.
%
% @compat It turns out that most clients ignore trailer lines. The
% JavaScript fetch() method should make these available as
% ``response.trailer''.
/*******************************
* RANGES *
*******************************/
%! stream_range_open(+RawStream, -DataStream, +Options) is det.
%
% DataStream is a stream whose size is defined by the option
% size(ContentLength). Closing DataStream does not close
% RawStream. Options processed:
%
% - size(+Bytes)
% Number of bytes represented by the main stream.
% - onclose(:Closure)
% Calls call(Closure, RawStream, BytesLeft) when DataStream is
% closed. BytesLeft is the number of bytes of the range stream
% that have *not* been read, i.e., 0 (zero) if all data has been
% read from the stream when the range is closed. This was
% introduced for supporting Keep-alive in http_open/3 to
% reschedule the original stream for a new request if the data
% of the previous request was processed.
/*******************************
* MULTIPART *
*******************************/
%! multipart_open(+Stream, -DataSttream, +Options) is det.
%
% DataStream is a stream that signals `end_of_file` if the
% multipart _boundary_ is encountered. The stream can be reset to
% read the next part using multipart_open_next/1. Options:
%
% - close_parent(+Boolean)
% Close Stream if DataStream is closed.
% - boundary(+Text)
% Define the boundary string. Text is an atom, string, code or
% character list.
%
% All parts of a multipart input can be read using the following
% skeleton:
%
% ==
% process_multipart(Stream) :-
% multipart_open(Stream, DataStream, [boundary(...)]),
% process_parts(DataStream).
%
% process_parts(DataStream) :-
% process_part(DataStream),
% ( multipart_open_next(DataStream)
% -> process_parts(DataStream)
% ; close(DataStream)
% ).
% ==
%
% @license The multipart parser contains code licensed under the
% MIT license, based on _node-formidable_ by Felix Geisendoerfer
% and Igor Afonov.
%! multipart_open_next(+DataStream) is semidet.
%
% Prepare DataStream to read the next part from the multipart
% input data. Succeeds if a next part exists and fails if the last
% part was processed. Note that it is mandatory to read each part
% up to the end_of_file.
/*******************************
* CGI SUPPORT *
*******************************/
%! cgi_open(+OutStream, -CGIStream, :Hook, +Options) is det.
%
% Process CGI output. OutStream is normally the socket returning
% data to the HTTP client. CGIStream is the stream the (Prolog)
% code writes to. The CGIStream provides the following functions:
%
% * At the end of the header, it calls Hook using
% call(Hook, header, Stream), where Stream is a stream holding
% the buffered header.
%
% * If the stream is closed, it calls Hook using
% call(Hook, data, Stream), where Stream holds the buffered
% data.
%
% The stream calls Hook, adding the event and CGIStream to the
% closure. Defined events are:
%
% * header
% Called if the header is complete. Typically it uses
% cgi_property/2 to extract the collected header and combines
% these with the request and policies to decide on encoding,
% transfer-encoding, connection parameters and the complete
% header (as a Prolog term). Typically it uses cgi_set/2 to
% associate these with the stream.
%
% * send_header
% Called if the HTTP header must be sent. This is immediately
% after setting the transfer encoding to =chunked= or when the
% CGI stream is closed. Typically it requests the current
% header, optionally the content-length and sends the header
% to the original (client) stream.
%
% * close
% Called from close/1 on the CGI stream after everything is
% complete.
%
% The predicates cgi_property/2 and cgi_set/2 can be used to
% control the stream and store status info. Terms are stored as
% Prolog records and can thus be transferred between threads.
%! cgi_property(+CGIStream, ?Property) is det.
%
% Inquire the status of the CGI stream. Defined properties are:
%
% * request(-Term)
% The original request
% * header(-Term)
% Term is the header term as registered using cgi_set/2
% * client(-Stream)
% Stream is the original output stream used to create
% this stream.
% * thread(-ThreadID)
% ThreadID is the identifier of the `owning thread'
% * transfer_encoding(-Tranfer)
% One of =chunked= or =none=.
% * connection(-Connection)
% One of =Keep-Alive= or =close=
% * content_length(-ContentLength)
% Total byte-size of the content. Available in the close
% handler if the transfer_encoding is =none=.
% * header_codes(-Codes)
% Codes represents the header collected. Available in the
% header handler.
% * state(-State)
% One of =header=, =data= or =discarded=
% * id(-ID)
% Request sequence number. This number is guaranteed to be
% unique.
%! cgi_set(+CGIStream, ?Property) is det.
%
% Change one of the properies. Supported properties are:
%
% * request(+Term)
% Associate a request to the stream.
% * header(+Term)
% Register a reply header. This header is normally retrieved
% from the =send_header= hook to send the reply header to the
% client.
% * connection(-Connection)
% One of =Keep-Alive= or =close=.
% * transfer_encoding(-Tranfer)
% One of =chunked= or =none=. Initially set to =none=. When
% switching to =chunked= from the =header= hook, it calls the
% =send_header= hook and if there is data queed this is send
% as first chunk. Each subsequent write to the CGI stream
% emits a chunk. The implementation does __not__ use the
% chunked stream filter defined by http_chunked_open/3. It
% shares most of the implementation though and CGI streams
% do support http_is_chunked/1, http_chunked_flush/2 and
% http_chunked_add_trailer/3.
%! cgi_discard(+CGIStream) is det.
%
% Discard content produced sofar. It sets the state property to
% =discarded=, causing close to omit the writing the data. This
% must be used for an alternate output (e.g. an error page) if the
% page generator fails.
%! is_cgi_stream(+Stream) is semidet.
%
% True if Stream is a CGI stream created using cgi_open/4.
:- multifile
http:encoding_filter/3, % +Encoding, +In0, -In
http:current_transfer_encoding/1. % ?Encoding
:- public
http:encoding_filter/3,
http:current_transfer_encoding/1.
%! http:encoding_filter(+Encoding, +In0, -In) is semidet.
%
% Install a filter to deal with =chunked= encoded messages. Used
% by library(http_open).
http:encoding_filter(chunked, In0, In) :-
http_chunked_open(In0, In,
[ close_parent(true)
]).
%! http:current_transfer_encoding(?Encoding) is semidet.
%
% True if Encoding is supported. Used by library(http_open).
http:current_transfer_encoding(chunked).
%! cgi_statistics(?Term)
%
% Return statistics on the CGI stream subsystem. Currently defined
% statistics are:
%
% * requests(-Integer)
% Total number of requests processed
% * bytes_sent(-Integer)
% Total number of bytes sent.
cgi_statistics(requests(Requests)) :-
cgi_statistics_(Requests, _).
cgi_statistics(bytes_sent(Bytes)) :-
cgi_statistics_(_, Bytes).