Remove stray spaces
[llpp.git] / config.ml
blobff0eae1ec4ed7821b59dedf34383974ebb4c76ca
1 open Utils;;
3 type fontstate =
4 { mutable fontsize : int
5 ; mutable wwidth : float
6 ; mutable maxrows : int
8 ;;
10 let fstate =
11 { fontsize = 20 * Wsi.fontsizefactor ()
12 ; wwidth = nan
13 ; maxrows = -1
17 let irect_of_string s =
18 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
21 let irect_to_string (x0,y0,x1,y1) = Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1;;
23 let multicolumns_to_string (n, a, b) =
24 if a = 0 && b = 0
25 then Printf.sprintf "%d" n
26 else Printf.sprintf "%d,%d,%d" n a b;
29 let multicolumns_of_string s =
30 try
31 (int_of_string s, 0, 0)
32 with _ ->
33 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
34 if a > 1 || b > 1
35 then error "subtly broken";
36 (n, a, b)
40 include Confstruct;;
42 type angle = int
43 and opaque = Opaque.t
44 and rectcolor = rgba
45 and pixmapsize = int
46 and gen = int
47 and top = float
48 and dtop = float
49 and fontpath = string
50 and trimcachepath = string
51 and aalevel = int
52 and trimmargins = bool
53 and trimparams = (trimmargins * irect)
54 and usefontconfig = bool
55 and usedoccss = bool
56 and uri = string
57 and caption = string
58 and tilex = int
59 and tiley = int
60 and tileparams = (x * y * width * height * tilex * tiley)
61 and under =
62 | Unone
63 | Ulinkuri of string
64 | Utext of facename
65 | Uannotation of (opaque * slinkindex)
66 and slinkindex = int
67 and facename = string
68 and launchcommand = string
69 and filename = string
70 and linkno = int
71 and destname = string
72 and link =
73 | Lnotfound
74 | Lfound of int
75 and linkdir =
76 | LDfirst
77 | LDlast
78 | LDfirstvisible of (int * int * int)
79 | LDleft of int
80 | LDright of int
81 | LDdown of int
82 | LDup of int
83 and pagewithlinks =
84 | Pwlnotfound
85 | Pwl of int
86 and scrollb = int
87 and anchor = pageno * top * dtop
88 and rect = float * float * float * float * float * float * float * float
89 and infochange = | Memused | Docinfo | Pdim
92 class type uioh =
93 object
94 method display : unit
95 method key : int -> int -> uioh
96 method button : int -> bool -> int -> int -> int -> uioh
97 method multiclick : int -> int -> int -> int -> uioh
98 method motion : int -> int -> uioh
99 method pmotion : int -> int -> uioh
100 method infochanged : infochange -> unit
101 method scrollpw : (int * float * float)
102 method scrollph : (int * float * float)
103 method modehash : keyhash
104 method eformsgs : bool
105 method alwaysscrolly : bool
106 method scroll : int -> int -> uioh
107 method zoom : float -> int -> int -> unit
108 end;;
110 module type TextEnumType =
112 type t
113 val name : string
114 val names : string array
115 end;;
117 module TextEnumMake (Ten : TextEnumType) =
118 struct
119 let names = Ten.names;;
120 let to_int (t : Ten.t) = Obj.magic t;;
121 let to_string t = names.(to_int t);;
122 let of_int n : Ten.t = Obj.magic n;;
123 let of_string s =
124 let rec find i =
125 if i = Array.length names
126 then error "invalid %s: %s" Ten.name s
127 else (
128 if Ten.names.(i) = s
129 then of_int i
130 else find (i+1)
132 in find 0;;
133 end;;
135 module CSTE = TextEnumMake (
136 struct
137 type t = colorspace;;
138 let name = "colorspace";;
139 let names = [|"rgb"; "gray"|];;
140 end);;
142 module MTE = TextEnumMake (
143 struct
144 type t = mark;;
145 let name = "mark";;
146 let names = [|"page"; "block"; "line"; "word"|];;
147 end);;
149 module FMTE = TextEnumMake (
150 struct
151 type t = fitmodel;;
152 let name = "fitmodel";;
153 let names = [|"width"; "proportional"; "page"|];;
154 end);;
156 type outlinekind =
157 | Onone
158 | Oanchor of anchor
159 | Ouri of uri
160 | Olaunch of launchcommand
161 | Oremote of (filename * pageno)
162 | Oremotedest of (filename * destname)
163 | Ohistory of (filename * conf * outline list * x * anchor * filename)
164 and outline = (caption * outlinelevel * outlinekind)
165 and outlinelevel = int
168 type page =
169 { pageno : int
170 ; pagedimno : int
171 ; pagew : int
172 ; pageh : int
173 ; pagex : int
174 ; pagey : int
175 ; pagevw : int
176 ; pagevh : int
177 ; pagedispx : int
178 ; pagedispy : int
179 ; pagecol : int
183 type tile = opaque * pixmapsize * elapsed
184 and elapsed = float;;
185 type pagemapkey = pageno * gen;;
186 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
187 and row = int
188 and col = int
189 and currently =
190 | Idle
191 | Loading of (page * gen)
192 | Tiling
193 of (page * opaque * colorspace * angle * gen * col * row * width * height)
194 | Outlining of outline list
197 type mpos = int * int
198 and mstate =
199 | Msel of (mpos * mpos)
200 | Mpan of mpos
201 | Mscrolly | Mscrollx
202 | Mzoom of (buttonno * step * mpos)
203 | Mzoomrect of (mpos * mpos)
204 | Mnone
205 and buttonno = int
206 and step = int
209 type mode =
210 | Birdseye of (conf * leftx * pageno * pageno * anchor)
211 | Textentry of (textentry * onleave)
212 | View
213 | LinkNav of linktarget
214 and onleave = leavetextentrystatus -> unit
215 and leavetextentrystatus = | Cancel | Confirm
216 and helpitem = string * int * action
217 and action =
218 | Noaction
219 | Action of (uioh -> uioh)
220 and linktarget =
221 | Ltexact of (pageno * direction)
222 | Ltgendir of direction
223 | Ltnotready of (pageno * direction)
224 and direction = int (* -1, 0, 1 *)
225 and textentry = string * string * onhist option * onkey * ondone * cancelonempty
226 and onkey = string -> Keys.t -> te
227 and ondone = string -> unit
228 and histcancel = unit -> unit
229 and onhist = ((histcmd -> string) * histcancel)
230 and histcmd = HCnext | HCprev | HCfirst | HClast
231 and cancelonempty = bool
232 and te =
233 | TEstop
234 | TEdone of string
235 | TEcont of string
236 | TEswitch of textentry
239 type 'a circbuf =
240 { store : 'a array
241 ; mutable rc : int
242 ; mutable wc : int
243 ; mutable len : int
247 type state =
248 { mutable ss : Unix.file_descr
249 ; mutable wsfd : Unix.file_descr
250 ; mutable stderr : Unix.file_descr
251 ; mutable errmsgs : Buffer.t
252 ; mutable newerrmsgs : bool
253 ; mutable w : int
254 ; mutable x : x
255 ; mutable y : y
256 ; mutable anchor : anchor
257 ; mutable ranchors : (string * string * anchor * string) list
258 ; mutable maxy : int
259 ; mutable layout : page list
260 ; pagemap : (pagemapkey, opaque) Hashtbl.t
261 ; tilemap : (tilemapkey, tile) Hashtbl.t
262 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
263 ; mutable pdims : (pageno * width * height * leftx) list
264 ; mutable pagecount : int
265 ; mutable currently : currently
266 ; mutable mstate : mstate
267 ; mutable searchpattern : string
268 ; mutable rects : (pageno * rectcolor * rect) list
269 ; mutable rects1 : (pageno * rectcolor * rect) list
270 ; prects : (pageno, float array) Hashtbl.t
271 ; mutable text : string
272 ; mutable winstate : Wsi.winstate list
273 ; mutable mode : mode
274 ; mutable uioh : uioh
275 ; mutable outlines : outline array
276 ; mutable bookmarks : outline list
277 ; mutable path : string
278 ; mutable password : string
279 ; mutable nameddest : string
280 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
281 ; mutable memused : memsize
282 ; mutable gen : gen
283 ; mutable autoscroll : int option
284 ; mutable help : helpitem array
285 ; mutable docinfo : (int * string) list
286 ; hists : hists
287 ; mutable prevzoom : (float * int)
288 ; mutable progress : float
289 ; mutable mpos : mpos
290 ; mutable keystate : keystate
291 ; mutable glinks : bool
292 ; mutable prevcolumns : (columns * float) option
293 ; mutable winw : int
294 ; mutable winh : int
295 ; mutable reprf : (unit -> unit)
296 ; mutable origin : string
297 ; mutable roam : (unit -> unit)
298 ; mutable bzoom : bool
299 ; mutable lnava : (pageno * linkno) option
300 ; mutable slideshow : int
302 and hists =
303 { pat : string circbuf
304 ; pag : string circbuf
305 ; nav : anchor circbuf
306 ; sel : string circbuf
310 let emptyanchor = (0, 0.0, 0.0);;
311 let emptykeyhash = Hashtbl.create 0;;
312 let noreprf () = ();;
313 let noroam () = ();;
315 let nouioh : uioh =
316 object (self)
317 method display = ()
318 method key _ _ = self
319 method multiclick _ _ _ _ = self
320 method button _ _ _ _ _ = self
321 method motion _ _ = self
322 method pmotion _ _ = self
323 method infochanged _ = ()
324 method scrollpw = (0, nan, nan)
325 method scrollph = (0, nan, nan)
326 method modehash = emptykeyhash
327 method eformsgs = false
328 method alwaysscrolly = false
329 method scroll _ _ = self
330 method zoom _ _ _ = ()
331 end;;
333 let platform_to_string = function
334 | Punknown -> "unknown"
335 | Plinux -> "Linux"
336 | Pmacos -> "macOS"
337 | Pbsd -> "BSD"
340 let conf = { defconf with keyhashes = copykeyhashes defconf };;
342 let cbnew n v =
343 { store = Array.make n v
344 ; rc = 0
345 ; wc = 0
346 ; len = 0
350 let cbcap b = Array.length b.store;;
352 let cbput ?(update_rc=true) b v =
353 let cap = cbcap b in
354 b.store.(b.wc) <- v;
355 b.wc <- (b.wc + 1) mod cap;
356 if update_rc
357 then b.rc <- b.wc;
358 b.len <- min (b.len + 1) cap;
361 let cbput_dont_update_rc b v = cbput ~update_rc:false b v;;
363 let cbempty b = b.len = 0;;
365 let cbgetg b circular dir =
366 if cbempty b
367 then b.store.(0)
368 else
369 let rc = b.rc + dir in
370 let rc =
371 if circular
372 then (
373 if rc = -1
374 then b.len-1
375 else (
376 if rc >= b.len
377 then 0
378 else rc
381 else bound rc 0 (b.len-1)
383 b.rc <- rc;
384 b.store.(rc);
387 let cbget b = cbgetg b false;;
388 let cbgetc b = cbgetg b true;;
390 let state =
391 { ss = Unix.stdin
392 ; wsfd = Unix.stdin
393 ; stderr = Unix.stderr
394 ; errmsgs = Buffer.create 0
395 ; newerrmsgs = false
396 ; x = 0
397 ; y = 0
398 ; w = 0
399 ; anchor = emptyanchor
400 ; ranchors = []
401 ; layout = []
402 ; maxy = max_int
403 ; tilelru = Queue.create ()
404 ; pagemap = Hashtbl.create 10
405 ; tilemap = Hashtbl.create 10
406 ; pdims = []
407 ; pagecount = 0
408 ; currently = Idle
409 ; mstate = Mnone
410 ; rects = []
411 ; rects1 = []
412 ; prects = Hashtbl.create 1
413 ; text = E.s
414 ; mode = View
415 ; winstate = []
416 ; searchpattern = E.s
417 ; outlines = E.a
418 ; bookmarks = []
419 ; path = E.s
420 ; password = E.s
421 ; nameddest = E.s
422 ; geomcmds = E.s, []
423 ; hists =
424 { nav = cbnew 10 emptyanchor
425 ; pat = cbnew 10 E.s
426 ; pag = cbnew 10 E.s
427 ; sel = cbnew 10 E.s
429 ; memused = 0
430 ; gen = 0
431 ; autoscroll = None
432 ; help = E.a
433 ; docinfo = []
434 ; prevzoom = (1.0, 0)
435 ; progress = -1.0
436 ; uioh = nouioh
437 ; mpos = (-1, -1)
438 ; keystate = KSnone
439 ; glinks = false
440 ; prevcolumns = None
441 ; winw = -1
442 ; winh = -1
443 ; reprf = noreprf
444 ; origin = E.s
445 ; roam = noroam
446 ; bzoom = false
447 ; lnava = None
448 ; slideshow = 0
452 let calcips h =
453 let d = state.winh - h in
454 max conf.interpagespace ((d + 1) / 2)
457 let rowyh (c, coverA, coverB) b n =
458 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
459 then
460 let _, _, vy, (_, _, h, _) = b.(n) in
461 (vy, h)
462 else
463 let n' = n - coverA in
464 let d = n' mod c in
465 let s = n - d in
466 let e = min state.pagecount (s + c) in
467 let rec find m miny maxh = if m = e then miny, maxh else
468 let _, _, y, (_, _, h, _) = b.(m) in
469 let miny = min miny y in
470 let maxh = max maxh h in
471 find (m+1) miny maxh
472 in find s max_int 0
475 let page_of_y y =
476 let ((c, coverA, coverB) as cl), b =
477 match conf.columns with
478 | Csplit (_, b) | Csingle b -> (1, 0, 0), b
479 | Cmulti (c, b) -> c, b
481 if Array.length b = 0
482 then -1
483 else
484 let rec bsearch nmin nmax =
485 if nmin > nmax
486 then bound nmin 0 (state.pagecount-1)
487 else
488 let n = (nmax + nmin) / 2 in
489 let vy, h = rowyh cl b n in
490 let y0, y1 =
491 if conf.presentation
492 then
493 let ips = calcips h in
494 let y0 = vy - ips in
495 let y1 = vy + h + ips in
496 y0, y1
497 else (
498 if n = 0
499 then 0, vy + h + conf.interpagespace
500 else
501 let y0 = vy - conf.interpagespace in
502 y0, y0 + h + conf.interpagespace
505 if y >= y0 && y < y1
506 then (
507 if c = 1
508 then n
509 else (
510 if n > coverA
511 then
512 if n < state.pagecount - coverB
513 then ((n-coverA)/c)*c + coverA
514 else n
515 else n
518 else (
519 if y > y0
520 then bsearch (n+1) nmax
521 else bsearch nmin (n-1)
524 bsearch 0 (state.pagecount-1);
527 let calcheight () =
528 match conf.columns with
529 | Cmulti ((_, _, _) as cl, b) ->
530 if Array.length b > 0
531 then
532 let y, h = rowyh cl b (Array.length b - 1) in
533 y + h + (if conf.presentation then calcips h else 0)
534 else 0
535 | Csingle b ->
536 if Array.length b > 0
537 then
538 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
539 y + h + (if conf.presentation then calcips h else 0)
540 else 0
541 | Csplit (_, b) ->
542 if Array.length b > 0
543 then
544 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
545 y + h
546 else 0
549 let getpageywh pageno =
550 let pageno = bound pageno 0 (state.pagecount-1) in
551 match conf.columns with
552 | Csingle b ->
553 if Array.length b = 0
554 then 0, 0, 0
555 else
556 let (_, _, y, (_, w, h, _)) = b.(pageno) in
557 let y =
558 if conf.presentation
559 then y - calcips h
560 else y
562 y, w, h
563 | Cmulti (cl, b) ->
564 if Array.length b = 0
565 then 0, 0, 0
566 else
567 let y, h = rowyh cl b pageno in
568 let (_, _, _, (_, w, _, _)) = b.(pageno) in
569 let y =
570 if conf.presentation
571 then y - calcips h
572 else y
574 y, w, h
575 | Csplit (c, b) ->
576 if Array.length b = 0
577 then 0, 0, 0
578 else
579 let n = pageno*c in
580 let (_, _, y, (_, w, h, _)) = b.(n) in
581 y, w / c, h
584 let getpageyh pageno =
585 let y,_,h = getpageywh pageno in
586 y, h;
589 let getpagedim pageno =
590 let rec f ppdim l =
591 match l with
592 | (n, _, _, _) as pdim :: rest ->
593 if n >= pageno
594 then (if n = pageno then pdim else ppdim)
595 else f pdim rest
596 | [] -> ppdim
598 f (-1, -1, -1, -1) state.pdims
601 let getpdimno pageno =
602 let rec f p l =
603 let np = succ p in
604 match l with
605 | (n, _, _, _) :: rest ->
606 if n >= pageno
607 then (if n = pageno then np else p)
608 else f np rest
609 | [] -> p
611 f ~-1 state.pdims
614 let getpagey pageno = fst (getpageyh pageno);;
616 let getanchor1 l =
617 let top =
618 let coloff = l.pagecol * l.pageh in
619 float (l.pagey + coloff) /. float l.pageh
621 let dtop =
622 if l.pagedispy = 0
623 then 0.0
624 else (
625 if conf.presentation
626 then float l.pagedispy /. float (calcips l.pageh)
627 else float l.pagedispy /. float conf.interpagespace
630 (l.pageno, top, dtop)
633 let getanchor () =
634 match state.layout with
635 | l :: _ -> getanchor1 l
636 | [] ->
637 let n = page_of_y state.y in
638 if n = -1
639 then state.anchor
640 else
641 let y, h = getpageyh n in
642 let dy = y - state.y in
643 let dtop =
644 if conf.presentation
645 then
646 let ips = calcips h in
647 float (dy + ips) /. float ips
648 else float dy /. float conf.interpagespace
650 (n, 0.0, dtop)
653 let fontpath = ref E.s;;
655 type historder = [ `lastvisit | `title | `path | `file ];;
657 module KeyMap =
658 Map.Make (struct type t = (int * int) let compare = compare end);;
660 let unentS s =
661 let l = String.length s in
662 let b = Buffer.create l in
663 Parser.unent b s 0 l;
664 Buffer.contents b;
667 let home =
668 try Sys.getenv "HOME"
669 with exn ->
670 dolog "cannot determine home directory location: %s" @@ exntos exn;
674 let modifier_of_string = function
675 | "alt" -> Wsi.altmask
676 | "shift" -> Wsi.shiftmask
677 | "ctrl" | "control" -> Wsi.ctrlmask
678 | "meta" -> Wsi.metamask
679 | _ -> 0
682 let keys_of_string s =
683 let key_of_string r s =
684 let elems = Str.full_split r s in
685 let f n k m =
686 let g s =
687 let m1 = modifier_of_string s in
688 if m1 = 0
689 then (Wsi.namekey s, m)
690 else (k, m lor m1)
691 in function
692 | Str.Delim s when n land 1 = 0 -> g s
693 | Str.Text s -> g s
694 | Str.Delim _ -> (k, m)
696 let rec loop n k m = function
697 | [] -> (k, m)
698 | x :: xs ->
699 let k, m = f n k m x in
700 loop (n+1) k m xs
702 loop 0 0 0 elems
704 let elems = Str.split Utils.Re.whitespace s in
705 List.map (key_of_string (Str.regexp "-")) elems
708 let config_of c attrs =
709 let maxv ?(f=int_of_string) u s = max u @@ f s in
710 let apply c k v =
712 match k with
713 | "scroll-bar-width" -> { c with scrollbw = maxv 0 v }
714 | "scroll-handle-height" -> { c with scrollh = maxv 0 v }
715 | "case-insensitive-search" -> { c with icase = bool_of_string v }
716 | "preload" -> { c with preload = bool_of_string v }
717 | "page-bias" -> { c with pagebias = int_of_string v }
718 | "scroll-step" -> { c with scrollstep = maxv 1 v }
719 | "horizontal-scroll-step" -> { c with hscrollstep = maxv 1 v }
720 | "auto-scroll-step" -> { c with autoscrollstep = maxv 0 v }
721 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
722 | "highlight-links" -> { c with hlinks = bool_of_string v }
723 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
724 | "vertical-margin" -> { c with interpagespace = maxv 0 v }
725 | "zoom" ->
726 let zoom = float_of_string v /. 100. in
727 let zoom = max zoom 0.0 in
728 { c with zoom = zoom }
729 | "presentation" -> { c with presentation = bool_of_string v }
730 | "rotation-angle" -> { c with angle = int_of_string v }
731 | "width" -> { c with cwinw = maxv 20 v }
732 | "height" -> { c with cwinh = maxv 20 v }
733 | "proportional-display" ->
734 let fm =
735 if bool_of_string v
736 then FitProportional
737 else FitWidth
739 { c with fitmodel = fm }
740 | "fit-model" -> { c with fitmodel = FMTE.of_string v }
741 | "pixmap-cache-size" ->
742 { c with memlimit = maxv ~f:int_of_string_with_suffix 2 v }
743 | "tex-count" -> { c with texcount = maxv 1 v }
744 | "slice-height" -> { c with sliceheight = maxv 2 v }
745 | "thumbnail-width" -> { c with thumbw = maxv 2 v }
746 | "background-color" -> { c with bgcolor = color_of_string v }
747 | "scrollbar-color" -> { c with sbarcolor = rgba_of_string v }
748 | "scrollbar-handle-color" -> { c with sbarhndlcolor = rgba_of_string v }
749 | "texture-color" -> { c with texturecolor = rgba_of_string v }
750 | "tile-width" -> { c with tilew = maxv 2 v }
751 | "tile-height" -> { c with tileh = maxv 2 v }
752 | "mupdf-store-size" ->
753 { c with mustoresize = maxv ~f:int_of_string_with_suffix 1024 v }
754 | "checkers" -> { c with checkers = bool_of_string v }
755 | "aalevel" -> { c with aalevel = maxv 0 v }
756 | "trim-margins" -> { c with trimmargins = bool_of_string v }
757 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
758 | "uri-launcher" -> { c with urilauncher = unentS v }
759 | "path-launcher" -> { c with pathlauncher = unentS v }
760 | "color-space" -> { c with colorspace = CSTE.of_string v }
761 | "invert-colors" -> { c with invert = bool_of_string v }
762 | "brightness" -> { c with colorscale = float_of_string v }
763 | "columns" ->
764 let (n, _, _) as nab = multicolumns_of_string v in
765 if n < 0
766 then { c with columns = Csplit (-n, E.a) }
767 else { c with columns = Cmulti (nab, E.a) }
768 | "birds-eye-columns" -> { c with beyecolumns = Some (maxv 2 v) }
769 | "selection-command" -> { c with selcmd = unentS v }
770 | "paste-command" -> { c with pastecmd = unentS v }
771 | "synctex-command" -> { c with stcmd = unentS v }
772 | "pax-command" -> { c with paxcmd = unentS v }
773 | "askpass-command" -> { c with passcmd = unentS v }
774 | "savepath-command" -> { c with savecmd = unentS v }
775 | "update-cursor" -> { c with updatecurs = bool_of_string v }
776 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
777 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
778 | "use-pbo" -> { c with usepbo = bool_of_string v }
779 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
780 | "horizontal-scrollbar-visible" ->
781 { c with scrollb = if bool_of_string v
782 then c.scrollb lor scrollbhv
783 else c.scrollb land (lnot scrollbhv)
785 | "vertical-scrollbar-visible" ->
786 { c with scrollb = if bool_of_string v
787 then c.scrollb lor scrollbvv
788 else c.scrollb land (lnot scrollbvv)
790 | "remote-in-a-new-instance" -> { c with riani = bool_of_string v }
791 | "point-and-x" ->
792 { c with pax = if bool_of_string v then Some 0.0 else None }
793 | "point-and-x-mark" -> { c with paxmark = MTE.of_string v }
794 | "scroll-bar-on-the-left" -> { c with leftscroll = bool_of_string v }
795 | "title" -> { c with title = unentS v }
796 | "last-visit" -> { c with lastvisit = float_of_string v }
797 | "edit-annotations-inline" -> { c with annotinline = bool_of_string v }
798 | "coarse-presentation-positioning" ->
799 { c with coarseprespos = bool_of_string v }
800 | "use-document-css" -> { c with usedoccss = bool_of_string v }
801 | _ -> c
802 with exn ->
803 dolog "error processing attribute (`%S' = `%S'): %s" k v @@ exntos exn;
806 let rec fold c = function
807 | [] -> c
808 | (k, v) :: rest ->
809 let c = apply c k v in
810 fold c rest
812 fold { c with keyhashes = copykeyhashes c } attrs;
815 let fromstring f pos n v d =
816 try f v
817 with exn ->
818 dolog "error processing attribute (%S=%S) at %d\n%s" n v pos @@ exntos exn;
822 let bookmark_of attrs =
823 let rec fold title page rely visy = function
824 | ("title", v) :: rest -> fold v page rely visy rest
825 | ("page", v) :: rest -> fold title v rely visy rest
826 | ("rely", v) :: rest -> fold title page v visy rest
827 | ("visy", v) :: rest -> fold title page rely v rest
828 | _ :: rest -> fold title page rely visy rest
829 | [] -> title, page, rely, visy
831 fold "invalid" "0" "0" "0" attrs
834 let doc_of attrs =
835 let rec fold path key page rely pan visy origin = function
836 | ("path", v) :: rest -> fold v key page rely pan visy origin rest
837 | ("key", v) :: rest -> fold path v page rely pan visy origin rest
838 | ("page", v) :: rest -> fold path key v rely pan visy origin rest
839 | ("rely", v) :: rest -> fold path key page v pan visy origin rest
840 | ("pan", v) :: rest -> fold path key page rely v visy origin rest
841 | ("visy", v) :: rest -> fold path key page rely pan v origin rest
842 | ("origin", v) :: rest -> fold path key page rely pan visy v rest
843 | _ :: rest -> fold path key page rely pan visy origin rest
844 | [] -> path, key, page, rely, pan, visy, origin
846 fold E.s E.s "0" "0" "0" "0" E.s attrs
849 let map_of attrs =
850 let rec fold rs ls = function
851 | ("out", v) :: rest -> fold v ls rest
852 | ("in", v) :: rest -> fold rs v rest
853 | _ :: rest -> fold ls rs rest
854 | [] -> ls, rs
856 fold E.s E.s attrs
859 let findkeyhash c name =
860 try List.assoc name c.keyhashes
861 with Not_found -> error "invalid mode name `%s'" name
864 let get s =
865 let open Parser in
866 let h = Hashtbl.create 10 in
867 let dc = { defconf with angle = defconf.angle } in
868 let rec toplevel v t spos _ =
869 match t with
870 | Vdata | Vcdata | Vend -> v
871 | Vopen ("llppconfig", _, closed) ->
872 if closed
873 then v
874 else { v with f = llppconfig }
875 | Vopen _ -> parse_error "unexpected subelement at top level" s spos
876 | Vclose _ -> parse_error "unexpected close at top level" s spos
878 and llppconfig v t spos _ =
879 match t with
880 | Vdata | Vcdata -> v
881 | Vend -> parse_error "unexpected end of input in llppconfig" s spos
882 | Vopen ("defaults", attrs, closed) ->
883 let c = config_of dc attrs in
884 setconf dc c;
885 if closed
886 then v
887 else { v with f = defaults }
889 | Vopen ("ui-font", attrs, closed) ->
890 let rec getsize size = function
891 | [] -> size
892 | ("size", v) :: rest ->
893 let size =
894 fromstring int_of_string spos "size" v fstate.fontsize in
895 getsize size rest
896 | l -> getsize size l
898 fstate.fontsize <- getsize fstate.fontsize attrs;
899 if closed
900 then v
901 else { v with f = uifont (Buffer.create 10) }
903 | Vopen ("doc", attrs, closed) ->
904 let pathent, key, spage, srely, span, svisy, origin = doc_of attrs in
905 let path = unentS pathent
906 and origin = unentS origin
907 and pageno = fromstring int_of_string spos "page" spage 0
908 and rely = fromstring float_of_string spos "rely" srely 0.0
909 and pan = fromstring int_of_string spos "pan" span 0
910 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
911 let c = config_of dc attrs in
912 c.key <- key;
913 let anchor = (pageno, rely, visy) in
914 if closed
915 then (Hashtbl.add h path (c, [], pan, anchor, origin); v)
916 else { v with f = doc path origin pan anchor c [] }
918 | Vopen _ -> parse_error "unexpected subelement in llppconfig" s spos
919 | Vclose "llppconfig" -> { v with f = toplevel }
920 | Vclose _ -> parse_error "unexpected close in llppconfig" s spos
922 and defaults v t spos _ =
923 match t with
924 | Vdata | Vcdata -> v
925 | Vend -> parse_error "unexpected end of input in defaults" s spos
926 | Vopen ("keymap", attrs, closed) ->
927 let modename =
928 try List.assoc "mode" attrs
929 with Not_found -> "global" in
930 if closed
931 then v
932 else
933 let ret keymap =
934 let h = findkeyhash dc modename in
935 KeyMap.iter (Hashtbl.replace h) keymap;
936 defaults
938 { v with f = pkeymap ret KeyMap.empty }
940 | Vopen (_, _, _) ->
941 parse_error "unexpected subelement in defaults" s spos
943 | Vclose "defaults" ->
944 { v with f = llppconfig }
946 | Vclose _ -> parse_error "unexpected close in defaults" s spos
948 and uifont b v t spos epos =
949 match t with
950 | Vdata | Vcdata ->
951 Buffer.add_substring b s spos (epos - spos);
953 | Vopen (_, _, _) -> parse_error "unexpected subelement in ui-font" s spos
954 | Vclose "ui-font" ->
955 if emptystr !fontpath
956 then fontpath := Buffer.contents b;
957 { v with f = llppconfig }
958 | Vclose _ -> parse_error "unexpected close in ui-font" s spos
959 | Vend -> parse_error "unexpected end of input in ui-font" s spos
961 and doc path origin pan anchor c bookmarks v t spos _ =
962 match t with
963 | Vdata | Vcdata -> v
964 | Vend -> parse_error "unexpected end of input in doc" s spos
965 | Vopen ("bookmarks", _, closed) ->
966 if closed
967 then v
968 else { v with f = pbookmarks path origin pan anchor c bookmarks }
970 | Vopen ("keymap", attrs, closed) ->
971 let modename =
972 try List.assoc "mode" attrs
973 with Not_found -> "global"
975 if closed
976 then v
977 else
978 let ret keymap =
979 let h = findkeyhash c modename in
980 KeyMap.iter (Hashtbl.replace h) keymap;
981 doc path origin pan anchor c bookmarks
983 { v with f = pkeymap ret KeyMap.empty }
985 | Vopen ("css", [], false) ->
986 { v with f = pcss path origin pan anchor c bookmarks }
988 | Vopen (_, _, _) ->
989 parse_error "unexpected subelement in doc" s spos
991 | Vclose "doc" ->
992 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor, origin);
993 { v with f = llppconfig }
995 | Vclose _ -> parse_error "unexpected close in doc" s spos
997 and pcss path origin pan anchor c bookmarks v t spos epos =
998 match t with
999 | Vdata | Vcdata ->
1000 let b = Buffer.create 10 in
1001 Buffer.add_substring b s spos (epos - spos);
1002 { v with f = pcss path origin pan anchor
1003 { c with css = Buffer.contents b }
1004 bookmarks }
1005 | Vend -> parse_error "unexpected end of input in css" s spos
1006 | Vopen _ -> parse_error "unexpected subelement in css" s spos
1007 | Vclose "css" -> { v with f = doc path origin pan anchor c bookmarks }
1008 | Vclose _ -> parse_error "unexpected close in css" s spos
1010 and pkeymap ret keymap v t spos _ =
1011 match t with
1012 | Vdata | Vcdata -> v
1013 | Vend -> parse_error "unexpected end of input in keymap" s spos
1014 | Vopen ("map", attrs, closed) ->
1015 let r, l = map_of attrs in
1016 let kss = fromstring keys_of_string spos "in" r [] in
1017 let lss = fromstring keys_of_string spos "out" l [] in
1018 let keymap =
1019 match kss with
1020 | [] -> keymap
1021 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
1022 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
1024 if closed
1025 then { v with f = pkeymap ret keymap }
1026 else
1027 let f () = v in
1028 { v with f = skip "map" f }
1030 | Vopen _ -> parse_error "unexpected subelement in keymap" s spos
1031 | Vclose "keymap" ->
1032 { v with f = ret keymap }
1033 | Vclose _ -> parse_error "unexpected close in keymap" s spos
1035 and pbookmarks path origin pan anchor c bookmarks v t spos _ =
1036 match t with
1037 | Vdata | Vcdata -> v
1038 | Vend -> parse_error "unexpected end of input in bookmarks" s spos
1039 | Vopen ("item", attrs, closed) ->
1040 let titleent, spage, srely, svisy = bookmark_of attrs in
1041 let page = fromstring int_of_string spos "page" spage 0
1042 and rely = fromstring float_of_string spos "rely" srely 0.0
1043 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
1044 let bookmarks =
1045 (unentS titleent, 0, Oanchor (page, rely, visy)) :: bookmarks
1047 if closed
1048 then { v with f = pbookmarks path origin pan anchor c bookmarks }
1049 else
1050 let f () = v in
1051 { v with f = skip "item" f }
1053 | Vopen _ -> parse_error "unexpected subelement in bookmarks" s spos
1054 | Vclose "bookmarks" ->
1055 { v with f = doc path origin pan anchor c bookmarks }
1056 | Vclose _ -> parse_error "unexpected close in bookmarks" s spos
1058 and skip tag f v t spos _ =
1059 match t with
1060 | Vdata | Vcdata -> v
1061 | Vend ->
1062 parse_error ("unexpected end of input in skipped " ^ tag) s spos
1063 | Vopen (tag', _, closed) ->
1064 if closed
1065 then v
1066 else
1067 let f' () = { v with f = skip tag f } in
1068 { v with f = skip tag' f' }
1069 | Vclose ctag ->
1070 if tag = ctag
1071 then f ()
1072 else parse_error ("unexpected close in skipped " ^ tag) s spos
1074 parse { f = toplevel; accu = () } s;
1075 h, dc;
1078 let do_load f contents =
1079 try f contents
1080 with
1081 | Parser.Parse_error (msg, s, pos) ->
1082 let subs = Parser.subs s pos in
1083 Utils.error "parse error: %s: at %d [..%S..]" msg pos subs
1085 | exn -> Utils.error "parse error: %s" @@ exntos exn
1088 let defconfpath =
1089 let dir =
1090 let xdgconfdir = Utils.getenvdef "XDG_CONFIG_HOME" E.s in
1091 if emptystr xdgconfdir
1092 then
1094 let dir = Filename.concat home ".config" in
1095 if Sys.is_directory dir then dir else home
1096 with _ -> home
1097 else xdgconfdir
1099 Filename.concat dir "llpp.conf"
1102 let confpath = ref defconfpath;;
1104 let load2 f default =
1105 match filecontents !confpath with
1106 | contents -> f @@ do_load get contents
1107 | exception Unix.Unix_error (Unix.ENOENT, "open", _) ->
1108 f (Hashtbl.create 0, defconf)
1109 | exception exn ->
1110 dolog "error loading configuration from `%S': %s" !confpath @@ exntos exn;
1111 default
1114 let load1 f = load2 f false;;
1116 let load openlast =
1117 let f (h, dc) =
1118 if openlast
1119 then (
1120 let path, _ =
1121 Hashtbl.fold
1122 (fun path (conf, _, _, _, _) ((_, besttime) as best) ->
1123 if conf.lastvisit > besttime
1124 then (path, conf.lastvisit)
1125 else best)
1127 (state.path, -.infinity)
1129 state.path <- path;
1131 let pc, pb, px, pa, po =
1132 let def = dc, [], 0, emptyanchor, state.origin in
1133 if emptystr state.path
1134 then def
1135 else
1136 let absname = abspath state.path in
1137 match Hashtbl.find h absname with
1138 | (c,b,x,a,_) -> (c,b,x,a,state.origin)
1139 | exception Not_found ->
1140 let exception E of (conf * outline list * int * anchor * string) in
1141 let key = try Digest.file absname |> Digest.to_hex with _ -> E.s in
1142 match (
1143 if nonemptystr key
1144 then
1145 Hashtbl.iter (fun p ((c, _, _, _, _) as v) ->
1146 if c.key = key
1147 then (
1148 dolog "will use %s's settings due to matching keys" p;
1149 raise (E v)
1153 with
1154 | _ -> def
1155 | exception E v -> v
1157 setconf defconf dc;
1158 setconf conf pc;
1159 state.bookmarks <- pb;
1160 state.x <- px;
1161 state.origin <- po;
1162 state.anchor <- pa;
1163 cbput state.hists.nav pa;
1164 true
1166 load1 f
1169 let gethist () =
1170 let f (h, _) =
1171 Hashtbl.fold (fun path (pc, pb, px, pa, po) accu ->
1172 (path, pc, pb, px, pa, po) :: accu)
1173 h [];
1175 load2 f []
1178 let add_attrs bb always dc c time =
1179 let o' fmt s =
1180 Buffer.add_string bb "\n ";
1181 Printf.bprintf bb fmt s
1183 let o c fmt s = if c then o' fmt s else ignore in
1184 let ob s a b = o (always || a != b) "%s='%b'" s a
1185 and op s a b = o (always || a <> b) "%s='%b'" s (a != None)
1186 and oi s a b = o (always || a != b) "%s='%d'" s a
1187 and oI s a b = o (always || a != b) "%s='%s'" s (string_with_suffix_of_int a)
1188 and oz s a b = o (always || a <> b) "%s='%g'" s (a*.100.)
1189 and oF s a b = o (always || a <> b) "%s='%f'" s a
1190 and oL s a b = o (always || a <> b) "%s='%Ld'" s a
1191 and oc s a b = o (always || a <> b) "%s='%s'" s (color_to_string a)
1192 and oA s a b = o (always || a <> b) "%s='%s'" s (rgba_to_string a)
1193 and oC s a b = o (always || a <> b) "%s='%s'" s (CSTE.to_string a)
1194 and oR s a b = o (always || a <> b) "%s='%s'" s (irect_to_string a)
1195 and oFm s a b = o (always || a <> b) "%s='%s'" s (FMTE.to_string a)
1196 and oSv s a b m =
1197 o (always || a land m <> b land m) "%s='%b'" s (a land m != 0)
1198 and oPm s a b = o (always || a <> b) "%s='%s'" s (MTE.to_string a)
1199 and os s a b =
1200 o (always || a <> b) "%s='%s'" s @@ Parser.enent a 0 (String.length a)
1201 and oco s a b =
1202 if always || a <> b
1203 then
1204 match a with
1205 | Cmulti ((n, a, b), _) when n > 1 -> o' "%s='%d,%d,%d'" s n a b
1206 | Csplit (n, _) when n > 1 -> o' "%s='%d'" s ~-n
1207 | Cmulti _ | Csplit _ | Csingle _ -> ()
1208 and obeco s a b =
1209 if always || a <> b
1210 then
1211 match a with
1212 | Some c when c > 1 -> o' "%s='%d'" s c
1213 | _ -> ()
1215 oi "width" c.cwinw dc.cwinw;
1216 oi "height" c.cwinh dc.cwinh;
1217 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
1218 oi "scroll-handle-height" c.scrollh dc.scrollh;
1219 oSv "horizontal-scrollbar-visible" c.scrollb dc.scrollb scrollbhv;
1220 oSv "vertical-scrollbar-visible" c.scrollb dc.scrollb scrollbvv;
1221 ob "case-insensitive-search" c.icase dc.icase;
1222 ob "preload" c.preload dc.preload;
1223 oi "page-bias" c.pagebias dc.pagebias;
1224 oi "scroll-step" c.scrollstep dc.scrollstep;
1225 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
1226 ob "max-height-fit" c.maxhfit dc.maxhfit;
1227 ob "highlight-links" c.hlinks dc.hlinks;
1228 ob "under-cursor-info" c.underinfo dc.underinfo;
1229 oi "vertical-margin" c.interpagespace dc.interpagespace;
1230 oz "zoom" c.zoom dc.zoom;
1231 ob "presentation" c.presentation dc.presentation;
1232 oi "rotation-angle" c.angle dc.angle;
1233 oFm "fit-model" c.fitmodel dc.fitmodel;
1234 oI "pixmap-cache-size" c.memlimit dc.memlimit;
1235 oi "tex-count" c.texcount dc.texcount;
1236 oi "slice-height" c.sliceheight dc.sliceheight;
1237 oi "thumbnail-width" c.thumbw dc.thumbw;
1238 oc "background-color" c.bgcolor dc.bgcolor;
1239 oA "scrollbar-color" c.sbarcolor dc.sbarcolor;
1240 oA "scrollbar-handle-color" c.sbarhndlcolor dc.sbarhndlcolor;
1241 oA "texture-color" c.texturecolor dc.texturecolor;
1242 oi "tile-width" c.tilew dc.tilew;
1243 oi "tile-height" c.tileh dc.tileh;
1244 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
1245 ob "checkers" c.checkers dc.checkers;
1246 oi "aalevel" c.aalevel dc.aalevel;
1247 ob "trim-margins" c.trimmargins dc.trimmargins;
1248 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
1249 os "uri-launcher" c.urilauncher dc.urilauncher;
1250 os "path-launcher" c.pathlauncher dc.pathlauncher;
1251 oC "color-space" c.colorspace dc.colorspace;
1252 ob "invert-colors" c.invert dc.invert;
1253 oF "brightness" c.colorscale dc.colorscale;
1254 oco "columns" c.columns dc.columns;
1255 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
1256 os "selection-command" c.selcmd dc.selcmd;
1257 os "paste-command" c.pastecmd dc.pastecmd;
1258 os "synctex-command" c.stcmd dc.stcmd;
1259 os "pax-command" c.paxcmd dc.paxcmd;
1260 os "askpass-command" c.passcmd dc.passcmd;
1261 os "savepath-command" c.savecmd dc.savecmd;
1262 ob "update-cursor" c.updatecurs dc.updatecurs;
1263 oi "hint-font-size" c.hfsize dc.hfsize;
1264 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
1265 oF "page-scroll-scale" c.pgscale dc.pgscale;
1266 ob "use-pbo" c.usepbo dc.usepbo;
1267 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
1268 ob "remote-in-a-new-instance" c.riani dc.riani;
1269 op "point-and-x" c.pax dc.pax;
1270 oPm "point-and-x-mark" c.paxmark dc.paxmark;
1271 ob "scroll-bar-on-the-left" c.leftscroll dc.leftscroll;
1272 if not always
1273 then os "title" c.title dc.title;
1274 oL "last-visit" (Int64.of_float time) 0L;
1275 ob "edit-annotations-inline" c.annotinline dc.annotinline;
1276 ob "coarse-presentation-positioning" c.coarseprespos dc.coarseprespos;
1277 ob "use-document-css" c.usedoccss dc.usedoccss;
1280 let keymapsbuf always dc c =
1281 let open Buffer in
1282 let bb = create 16 in
1283 let rec loop = function
1284 | [] -> ()
1285 | (modename, h) :: rest ->
1286 let dh = findkeyhash dc modename in
1287 if always || h <> dh
1288 then (
1289 if Hashtbl.length h > 0
1290 then (
1291 if length bb > 0 then add_char bb '\n';
1292 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
1293 Hashtbl.iter (fun i o ->
1294 if always || match Hashtbl.find dh i
1295 with | dO -> dO <> o | exception Not_found -> false
1296 then
1297 let addkm (k, m) =
1298 if Wsi.withctrl m then add_string bb "ctrl-";
1299 if Wsi.withalt m then add_string bb "alt-";
1300 if Wsi.withshift m then add_string bb "shift-";
1301 if Wsi.withmeta m then add_string bb "meta-";
1302 add_string bb (Wsi.keyname k);
1304 let addkms l =
1305 let rec loop = function
1306 | [] -> ()
1307 | km :: [] -> addkm km
1308 | km :: rest -> addkm km; add_char bb ' '; loop rest
1310 loop l
1312 add_string bb "<map in='";
1313 addkm i;
1314 match o with
1315 | KMinsrt km ->
1316 add_string bb "' out='"; addkm km; add_string bb "'/>\n"
1318 | KMinsrl kms ->
1319 add_string bb "' out='"; addkms kms; add_string bb "'/>\n"
1321 | KMmulti (ins, kms) ->
1322 add_char bb ' '; addkms ins; add_string bb "' out='";
1323 addkms kms; add_string bb "'/>\n"
1324 ) h;
1325 add_string bb "</keymap>";
1328 loop rest
1330 loop c.keyhashes;
1334 let keystostrlist c =
1335 let rec loop accu = function
1336 | [] -> accu
1337 | (modename, h) :: rest ->
1338 let accu =
1339 if Hashtbl.length h > 0
1340 then (
1341 let accu = Printf.sprintf "\xc2\xb7Keys for %s" modename :: accu in
1342 Hashtbl.fold (fun i o a ->
1343 let bb = Buffer.create 10 in
1344 let addkm (k, m) =
1345 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
1346 if Wsi.withalt m then Buffer.add_string bb "alt-";
1347 if Wsi.withshift m then Buffer.add_string bb "shift-";
1348 if Wsi.withmeta m then Buffer.add_string bb "meta-";
1349 Buffer.add_string bb (Wsi.keyname k);
1351 let addkms l =
1352 let rec loop = function
1353 | [] -> ()
1354 | km :: [] -> addkm km
1355 | km :: rest ->
1356 addkm km; Buffer.add_char bb ' ';
1357 loop rest
1359 loop l
1361 addkm i;
1362 Buffer.add_char bb '\t';
1363 begin match o with
1364 | KMinsrt km -> addkm km
1365 | KMinsrl kms -> addkms kms
1366 | KMmulti (ins, kms) ->
1367 Buffer.add_char bb ' ';
1368 addkms ins;
1369 Buffer.add_string bb "\t";
1370 addkms kms
1371 end;
1372 Buffer.contents bb :: a
1373 ) h accu
1375 else accu
1377 loop accu rest
1379 loop [] c.keyhashes
1382 let save1 bb leavebirdseye x h dc =
1383 let uifontsize = fstate.fontsize in
1384 let dc = if conf.bedefault then conf else dc in
1385 Buffer.add_string bb "<llppconfig>\n";
1387 if nonemptystr !fontpath
1388 then Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
1389 uifontsize
1390 !fontpath
1391 else
1392 if uifontsize <> 14
1393 then Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
1396 Buffer.add_string bb "<defaults";
1397 add_attrs bb true dc dc nan;
1398 let kb = keymapsbuf true dc dc in
1399 if Buffer.length kb > 0
1400 then (
1401 Buffer.add_string bb ">\n";
1402 Buffer.add_buffer bb kb;
1403 Buffer.add_string bb "\n</defaults>\n";
1405 else Buffer.add_string bb "/>\n";
1407 let adddoc path pan anchor c bookmarks time origin =
1408 if not (bookmarks == [] && c = dc && anchor = emptyanchor)
1409 then (
1410 Printf.bprintf bb "<doc path='%s'"
1411 (Parser.enent path 0 (String.length path));
1413 if nonemptystr c.key
1414 then Printf.bprintf bb "\n key='%s'" c.key;
1416 if nonemptystr origin
1417 then Printf.bprintf bb "\n origin='%s'"
1418 (Parser.enent origin 0 (String.length origin));
1420 if anchor <> emptyanchor
1421 then (
1422 let n, rely, visy = anchor in
1423 Printf.bprintf bb "\n page='%d'" n;
1425 if rely > 1e-6
1426 then Printf.bprintf bb " rely='%f'" rely;
1428 if abs_float visy > 1e-6
1429 then Printf.bprintf bb " visy='%f'" visy;
1432 if pan != 0
1433 then Printf.bprintf bb " pan='%d'" pan;
1435 add_attrs bb false dc c time;
1436 if nonemptystr c.css
1437 then Printf.bprintf bb ">\n <css><![CDATA[%s]]></css>" c.css;
1438 let kb = keymapsbuf false dc c in
1440 begin match bookmarks with
1441 | [] ->
1442 if Buffer.length kb > 0
1443 then (
1444 Buffer.add_string bb ">\n";
1445 Buffer.add_buffer bb kb;
1446 Buffer.add_string bb "\n</doc>\n";
1448 else (
1449 if nonemptystr c.css
1450 then Buffer.add_string bb "\n</doc>\n"
1451 else Buffer.add_string bb "/>\n"
1453 | _ ->
1454 Buffer.add_string bb ">\n<bookmarks>\n";
1455 List.iter (fun (title, _, kind) ->
1456 begin match kind with
1457 | Oanchor (page, rely, visy) ->
1458 Printf.bprintf bb
1459 "<item title='%s' page='%d'"
1460 (Parser.enent title 0 (String.length title))
1461 page;
1462 if rely > 1e-6
1463 then Printf.bprintf bb " rely='%f'" rely;
1464 if abs_float visy > 1e-6
1465 then Printf.bprintf bb " visy='%f'" visy;
1467 | Ohistory _ | Onone | Ouri _ | Oremote _
1468 | Oremotedest _ | Olaunch _ -> error "unexpected link in bookmarks"
1469 end;
1470 Buffer.add_string bb "/>\n";
1471 ) bookmarks;
1472 Buffer.add_string bb "</bookmarks>";
1473 if Buffer.length kb > 0
1474 then (
1475 Buffer.add_string bb "\n";
1476 Buffer.add_buffer bb kb;
1478 Buffer.add_string bb "\n</doc>\n";
1479 end;
1483 let pan, conf =
1484 match state.mode with
1485 | Birdseye (c, pan, _, _, _) ->
1486 let beyecolumns =
1487 match conf.columns with
1488 | Cmulti ((c, _, _), _) -> Some c
1489 | Csingle _ -> None
1490 | Csplit _ -> None
1491 and columns =
1492 match c.columns with
1493 | Cmulti (c, _) -> Cmulti (c, E.a)
1494 | Csingle _ -> Csingle E.a
1495 | Csplit _ -> failwith "quit from bird's eye while split"
1497 pan, { c with beyecolumns = beyecolumns; columns = columns }
1498 | Textentry _
1499 | View
1500 | LinkNav _ -> x, conf
1502 let docpath = if nonemptystr state.path then abspath state.path else E.s in
1503 if nonemptystr docpath
1504 then (
1505 adddoc docpath pan (getanchor ())
1507 let autoscrollstep =
1508 match state.autoscroll with
1509 | Some step -> step
1510 | None -> conf.autoscrollstep
1512 begin match state.mode with
1513 | Birdseye beye -> leavebirdseye beye true
1514 | Textentry _
1515 | View
1516 | LinkNav _ -> ()
1517 end;
1518 let key = try Digest.file docpath |> Digest.to_hex
1519 with _ -> E.s in
1520 { conf with autoscrollstep; key }
1522 state.bookmarks
1523 (now ())
1524 state.origin
1526 Hashtbl.iter (fun path (c, bookmarks, x, anchor, origin) ->
1527 if docpath <> abspath path
1528 then adddoc path x anchor c bookmarks c.lastvisit origin
1529 ) h;
1530 Buffer.add_string bb "</llppconfig>\n";
1531 true;
1534 let save leavebirdseye =
1535 let relx = float state.x /. float state.winw in
1536 let w, h, x =
1537 let cx w = truncate (relx *. float w) in
1538 List.fold_left
1539 (fun (w, h, x) ws ->
1540 match ws with
1541 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh, cx conf.cwinw)
1542 | Wsi.MaxVert -> (w, conf.cwinh, x)
1543 | Wsi.MaxHorz -> (conf.cwinw, h, cx conf.cwinw)
1545 (state.winw, state.winh, state.x) state.winstate
1547 conf.cwinw <- w;
1548 conf.cwinh <- h;
1549 let bb = Buffer.create 32768 in
1550 let save2 (h, dc) = save1 bb leavebirdseye x h dc in
1551 if load1 save2 && Buffer.length bb > 0
1552 then
1554 let tmp = !confpath ^ ".tmp" in
1555 let oc = open_out_bin tmp in
1556 Buffer.output_buffer oc bb;
1557 close_out oc;
1558 Unix.rename tmp !confpath;
1559 with exn -> dolog "error saving configuration: %s" @@ exntos exn
1562 let gc () =
1563 let href = ref @@ Hashtbl.create 0 in
1564 let cref = ref defconf in
1565 let push (h, dc) =
1566 let f path v =
1567 if Sys.file_exists path
1568 then Some v
1569 else (dolog "removing entry for '%s'" path; None) in
1570 Hashtbl.filter_map_inplace f h;
1571 href := h;
1572 cref := dc;
1573 true
1575 ignore (load1 push);
1576 let bb = Buffer.create 32768 in
1577 let save2 (_h, dc) = save1 bb (fun _ _ -> ()) 0 !href dc in
1578 if load1 save2 && Buffer.length bb > 0
1579 then (
1581 let tmp = !confpath ^ ".tmp" in
1582 let oc = open_out_bin tmp in
1583 Buffer.output_buffer oc bb;
1584 close_out oc;
1585 Unix.rename tmp !confpath;
1586 with exn -> dolog "error saving configuration: %s" @@ exntos exn
1590 let logcurrently = function
1591 | Idle -> dolog "Idle"
1592 | Loading (l, gen) ->
1593 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
1594 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
1595 dolog "Tiling %d[%d,%d] page=%s cs=%s angle=%d"
1596 l.pageno col row (~> pageopaque)
1597 (CSTE.to_string colorspace) angle;
1598 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
1599 angle gen conf.angle state.gen
1600 tilew tileh
1601 conf.tilew conf.tileh
1602 | Outlining _ -> dolog "outlining"
1605 let logpage l =
1606 dolog {|l %d dim=%d {
1607 WxH %dx%d
1608 vWxH %dx%d
1609 pagex,y %d,%d
1610 dispx,y %d,%d
1611 column %d
1613 l.pageno l.pagedimno
1614 l.pagew l.pageh
1615 l.pagevw l.pagevh
1616 l.pagex l.pagey
1617 l.pagedispx l.pagedispy
1618 l.pagecol