forked from SWI-Prolog/packages-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththread_httpd.pl
674 lines (569 loc) · 20.1 KB
/
thread_httpd.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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
/* $Id$
Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (C): 1985-2007, University of Amsterdam
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
As a special exception, if you link this library with other files,
compiled with a Free Software compiler, to produce an executable, this
library does not by itself cause the resulting executable to be covered
by the GNU General Public License. This exception does not however
invalidate any other reasons why the executable file might be covered by
the GNU General Public License.
*/
:- module(thread_httpd,
[ http_current_server/2, % ?:Goal, ?Port
http_server_property/2, % ?Port, ?Property
http_server/2, % :Goal, +Options
http_workers/2, % +Port, ?WorkerCount
http_current_worker/2, % ?Port, ?ThreadID
http_stop_server/2, % +Port, +Options
http_spawn/2, % :Goal, +Options
http_requeue/1, % +Request
http_close_connection/1 % +Request
]).
:- use_module(library(debug)).
:- use_module(library(error)).
:- use_module(library(option)).
:- use_module(library(lists)).
:- use_module(library(socket)).
:- use_module(library(thread_pool)).
:- use_module(http_wrapper).
:- use_module(http_stream).
:- predicate_options(http_server/2, 2,
[ port(integer),
tcp_socket(any),
workers(positive_integer),
timeout(number),
keep_alive_timeout(number),
pass_to(system:thread_create/3, 3)
]).
:- predicate_options(http_spawn/2, 2,
[ pool(atom),
pass_to(system:thread_create/3, 3),
pass_to(thread_pool:thread_create_in_pool/4, 4)
]).
/** <module> Threaded HTTP server
This library provides a multi-threaded Prolog-based HTTP server based on
the same wrapper as xpce_httpd and inetd_httpd. This server can handle
multiple clients in Prolog threads and doesn't need XPCE.
In addition to the other two frontends (XPCE and inetd), this frontend
provides hooks for http_ssl_plugin.pl for creating an HTTPS server. It
is activated using the option ssl(+SSLOptions), where SSLOptions are
options required by ssl_init/3. See http_ssl_plugin.pl and package ssl
for details.
*/
:- meta_predicate
http_server(1, +),
http_current_server(1, ?),
http_spawn(0, +).
:- dynamic
current_server/5, % Port, Goal, Thread, Queue, StartTime
queue_worker/2, % Queue, ThreadID
queue_options/2. % Queue, Options
:- multifile
make_socket_hook/3,
accept_hook/2,
close_hook/1,
open_client_hook/5,
http:create_pool/1.
%% http_server(:Goal, +Options) is det.
%
% Create a server at Port that calls Goal for each parsed request.
% Options provide a list of options. Defined options are
%
% | port(?Port) | - | Port to listen to |
% | tcp_socket(+Socket)| - | If provided, use this socket |
% | workers(N) | 5 | Define the number of worker threads |
% | timeout(S) | 60 | Max inactivity for reading request |
% | keep_alive_timeout | 2 | Drop Keep-Alive connection timeout |
% | local(KBytes) | <CommandLine> | |
% | global(KBytes) | <CommandLine> | |
% | trail(KBytes) | <CommandLine> | Stack-sizes of worker threads |
http_server(Goal, Options) :-
strip_module(Goal, Module, G),
select_option(port(Port), Options, Options1), !,
make_socket(Port, Options1, Options2),
create_workers(Options2),
create_server(Module:G, Port, Options2).
http_server(_Goal, _Options) :-
throw(error(existence_error(option, port), _)).
%% make_socket(?Port, +OptionsIn, -OptionsOut) is det.
%
% Create the HTTP server socket and worker pool queue. OptionsOut
% is quaranteed to hold the option queue(QueueId).
make_socket(Port, Options0, Options) :-
make_socket_hook(Port, Options0, Options), !.
make_socket(Port, Options0, Options) :-
option(tcp_socket(_), Options0), !,
make_addr_atom('httpd@', Port, Queue),
Options = [ queue(Queue)
| Options0
].
make_socket(Port, Options0, Options) :-
tcp_socket(Socket),
tcp_setopt(Socket, reuseaddr),
tcp_bind(Socket, Port),
tcp_listen(Socket, 5),
make_addr_atom('httpd@', Port, Queue),
Options = [ queue(Queue),
tcp_socket(Socket)
| Options0
].
%% make_addr_atom(+Prefix, +Address, -Atom) is det.
%
% Create an atom that identifies the server's queue and thread
% resources.
make_addr_atom(Prefix, Address, Atom) :-
phrase(address_parts(Address), Parts),
atomic_list_concat([Prefix|Parts], Atom).
address_parts(Atomic) -->
{ atomic(Atomic) }, !,
[Atomic].
address_parts(Host:Port) --> !,
address_parts(Host), [:], address_parts(Port).
address_parts(ip(A,B,C,D)) --> !,
[ A, '.', B, '.', C, '.', D ].
%% create_server(:Goal, +Address, +Options) is det.
%
% Create the main server thread that runs accept_server/2 to
% listen to new requests.
create_server(Goal, Port, Options) :-
get_time(StartTime),
memberchk(queue(Queue), Options),
make_addr_atom('http@', Port, Alias),
thread_create(accept_server(Goal, Options), _,
[ alias(Alias)
]),
assert(current_server(Port, Goal, Alias, Queue, StartTime)).
%% http_current_server(:Goal, ?Port) is nondet.
%
% True if Goal is the goal of a server at Port.
%
% @deprecated Use http_server_property(Port, goal(Goal))
http_current_server(Goal, Port) :-
current_server(Port, Goal, _, _, _).
%% http_server_property(?Port, ?Property) is nondet.
%
% True if Property is a property of the HTTP server running at
% Port. Defined properties are:
%
% * goal(:Goal)
% Goal used to start the server. This is often
% http_dispatch/1.
% * start_time(?Time)
% Time-stamp when the server was created.
http_server_property(Port, Property) :-
server_property(Property, Port).
server_property(goal(Goal), Port) :-
current_server(Port, Goal, _, _, _).
server_property(start_time(Time), Port) :-
current_server(Port, _, _, _, Time).
%% http_workers(+Port, -Workers) is det.
%% http_workers(+Port, +Workers:int) is det.
%
% Query or set the number of workers for the server at this port.
% The number of workers is dynamically modified. Setting it to 1
% (one) can be used to profile the worker using tprofile/1.
http_workers(Port, Workers) :-
must_be(integer, Port),
current_server(Port, _, _, Queue, _), !,
( integer(Workers)
-> resize_pool(Queue, Workers)
; findall(W, queue_worker(Queue, W), WorkerIDs),
length(WorkerIDs, Workers)
).
http_workers(Port, _) :-
existence_error(http_server, Port).
%% http_current_worker(?Port, ?ThreadID) is nondet.
%
% True if ThreadID is the identifier of a Prolog thread serving
% Port. This predicate is motivated to allow for the use of
% arbitrary interaction with the worker thread for development and
% statistics.
http_current_worker(Port, ThreadID) :-
current_server(Port, _, _, Queue, _),
queue_worker(Queue, ThreadID).
%% accept_server(:Goal, +Options)
%
% The goal of a small server-thread accepting new requests and
% posting them to the queue of workers.
accept_server(Goal, Options) :-
catch(accept_server2(Goal, Options), http_stop, true),
thread_self(Thread),
retract(current_server(_Port, _, Thread, _Queue, _StartTime)),
close_server_socket(Options).
accept_server2(Goal, Options) :-
accept_hook(Goal, Options), !.
accept_server2(Goal, Options) :-
memberchk(tcp_socket(Socket), Options), !,
memberchk(queue(Queue), Options),
repeat,
( catch(tcp_accept(Socket, Client, Peer), E, true)
-> ( var(E)
-> debug(http(connection), 'New HTTP connection from ~p', [Peer]),
thread_send_message(Queue, tcp_client(Client, Goal, Peer)),
fail
; accept_rethrow_error(E)
-> throw(E)
; print_message(error, E),
fail
)
; print_message(error, goal_failed(tcp_accept(Socket, _, _)))
).
accept_rethrow_error(http_stop).
accept_rethrow_error('$aborted').
%% close_server_socket(+Options)
%
% Close the server socket.
close_server_socket(Options) :-
close_hook(Options), !.
close_server_socket(Options) :-
memberchk(tcp_socket(Socket), Options), !,
tcp_close_socket(Socket).
%% http_stop_server(+Port, +Options)
%
% Stop the indicated HTTP server gracefully. First stops all
% workers, then stops the server.
%
% @tbd Realise non-graceful stop
http_stop_server(Port, _Options) :-
http_workers(Port, 0),
current_server(Port, _, Thread, Queue, _Start),
retractall(queue_options(Queue, _)),
thread_signal(Thread, throw(http_stop)),
catch(connect(localhost:Port), _, true),
thread_join(Thread, _),
message_queue_destroy(Queue).
connect(Address) :-
tcp_socket(Socket),
tcp_connect(Socket, Address),
tcp_close_socket(Socket).
/*******************************
* WORKER QUEUE OPERATIONS *
*******************************/
%% create_workers(+Options)
%
% Create the pool of HTTP worker-threads. Each worker has the
% alias http_worker_N.
create_workers(Options) :-
option(workers(N), Options, 5),
option(queue(Queue), Options),
catch(message_queue_create(Queue), _, true),
atom_concat(Queue, '_', AliasBase),
create_workers(1, N, Queue, AliasBase, Options),
assert(queue_options(Queue, Options)).
create_workers(I, N, _, _, _) :-
I > N, !.
create_workers(I, N, Queue, AliasBase, Options) :-
gensym(AliasBase, Alias),
thread_create(http_worker(Options), Id,
[ alias(Alias)
| Options
]),
assert(queue_worker(Queue, Id)),
I2 is I + 1,
create_workers(I2, N, Queue, AliasBase, Options).
%% resize_pool(+Queue, +Workers) is det.
%
% Create or destroy workers. If workers are destroyed, the call
% waits until the desired number of waiters is reached.
resize_pool(Queue, Size) :-
findall(W, queue_worker(Queue, W), Workers),
length(Workers, Now),
( Now < Size
-> queue_options(Queue, Options),
atom_concat(Queue, '_', AliasBase),
I0 is Now+1,
create_workers(I0, Size, Queue, AliasBase, Options)
; Now == Size
-> true
; Now > Size
-> Excess is Now - Size,
thread_self(Me),
forall(between(1, Excess, _), thread_send_message(Queue, quit(Me))),
forall(between(1, Excess, _), thread_get_message(quitted(_)))
).
%% http_worker(+Options)
%
% Run HTTP worker main loop. Workers simply wait until they are
% passed an accepted socket to process a client.
%
% If the message quit(Sender) is read from the queue, the worker
% stops.
http_worker(Options) :-
thread_at_exit(done_worker),
option(queue(Queue), Options),
repeat,
garbage_collect,
debug(http(worker), 'Waiting for a job ...', []),
thread_get_message(Queue, Message),
debug(http(worker), 'Got job ~p', [Message]),
( Message = quit(Sender)
-> !,
thread_self(Self),
thread_detach(Self),
thread_send_message(Sender, quitted(Self))
; open_client(Message, Queue, Goal, In, Out,
Options, ClientOptions),
( catch(http_process(Goal, In, Out, ClientOptions),
Error, true)
-> true
; Error = goal_failed(http_process/4)
),
( var(Error)
-> fail
; current_message_level(Error, Level),
print_message(Level, Error),
memberchk(peer(Peer), ClientOptions),
close_connection(Peer, In, Out),
fail
)
).
%% open_client(+Message, +Queue, -Goal, -In, -Out,
%% +Options, -ClientOptions) is semidet.
%
% Opens the connection to the client in a worker from the message
% sent to the queue by accept_server/2.
open_client(requeue(In, Out, Goal, ClOpts),
_, Goal, In, Out, Opts, ClOpts) :- !,
memberchk(peer(Peer), ClOpts),
option(keep_alive_timeout(KeepAliveTMO), Opts, 2),
check_keep_alife_connection(In, KeepAliveTMO, Peer, In, Out).
open_client(Message, Queue, Goal, In, Out, Opts,
[ pool(client(Queue, Goal, In, Out)),
timeout(Timeout)
| Options
]) :-
catch(open_client(Message, Goal, In, Out, Options),
E, report_error(E)),
option(timeout(Timeout), Opts, 60),
( debugging(http(connection))
-> memberchk(peer(Peer), Options),
debug(http(connection), 'Opened connection from ~p', [Peer])
; true
).
open_client(Message, Goal, In, Out, Options) :-
open_client_hook(Message, Goal, In, Out, Options), !.
open_client(tcp_client(Socket, Goal, Peer), Goal, In, Out,
[ peer(Peer),
protocol(http)
]) :-
tcp_open_socket(Socket, In, Out).
report_error(E) :-
print_message(error, E),
fail.
%% check_keep_alife_connection(+In, +TimeOut, +Peer, +In, +Out) is semidet.
%
% Wait for the client for at most TimeOut seconds. Succeed if the
% client starts a new request within this time. Otherwise close
% the connection and fail.
check_keep_alife_connection(In, TMO, Peer, In, Out) :-
stream_property(In, timeout(Old)),
set_stream(In, timeout(TMO)),
debug(http(keep_alife), 'Waiting for keep-alife ...', []),
catch(peek_code(In, Code), E, true),
( var(E), % no exception
Code \== -1 % no end-of-file
-> set_stream(In, timeout(Old)),
debug(http(keep_alife), '\tre-using keep-alife connection', [])
; ( Code == -1
-> debug(http(keep_alife), '\tRemote closed keep-alife connection', [])
; debug(http(keep_alife), '\tTimeout on keep-alife connection', [])
),
close_connection(Peer, In, Out),
fail
).
%% done_worker
%
% Called when worker is terminated due to http_workers/2 or a
% (debugging) exception. In the latter case, recreate_worker/2
% creates a new worker.
done_worker :-
thread_self(Self),
thread_property(Self, status(Status)),
retract(queue_worker(Queue, Self)),
( catch(recreate_worker(Status, Queue), _, fail)
-> thread_detach(Self),
print_message(informational,
httpd_restarted_worker(Self))
; print_message(informational,
httpd_stopped_worker(Self, Status))
).
%% recreate_worker(+Status, +Queue) is semidet.
%
% Deal with the possibility that threads are, during development,
% killed with abort/0. We recreate the worker to avoid that
% eventually we run out of workers. If we are aborted due to a
% halt/0 call, thread_create/3 will raise a permission error.
recreate_worker(exception(Error), Queue) :-
recreate_on_error(Error),
queue_options(Queue, Options),
atom_concat(Queue, '_', AliasBase),
create_workers(1, 1, Queue, AliasBase, Options).
recreate_on_error('$aborted').
recreate_on_error(time_limit_exceeded).
% thread_httpd:message_level(+Exception, -Level)
%
% Determine the message stream used for exceptions that may occur
% during server_loop/5. Being multifile, clauses can be added by
% the application to refine error handling. See also
% message_hook/3 for further programming error handling.
:- multifile
message_level/2.
message_level(error(io_error(read, _), _), silent).
message_level(error(timeout_error(read, _), _), informational).
message_level(keep_alive_timeout, silent).
current_message_level(Term, Level) :-
( message_level(Term, Level)
-> true
; Level = error
).
%% http_requeue(+Header)
%
% Re-queue a connection to the worker pool. This deals with
% processing additional requests on keep-alife connections.
http_requeue(Header) :-
requeue_header(Header, ClientOptions),
memberchk(pool(client(Queue, Goal, In, Out)), ClientOptions),
thread_send_message(Queue, requeue(In, Out, Goal, ClientOptions)), !.
http_requeue(Header) :-
debug(http(error), 'Re-queue failed: ~p', [Header]),
fail.
requeue_header([], []).
requeue_header([H|T0], [H|T]) :-
requeue_keep(H), !,
requeue_header(T0, T).
requeue_header([_|T0], T) :-
requeue_header(T0, T).
requeue_keep(pool(_)).
requeue_keep(peer(_)).
requeue_keep(protocol(_)).
%% http_process(Message, Queue, +Options)
%
% Handle a single client message on the given stream.
http_process(Goal, In, Out, Options) :-
debug(http(server), 'Running server goal ~p on ~p -> ~p',
[Goal, In, Out]),
option(timeout(TMO), Options, 60),
set_stream(In, timeout(TMO)),
set_stream(Out, timeout(TMO)),
http_wrapper(Goal, In, Out, Connection,
[ request(Request)
| Options
]),
next(Connection, Request).
next(switch_protocol(SwitchGoal, _SwitchOptions), Request) :- !,
memberchk(pool(client(_Queue, _Goal, In, Out)), Request),
( catch(call(SwitchGoal, In, Out), E,
( print_message(error, E),
fail))
-> true
; http_close_connection(Request)
).
next(spawned(ThreadId), _) :- !,
debug(http(spawn), 'Handler spawned to thread ~w', [ThreadId]).
next(Connection, Request) :-
downcase_atom(Connection, 'keep-alive'),
http_requeue(Request), !.
next(_, Request) :-
http_close_connection(Request).
%% http_close_connection(+Request)
%
% Close connection associated to Request. See also http_requeue/1.
http_close_connection(Request) :-
memberchk(pool(client(_Queue, _Goal, In, Out)), Request),
memberchk(peer(Peer), Request),
close_connection(Peer, In, Out).
%% close_connection(+Peer, +In, +Out)
%
% Closes the connection from the server to the client. Errors are
% currently silently ignored.
close_connection(Peer, In, Out) :-
debug(http(connection), 'Closing connection from ~p', [Peer]),
catch(close(In, [force(true)]), _, true),
catch(close(Out, [force(true)]), _, true).
%% http_spawn(:Goal, +Options) is det.
%
% Continue this connection on a new thread. A handler may call
% http_spawn/2 to start a new thread that continues processing the
% current request using Goal. The original thread returns to the
% worker pool for processing new requests. Options are passed to
% thread_create/3, except for:
%
% * pool(+Pool)
% Interfaces to library(thread_pool), starting the thread
% on the given pool.
%
% If a pool does not exist, this predicate calls the multifile
% hook http:create_pool/1 to create it. If this predicate succeeds
% the operation is retried.
http_spawn(Goal, Options) :-
select_option(pool(Pool), Options, ThreadOptions), !,
current_output(CGI),
catch(thread_create_in_pool(Pool,
wrap_spawned(CGI, Goal), Id,
[ detached(true)
| ThreadOptions
]),
Error,
true),
( var(Error)
-> http_spawned(Id)
; Error = error(resource_error(threads_in_pool(_)), _)
-> throw(http_reply(busy))
; Error = error(existence_error(thread_pool, Pool), _),
create_pool(Pool)
-> http_spawn(Goal, Options)
; throw(Error)
).
http_spawn(Goal, Options) :-
current_output(CGI),
thread_create(wrap_spawned(CGI, Goal), Id,
[ detached(true)
| Options
]),
http_spawned(Id).
wrap_spawned(CGI, Goal) :-
set_output(CGI),
http_wrap_spawned(Goal, Request, Connection),
next(Connection, Request).
%% create_pool(+Pool)
%
% Lazy creation of worker-pools for the HTTP server. This
% predicate calls the hook http:create_pool/1. If the hook fails
% it creates a default pool of size 10. This should suffice most
% typical usecases. Note that we get a permission error if the
% pool is already created. We can ignore this.
create_pool(Pool) :-
E = error(permission_error(create, thread_pool, Pool), _),
catch(http:create_pool(Pool), E, true).
create_pool(Pool) :-
print_message(informational, httpd(created_pool(Pool))),
thread_pool_create(Pool, 10, []).
/*******************************
* MESSAGES *
*******************************/
:- multifile
prolog:message/3.
prolog:message(httpd_stopped_worker(Self, Status)) -->
[ 'Stopped worker ~p: ~p'-[Self, Status] ].
prolog:message(httpd_restarted_worker(Self)) -->
[ 'Replaced aborted worker ~p'-[Self] ].
prolog:message(httpd(created_pool(Pool))) -->
[ 'Created thread-pool ~p of size 10'-[Pool], nl,
'Create this pool at startup-time or define the hook ', nl,
'http:create_pool/1 to avoid this message and create a ', nl,
'pool that fits the usage-profile.'
].