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
module WMap = Stk.Widget.Map
type of_node =
{ ctx : ctx ;
widget : Stk.Widget.widget option ;
before : Stk.Widget.widget option ;
after : Stk.Widget.widget option ;
subs_handled: bool;
}
and of_node_fun = ctx -> Xml.node -> of_node option
and ctx =
{
of_node : of_node_fun ;
container : Stk.Widget.widget ;
css_rules : Iri.t Css.S.rule_ list ;
root_props : Css.C.t ;
props : Css.C.t ;
font_desc : Stk.Font.font_desc ;
path : Xml.node list list ;
nodes: Doc.node list ;
node_count : int ;
item_map : Doc.node WMap.t ;
id_map : Doc.node Stk.Smap.t ;
load_resource : Iri.t -> [`None | `Error of string | `Ok of Ldp.Types.resource] Lwt.t;
iri : Iri.t option ;
base_iri : Iri.t option;
}
let of_node_none ctx =
{ ctx ; widget = None ; before = None ; after = None ; subs_handled = false }
let pack ~(container:Stk.Widget.widget) ?kind (w:Stk.Widget.widget) =
match container#typ with
| Some (Stk.Flex.Flex flex) -> flex#pack ?kind w
| Some (Stk.Table.Table _) -> ()
| _ -> Log.err (fun m -> m "Layout.pack: Container %s is not a flex" container#me)
let pack_break (container:Stk.Widget.widget) ?props () =
match container#typ with
| Some (Stk.Flex.Flex flex) -> Some (flex#pack_break ?props ())#coerce
| Some (Stk.Table.Table _) -> None
| _ ->
Log.err (fun m -> m "Layout.pack_break: Container %s is not a flex" container#me);
None
let pack_space (container:Stk.Widget.widget) ?props () =
match container#typ with
| Some (Stk.Flex.Flex flex) -> Some (flex#pack_space ?props ())#coerce
| Some (Stk.Table.Table _) -> None
| _ ->
Log.err (fun m -> m "Layout.pack_space: Container %s is not a flex" container#me);
None
let build_text ctx cdata =
let p = Props.props_of_css_props ctx.props in
Stk.Props.(set p padding (trbl__ 0));
Stk.Props.(set p margin (trbl__ 0));
let w =
match cdata.Xtmpl.Types.text with
| "\n" -> pack_break ctx.container ~props:p ()
| " " -> pack_space ctx.container ~props:p ()
| s ->
let t = Stk.Text.label ~props:p ~text:s () in
pack ctx.container t#coerce ;
Some t#coerce
in
w
let add_cdata ctx ?xml cdata =
let widget = build_text ctx cdata in
let node =
{ Doc.xml ; widget ;
subs = [] ;
id = None ;
container = ctx.container ;
parent = None ;
props = ctx.props ;
display = true ;
}
in
let item_map =
match widget with
| None ->
[%debug "Layout.add_cdata: no widget"];
ctx.item_map
| Some wid ->
(match xml with None -> wid#set_p Stk.Props.text cdata.text | Some _ -> ());
let (w, h) = let g = wid#geometry in (g.w, g.h) in
[%debug "size(%S) = (%d, %d)" cdata.text w h];
let item_map = WMap.add wid node ctx.item_map in
Eprops.connect_event_props ctx.props wid node ;
item_map
in
{ ctx with nodes = node :: ctx.nodes ;
node_count = ctx.node_count + 1 ;
item_map ;
}
let build_image ctx width height props =
let image = Stk.Image.image ?width ?height ~props
~pack:(pack ~container:ctx.container) ()
in
image
let image_from_ressource g ?width ?height = function
| Ldp.Types.Rdf _
| Ldp.Types.Container _ -> Lwt.return_none
| Ldp.Types.Non_rdf r ->
let ct = r.Ldp.Types.ct in
match%lwt
match ct.Ldp.Ct.ty, ct.Ldp.Ct.subty with
| Ldp.Ct.Image, s ->
let typ =
if Stk.Misc.is_prefix ~s ~pref:"svg" then `Svg else `Other
in
(
match snd Ldp.Types.(r.meta.info) with
| `Empty -> Lwt.return_none
| `String s -> Lwt.return_some (s, typ)
| `Strings l -> Lwt.return_some (String.concat "" l, typ)
| `Stream s ->
let%lwt l = Lwt_stream.to_list s in
Lwt.return_some (String.concat "" l, typ)
)
| _ -> Lwt.return_none
with
| None -> Lwt.return_none
| Some (s, _typ) -> Lwt.return_some s
let load_image ctx props image iri =
match%lwt ctx.load_resource iri with
| `None -> Lwt.return_unit
| `Error msg ->
Log.err (fun m -> m "Error while loading %s: %s" (Iri.to_string iri) msg);
Lwt.return_unit
| `Ok r ->
match%lwt image_from_ressource ctx r with
| None -> Lwt.return_unit
| Some str ->
let open Stk.Misc in
let> rw = Tsdl.Sdl.rw_from_const_mem str in
image#load_rw rw;
match image#width with
| Some _ -> Lwt.return_unit
| None ->
match image#image_size with
| None -> Lwt.return_unit
| Some (wi,_) ->
let max_w =
match Props.max_abs_width_of_css ctx.props with
| None -> None
| Some w ->
if w > 0 then Some (min w wi) else None
in
Option.iter image#set_width max_w ;
Lwt.return_unit
let image ctx ?xml iri node =
[%debug "adding image from %a" Iri.pp iri];
match Xml.opt_att node ~try_no_ns:true (Xml.empty_iri, "src") with
| None -> of_node_none ctx
| Some (iri_s, _) ->
match Iri.of_string iri_s with
| exception e ->
Log.warn (fun m -> m "Invalid image href: %s" (Printexc.to_string e));
of_node_none ctx
| iri ->
let iri = match ctx.iri with
| None -> iri
| Some base -> Iri.resolve ~normalize:false ~base iri
in
Log.info (fun m -> m "original iri: %s, looked up iri: %s" iri_s (Iri.to_string iri));
let width =
match Xml.opt_int_att node (iri, "width") with
| Some n -> Some n
| None -> Props.get_css_length ctx.props Css.P.width
in
let height =
match Xml.opt_int_att node (iri, "height") with
| Some n -> Some n
| None -> Props.get_css_length ctx.props Css.P.height
in
let image = build_image ctx width height (Props.props_of_css_props ctx.props) in
Lwt.async (fun () -> load_image ctx ctx.props image iri);
{ ctx ;
widget = Some image#coerce ;
before = None ; after = None ;
subs_handled = false ;
}
let set_container_borders (w:Stk.Widget.widget) (props:Css.C.t) =
let border_widths = Props.border_widths_of_css props in
let border_colors = Props.border_colors_of_css props in
w#set_p Stk.Props.border_width border_widths ;
w#set_p Stk.Props.border_color border_colors ;
()
let flex_of_props ?name props =
let p = Props.props_of_css_props props in
let flex = Stk.Flex.flex ?name ~inter_space:0 ~props:p () in
flex
let table_of_props ?name props =
let p = Props.props_of_css_props props in
let table = Stk.Table.table ?name ~props:p () in
table#set_hfill false;
table
let ctx_new_block ~name ctx =
let g = flex_of_props ~name ctx.props in
pack ~container:ctx.container ~kind:`Block g#coerce;
g#set_p Stk.Flex.expand 1;
{ ctx with container = g#coerce }
let table_current_row = Stk.Props.int_prop
~default:(-1) ~inherited:false "table-current-row"
let table_current_column = Stk.Props.int_prop
~default:(-1) ~inherited:false "table-current-column"
let table_container ctx =
match ctx.container#typ with
| Some Stk.Table.Table t -> Some t
| _ ->
Log.warn (fun m -> m "Stk_xml.Layout: %s is not a table" ctx.container#me);
None
let of_node_table_row ctx ?name node =
match table_container ctx with
| None -> of_node_none ctx
| Some table ->
let cur_row = table#get_p table_current_row in
let row = cur_row + 1 in
let rows = table#rows in
if rows < row + 1 then table#set_rows (row + 1);
table#set_p table_current_row row;
table#set_p table_current_column (-1);
of_node_none ctx
let set_table_collapse_cell_borders table row col (w:Stk.Widget.widget) =
let trbl0 = w#border_width in
let tab_bc = table#border_color in
let tab_bw = table#border_width in
let trbl2 =
let open Stk.Props in
let w,c =
match table#widget_at ~row ~column:(col-1) with
| None when col > 0 -> 0, Stk.Color.transparent
| None -> tab_bw.left, tab_bc.left
| Some w -> w#border_width.right, w#border_color.right
in
if w <= 0 || c = Stk.Color.transparent then
trbl0
else
{ trbl0 with left = 0 }
in
let trbl2 =
let w,c =
match table#widget_at ~row:(row-1) ~column:col with
| None when row > 0 -> 0, Stk.Color.transparent
| None -> tab_bw.top, tab_bc.top
| Some w -> w#border_width.bottom, w#border_color.bottom
in
if w <= 0 || c = Stk.Color.transparent then
trbl2
else
{ trbl2 with top = 0 }
in
if trbl2 <> trbl0 then w#set_border_width trbl2
let of_node_table_cell ctx ?name node =
match table_container ctx with
| None -> of_node_none ctx
| Some table ->
let row = table#get_p table_current_row in
let row = if row < 0 then
(table#set_rows (max table#rows 1);
table#set_p table_current_row 0;
0
)
else
row
in
let col = table#get_p table_current_column in
let col = col + 1 in
let columns = table#columns in
if columns < col + 1 then table#set_columns (col + 1);
table#set_p table_current_column col;
[%debug "table: %d rows, %d columns" table#rows table#columns];
let flex = flex_of_props ?name ctx.props in
set_container_borders flex#coerce ctx.props;
(match Css.(C.get ctx.props P.border_collapse) with
| `Separate -> ()
| `Collapse -> set_table_collapse_cell_borders table row col flex#coerce
);
table#pack ~pos:(row,col) flex#coerce ;
{ ctx = { ctx with container = flex#coerce };
widget = Some flex#coerce ;
before = None ; after = None ; subs_handled = false }
let of_node_table_caption ctx ?name node = of_node_none ctx
let of_display_inside ~name ctx new_block = function
| `Table ->
let g = table_of_props ~name ctx.props in
let kind = if new_block then Some `Block else None in
pack ?kind ~container:ctx.container g#coerce ;
g#set_p Stk.Flex.expand 1;
Some g#coerce
| `Flex
| `Flow_root ->
if new_block then
None
else
(
let g = flex_of_props ~name ctx.props in
[%debug "of_display_inside, created flex %s in parent %s, as %s"
g#me ctx.container#me (Stk.Flex.string_of_item_kind (g#get_p Stk.Flex.item_kind))];
pack ~container:ctx.container g#coerce;
g#set_p Stk.Flex.expand 1;
Some g#coerce
)
| `Grid
| `Ruby
| `Flow -> None
let default_of_node ctx node =
let (iri, name) = node.Xml.name in
match name with
| "img" when Iri.equal iri Xml.xhtml_ns ->
image ctx ~xml:(Xml.E node) iri node
| _ ->
let display = Css.(C.get ctx.props P.display) in
match display with
| `Out_in (outside, inside, li) ->
let ctx, new_block =
match outside, inside with
| `Block, `Table -> ctx, true
| `Block, _ -> ctx_new_block ~name ctx, true
| _ -> ctx, false
in
let new_container = of_display_inside ~name ctx new_block inside in
let of_node =
match new_block, new_container with
| true, None ->
set_container_borders ctx.container ctx.props ;
{ ctx ;
widget = Some ctx.container#coerce ;
before = None; after = None ;
subs_handled = false ;
}
| false, None -> of_node_none ctx
| true, Some c ->
set_container_borders c ctx.props ;
{ ctx = { ctx with container = c } ;
widget = Some ctx.container ;
before = None ; after = None ;
subs_handled = false ;
}
| false, Some c ->
set_container_borders c ctx.props ;
{ ctx = { ctx with container = c } ;
widget = Some c ;
before = None ; after = None ;
subs_handled = false ;
}
in
let of_node =
match li with
| Some `List_item ->
let p = Props.props_of_css_props ctx.props in
let w = Stk.Text.label ~props:p ~text:"• " () in
{ of_node with
before = Some w#coerce ;
after = None ;
}
| None -> of_node
in
of_node
| `None ->
let g = flex_of_props ~name ctx.props in
pack ctx.container g#coerce;
g#set_p Stk.Flex.expand 1;
g#set_visible false ;
{ ctx = { ctx with container = g#coerce } ;
widget = Some g#coerce ;
before = None ; after = None ;
subs_handled = false ;
}
| `Table_row_group
| `Table_header_group
| `Table_footer_group -> of_node_none ctx
| `Table_row -> of_node_table_row ctx ~name node
| `Table_cell -> of_node_table_cell ctx ~name node
| `Table_caption -> of_node_table_caption ctx ~name node
| `Table_column_group
| `Table_column as d ->
[%debug "display %a not handled, acting like inline" Css.T.pp_display d];
of_node_none ctx
| d ->
[%debug "display %a not handled, acting like inline" Css.T.pp_display d];
of_node_none ctx
let add_widget ctx w =
let n = {
Doc.xml = None ; widget = Some w;
subs = [] ;
id = None;
container = ctx.container ;
parent = None ;
props = ctx.props ;
display = w#visible ;
}
in
let item_map = Doc.WMap.add w n ctx.item_map in
pack ctx.container w;
{ ctx with
nodes = n :: ctx.nodes ;
node_count = ctx.node_count + 1 ;
item_map ;
}
let rec doc_of_node ctx ({ Xml.name = (iri, name) } as node) =
let path =
match ctx.path with
| [] -> [[node]]
| h :: q -> (node :: h) :: q
in
let props = Style.get_props ~honor_style_attr:true
ctx.path ~root:ctx.root_props
~parent:ctx.props ctx.css_rules node
in
let id = Xml.node_id node in
let of_node =
let ctx2 = { ctx with props ; path } in
match ctx.of_node ctx2 node with
| Some x -> x
| None -> default_of_node ctx2 node
in
let container = of_node.ctx.container in
let ctx2 = { of_node.ctx with
font_desc = Stk.Props.(get container#props font_desc) ;
}
in
container#ignore_need_resize ;
let ctx2 =
match of_node.before with
| None -> ctx2
| Some w -> add_widget ctx2 w
in
let subctx =
if of_node.subs_handled then
ctx2
else
let subctx = doc_of_xmls ctx2 node.subs in
{ subctx with nodes = List.rev subctx.nodes }
in
let subctx =
match of_node.after with
| None -> subctx
| Some w -> add_widget subctx w
in
let widget = of_node.widget in
let n = {
Doc.xml = Some (Xml.E node) ; widget ;
subs = subctx.nodes ;
id ; container = ctx.container ;
parent = None ;
props ;
display = (match widget with None -> true | Some w -> w#visible) ;
}
in
Option.iter (fun w -> Eprops.connect_event_props props w n) (Doc.node_widget n);
container#handle_need_resize ;
List.iter (fun sub -> sub.Doc.parent <- Some n) n.subs ;
let id_map =
match id with
| None -> subctx.id_map
| Some s -> Stk.Smap.add s n subctx.id_map
in
let item_map = match of_node.widget with
| None -> subctx.item_map
| Some w -> Doc.WMap.add w n subctx.item_map
in
{ ctx with
nodes = n :: ctx.nodes ;
path = ctx2.path ;
node_count = ctx.node_count + 1 + subctx.node_count ;
item_map ; id_map ;
}
and doc_of_xml ctx xml =
let open Xml in
match xml with
| C _ | PI _ -> ctx
| D cdata -> add_cdata ctx ~xml cdata
| E node -> doc_of_node ctx node
and doc_of_xmls ctx xmls =
let ctx2 = { ctx with nodes = [] ; node_count = 0 ; path = [] :: ctx.path } in
let ctx2 = List.fold_left doc_of_xml ctx2 xmls in
{ ctx2 with node_count = ctx.node_count + ctx2.node_count ; path = ctx.path }
let build_doc ?of_node iri load_resource set_widget style xmls =
let of_node = match of_node with
| None -> (fun _ _ -> None)
| Some f -> f
in
let xmls = Xml.normalize_xmls xmls in
let t1 = Unix.times () in
let flex = Stk.Flex.flex ~wrap:true ~collapse_spaces:true ~pack:set_widget () in
flex#ignore_need_resize ;
let base_iri = Option.map (Xml.xhtml_base xmls) iri in
let root_props =
let node = Xml.node_ (Iri.of_string "", ":root") [] in
let p = Style.get_props [] style node in
[%debug "Root props (node %S) = %a" (Xml.QName.to_string node.Xml.name) Css.C.pp p];
p
in
let ctx = {
of_node ;
css_rules = style ;
root_props ;
props = root_props ;
font_desc = Stk.Font.default_font_desc ;
container = flex#coerce ;
path = [] ;
nodes = [] ;
node_count = 0 ;
item_map = WMap.empty ;
id_map = Stk.Smap.empty ;
load_resource ;
iri ;
base_iri ;
}
in
let ctx = doc_of_xmls ctx xmls in
flex#handle_need_resize ;
flex#need_resize;
[%debug "%s#geometry=%a, width_constraints=%a, g_arranged=%a"
flex#me Stk.G.pp flex#geometry
Stk.Widget.pp_size_constraints flex#width_constraints Stk.G.pp
(Option.value ~default:Stk.G.zero flex#g_arranged)];
let t2 = Unix.times () in
Log.info (fun m ->
Unix.(m "building nodes: user:%.2f, sys:%.2f"
(t2.tms_utime -. t1.tms_utime) (t2.tms_stime -. t1.tms_stime)));
let doc = {
Doc.doc_nodes = List.rev ctx.nodes ;
doc_item_map = ctx.item_map ;
doc_id_map = ctx.id_map ;
doc_filter = None ;
doc_text_index = None ;
}
in
(doc, ctx.node_count)