forked from SWI-Prolog/packages-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thread_httpd.pl
1143 lines (1000 loc) · 36.7 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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (c) 2002-2024, University of Amsterdam
VU University Amsterdam
CWI, Amsterdam
SWI-Prolog Solutions b.v.
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(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_add_worker/2, % +Port, +Options
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
http_enough_workers/3 % +Queue, +Why, +Peer
]).
:- use_module(library(debug)).
:- use_module(library(error)).
:- use_module(library(option)).
:- use_module(library(socket)).
:- use_module(library(thread_pool)).
:- use_module(library(gensym)).
:- use_module(http_wrapper).
:- use_module(http_path).
:- autoload(library(uri), [uri_resolve/3]).
:- autoload(library(aggregate), [aggregate_all/3]).
:- predicate_options(http_server/2, 2,
[ port(any),
unix_socket(atom),
entry_page(atom),
tcp_socket(any),
workers(positive_integer),
timeout(number),
keep_alive_timeout(number),
silent(boolean),
ssl(list(any)), % if http/http_ssl_plugin is loaded
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)
]).
:- predicate_options(http_add_worker/2, 2,
[ timeout(number),
keep_alive_timeout(number),
max_idle_time(number),
pass_to(system:thread_create/3, 3)
]).
/** <module> Threaded HTTP server
Most code doesn't need to use this directly; instead use
library(http/http_server), which combines this library with the
typical HTTP libraries that most servers need.
This library defines the HTTP server frontend of choice for SWI-Prolog.
It is based on the multi-threading capabilities of SWI-Prolog and thus
exploits multiple cores to serve requests concurrently. The server
scales well and can cooperate with library(thread_pool) to control the
number of concurrent requests of a given type. For example, it can be
configured to handle 200 file download requests concurrently, 2 requests
that potentially uses a lot of memory and 8 requests that use a lot of
CPU resources.
On Unix systems, this library can be combined with
library(http/http_unix_daemon) to realise a proper Unix service process
that creates a web server at port 80, runs under a specific account,
optionally detaches from the controlling terminal, etc.
Combined with library(http/http_ssl_plugin) from the SSL package, this
library can be used to create an HTTPS server. See
<plbase>/doc/packages/examples/ssl/https for an example server using a
self-signed SSL certificate.
*/
:- meta_predicate
http_server(1, :),
http_current_server(1, ?),
http_spawn(0, +).
:- dynamic
current_server/6, % Port, Goal, Thread, Queue, Scheme, 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/6,
discard_client_hook/1,
http:create_pool/1,
http:schedule_workers/1.
:- meta_predicate
thread_repeat_wait(0).
%! 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(?Address)
% Port to bind to. Address is either a port or a term
% Host:Port. The port may be a variable, causing the system
% to select a free port. See tcp_bind/2.
%
% * unix_socket(+Path)
% Instead of binding to a TCP port, bind to a _Unix Domain
% Socket_ at Path.
%
% * entry_page(+URI)
% Affects the message printed while the server is started.
% Interpreted as a URI relative to the server root.
%
% * tcp_socket(+Socket)
% If provided, use this socket instead of the creating one and
% binding it to an address. The socket must be bound to an
% address. Note that this also allows binding an HTTP server to
% a Unix domain socket (``AF_UNIX``). See socket_create/2.
%
% * workers(+Count)
% Determine the number of worker threads. Default is 5. This
% is fine for small scale usage. Public servers typically need
% a higher number.
%
% * timeout(+Seconds)
% Maximum time of inactivity trying to read the request after a
% connection has been opened. Default is 60 seconds. See
% set_stream/1 using the _timeout_ option.
%
% * keep_alive_timeout(+Seconds)
% Time to keep `Keep alive' connections alive. Default is
% 2 seconds.
%
% * stack_limit(+Bytes)
% Stack limit to use for the workers. The default is inherited
% from the `main` thread.
% If you need to control resource usage you may consider the
% `spawn` option of http_handler/3 and library(thread_pool).
%
% * silent(Bool)
% If `true` (default `false`), do not print an informational
% message that the server was started.
%
% A typical initialization for an HTTP server that uses
% http_dispatch/1 to relay requests to predicates is:
%
% ==
% :- use_module(library(http/thread_httpd)).
% :- use_module(library(http/http_dispatch)).
%
% start_server(Port) :-
% http_server(http_dispatch, [port(Port)]).
% ==
%
% Note that multiple servers can coexist in the same Prolog
% process. A notable application of this is to have both an HTTP
% and HTTPS server, where the HTTP server redirects to the HTTPS
% server for handling sensitive requests.
http_server(Goal, M:Options0) :-
server_address(Address, Options0),
!,
make_socket(Address, M:Options0, Options),
create_workers(Options),
create_server(Goal, Address, Options),
( option(silent(true), Options0)
-> true
; print_message(informational,
httpd_started_server(Address, Options0))
).
http_server(_Goal, _:Options0) :-
existence_error(server_address, Options0).
server_address(Address, Options) :-
( option(port(Port), Options)
-> Address = Port
; option(unix_socket(Path), Options)
-> Address = unix_socket(Path)
).
address_port(_IFace:Port, Port) :- !.
address_port(unix_socket(Path), Path) :- !.
address_port(Address, Address) :- !.
tcp_address(Port) :-
var(Port),
!.
tcp_address(Port) :-
integer(Port),
!.
tcp_address(_Iface:_Port).
address_domain(localhost:_Port, Domain) =>
Domain = inet.
address_domain(Iface:_Port, Domain) =>
( catch(ip_name(IP, Iface), error(_,_), fail),
functor(IP, ip, 8)
-> Domain = inet6
; Domain = inet
).
address_domain(_, Domain) =>
Domain = inet.
%! make_socket(+Address, :OptionsIn, -OptionsOut) is det.
%
% Create the HTTP server socket and worker pool queue. OptionsOut
% is quaranteed to hold the option queue(QueueId).
%
% @arg OptionsIn is qualified to allow passing the
% module-sensitive ssl option argument.
make_socket(Address, M:Options0, Options) :-
tcp_address(Address),
make_socket_hook(Address, M:Options0, Options),
!.
make_socket(Address, _:Options0, Options) :-
option(tcp_socket(_), Options0),
!,
make_addr_atom('httpd', Address, Queue),
Options = [ queue(Queue)
| Options0
].
make_socket(Address, _:Options0, Options) :-
tcp_address(Address),
!,
address_domain(Address, Domain),
socket_create(Socket, [domain(Domain)]),
tcp_setopt(Socket, reuseaddr),
tcp_bind(Socket, Address),
tcp_listen(Socket, 64),
make_addr_atom('httpd', Address, Queue),
Options = [ queue(Queue),
tcp_socket(Socket)
| Options0
].
:- if(current_predicate(unix_domain_socket/1)).
make_socket(Address, _:Options0, Options) :-
Address = unix_socket(Path),
!,
unix_domain_socket(Socket),
tcp_bind(Socket, Path),
tcp_listen(Socket, 64),
make_addr_atom('httpd', Address, Queue),
Options = [ queue(Queue),
tcp_socket(Socket)
| Options0
].
:- endif.
%! make_addr_atom(+Scheme, +Address, -Atom) is det.
%
% Create an atom that identifies the server's queue and thread
% resources.
make_addr_atom(Scheme, Address, Atom) :-
phrase(address_parts(Address), Parts),
atomic_list_concat([Scheme,@|Parts], Atom).
address_parts(Var) -->
{ var(Var),
!,
instantiation_error(Var)
}.
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 ].
address_parts(unix_socket(Path)) -->
[Path].
address_parts(Address) -->
{ domain_error(http_server_address, Address) }.
%! 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, Address, Options) :-
get_time(StartTime),
memberchk(queue(Queue), Options),
scheme(Scheme, Options),
autoload_https(Scheme),
address_port(Address, Port),
make_addr_atom(Scheme, Port, Alias),
thread_self(Initiator),
thread_create(accept_server(Goal, Initiator, Options), _,
[ alias(Alias)
]),
thread_get_message(server_started),
assert(current_server(Port, Goal, Alias, Queue, Scheme, StartTime)).
scheme(Scheme, Options) :-
option(scheme(Scheme), Options),
!.
scheme(Scheme, Options) :-
( option(ssl(_), Options)
; option(ssl_instance(_), Options)
),
!,
Scheme = https.
scheme(http, _).
autoload_https(https) :-
\+ clause(accept_hook(_Goal, _Options), _),
exists_source(library(http/http_ssl_plugin)),
!,
use_module(library(http/http_ssl_plugin)).
autoload_https(_).
%! 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.
% * scheme(-Scheme)
% Scheme is one of `http` or `https`.
% * start_time(?Time)
% Time-stamp when the server was created.
http_server_property(_:Port, Property) :-
integer(Port),
!,
server_property(Property, Port).
http_server_property(Port, Property) :-
server_property(Property, Port).
server_property(goal(Goal), Port) :-
current_server(Port, Goal, _, _, _, _).
server_property(scheme(Scheme), Port) :-
current_server(Port, _, _, _, Scheme, _).
server_property(start_time(Time), Port) :-
current_server(Port, _, _, _, _, Time).
%! http_workers(?Port, -Workers) is nondet.
%! 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.
%
% @see library(http/http_dyn_workers) implements dynamic management of
% the worker pool depending on usage.
http_workers(Port, Workers) :-
integer(Workers),
!,
must_be(ground, Port),
( current_server(Port, _, _, Queue, _, _)
-> resize_pool(Queue, Workers)
; existence_error(http_server, Port)
).
http_workers(Port, Workers) :-
current_server(Port, _, _, Queue, _, _),
aggregate_all(count, queue_worker(Queue, _Worker), Workers).
%! http_add_worker(+Port, +Options) is det.
%
% Add a new worker to the HTTP server for port Port. Options
% overrule the default queue options. The following additional
% options are processed:
%
% - max_idle_time(+Seconds)
% The created worker will automatically terminate if there is
% no new work within Seconds.
http_add_worker(Port, Options) :-
must_be(ground, Port),
current_server(Port, _, _, Queue, _, _),
!,
queue_options(Queue, QueueOptions),
merge_options(Options, QueueOptions, WorkerOptions),
atom_concat(Queue, '_', AliasBase),
create_workers(1, 1, Queue, AliasBase, WorkerOptions).
http_add_worker(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, +Initiator, +Options)
%
% The goal of a small server-thread accepting new requests and
% posting them to the queue of workers.
accept_server(Goal, Initiator, Options) :-
Ex = http_stop(Stopper),
catch(accept_server2(Goal, Initiator, Options), Ex, true),
thread_self(Thread),
debug(http(stop), '[~p]: accept server received ~p', [Thread, Ex]),
retract(current_server(_Port, _, Thread, Queue, _Scheme, _StartTime)),
close_pending_accepts(Queue),
close_server_socket(Options),
thread_send_message(Stopper, http_stopped).
accept_server2(Goal, Initiator, Options) :-
thread_send_message(Initiator, server_started),
repeat,
( catch(accept_server3(Goal, Options), E, true)
-> ( var(E)
-> fail
; accept_rethrow_error(E)
-> throw(E)
; print_message(error, E),
fail
)
; print_message(error, % internal error
goal_failed(accept_server3(Goal, Options))),
fail
).
accept_server3(Goal, Options) :-
accept_hook(Goal, Options),
!.
accept_server3(Goal, Options) :-
memberchk(tcp_socket(Socket), Options),
memberchk(queue(Queue), Options),
debug(http(connection), 'Waiting for connection', []),
tcp_accept(Socket, Client, Peer),
sig_atomic(send_to_worker(Queue, Client, Goal, Peer)),
http_enough_workers(Queue, accept, Peer).
send_to_worker(Queue, Client, Goal, Peer) :-
debug(http(connection), 'New HTTP connection from ~p', [Peer]),
thread_send_message(Queue, tcp_client(Client, Goal, Peer)).
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).
%! close_pending_accepts(+Queue)
close_pending_accepts(Queue) :-
( thread_get_message(Queue, Msg, [timeout(0)])
-> close_client(Msg),
close_pending_accepts(Queue)
; true
).
close_client(tcp_client(Client, _Goal, _0Peer)) =>
debug(http(stop), 'Closing connection from ~p during shut-down', [_0Peer]),
tcp_close_socket(Client).
close_client(Msg) =>
( discard_client_hook(Msg)
-> true
; print_message(warning, http_close_client(Msg))
).
%! 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(Host:Port, Options) :- % e.g., localhost:4000
ground(Host),
!,
http_stop_server(Port, Options).
http_stop_server(Port, _Options) :-
http_workers(Port, 0), % checks Port is ground
current_server(Port, _, Thread, Queue, _Scheme, _Start),
retractall(queue_options(Queue, _)),
debug(http(stop), 'Signalling HTTP server thread ~p to stop', [Thread]),
thread_self(Stopper),
thread_signal(Thread, throw(http_stop(Stopper))),
( thread_get_message(Stopper, http_stopped, [timeout(0.1)])
-> true
; catch(connect(localhost:Port), _, true)
),
thread_join(Thread, _0Status),
debug(http(stop), 'Joined HTTP server thread ~p (~p)', [Thread, _0Status]),
message_queue_destroy(Queue).
connect(Address) :-
setup_call_cleanup(
tcp_socket(Socket),
tcp_connect(Socket, Address),
tcp_close_socket(Socket)).
%! http_enough_workers(+Queue, +Why, +Peer) is det.
%
% Check that we have enough workers in our queue. If not, call the
% hook http:schedule_workers/1 to extend the worker pool. This
% predicate can be used by accept_hook/2.
http_enough_workers(Queue, _Why, _Peer) :-
message_queue_property(Queue, waiting(_0)),
!,
debug(http(scheduler), '~D waiting for work; ok', [_0]).
http_enough_workers(Queue, Why, Peer) :-
message_queue_property(Queue, size(Size)),
( enough(Size, Why)
-> debug(http(scheduler), '~D in queue; ok', [Size])
; current_server(Port, _, _, Queue, _, _),
Data = _{ port:Port,
reason:Why,
peer:Peer,
waiting:Size,
queue:Queue
},
debug(http(scheduler), 'Asking to reschedule: ~p', [Data]),
catch(http:schedule_workers(Data),
Error,
print_message(error, Error))
-> true
; true
).
enough(0, _).
enough(1, keep_alive). % I will be ready myself
%! http:schedule_workers(+Data:dict) is semidet.
%
% Hook called if a new connection or a keep-alive connection
% cannot be scheduled _immediately_ to a worker. Dict contains the
% following keys:
%
% - port:Port
% Port number that identifies the server.
% - reason:Reason
% One of =accept= for a new connection or =keep_alive= if a
% worker tries to reschedule itself.
% - peer:Peer
% Identify the other end of the connection
% - waiting:Size
% Number of messages waiting in the queue.
% - queue:Queue
% Message queue used to dispatch accepted messages.
%
% Note that, when called with `reason:accept`, we are called in
% the time critical main accept loop. An implementation of this
% hook shall typically send the event to thread dedicated to
% dynamic worker-pool management.
%
% @see http_add_worker/2 may be used to create (temporary) extra
% workers.
/*******************************
* 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
]),
assertz(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) :-
debug(http(scheduler), 'New worker', []),
prolog_listen(this_thread_exit, done_worker),
option(queue(Queue), Options),
option(max_idle_time(MaxIdle), Options, infinite),
thread_repeat_wait(get_work(Queue, Message, MaxIdle)),
debug(http(worker), 'Waiting for a job ...', []),
debug(http(worker), 'Got job ~p', [Message]),
( Message = quit(Sender)
-> !,
thread_self(Self),
thread_detach(Self),
( Sender == idle
-> true
; retract(queue_worker(Queue, 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
)
).
get_work(Queue, Message, infinite) :-
!,
thread_get_message(Queue, Message).
get_work(Queue, Message, MaxIdle) :-
( thread_get_message(Queue, Message, [timeout(MaxIdle)])
-> true
; Message = quit(idle)
).
%! 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_alive_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, Opts),
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,
%! -ClientOptions, +Options) is det.
open_client(Message, Goal, In, Out, ClientOptions, Options) :-
open_client_hook(Message, Goal, In, Out, ClientOptions, 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_alive_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_alive_connection(In, TMO, Peer, In, Out) :-
stream_property(In, timeout(Old)),
set_stream(In, timeout(TMO)),
debug(http(keep_alive), 'Waiting for keep-alive ...', []),
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_alive), '\tre-using keep-alive connection', [])
; ( Code == -1
-> debug(http(keep_alive), '\tRemote closed keep-alive connection', [])
; debug(http(keep_alive), '\tTimeout on keep-alive 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_detach(Self),
retract(queue_worker(Queue, Self)),
thread_property(Self, status(Status)),
!,
( catch(recreate_worker(Status, Queue), _, fail)
-> print_message(informational,
httpd_restarted_worker(Self))
; done_status_message_level(Status, Level),
print_message(Level,
httpd_stopped_worker(Self, Status))
).
done_worker :- % received quit(Sender)
thread_self(Self),
thread_property(Self, status(Status)),
done_status_message_level(Status, Level),
print_message(Level,
httpd_stopped_worker(Self, Status)).
done_status_message_level(true, silent) :- !.
done_status_message_level(exception('$aborted'), silent) :- !.
done_status_message_level(_, informational).
%! 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.
%
% The first clause deals with the possibility that we cannot write to
% `user_error`. This is possible when Prolog is started as a service
% using some service managers. Would be nice if we could write an
% error, but where?
recreate_worker(exception(error(io_error(write,user_error),_)), _Queue) :-
halt(2).
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(socket_error(epipe,_), _), silent).
message_level(error(http_write_short(_Obj,_Written), _), 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-alive connections.
http_requeue(Header) :-
requeue_header(Header, ClientOptions),
memberchk(pool(client(Queue, Goal, In, Out)), ClientOptions),
memberchk(peer(Peer), ClientOptions),
http_enough_workers(Queue, keep_alive, Peer),
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(Connection, Request) :-
next_(Connection, Request), !.
next(Connection, Request) :-
print_message(warning, goal_failed(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)