/usr/share/Yap/http/html_head.pl is in yap 6.2.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@uva.nl
WWW: http://www.swi-prolog.org
Copyright (C): 2009, 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 General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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(html_head,
[ html_resource/2, % +Resource, +Attributes
html_requires//1 % +Resource
]).
:- use_module(library(http/html_write)).
:- use_module(library(http/mimetype)).
:- use_module(library(http/http_path)).
:- use_module(library(error)).
:- use_module(library(settings)).
:- use_module(library(lists)).
:- use_module(library(occurs)).
:- use_module(library(option)).
:- use_module(library(ordsets)).
:- use_module(library(assoc)).
:- use_module(library(ugraphs)).
:- use_module(library(broadcast)).
:- use_module(library(apply)).
:- use_module(library(debug)).
/** <module> Automatic inclusion of CSS and scripts links
This library allows for abstract declaration of available CSS and
Javascript resources and their dependencies using html_resource/2. Based
on these declarations, html generating code can declare that it depends
on specific CSS or Javascript functionality, after which this library
ensures that the proper links appear in the HTML head. The
implementation is based on mail system implemented by html_post/2 of
library html_write.pl.
Declarations come in two forms. First of all http locations are declared
using the http_path.pl library. Second, html_resource/2 specifies HTML
resources to be used in the =head= and their dependencies. Resources are
currently limited to Javascript files (.js) and style sheets (.css). It
is trivial to add support for other material in the head. See
html_include//1.
For usage in HTML generation, there is the DCG rule html_requires//1
that demands named resources in the HTML head.
---++ About resource ordering
All calls to html_requires//1 for the page are collected and duplicates
are removed. Next, the following steps are taken:
1. Add all dependencies to the set
2. Replace multiple members by `aggregate' scripts or css files.
see use_agregates/4.
3. Order all resources by demanding that their dependencies
preceede the resource itself. Note that the ordering of
resources in the dependency list is *ignored*. This implies
that if the order matters the dependency list must be split
and only the primary dependency must be added.
---++ Debugging dependencies
Use ?- debug(html(script)). to see the requested and final set of
resources. All declared resources are in html_resource/3. The edit/1
command recognises the names of HTML resources.
@tbd Possibly we should add img//2 to include images from symbolic
path notation.
@tbd It would be nice if the HTTP file server could use our location
declarations.
*/
:- dynamic
html_resource/3. % Resource, Source, Properties
%% html_resource(+About, +Properties) is det.
%
% Register an HTML head resource. About is either an atom that
% specifies an HTTP location or a term Alias(Sub). This works
% similar to absolute_file_name/2. See http:location_path/2 for
% details. Recognised properties are:
%
% * requires(+Requirements)
% Other required script and css files. If this is a plain
% file name, it is interpreted relative to the declared
% resource. Requirements can be a list, which is equivalent
% to multiple requires properties.
%
% * virtual(+Bool)
% If =true= (default =false=), do not include About itself,
% but only its dependencies. This allows for defining an
% alias for one or more resources.
%
% * aggregate(+List)
% States that About is an aggregate of the resources in
% List.
html_resource(About, Properties) :-
source_location(File, Line), !,
retractall(html_resource(About, File:Line, _)),
assert_resource(About, File:Line, Properties).
html_resource(About, Properties) :-
assert_resource(About, -, Properties).
assert_resource(About, Location, Properties) :-
assert(html_resource(About, Location, Properties)),
clean_same_about_cache,
( memberchk(aggregate(_), Properties)
-> clean_aggregate_cache
; true
).
%% html_requires(+ResourceOrList)// is det.
%
% Include ResourceOrList and all dependencies derived from it and
% add them to the HTML =head= using html_post/2. The actual
% dependencies are computed during the HTML output phase by
% html_insert_resource//1.
html_requires(Required) -->
html_post(head, 'html required'(Required)).
:- multifile
html_write:html_head_expansion/2.
html_write:html_head_expansion(In, Out) :-
require_commands(In, Required, Rest),
Required \== [], !,
flatten(Required, Plain),
Out = [ html_head:(\html_insert_resource(Plain))
| Rest
].
require_commands([], [], []).
require_commands([_:('html required'(Required))|T0], [Required|TR], R) :- !,
require_commands(T0, TR, R).
require_commands([R|T0], TR, [R|T]) :- !,
require_commands(T0, TR, T).
%% html_insert_resource(+ResourceOrList)// is det.
%
% Actually include HTML head resources. Called through
% html_post//2 from html_requires//1 after rewrite by
% html_head_expansion/2. We are guaranteed we will only get one
% call that is passed a flat list of requested requirements. We
% have three jobs:
%
% 1. Figure out all indirect requirements
% 2. See whether we can use any `aggregate' resources
% 3. Put required resources before their requiree.
html_insert_resource(Required) -->
{ requirements(Required, Paths),
debug(html(script), 'Requirements: ~q~nFinal: ~q', [Required, Paths])
},
html_include(Paths).
requirements(Required, Paths) :-
phrase(requires(Required), List),
sort(List, Paths0), % remove duplicates
use_agregates(Paths0, Paths1, AggregatedBy),
order_html_resources(Paths1, AggregatedBy, Paths).
%% use_agregates(+Paths, -Aggregated, -AggregatedBy) is det.
%
% Try to replace sets of resources by an `aggregate', a large
% javascript or css file that combines the content of multiple
% small ones to reduce the number of files that must be
% transferred to the server. The current rule says that aggregates
% are used if at least half of the members are used.
use_agregates(Paths, Aggregated, AggregatedBy) :-
empty_assoc(AggregatedBy0),
use_agregates(Paths, Aggregated, AggregatedBy0, AggregatedBy).
use_agregates(Paths, Aggregated, AggregatedBy0, AggregatedBy) :-
current_aggregate(Aggregate, Parts, Size),
ord_subtract(Paths, Parts, NotCovered),
length(Paths, Len0),
length(NotCovered, Len1),
Covered is Len0-Len1,
Covered >= Size/2, !,
ord_add_element(NotCovered, Aggregate, NewPaths),
add_aggregated_by(Parts, AggregatedBy0, Aggregate, AggregatedBy1),
use_agregates(NewPaths, Aggregated, AggregatedBy1, AggregatedBy).
use_agregates(Paths, Paths, AggregatedBy, AggregatedBy).
add_aggregated_by([], Assoc, _, Assoc).
add_aggregated_by([H|T], Assoc0, V, Assoc) :-
put_assoc(H, Assoc0, V, Assoc1),
add_aggregated_by(T, Assoc1, V, Assoc).
:- dynamic
aggregate_cache_filled/0,
aggregate_cache/3.
:- volatile
aggregate_cache_filled/0,
aggregate_cache/3.
clean_aggregate_cache :-
retractall(aggregate_cache_filled).
%% current_aggregate(-Aggregate, -Parts, -Size) is nondet.
%
% True if Aggregate is a defined aggregate with Size Parts. All
% parts are canonical absolute HTTP locations and Parts is sorted
% to allow for processing using ordered set predicates.
current_aggregate(Path, Parts, Size) :-
aggregate_cache_filled, !,
aggregate_cache(Path, Parts, Size).
current_aggregate(Path, Parts, Size) :-
retractall(aggregate_cache(_,_, _)),
forall(uncached_aggregate(Path, Parts, Size),
assert(aggregate_cache(Path, Parts, Size))),
assert(aggregate_cache_filled),
aggregate_cache(Path, Parts, Size).
uncached_aggregate(Path, APartsS, Size) :-
html_resource(Aggregate, _, Properties),
memberchk(aggregate(Parts), Properties),
http_absolute_location(Aggregate, Path, []),
absolute_paths(Parts, Path, AParts),
sort(AParts, APartsS),
length(APartsS, Size).
absolute_paths([], _, []).
absolute_paths([H0|T0], Base, [H|T]) :-
http_absolute_location(H0, H, [relative_to(Base)]),
absolute_paths(T0, Base, T).
%% requires(+Spec)// is det.
%% requires(+Spec, +Base)// is det.
%
% True if Files is the set of files that need to be loaded for
% Spec. Note that Spec normally appears in Files, but this is not
% necessary (i.e. virtual resources or the usage of aggregate
% resources).
requires(Spec) -->
requires(Spec, /).
requires([], _) --> !,
[].
requires([H|T], Base) --> !,
requires(H, Base),
requires(T, Base).
requires(Spec, Base) -->
requires(Spec, Base, true).
requires(Spec, Base, Virtual) -->
{ res_properties(Spec, Properties),
http_absolute_location(Spec, File, [relative_to(Base)])
},
( { option(virtual(true), Properties)
; Virtual == false
}
-> []
; [File]
),
requires_from_properties(Properties, File).
requires_from_properties([], _) -->
[].
requires_from_properties([H|T], Base) -->
requires_from_property(H, Base),
requires_from_properties(T, Base).
requires_from_property(requires(What), Base) --> !,
requires(What, Base).
requires_from_property(_, _) -->
[].
%% order_html_resources(+Requirements, +AggregatedBy, -Ordered) is det.
%
% Establish a proper order for the collected (sorted and unique)
% list of Requirements.
order_html_resources(Requirements, AggregatedBy, Ordered) :-
requirements_graph(Requirements, AggregatedBy, Graph),
( top_sort(Graph, Ordered)
-> true
; connect_graph(Graph, Start, Connected),
top_sort(Connected, Ordered0),
Ordered0 = [Start|Ordered]
).
%% requirements_graph(+Requirements, +AggregatedBy, -Graph) is det.
%
% Produce an S-graph (see library(ugraphs)) that represents the
% dependencies in the list of Requirements. Edges run from
% required to requirer.
requirements_graph(Requirements, AggregatedBy, Graph) :-
phrase(prerequisites(Requirements, AggregatedBy, Vertices, []), Edges),
vertices_edges_to_ugraph(Vertices, Edges, Graph).
prerequisites([], _, Vs, Vs) -->
[].
prerequisites([R|T], AggregatedBy, Vs, Vt) -->
prerequisites_for(R, AggregatedBy, Vs, Vt0),
prerequisites(T, AggregatedBy, Vt0, Vt).
prerequisites_for(R, AggregatedBy, Vs, Vt) -->
{ phrase(requires(R, /, false), Req) },
( {Req == []}
-> {Vs = [R|Vt]}
; req_edges(Req, AggregatedBy, R),
{Vs = Vt}
).
req_edges([], _, _) -->
[].
req_edges([H|T], AggregatedBy, R) -->
( { get_assoc(H, AggregatedBy, Aggregate) }
-> [Aggregate-R]
; [H-R]
),
req_edges(T, AggregatedBy, R).
%% connect_graph(+Graph, -Start, -Connected) is det.
%
% Turn Graph into a connected graph by putting a shared starting
% point before all vertices.
connect_graph([], 0, []) :- !.
connect_graph(Graph, Start, [Start-Vertices|Graph]) :-
vertices(Graph, Vertices),
Vertices = [First|_],
before(First, Start).
%% before(+Term, -Before) is det.
%
% Unify Before to a term that comes before Term in the standard
% order of terms.
%
% @error instantiation_error if Term is unbound.
before(X, _) :-
var(X), !,
instantiation_error(X).
before(Number, Start) :-
number(Number), !,
Start is Number - 1.
before(_, 0).
%% res_properties(+Spec, -Properties) is det.
%
% True if Properties is the set of defined properties on Spec.
res_properties(Spec, Properties) :-
findall(P, res_property(Spec, P), Properties0),
list_to_set(Properties0, Properties).
res_property(Spec, Property) :-
same_about(Spec, About),
html_resource(About, _, Properties),
member(Property, Properties).
:- dynamic
same_about_cache/2.
:- volatile
same_about_cache/2.
clean_same_about_cache :-
retractall(same_about_cache(_,_)).
same_about(Spec, About) :-
same_about_cache(Spec, Same), !,
member(About, Same).
same_about(Spec, About) :-
findall(A, uncached_same_about(Spec, A), List),
assert(same_about_cache(Spec, List)),
member(About, List).
uncached_same_about(Spec, About) :-
html_resource(About, _, _),
same_resource(Spec, About).
%% same_resource(+R1, +R2) is semidet.
%
% True if R1 an R2 represent the same resource. R1 and R2 are
% resource specifications are defined by http_absolute_location/3.
same_resource(R, R) :- !.
same_resource(R1, R2) :-
resource_base_name(R1, B),
resource_base_name(R2, B),
http_absolute_location(R1, Path, []),
http_absolute_location(R2, Path, []).
:- dynamic
base_cache/2.
:- volatile
base_cache/2.
resource_base_name(Spec, Base) :-
( base_cache(Spec, Base0)
-> Base = Base0
; uncached_resource_base_name(Spec, Base0),
assert(base_cache(Spec, Base0)),
Base = Base0
).
uncached_resource_base_name(Atom, Base) :-
atomic(Atom), !,
file_base_name(Atom, Base).
uncached_resource_base_name(Compound, Base) :-
arg(1, Compound, Base0),
file_base_name(Base0, Base).
%% html_include(+PathOrList)// is det.
%
% Include to HTML resources that must be in the HTML <head>
% element. Currently onlu supports =|.js|= and =|.css|= files.
% Extend this to support more header material. Do not use this
% predicate directly. html_requires//1 is the public interface to
% include HTML resources.
%
% @param HTTP location or list of these.
html_include([]) --> !.
html_include([H|T]) --> !,
html_include(H),
html_include(T).
html_include(Path) -->
{ file_mime_type(Path, Mime) }, !,
html_include(Mime, Path).
html_include(text/css, Path) --> !,
html(link([ rel(stylesheet),
type('text/css'),
href(Path)
], [])).
html_include(text/javascript, Path) --> !,
html(script([ type('text/javascript'),
src(Path)
], [])).
html_include(Mime, Path) -->
{ print_message(warning, html_include(dont_know, Mime, Path))
}.
/*******************************
* CACHE CLEANUP *
*******************************/
:- multifile
user:message_hook/3.
:- dynamic
user:message_hook/3.
user:message_hook(make(done(Reload)), _Level, _Lines) :-
Reload \== [],
clean_same_about_cache,
clean_aggregate_cache,
fail.
/*******************************
* EDIT *
*******************************/
% Allow edit(Location) to edit the :- html_resource declaration.
:- multifile
prolog_edit:locate/3.
prolog_edit:locate(Path, html_resource(Spec), [file(File), line(Line)]) :-
atom(Path),
html_resource(Spec, File:Line, _Properties),
sub_term(Path, Spec).
|