forked from SWI-Prolog/packages-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html_head.pl
651 lines (547 loc) · 20.3 KB
/
html_head.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
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: [email protected]
WWW: http://www.swi-prolog.org
Copyright (c) 2009-2015, University of Amsterdam
VU University Amsterdam
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(html_head,
[ html_resource/2, % +Resource, +Attributes
html_requires//1, % +Resource
html_current_resource/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(lists)).
:- use_module(library(occurs)).
:- use_module(library(option)).
:- use_module(library(ordsets)).
:- use_module(library(assoc)).
:- use_module(library(ugraphs)).
:- 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 {#html-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 {#html-resource-debugging}
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.
## Predicates {#html-resource-predicates}
@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
:- multifile
html_resource/3,
mime_include//2. % +Mime, +Path
%! 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.
%
% * ordered(+Bool)
% Defines that the list of requirements is ordered, which
% means that each requirement in the list depends on its
% predecessor.
%
% * aggregate(+List)
% States that About is an aggregate of the resources in
% List. This means that if both About and one of the
% elements of List appears in the dependencies, About
% is kept and the smaller one is dropped. If there are a
% number of dependencies on the small members, these are
% replaced with dependency on the big (aggregate) one,
% for example, to specify that a big javascript is
% actually the composition of a number of smaller ones.
%
% * mime_type(-Mime)
% May be specified for non-virtual resources to specify
% the mime-type of the resource. By default, the mime
% type is derived from the file name using
% file_mime_type/2.
%
% Registering the same About multiple times extends the properties
% defined for About. In particular, this allows for adding
% additional dependencies to a (virtual) resource.
html_resource(About, Properties) :-
assert_resource(About, -, Properties).
assert_resource(About, Location, Properties) :-
retractall(html_resource(About, _, _)),
assert(html_resource(About, Location, Properties)),
clean_cache(About, Properties).
system:term_expansion((:-html_resource(About, Properties)),
html_head:html_resource(About, File:Line, Properties)) :-
source_location(File, Line),
clean_cache(About, Properties).
clean_cache(_About, Properties) :-
clean_same_about_cache,
( memberchk(aggregate(_), Properties)
-> clean_aggregate_cache
; true
).
%! html_current_resource(?About) is nondet.
%
% True when About is a currently known resource.
html_current_resource(About) :-
( ground(About)
-> html_resource(About, _, _), !
; html_resource(About, _, _)
).
%! 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.
% called from html_write:html_head_expansion/2
:- public html_insert_resource//1.
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, Paths2),
exclude(virtual, Paths2, Paths).
virtual('V'(_)).
%! 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 client. 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('V'(Spec), Base, Properties, Virtual) -->
{ nonvar(Spec) },
!,
requires(Spec, Base, Properties, Virtual).
requires(Spec, Base, Properties, Virtual) -->
{ res_properties(Spec, Properties),
http_absolute_location(Spec, File, [relative_to(Base)])
},
( { option(virtual(true), Properties)
; Virtual == false
}
-> ['V'(Spec)]
; [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, /, Properties, true), Req0),
delete(Req0, R, Req)
},
prop_edges(Properties),
( {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).
%! prop_edges(+Properties)//
%
% Subscribes a list of dependencies from resources that declare
% their requirements with ordered(true).
prop_edges(Properties) -->
{ option(ordered(true), Properties) },
!,
ordered_reqs(Properties).
prop_edges(_) --> [].
ordered_reqs([]) --> [].
ordered_reqs([H|T]) --> ordered_req(H), ordered_reqs(T).
ordered_req(requires([H|T])) -->
{ T \== [],
!,
absolute_req(H, File)
},
order_pairs(T, File).
ordered_req(_) --> [].
order_pairs([H|T], P) -->
!,
{ absolute_req(H, File)
},
[ P-File ],
order_pairs(T, File).
order_pairs(_, _) --> [].
absolute_req(Virtual, Abs) :-
html_resource(Virtual, _, Properties),
option(virtual(true), Properties),
!,
Abs = 'V'(Virtual).
absolute_req(Spec, Abs) :-
http_absolute_location(Spec, Abs, [relative_to(/)]).
%! 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) -->
{ res_property(Path, mime_type(Mime))
},
!,
html_include(Mime, Path).
html_include(Path) -->
{ file_mime_type(Path, Mime) },
!,
html_include(Mime, Path).
html_include(Mime, Path) -->
mime_include(Mime, Path),
!. % user hook
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))
}.
%! mime_include(+Mime, +Path)// is semidet.
%
% Hook called to include a link to an HTML resource of type Mime
% into the HTML head. The Mime type is computed from Path using
% file_mime_type/2. If the hook fails, two built-in rules for
% `text/css` and `text/javascript` are tried. For example, to
% include a =.pl= files as a Prolog script, use:
%
% ```
% :- multifile
% html_head:mime_include//2.
%
% html_head:mime_include(text/'x-prolog', Path) --> !,
% html(script([ type('text/x-prolog'),
% src(Path)
% ], [])).
%
% ```
/*******************************
* CACHE CLEANUP *
*******************************/
:- multifile
user:message_hook/3,
prolog:message//1.
:- dynamic
user:message_hook/3.
user:message_hook(load_file(done(_Nesting, _File, _Action,
_Module, _Time, _Clauses)),
_Level, _Lines) :-
clean_same_about_cache,
clean_aggregate_cache,
fail.
prolog:message(html_include(dont_know, Mime, Path)) -->
[ 'Don\'t know how to include resource ~q (mime-type ~q)'-
[Path, Mime]
].
/*******************************
* 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).