View source with raw comments or as raw
    1/*  Part of SWISH
    2
    3    Author:        Jan Wielemaker
    4    E-mail:        J.Wielemaker@cs.vu.nl
    5    WWW:           http://www.swi-prolog.org
    6    Copyright (C): 2014-2017, VU University Amsterdam
    7			      CWI Amsterdam
    8    All rights reserved.
    9
   10    Redistribution and use in source and binary forms, with or without
   11    modification, are permitted provided that the following conditions
   12    are met:
   13
   14    1. Redistributions of source code must retain the above copyright
   15       notice, this list of conditions and the following disclaimer.
   16
   17    2. Redistributions in binary form must reproduce the above copyright
   18       notice, this list of conditions and the following disclaimer in
   19       the documentation and/or other materials provided with the
   20       distribution.
   21
   22    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   23    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   24    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
   25    FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
   26    COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   27    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
   28    BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
   29    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
   30    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   31    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
   32    ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   33    POSSIBILITY OF SUCH DAMAGE.
   34*/
   35
   36:- use_module(library(main)).   37:- use_module(library(option)).   38:- use_module(server).   39
   40/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   41Usage:
   42
   43    swipl run.pl [--public] [--port=Port]
   44
   45Simple start script for running SWISH  in an interactive Prolog session.
   46This version is intended for development  and testing purposes. Checkout
   47daemon.pl if to deploy SWISH as a server.  Options:
   48
   49  * --port=Port
   50    Bind to a the specified port instead of the default 3050.
   51  * --public
   52    Listen on all networks.  By default SWISH only listens on
   53    `localhost`.  Only use this in a *trusted network environent*,
   54    e.g., behind a firewall.
   55- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
   56
   57:- initialization(run_swish, main).   58
   59run_swish :-
   60    set_prolog_flag(toplevel_goal, prolog), % run interactively
   61    current_prolog_flag(argv, Argv),
   62    argv_options(Argv, _, Options),
   63    option(port(Port), Options, 3020),
   64    (   option(public(true), Options)
   65    ->  Address = Port
   66    ;   Address = localhost:Port
   67    ),
   68    server(Address).
   69
   70opt_type(port,   port,   natural).
   71opt_type(p,      port,   natural).
   72opt_type(public, public, boolean).
   73
   74opt_help(port,    "TCP/IP port to bind to").
   75opt_help(public,  "Connect to all interfaces instead of only to localhost").
   76
   77opt_meta(port, 'PORT')