Rename getenvwithdef to getenvdef
[llpp.git] / config.ml
blob2ae5346812e20a84ce1b9d8eefe097bc908c9c43
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 apply c k v =
711 match k with
712 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
713 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
714 | "case-insensitive-search" -> { c with icase = bool_of_string v }
715 | "preload" -> { c with preload = bool_of_string v }
716 | "page-bias" -> { c with pagebias = int_of_string v }
717 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
718 | "horizontal-scroll-step" ->
719 { c with hscrollstep = max (int_of_string v) 1 }
720 | "auto-scroll-step" ->
721 { c with autoscrollstep = max 0 (int_of_string v) }
722 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
723 | "highlight-links" -> { c with hlinks = bool_of_string v }
724 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
725 | "vertical-margin" ->
726 { c with interpagespace = max 0 (int_of_string v) }
727 | "zoom" ->
728 let zoom = float_of_string v /. 100. in
729 let zoom = max zoom 0.0 in
730 { c with zoom = zoom }
731 | "presentation" -> { c with presentation = bool_of_string v }
732 | "rotation-angle" -> { c with angle = int_of_string v }
733 | "width" -> { c with cwinw = max 20 (int_of_string v) }
734 | "height" -> { c with cwinh = max 20 (int_of_string v) }
735 | "proportional-display" ->
736 let fm =
737 if bool_of_string v
738 then FitProportional
739 else FitWidth
741 { c with fitmodel = fm }
742 | "fit-model" -> { c with fitmodel = FMTE.of_string v }
743 | "pixmap-cache-size" ->
744 { c with memlimit = max 2 (int_of_string_with_suffix v) }
745 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
746 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
747 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
748 | "background-color" -> { c with bgcolor = color_of_string v }
749 | "scrollbar-color" -> { c with sbarcolor = rgba_of_string v }
750 | "scrollbar-handle-color" -> { c with sbarhndlcolor = rgba_of_string v }
751 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
752 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
753 | "mupdf-store-size" ->
754 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
755 | "checkers" -> { c with checkers = bool_of_string v }
756 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
757 | "trim-margins" -> { c with trimmargins = bool_of_string v }
758 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
759 | "uri-launcher" -> { c with urilauncher = unentS v }
760 | "path-launcher" -> { c with pathlauncher = unentS v }
761 | "color-space" -> { c with colorspace = CSTE.of_string v }
762 | "invert-colors" -> { c with invert = bool_of_string v }
763 | "brightness" -> { c with colorscale = float_of_string v }
764 | "columns" ->
765 let (n, _, _) as nab = multicolumns_of_string v in
766 if n < 0
767 then { c with columns = Csplit (-n, E.a) }
768 else { c with columns = Cmulti (nab, E.a) }
769 | "birds-eye-columns" ->
770 { c with beyecolumns = Some (max (int_of_string v) 2) }
771 | "selection-command" -> { c with selcmd = unentS v }
772 | "synctex-command" -> { c with stcmd = unentS v }
773 | "pax-command" -> { c with paxcmd = unentS v }
774 | "askpass-command" -> { c with passcmd = unentS v }
775 | "savepath-command" -> { c with savecmd = unentS v }
776 | "update-cursor" -> { c with updatecurs = bool_of_string v }
777 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
778 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
779 | "use-pbo" -> { c with usepbo = bool_of_string v }
780 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
781 | "horizontal-scrollbar-visible" ->
782 let b =
783 if bool_of_string v
784 then c.scrollb lor scrollbhv
785 else c.scrollb land (lnot scrollbhv)
787 { c with scrollb = b }
788 | "vertical-scrollbar-visible" ->
789 let b =
790 if bool_of_string v
791 then c.scrollb lor scrollbvv
792 else c.scrollb land (lnot scrollbvv)
794 { c with scrollb = b }
795 | "remote-in-a-new-instance" -> { c with riani = bool_of_string v }
796 | "point-and-x" ->
797 { c with pax =
798 if bool_of_string v
799 then Some 0.0
800 else None }
801 | "point-and-x-mark" -> { c with paxmark = MTE.of_string v }
802 | "scroll-bar-on-the-left" -> { c with leftscroll = bool_of_string v }
803 | "title" -> { c with title = unentS v }
804 | "last-visit" -> { c with lastvisit = float_of_string v }
805 | "edit-annotations-inline" -> { c with annotinline = bool_of_string v }
806 | "coarse-presentation-positioning" ->
807 { c with coarseprespos = bool_of_string v }
808 | "use-document-css" -> { c with usedoccss = bool_of_string v }
809 | _ -> c
810 with exn ->
811 dolog "error processing attribute (`%S' = `%S'): %s" k v @@ exntos exn;
814 let rec fold c = function
815 | [] -> c
816 | (k, v) :: rest ->
817 let c = apply c k v in
818 fold c rest
820 fold { c with keyhashes = copykeyhashes c } attrs;
823 let fromstring f pos n v d =
824 try f v
825 with exn ->
826 dolog "error processing attribute (%S=%S) at %d\n%s" n v pos @@ exntos exn;
830 let bookmark_of attrs =
831 let rec fold title page rely visy = function
832 | ("title", v) :: rest -> fold v page rely visy rest
833 | ("page", v) :: rest -> fold title v rely visy rest
834 | ("rely", v) :: rest -> fold title page v visy rest
835 | ("visy", v) :: rest -> fold title page rely v rest
836 | _ :: rest -> fold title page rely visy rest
837 | [] -> title, page, rely, visy
839 fold "invalid" "0" "0" "0" attrs
842 let doc_of attrs =
843 let rec fold path key page rely pan visy origin = function
844 | ("path", v) :: rest -> fold v key page rely pan visy origin rest
845 | ("key", v) :: rest -> fold path v page rely pan visy origin rest
846 | ("page", v) :: rest -> fold path key v rely pan visy origin rest
847 | ("rely", v) :: rest -> fold path key page v pan visy origin rest
848 | ("pan", v) :: rest -> fold path key page rely v visy origin rest
849 | ("visy", v) :: rest -> fold path key page rely pan v origin rest
850 | ("origin", v) :: rest -> fold path key page rely pan visy v rest
851 | _ :: rest -> fold path key page rely pan visy origin rest
852 | [] -> path, key, page, rely, pan, visy, origin
854 fold E.s E.s "0" "0" "0" "0" E.s attrs
857 let map_of attrs =
858 let rec fold rs ls = function
859 | ("out", v) :: rest -> fold v ls rest
860 | ("in", v) :: rest -> fold rs v rest
861 | _ :: rest -> fold ls rs rest
862 | [] -> ls, rs
864 fold E.s E.s attrs
867 let findkeyhash c name =
868 try List.assoc name c.keyhashes
869 with Not_found -> error "invalid mode name `%s'" name
872 let get s =
873 let open Parser in
874 let h = Hashtbl.create 10 in
875 let dc = { defconf with angle = defconf.angle } in
876 let rec toplevel v t spos _ =
877 match t with
878 | Vdata | Vcdata | Vend -> v
879 | Vopen ("llppconfig", _, closed) ->
880 if closed
881 then v
882 else { v with f = llppconfig }
883 | Vopen _ -> parse_error "unexpected subelement at top level" s spos
884 | Vclose _ -> parse_error "unexpected close at top level" s spos
886 and llppconfig v t spos _ =
887 match t with
888 | Vdata | Vcdata -> v
889 | Vend -> parse_error "unexpected end of input in llppconfig" s spos
890 | Vopen ("defaults", attrs, closed) ->
891 let c = config_of dc attrs in
892 setconf dc c;
893 if closed
894 then v
895 else { v with f = defaults }
897 | Vopen ("ui-font", attrs, closed) ->
898 let rec getsize size = function
899 | [] -> size
900 | ("size", v) :: rest ->
901 let size =
902 fromstring int_of_string spos "size" v fstate.fontsize in
903 getsize size rest
904 | l -> getsize size l
906 fstate.fontsize <- getsize fstate.fontsize attrs;
907 if closed
908 then v
909 else { v with f = uifont (Buffer.create 10) }
911 | Vopen ("doc", attrs, closed) ->
912 let pathent, key, spage, srely, span, svisy, origin = doc_of attrs in
913 let path = unentS pathent
914 and origin = unentS origin
915 and pageno = fromstring int_of_string spos "page" spage 0
916 and rely = fromstring float_of_string spos "rely" srely 0.0
917 and pan = fromstring int_of_string spos "pan" span 0
918 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
919 let c = config_of dc attrs in
920 c.key <- key;
921 let anchor = (pageno, rely, visy) in
922 if closed
923 then (Hashtbl.add h path (c, [], pan, anchor, origin); v)
924 else { v with f = doc path origin pan anchor c [] }
926 | Vopen _ -> parse_error "unexpected subelement in llppconfig" s spos
927 | Vclose "llppconfig" -> { v with f = toplevel }
928 | Vclose _ -> parse_error "unexpected close in llppconfig" s spos
930 and defaults v t spos _ =
931 match t with
932 | Vdata | Vcdata -> v
933 | Vend -> parse_error "unexpected end of input in defaults" s spos
934 | Vopen ("keymap", attrs, closed) ->
935 let modename =
936 try List.assoc "mode" attrs
937 with Not_found -> "global" in
938 if closed
939 then v
940 else
941 let ret keymap =
942 let h = findkeyhash dc modename in
943 KeyMap.iter (Hashtbl.replace h) keymap;
944 defaults
946 { v with f = pkeymap ret KeyMap.empty }
948 | Vopen (_, _, _) ->
949 parse_error "unexpected subelement in defaults" s spos
951 | Vclose "defaults" ->
952 { v with f = llppconfig }
954 | Vclose _ -> parse_error "unexpected close in defaults" s spos
956 and uifont b v t spos epos =
957 match t with
958 | Vdata | Vcdata ->
959 Buffer.add_substring b s spos (epos - spos);
961 | Vopen (_, _, _) -> parse_error "unexpected subelement in ui-font" s spos
962 | Vclose "ui-font" ->
963 if emptystr !fontpath
964 then fontpath := Buffer.contents b;
965 { v with f = llppconfig }
966 | Vclose _ -> parse_error "unexpected close in ui-font" s spos
967 | Vend -> parse_error "unexpected end of input in ui-font" s spos
969 and doc path origin pan anchor c bookmarks v t spos _ =
970 match t with
971 | Vdata | Vcdata -> v
972 | Vend -> parse_error "unexpected end of input in doc" s spos
973 | Vopen ("bookmarks", _, closed) ->
974 if closed
975 then v
976 else { v with f = pbookmarks path origin pan anchor c bookmarks }
978 | Vopen ("keymap", attrs, closed) ->
979 let modename =
980 try List.assoc "mode" attrs
981 with Not_found -> "global"
983 if closed
984 then v
985 else
986 let ret keymap =
987 let h = findkeyhash c modename in
988 KeyMap.iter (Hashtbl.replace h) keymap;
989 doc path origin pan anchor c bookmarks
991 { v with f = pkeymap ret KeyMap.empty }
993 | Vopen ("css", [], false) ->
994 { v with f = pcss path origin pan anchor c bookmarks }
996 | Vopen (_, _, _) ->
997 parse_error "unexpected subelement in doc" s spos
999 | Vclose "doc" ->
1000 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor, origin);
1001 { v with f = llppconfig }
1003 | Vclose _ -> parse_error "unexpected close in doc" s spos
1005 and pcss path origin pan anchor c bookmarks v t spos epos =
1006 match t with
1007 | Vdata | Vcdata ->
1008 let b = Buffer.create 10 in
1009 Buffer.add_substring b s spos (epos - spos);
1010 { v with f = pcss path origin pan anchor
1011 { c with css = Buffer.contents b }
1012 bookmarks }
1013 | Vend -> parse_error "unexpected end of input in css" s spos
1014 | Vopen _ -> parse_error "unexpected subelement in css" s spos
1015 | Vclose "css" -> { v with f = doc path origin pan anchor c bookmarks }
1016 | Vclose _ -> parse_error "unexpected close in css" s spos
1018 and pkeymap ret keymap v t spos _ =
1019 match t with
1020 | Vdata | Vcdata -> v
1021 | Vend -> parse_error "unexpected end of input in keymap" s spos
1022 | Vopen ("map", attrs, closed) ->
1023 let r, l = map_of attrs in
1024 let kss = fromstring keys_of_string spos "in" r [] in
1025 let lss = fromstring keys_of_string spos "out" l [] in
1026 let keymap =
1027 match kss with
1028 | [] -> keymap
1029 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
1030 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
1032 if closed
1033 then { v with f = pkeymap ret keymap }
1034 else
1035 let f () = v in
1036 { v with f = skip "map" f }
1038 | Vopen _ -> parse_error "unexpected subelement in keymap" s spos
1039 | Vclose "keymap" ->
1040 { v with f = ret keymap }
1041 | Vclose _ -> parse_error "unexpected close in keymap" s spos
1043 and pbookmarks path origin pan anchor c bookmarks v t spos _ =
1044 match t with
1045 | Vdata | Vcdata -> v
1046 | Vend -> parse_error "unexpected end of input in bookmarks" s spos
1047 | Vopen ("item", attrs, closed) ->
1048 let titleent, spage, srely, svisy = bookmark_of attrs in
1049 let page = fromstring int_of_string spos "page" spage 0
1050 and rely = fromstring float_of_string spos "rely" srely 0.0
1051 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
1052 let bookmarks =
1053 (unentS titleent, 0, Oanchor (page, rely, visy)) :: bookmarks
1055 if closed
1056 then { v with f = pbookmarks path origin pan anchor c bookmarks }
1057 else
1058 let f () = v in
1059 { v with f = skip "item" f }
1061 | Vopen _ -> parse_error "unexpected subelement in bookmarks" s spos
1062 | Vclose "bookmarks" ->
1063 { v with f = doc path origin pan anchor c bookmarks }
1064 | Vclose _ -> parse_error "unexpected close in bookmarks" s spos
1066 and skip tag f v t spos _ =
1067 match t with
1068 | Vdata | Vcdata -> v
1069 | Vend ->
1070 parse_error ("unexpected end of input in skipped " ^ tag) s spos
1071 | Vopen (tag', _, closed) ->
1072 if closed
1073 then v
1074 else
1075 let f' () = { v with f = skip tag f } in
1076 { v with f = skip tag' f' }
1077 | Vclose ctag ->
1078 if tag = ctag
1079 then f ()
1080 else parse_error ("unexpected close in skipped " ^ tag) s spos
1082 parse { f = toplevel; accu = () } s;
1083 h, dc;
1086 let do_load f contents =
1087 try f contents
1088 with
1089 | Parser.Parse_error (msg, s, pos) ->
1090 let subs = Parser.subs s pos in
1091 Utils.error "parse error: %s: at %d [..%S..]" msg pos subs
1093 | exn -> Utils.error "parse error: %s" @@ exntos exn
1096 let defconfpath =
1097 let dir =
1098 let xdgconfdir = Utils.getenvdef "XDG_CONFIG_HOME" E.s in
1099 if emptystr xdgconfdir
1100 then
1102 let dir = Filename.concat home ".config" in
1103 if Sys.is_directory dir then dir else home
1104 with _ -> home
1105 else xdgconfdir
1107 Filename.concat dir "llpp.conf"
1110 let confpath = ref defconfpath;;
1112 let load2 f default =
1113 match filecontents !confpath with
1114 | contents -> f @@ do_load get contents
1115 | exception Unix.Unix_error (Unix.ENOENT, "open", _) ->
1116 f (Hashtbl.create 0, defconf)
1117 | exception exn ->
1118 dolog "error loading configuration from `%S': %s" !confpath @@ exntos exn;
1119 default
1122 let load1 f = load2 f false;;
1124 let load openlast =
1125 let f (h, dc) =
1126 if openlast
1127 then (
1128 let path, _ =
1129 Hashtbl.fold
1130 (fun path (conf, _, _, _, _) ((_, besttime) as best) ->
1131 if conf.lastvisit > besttime
1132 then (path, conf.lastvisit)
1133 else best)
1135 (state.path, -.infinity)
1137 state.path <- path;
1139 let pc, pb, px, pa, po =
1140 let def = dc, [], 0, emptyanchor, state.origin in
1141 if emptystr state.path
1142 then def
1143 else
1144 let absname = abspath state.path in
1145 match Hashtbl.find h absname with
1146 | (c,b,x,a,_) -> (c,b,x,a,state.origin)
1147 | exception Not_found ->
1148 let exception E of (conf * outline list * int * anchor * string) in
1149 let key = try Digest.file absname |> Digest.to_hex with _ -> E.s in
1150 match (
1151 if nonemptystr key
1152 then
1153 Hashtbl.iter (fun p ((c, _, _, _, _) as v) ->
1154 if c.key = key
1155 then (
1156 dolog "will use %s's settings due to matching keys" p;
1157 raise (E v)
1161 with
1162 | _ -> def
1163 | exception E v -> v
1165 setconf defconf dc;
1166 setconf conf pc;
1167 state.bookmarks <- pb;
1168 state.x <- px;
1169 state.origin <- po;
1170 state.anchor <- pa;
1171 cbput state.hists.nav pa;
1172 true
1174 load1 f
1177 let gethist () =
1178 let f (h, _) =
1179 Hashtbl.fold (fun path (pc, pb, px, pa, po) accu ->
1180 (path, pc, pb, px, pa, po) :: accu)
1181 h [];
1183 load2 f []
1186 let add_attrs bb always dc c time =
1187 let o' fmt s =
1188 Buffer.add_string bb "\n ";
1189 Printf.bprintf bb fmt s
1191 let o c fmt s = if c then o' fmt s else ignore in
1192 let ob s a b = o (always || a != b) "%s='%b'" s a
1193 and op s a b = o (always || a <> b) "%s='%b'" s (a != None)
1194 and oi s a b = o (always || a != b) "%s='%d'" s a
1195 and oI s a b = o (always || a != b) "%s='%s'" s (string_with_suffix_of_int a)
1196 and oz s a b = o (always || a <> b) "%s='%g'" s (a*.100.)
1197 and oF s a b = o (always || a <> b) "%s='%f'" s a
1198 and oL s a b = o (always || a <> b) "%s='%Ld'" s a
1199 and oc s a b = o (always || a <> b) "%s='%s'" s (color_to_string a)
1200 and oA s a b = o (always || a <> b) "%s='%s'" s (rgba_to_string a)
1201 and oC s a b = o (always || a <> b) "%s='%s'" s (CSTE.to_string a)
1202 and oR s a b = o (always || a <> b) "%s='%s'" s (irect_to_string a)
1203 and oFm s a b = o (always || a <> b) "%s='%s'" s (FMTE.to_string a)
1204 and oSv s a b m =
1205 o (always || a land m <> b land m) "%s='%b'" s (a land m != 0)
1206 and oPm s a b = o (always || a <> b) "%s='%s'" s (MTE.to_string a)
1207 and os s a b =
1208 o (always || a <> b) "%s='%s'" s @@ Parser.enent a 0 (String.length a)
1209 and oco s a b =
1210 if always || a <> b
1211 then
1212 match a with
1213 | Cmulti ((n, a, b), _) when n > 1 -> o' "%s='%d,%d,%d'" s n a b
1214 | Csplit (n, _) when n > 1 -> o' "%s='%d'" s ~-n
1215 | Cmulti _ | Csplit _ | Csingle _ -> ()
1216 and obeco s a b =
1217 if always || a <> b
1218 then
1219 match a with
1220 | Some c when c > 1 -> o' "%s='%d'" s c
1221 | _ -> ()
1223 oi "width" c.cwinw dc.cwinw;
1224 oi "height" c.cwinh dc.cwinh;
1225 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
1226 oi "scroll-handle-height" c.scrollh dc.scrollh;
1227 oSv "horizontal-scrollbar-visible" c.scrollb dc.scrollb scrollbhv;
1228 oSv "vertical-scrollbar-visible" c.scrollb dc.scrollb scrollbvv;
1229 ob "case-insensitive-search" c.icase dc.icase;
1230 ob "preload" c.preload dc.preload;
1231 oi "page-bias" c.pagebias dc.pagebias;
1232 oi "scroll-step" c.scrollstep dc.scrollstep;
1233 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
1234 ob "max-height-fit" c.maxhfit dc.maxhfit;
1235 ob "highlight-links" c.hlinks dc.hlinks;
1236 ob "under-cursor-info" c.underinfo dc.underinfo;
1237 oi "vertical-margin" c.interpagespace dc.interpagespace;
1238 oz "zoom" c.zoom dc.zoom;
1239 ob "presentation" c.presentation dc.presentation;
1240 oi "rotation-angle" c.angle dc.angle;
1241 oFm "fit-model" c.fitmodel dc.fitmodel;
1242 oI "pixmap-cache-size" c.memlimit dc.memlimit;
1243 oi "tex-count" c.texcount dc.texcount;
1244 oi "slice-height" c.sliceheight dc.sliceheight;
1245 oi "thumbnail-width" c.thumbw dc.thumbw;
1246 oc "background-color" c.bgcolor dc.bgcolor;
1247 oA "scrollbar-color" c.sbarcolor dc.sbarcolor;
1248 oA "scrollbar-handle-color" c.sbarhndlcolor dc.sbarhndlcolor;
1249 oi "tile-width" c.tilew dc.tilew;
1250 oi "tile-height" c.tileh dc.tileh;
1251 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
1252 ob "checkers" c.checkers dc.checkers;
1253 oi "aalevel" c.aalevel dc.aalevel;
1254 ob "trim-margins" c.trimmargins dc.trimmargins;
1255 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
1256 os "uri-launcher" c.urilauncher dc.urilauncher;
1257 os "path-launcher" c.pathlauncher dc.pathlauncher;
1258 oC "color-space" c.colorspace dc.colorspace;
1259 ob "invert-colors" c.invert dc.invert;
1260 oF "brightness" c.colorscale dc.colorscale;
1261 oco "columns" c.columns dc.columns;
1262 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
1263 os "selection-command" c.selcmd dc.selcmd;
1264 os "synctex-command" c.stcmd dc.stcmd;
1265 os "pax-command" c.paxcmd dc.paxcmd;
1266 os "askpass-command" c.passcmd dc.passcmd;
1267 os "savepath-command" c.savecmd dc.savecmd;
1268 ob "update-cursor" c.updatecurs dc.updatecurs;
1269 oi "hint-font-size" c.hfsize dc.hfsize;
1270 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
1271 oF "page-scroll-scale" c.pgscale dc.pgscale;
1272 ob "use-pbo" c.usepbo dc.usepbo;
1273 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
1274 ob "remote-in-a-new-instance" c.riani dc.riani;
1275 op "point-and-x" c.pax dc.pax;
1276 oPm "point-and-x-mark" c.paxmark dc.paxmark;
1277 ob "scroll-bar-on-the-left" c.leftscroll dc.leftscroll;
1278 if not always
1279 then os "title" c.title dc.title;
1280 oL "last-visit" (Int64.of_float time) 0L;
1281 ob "edit-annotations-inline" c.annotinline dc.annotinline;
1282 ob "coarse-presentation-positioning" c.coarseprespos dc.coarseprespos;
1283 ob "use-document-css" c.usedoccss dc.usedoccss;
1286 let keymapsbuf always dc c =
1287 let open Buffer in
1288 let bb = create 16 in
1289 let rec loop = function
1290 | [] -> ()
1291 | (modename, h) :: rest ->
1292 let dh = findkeyhash dc modename in
1293 if always || h <> dh
1294 then (
1295 if Hashtbl.length h > 0
1296 then (
1297 if length bb > 0 then add_char bb '\n';
1298 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
1299 Hashtbl.iter (fun i o ->
1300 if always || match Hashtbl.find dh i
1301 with | dO -> dO <> o | exception Not_found -> false
1302 then
1303 let addkm (k, m) =
1304 if Wsi.withctrl m then add_string bb "ctrl-";
1305 if Wsi.withalt m then add_string bb "alt-";
1306 if Wsi.withshift m then add_string bb "shift-";
1307 if Wsi.withmeta m then add_string bb "meta-";
1308 add_string bb (Wsi.keyname k);
1310 let addkms l =
1311 let rec loop = function
1312 | [] -> ()
1313 | km :: [] -> addkm km
1314 | km :: rest -> addkm km; add_char bb ' '; loop rest
1316 loop l
1318 add_string bb "<map in='";
1319 addkm i;
1320 match o with
1321 | KMinsrt km ->
1322 add_string bb "' out='"; addkm km; add_string bb "'/>\n"
1324 | KMinsrl kms ->
1325 add_string bb "' out='"; addkms kms; add_string bb "'/>\n"
1327 | KMmulti (ins, kms) ->
1328 add_char bb ' '; addkms ins; add_string bb "' out='";
1329 addkms kms; add_string bb "'/>\n"
1330 ) h;
1331 add_string bb "</keymap>";
1334 loop rest
1336 loop c.keyhashes;
1340 let keystostrlist c =
1341 let rec loop accu = function
1342 | [] -> accu
1343 | (modename, h) :: rest ->
1344 let accu =
1345 if Hashtbl.length h > 0
1346 then (
1347 let accu = Printf.sprintf "\xc2\xb7Keys for %s" modename :: accu in
1348 Hashtbl.fold (fun i o a ->
1349 let bb = Buffer.create 10 in
1350 let addkm (k, m) =
1351 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
1352 if Wsi.withalt m then Buffer.add_string bb "alt-";
1353 if Wsi.withshift m then Buffer.add_string bb "shift-";
1354 if Wsi.withmeta m then Buffer.add_string bb "meta-";
1355 Buffer.add_string bb (Wsi.keyname k);
1357 let addkms l =
1358 let rec loop = function
1359 | [] -> ()
1360 | km :: [] -> addkm km
1361 | km :: rest ->
1362 addkm km; Buffer.add_char bb ' ';
1363 loop rest
1365 loop l
1367 addkm i;
1368 Buffer.add_char bb '\t';
1369 begin match o with
1370 | KMinsrt km -> addkm km
1371 | KMinsrl kms -> addkms kms
1372 | KMmulti (ins, kms) ->
1373 Buffer.add_char bb ' ';
1374 addkms ins;
1375 Buffer.add_string bb "\t";
1376 addkms kms
1377 end;
1378 Buffer.contents bb :: a
1379 ) h accu
1381 else accu
1383 loop accu rest
1385 loop [] c.keyhashes
1388 let save1 bb leavebirdseye x h dc =
1389 let uifontsize = fstate.fontsize in
1390 let dc = if conf.bedefault then conf else dc in
1391 Buffer.add_string bb "<llppconfig>\n";
1393 if nonemptystr !fontpath
1394 then Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
1395 uifontsize
1396 !fontpath
1397 else
1398 if uifontsize <> 14
1399 then Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
1402 Buffer.add_string bb "<defaults";
1403 add_attrs bb true dc dc nan;
1404 let kb = keymapsbuf true dc dc in
1405 if Buffer.length kb > 0
1406 then (
1407 Buffer.add_string bb ">\n";
1408 Buffer.add_buffer bb kb;
1409 Buffer.add_string bb "\n</defaults>\n";
1411 else Buffer.add_string bb "/>\n";
1413 let adddoc path pan anchor c bookmarks time origin =
1414 if not (bookmarks == [] && c = dc && anchor = emptyanchor)
1415 then (
1416 Printf.bprintf bb "<doc path='%s'"
1417 (Parser.enent path 0 (String.length path));
1419 if nonemptystr c.key
1420 then Printf.bprintf bb "\n key='%s'" c.key;
1422 if nonemptystr origin
1423 then Printf.bprintf bb "\n origin='%s'"
1424 (Parser.enent origin 0 (String.length origin));
1426 if anchor <> emptyanchor
1427 then (
1428 let n, rely, visy = anchor in
1429 Printf.bprintf bb "\n page='%d'" n;
1431 if rely > 1e-6
1432 then Printf.bprintf bb " rely='%f'" rely;
1434 if abs_float visy > 1e-6
1435 then Printf.bprintf bb " visy='%f'" visy;
1438 if pan != 0
1439 then Printf.bprintf bb " pan='%d'" pan;
1441 add_attrs bb false dc c time;
1442 if nonemptystr c.css
1443 then Printf.bprintf bb ">\n <css><![CDATA[%s]]></css>" c.css;
1444 let kb = keymapsbuf false dc c in
1446 begin match bookmarks with
1447 | [] ->
1448 if Buffer.length kb > 0
1449 then (
1450 Buffer.add_string bb ">\n";
1451 Buffer.add_buffer bb kb;
1452 Buffer.add_string bb "\n</doc>\n";
1454 else (
1455 if nonemptystr c.css
1456 then Buffer.add_string bb "\n</doc>\n"
1457 else Buffer.add_string bb "/>\n"
1459 | _ ->
1460 Buffer.add_string bb ">\n<bookmarks>\n";
1461 List.iter (fun (title, _, kind) ->
1462 begin match kind with
1463 | Oanchor (page, rely, visy) ->
1464 Printf.bprintf bb
1465 "<item title='%s' page='%d'"
1466 (Parser.enent title 0 (String.length title))
1467 page;
1468 if rely > 1e-6
1469 then Printf.bprintf bb " rely='%f'" rely;
1470 if abs_float visy > 1e-6
1471 then Printf.bprintf bb " visy='%f'" visy;
1473 | Ohistory _ | Onone | Ouri _ | Oremote _
1474 | Oremotedest _ | Olaunch _ -> error "unexpected link in bookmarks"
1475 end;
1476 Buffer.add_string bb "/>\n";
1477 ) bookmarks;
1478 Buffer.add_string bb "</bookmarks>";
1479 if Buffer.length kb > 0
1480 then (
1481 Buffer.add_string bb "\n";
1482 Buffer.add_buffer bb kb;
1484 Buffer.add_string bb "\n</doc>\n";
1485 end;
1489 let pan, conf =
1490 match state.mode with
1491 | Birdseye (c, pan, _, _, _) ->
1492 let beyecolumns =
1493 match conf.columns with
1494 | Cmulti ((c, _, _), _) -> Some c
1495 | Csingle _ -> None
1496 | Csplit _ -> None
1497 and columns =
1498 match c.columns with
1499 | Cmulti (c, _) -> Cmulti (c, E.a)
1500 | Csingle _ -> Csingle E.a
1501 | Csplit _ -> failwith "quit from bird's eye while split"
1503 pan, { c with beyecolumns = beyecolumns; columns = columns }
1504 | Textentry _
1505 | View
1506 | LinkNav _ -> x, conf
1508 let docpath = if nonemptystr state.path then abspath state.path else E.s in
1509 if nonemptystr docpath
1510 then (
1511 adddoc docpath pan (getanchor ())
1513 let autoscrollstep =
1514 match state.autoscroll with
1515 | Some step -> step
1516 | None -> conf.autoscrollstep
1518 begin match state.mode with
1519 | Birdseye beye -> leavebirdseye beye true
1520 | Textentry _
1521 | View
1522 | LinkNav _ -> ()
1523 end;
1524 let key = try Digest.file docpath |> Digest.to_hex
1525 with _ -> E.s in
1526 { conf with autoscrollstep; key }
1528 state.bookmarks
1529 (now ())
1530 state.origin
1532 Hashtbl.iter (fun path (c, bookmarks, x, anchor, origin) ->
1533 if docpath <> abspath path
1534 then adddoc path x anchor c bookmarks c.lastvisit origin
1535 ) h;
1536 Buffer.add_string bb "</llppconfig>\n";
1537 true;
1540 let save leavebirdseye =
1541 let relx = float state.x /. float state.winw in
1542 let w, h, x =
1543 let cx w = truncate (relx *. float w) in
1544 List.fold_left
1545 (fun (w, h, x) ws ->
1546 match ws with
1547 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh, cx conf.cwinw)
1548 | Wsi.MaxVert -> (w, conf.cwinh, x)
1549 | Wsi.MaxHorz -> (conf.cwinw, h, cx conf.cwinw)
1551 (state.winw, state.winh, state.x) state.winstate
1553 conf.cwinw <- w;
1554 conf.cwinh <- h;
1555 let bb = Buffer.create 32768 in
1556 let save2 (h, dc) = save1 bb leavebirdseye x h dc in
1557 if load1 save2 && Buffer.length bb > 0
1558 then
1560 let tmp = !confpath ^ ".tmp" in
1561 let oc = open_out_bin tmp in
1562 Buffer.output_buffer oc bb;
1563 close_out oc;
1564 Unix.rename tmp !confpath;
1565 with exn -> dolog "error saving configuration: %s" @@ exntos exn
1568 let gc () =
1569 let href = ref @@ Hashtbl.create 0 in
1570 let cref = ref defconf in
1571 let push (h, dc) =
1572 let f path v =
1573 if Sys.file_exists path
1574 then Some v
1575 else (dolog "removing entry for '%s'" path; None) in
1576 Hashtbl.filter_map_inplace f h;
1577 href := h;
1578 cref := dc;
1579 true
1581 ignore (load1 push);
1582 let bb = Buffer.create 32768 in
1583 let save2 (_h, dc) = save1 bb (fun _ _ -> ()) 0 !href dc in
1584 if load1 save2 && Buffer.length bb > 0
1585 then (
1587 let tmp = !confpath ^ ".tmp" in
1588 let oc = open_out_bin tmp in
1589 Buffer.output_buffer oc bb;
1590 close_out oc;
1591 Unix.rename tmp !confpath;
1592 with exn -> dolog "error saving configuration: %s" @@ exntos exn
1596 let logcurrently = function
1597 | Idle -> dolog "Idle"
1598 | Loading (l, gen) ->
1599 dolog "Loading %d gen=%d curgen=%d" l.pageno gen state.gen
1600 | Tiling (l, pageopaque, colorspace, angle, gen, col, row, tilew, tileh) ->
1601 dolog "Tiling %d[%d,%d] page=%s cs=%s angle=%d"
1602 l.pageno col row (~> pageopaque)
1603 (CSTE.to_string colorspace) angle;
1604 dolog "gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
1605 angle gen conf.angle state.gen
1606 tilew tileh
1607 conf.tilew conf.tileh
1608 | Outlining _ -> dolog "outlining"
1611 let logpage l =
1612 dolog {|l %d dim=%d {
1613 WxH %dx%d
1614 vWxH %dx%d
1615 pagex,y %d,%d
1616 dispx,y %d,%d
1617 column %d
1619 l.pageno l.pagedimno
1620 l.pagew l.pageh
1621 l.pagevw l.pagevh
1622 l.pagex l.pagey
1623 l.pagedispx l.pagedispy
1624 l.pagecol