view jamendo/sparql-archived/SeRQL/parms.pl @ 27:d95e683fbd35 tip

Enable CORS on urispace redirects as well
author Chris Cannam
date Tue, 20 Feb 2018 14:52:02 +0000
parents df9685986338
children
line wrap: on
line source
/*  This file is part of ClioPatria.

    Author:
    HTTP:	http://e-culture.multimedian.nl/
    GITWEB:	http://gollem.science.uva.nl/git/ClioPatria.git
    GIT:	git://gollem.science.uva.nl/home/git/ClioPatria.git
    GIT:	http://gollem.science.uva.nl/home/git/ClioPatria.git
    Copyright:  2007, E-Culture/MultimediaN

    ClioPatria 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.

    ClioPatria 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 ClioPatria.  If not, see <http://www.gnu.org/licenses/>.
*/

:- module(serql_parms,
	  [ serql_setting/3
	  ]).
:- use_module(library(settings)).
:- use_module(library(error)).
:- use_module(library('semweb/rdf_db')).
:- use_module(library('http/html_write')).


		 /*******************************
		 *	       TYPES		*
		 *******************************/

%	make the type 'uri' work such  that   we  can  write NS:Local in
%	settings defaults.

:- multifile
	error:has_type/2,
	settings:eval_default/3,
	settings:convert_text/3,
	http_settings:input_item/5.

error:has_type(uri, X) :-		% URI is an atom.  We do not use atom
	atom(X).			% to allow for conversion

					% Convert NS:Local
settings:eval_default(URI, uri, URI) :-
	atom(URI), !.
settings:eval_default(NS:Local, uri, URI) :-
	rdf_global_id(NS:Local, URI).

settings:convert_text(uri, Text, URI) :- !,
	(   sub_atom(Text, B, _, A, :),
	    sub_atom(Text, 0, B, _, NS),
	    sub_atom(Text, _, A, 0, Local),
	    identifier(NS),
	    identifier(Local)
	->  rdf_global_id(NS:Local, URI)
	;   URI = Text
	).
	
%%	identifier(+Atom) is semidet.
%
%	True if Atom contains only alphanumerical characters or
%	undercores.
%	
%	@tbd	Must we support unicode here?  Check with Turtle.

identifier(Text) :-
	atom_codes(Text, Codes),
	identifier_codes(Codes).

identifier_codes([]).
identifier_codes([H|T]) :-
	identifier_code(H),
	identifier_codes(T).

identifier_code(C) :-
	code_type(C, csym).

					% Render as plain atom
http_settings:input_item(uri, Value, Name) -->
	html(input([name(Name), size(40), value(Value)])).


		 /*******************************
		 *	      SETTINGS		*
		 *******************************/

%%	serql_setting(+Name, -Old, +New)
%	
%	Change a setting.  Not  all   settings  are  changeable  without
%	restarting the server.
%	
%	@tbd	Handle setting broadcasts to update server statistics

serql_setting(Name, Old, New) :-
	setting(Name, Old),
	set_setting(Name, New).

		 /*******************************
		 *	       HTTP		*
		 *******************************/

:- setting(http:port, nonneg, env('PORT', 2105),
	   'Port the http server listens to').
:- setting(http:workers, between(1, 20), env('SERQL_WORKERS', 2),
	   'Number of server threads').
:- setting(http:worker_options, list(any), [ local(50000),
					     global(50000),
					     trail(50000)
					   ],
	   'Additional options to pass to the HTTP server').
:- setting(http:max_idle_time, nonneg, 3600,
	   'Session timeout.  If 0, session never times out').
:- setting(http:server_url, atom, 'http://localhost:'+setting(http:port),
	   'Url of the server itself').


		 /*******************************
		 *	   OTHER SETTINGS	*
		 *******************************/

:- setting(user_data, atom, 'users.db',
	   'File holding account information').
:- setting(documentation_url, atom, 'http://www.openrdf.org/doc/users/',
	   'URL for OpenRDF documentation').
:- setting(serql_documentation_url, atom, 'http://www.openrdf.org/doc/sesame/users/ch06.html',
	   'URL for SeRQL language').
:- setting(default_entailment, atom, rdfs,
	   'Default entailment rules applied').
:- setting(optimise_query, boolean, true,
	   'Optimise queries before execution').
:- setting(rdf_db_namespaces, boolean, true,
	   'Allow registered namespaces in queries').
:- setting(title, atom, 'SWI-Prolog Semantic Web Server',
	   'Title of the web-page').
:- setting(persistent_store, atom, 'SeRQL-store',
	   'Directory for persistent copy of in-memory RDF').
:- setting(base_ontologies, list(any), [serql(rdfs)],
	   'Load these files into a virgin database').