-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
server.pl
72 lines (59 loc) · 2.59 KB
/
server.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
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (C): 2014-2016, VU University 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 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(server,
[ server/0,
server/1 % ?Port
]).
:- use_module(library(http/thread_httpd)).
:- use_module(library(http/http_dispatch)).
:- use_module(library(broadcast)).
:- use_module(swish).
/** <module> Load the SWISH server for local usage
This module loads the SWISH server for default local usage, i.e., mostly
for developing SWISH. The file `daemon.pl` can be used as a start to run
it as a server process.
This file is normally used from `run.pl`, which is started like this
from the shell to start the SWISH server accessible on
http://localhost:3050/
swipl run.pl [--public] [--port=Port]
@see run.pl and daemon.pl
*/
%% server is det.
%% server(?Port) is det.
%
% Start the web-server on Port. Port may be unbound to make the
% system select a free port. Port can also be of the form
% `localhost:Port` to bind the server only to the localhost
% interface. The broadcast messages are compatible with
% library(http/http_unix_daemon).
server :-
server(localhost:3050).
server(Port) :-
broadcast(http(pre_server_start)),
broadcast(http(pre_server_start(Port))),
http_server(http_dispatch,
[ port(Port)
]),
broadcast(http(post_server_start(Port))),
broadcast(http(post_server_start)).