Further work on annotations
[llpp.git] / config.ml
blobf7b57bbc3a292a5927dc45e478869822020d3390
1 open Utils;;
3 external fz_version : unit -> string = "ml_fz_version";;
5 type fontstate =
6 { mutable fontsize : int
7 ; mutable wwidth : float
8 ; mutable maxrows : int
12 let fstate =
13 { fontsize = 14
14 ; wwidth = nan
15 ; maxrows = -1
19 let scrollbvv = 1;;
20 let scrollbhv = 2;;
21 let fastghyllscroll = (5,1,2);;
22 let neatghyllscroll = (10,1,9);;
23 let pidcount = ref 0;;
25 let irect_of_string s =
26 Scanf.sscanf s "%d/%d/%d/%d" (fun x0 y0 x1 y1 -> (x0,y0,x1,y1))
29 let irect_to_string (x0,y0,x1,y1) =
30 Printf.sprintf "%d/%d/%d/%d" x0 y0 x1 y1
33 let ghyllscroll_of_string s =
34 match s with
35 | "fast" -> Some fastghyllscroll
36 | "neat" -> Some (10,1,9)
37 | "" | "none" -> None
38 | _ ->
39 let (n,a,b) as nab =
40 Scanf.sscanf s "%u,%u,%u" (fun n a b -> n, a, b) in
41 if n <= a || n <= b || a >= b
42 then error "invalid ghyll N(%d),A(%d),B(%d) (N <= A, A < B, N <= B)"
43 n a b;
44 Some nab
47 let ghyllscroll_to_string ((n, a, b) as nab) =
48 (**) if nab = fastghyllscroll then "fast"
49 else if nab = neatghyllscroll then "neat"
50 else Printf.sprintf "%d,%d,%d" n a b;
53 let multicolumns_to_string (n, a, b) =
54 if a = 0 && b = 0
55 then Printf.sprintf "%d" n
56 else Printf.sprintf "%d,%d,%d" n a b;
59 let multicolumns_of_string s =
60 try
61 (int_of_string s, 0, 0)
62 with _ ->
63 Scanf.sscanf s "%u,%u,%u" (fun n a b ->
64 if a > 1 || b > 1
65 then failwith "subtly broken"; (n, a, b)
69 type keymap =
70 | KMinsrt of key
71 | KMinsrl of key list
72 | KMmulti of key list * key list
73 and key = int * int
74 and keyhash = (key, keymap) Hashtbl.t
75 and keystate =
76 | KSnone
77 | KSinto of (key list * key list)
78 and interpagespace = int
79 and multicolumns = multicol * pagegeom
80 and singlecolumn = pagegeom
81 and splitcolumns = columncount * pagegeom
82 and pagegeom = (pdimno * x * y * (pageno * width * height * leftx)) array
83 and multicol = columncount * covercount * covercount
84 and pdimno = int
85 and columncount = int
86 and covercount = int
87 and fitmodel = | FitWidth | FitProportional | FitPage
88 and trimmargins = bool
89 and irect = (int * int * int * int)
90 and memsize = int
91 and texcount = int
92 and sliceheight = int
93 and angle = int
94 and params = (angle * fitmodel * trimparams
95 * texcount * sliceheight * memsize
96 * colorspace * fontpath * trimcachepath
97 * haspbo * usefontconfig)
98 and width = int
99 and height = int
100 and leftx = int
101 and opaque = Opaque.t
102 and recttype = int
103 and pixmapsize = int
104 and gen = int
105 and top = float
106 and dtop = float
107 and fontpath = string
108 and trimcachepath = string
109 and aalevel = int
110 and trimparams = (trimmargins * irect)
111 and colorspace = | Rgb | Bgr | Gray
112 and haspbo = bool
113 and usefontconfig = bool
114 and uri = string
115 and caption = string
116 and x = int
117 and y = int
118 and tilex = int
119 and tiley = int
120 and tileparams = (x * y * width * height * tilex * tiley)
121 and under =
122 | Unone
123 | Ulinkuri of string
124 | Ulinkgoto of (int * int)
125 | Utext of facename
126 | Uunexpected of string
127 | Ulaunch of launchcommand
128 | Unamed of destname
129 | Uremote of (filename * pageno)
130 | Uremotedest of (filename * destname)
131 | Uannotation of (opaque * slinkindex)
132 and slinkindex = int
133 and facename = string
134 and launchcommand = string
135 and filename = string
136 and pageno = int
137 and destname = string
138 and mark =
139 | Mark_page
140 | Mark_block
141 | Mark_line
142 | Mark_word
143 and link =
144 | Lnotfound
145 | Lfound of int
146 and linkdir =
147 | LDfirst
148 | LDlast
149 | LDfirstvisible of (int * int * int)
150 | LDleft of int
151 | LDright of int
152 | LDdown of int
153 | LDup of int
154 and pagewithlinks =
155 | Pwlnotfound
156 | Pwl of int
157 and scrollb = int
158 and anchor = pageno * top * dtop
159 and rect = float * float * float * float * float * float * float * float
160 and infochange = | Memused | Docinfo | Pdim
163 class type uioh = object
164 method display : unit
165 method key : int -> int -> uioh
166 method button : int -> bool -> int -> int -> int -> uioh
167 method multiclick : int -> int -> int -> int -> uioh
168 method motion : int -> int -> uioh
169 method pmotion : int -> int -> uioh
170 method infochanged : infochange -> unit
171 method scrollpw : (int * float * float)
172 method scrollph : (int * float * float)
173 method modehash : keyhash
174 method eformsgs : bool
175 method alwaysscrolly : bool
176 end;;
178 module type TextEnumType =
180 type t
181 val name : string
182 val names : string array
183 end;;
185 module TextEnumMake (Ten : TextEnumType) =
186 struct
187 let names = Ten.names;;
188 let to_int (t : Ten.t) = Obj.magic t;;
189 let to_string t = names.(to_int t);;
190 let of_int n : Ten.t = Obj.magic n;;
191 let of_string s =
192 let rec find i =
193 if i = Array.length names
194 then failwith ("invalid " ^ Ten.name ^ ": " ^ s)
195 else (
196 if Ten.names.(i) = s
197 then of_int i
198 else find (i+1)
200 in find 0;;
201 end;;
203 module CSTE = TextEnumMake (struct
204 type t = colorspace;;
205 let name = "colorspace";;
206 let names = [|"rgb"; "bgr"; "gray"|];;
207 end);;
209 module MTE = TextEnumMake (struct
210 type t = mark;;
211 let name = "mark";;
212 let names = [|"page"; "block"; "line"; "word"|];;
213 end);;
215 module FMTE = TextEnumMake (struct
216 type t = fitmodel;;
217 let name = "fitmodel";;
218 let names = [|"width"; "proportional"; "page"|];;
219 end);;
221 type conf =
222 { mutable scrollbw : int
223 ; mutable scrollh : int
224 ; mutable scrollb : scrollb
225 ; mutable icase : bool
226 ; mutable preload : bool
227 ; mutable pagebias : int
228 ; mutable verbose : bool
229 ; mutable debug : bool
230 ; mutable scrollstep : int
231 ; mutable hscrollstep : int
232 ; mutable maxhfit : bool
233 ; mutable crophack : bool
234 ; mutable autoscrollstep : int
235 ; mutable maxwait : float option
236 ; mutable hlinks : bool
237 ; mutable underinfo : bool
238 ; mutable interpagespace : interpagespace
239 ; mutable zoom : float
240 ; mutable presentation : bool
241 ; mutable angle : angle
242 ; mutable cwinw : int
243 ; mutable cwinh : int
244 ; mutable savebmarks : bool
245 ; mutable fitmodel : fitmodel
246 ; mutable trimmargins : trimmargins
247 ; mutable trimfuzz : irect
248 ; mutable memlimit : memsize
249 ; mutable texcount : texcount
250 ; mutable sliceheight : sliceheight
251 ; mutable thumbw : width
252 ; mutable jumpback : bool
253 ; mutable bgcolor : (float * float * float)
254 ; mutable bedefault : bool
255 ; mutable tilew : int
256 ; mutable tileh : int
257 ; mutable mustoresize : memsize
258 ; mutable checkers : bool
259 ; mutable aalevel : int
260 ; mutable urilauncher : string
261 ; mutable pathlauncher : string
262 ; mutable colorspace : colorspace
263 ; mutable invert : bool
264 ; mutable colorscale : float
265 ; mutable redirectstderr : bool
266 ; mutable ghyllscroll : (int * int * int) option
267 ; mutable columns : columns
268 ; mutable beyecolumns : columncount option
269 ; mutable selcmd : string
270 ; mutable paxcmd : string
271 ; mutable passcmd : string
272 ; mutable savecmd : string
273 ; mutable updatecurs : bool
274 ; mutable keyhashes : (string * keyhash) list
275 ; mutable hfsize : int
276 ; mutable pgscale : float
277 ; mutable usepbo : bool
278 ; mutable wheelbypage : bool
279 ; mutable stcmd : string
280 ; mutable riani : bool
281 ; mutable pax : (float * int * int) ref option
282 ; mutable paxmark : mark
283 ; mutable leftscroll : bool
284 ; mutable title : string
285 ; mutable lastvisit : float
287 and columns =
288 | Csingle of singlecolumn
289 | Cmulti of multicolumns
290 | Csplit of splitcolumns
291 and outlinekind =
292 | Onone
293 | Oanchor of anchor
294 | Ouri of uri
295 | Olaunch of launchcommand
296 | Oremote of (filename * pageno)
297 | Oremotedest of (filename * destname)
298 | Ohistory of (filename * (conf * outline list * x * anchor))
299 | Oaction of (unit -> unit)
300 and outline = (caption * outlinelevel * outlinekind)
301 and outlinelevel = int
304 type page =
305 { pageno : int
306 ; pagedimno : int
307 ; pagew : int
308 ; pageh : int
309 ; pagex : int
310 ; pagey : int
311 ; pagevw : int
312 ; pagevh : int
313 ; pagedispx : int
314 ; pagedispy : int
315 ; pagecol : int
319 type tile = opaque * pixmapsize * elapsed
320 and elapsed = float;;
321 type pagemapkey = pageno * gen;;
322 type tilemapkey = pageno * gen * colorspace * angle * width * height * col * row
323 and row = int
324 and col = int
325 and currently =
326 | Idle
327 | Loading of (page * gen)
328 | Tiling of (
329 page * opaque * colorspace * angle * gen * col * row * width * height
331 | Outlining of outline list
334 type mpos = int * int
335 and mstate =
336 | Msel of (mpos * mpos)
337 | Mpan of mpos
338 | Mscrolly | Mscrollx
339 | Mzoom of (buttonno * step)
340 | Mzoomrect of (mpos * mpos)
341 | Mnone
342 and buttonno = int
343 and step = int
346 type mode =
347 | Birdseye of (conf * leftx * pageno * pageno * anchor)
348 | Textentry of (textentry * onleave)
349 | View
350 | LinkNav of linktarget
351 and onleave = leavetextentrystatus -> unit
352 and leavetextentrystatus = | Cancel | Confirm
353 and helpitem = string * int * action
354 and action =
355 | Noaction
356 | Action of (uioh -> uioh)
357 and linktarget =
358 | Ltexact of (pageno * direction)
359 | Ltgendir of direction
360 | Ltnotready of (pageno * direction)
361 and direction = int (* -1, 0, 1 *)
362 and textentry = string * string * onhist option * onkey * ondone * cancelonempty
363 and onkey = string -> int -> te
364 and ondone = string -> unit
365 and histcancel = unit -> unit
366 and onhist = ((histcmd -> string) * histcancel)
367 and histcmd = HCnext | HCprev | HCfirst | HClast
368 and cancelonempty = bool
369 and te =
370 | TEstop
371 | TEdone of string
372 | TEcont of string
373 | TEswitch of textentry
376 type 'a circbuf =
377 { store : 'a array
378 ; mutable rc : int
379 ; mutable wc : int
380 ; mutable len : int
384 type state =
385 { mutable ss : Unix.file_descr
386 ; mutable wsfd : Unix.file_descr
387 ; mutable errfd : Unix.file_descr option
388 ; mutable stderr : Unix.file_descr
389 ; mutable errmsgs : Buffer.t
390 ; mutable newerrmsgs : bool
391 ; mutable w : int
392 ; mutable x : int
393 ; mutable y : int
394 ; mutable anchor : anchor
395 ; mutable ranchors : (string * string * anchor * string) list
396 ; mutable maxy : int
397 ; mutable layout : page list
398 ; pagemap : (pagemapkey, opaque) Hashtbl.t
399 ; tilemap : (tilemapkey, tile) Hashtbl.t
400 ; tilelru : (tilemapkey * opaque * pixmapsize) Queue.t
401 ; mutable pdims : (pageno * width * height * leftx) list
402 ; mutable pagecount : int
403 ; mutable currently : currently
404 ; mutable mstate : mstate
405 ; mutable searchpattern : string
406 ; mutable rects : (pageno * recttype * rect) list
407 ; mutable rects1 : (pageno * recttype * rect) list
408 ; mutable text : string
409 ; mutable winstate : Wsi.winstate list
410 ; mutable mode : mode
411 ; mutable uioh : uioh
412 ; mutable outlines : outline array
413 ; mutable bookmarks : outline list
414 ; mutable path : string
415 ; mutable password : string
416 ; mutable nameddest : string
417 ; mutable geomcmds : (string * ((string * (unit -> unit)) list))
418 ; mutable memused : memsize
419 ; mutable gen : gen
420 ; mutable throttle : (page list * int * float) option
421 ; mutable autoscroll : int option
422 ; mutable ghyll : (int option -> unit)
423 ; mutable help : helpitem array
424 ; mutable docinfo : (int * string) list
425 ; mutable checkerstexid : GlTex.texture_id option
426 ; hists : hists
427 ; mutable prevzoom : (float * int)
428 ; mutable progress : float
429 ; mutable redisplay : bool
430 ; mutable mpos : mpos
431 ; mutable keystate : keystate
432 ; mutable glinks : bool
433 ; mutable prevcolumns : (columns * float) option
434 ; mutable winw : int
435 ; mutable winh : int
436 ; mutable reprf : (unit -> unit)
437 ; mutable origin : string
438 ; mutable roam : (unit -> unit)
439 ; mutable bzoom : bool
440 ; mutable traw : [`float] Raw.t
441 ; mutable vraw : [`float] Raw.t
443 and hists =
444 { pat : string circbuf
445 ; pag : string circbuf
446 ; nav : anchor circbuf
447 ; sel : string circbuf
451 let emptyanchor = (0, 0.0, 0.0);;
452 let emptykeyhash = Hashtbl.create 0;;
453 let firstgeomcmds = E.s, [];;
454 let noghyll _ = ();;
455 let noreprf () = ();;
456 let noroam () = ();;
458 let nouioh : uioh = object (self)
459 method display = ()
460 method key _ _ = self
461 method multiclick _ _ _ _ = self
462 method button _ _ _ _ _ = self
463 method motion _ _ = self
464 method pmotion _ _ = self
465 method infochanged _ = ()
466 method scrollpw = (0, nan, nan)
467 method scrollph = (0, nan, nan)
468 method modehash = emptykeyhash
469 method eformsgs = false
470 method alwaysscrolly = false
471 end;;
473 let platform_to_string = function
474 | Punknown -> "unknown"
475 | Plinux -> "Linux"
476 | Posx -> "OSX"
477 | Psun -> "Sun"
478 | Pbsd -> "BSD"
479 | Pcygwin -> "Cygwin"
482 let version () =
483 Printf.sprintf "llpp version %s, fitz %s, ocaml %s/%d bit"
484 Help.version (fz_version ()) Sys.ocaml_version Sys.word_size
487 let geturl s =
488 let colonpos = try String.index s ':' with Not_found -> -1 in
489 let len = String.length s in
490 if colonpos >= 0 && colonpos + 3 < len
491 then (
492 if s.[colonpos+1] = '/' && s.[colonpos+2] = '/'
493 then
494 let schemestartpos =
495 try String.rindex_from s colonpos ' '
496 with Not_found -> -1
498 let scheme =
499 String.sub s (schemestartpos+1) (colonpos-1-schemestartpos)
501 match scheme with
502 | "http" | "ftp" | "mailto" ->
503 let epos =
504 try String.index_from s colonpos ' '
505 with Not_found -> len
507 String.sub s (schemestartpos+1) (epos-1-schemestartpos)
508 | _ -> E.s
509 else E.s
511 else E.s
514 let defconf =
515 { scrollbw = 7
516 ; scrollh = 12
517 ; scrollb = scrollbhv lor scrollbvv
518 ; icase = true
519 ; preload = true
520 ; pagebias = 0
521 ; verbose = false
522 ; debug = false
523 ; scrollstep = 24
524 ; hscrollstep = 24
525 ; maxhfit = true
526 ; crophack = false
527 ; autoscrollstep = 2
528 ; maxwait = None
529 ; hlinks = false
530 ; underinfo = false
531 ; interpagespace = 2
532 ; zoom = 1.0
533 ; presentation = false
534 ; angle = 0
535 ; cwinw = 900
536 ; cwinh = 900
537 ; savebmarks = true
538 ; fitmodel = FitProportional
539 ; trimmargins = false
540 ; trimfuzz = (0,0,0,0)
541 ; memlimit = 32 lsl 20
542 ; texcount = 256
543 ; sliceheight = 24
544 ; thumbw = 76
545 ; jumpback = true
546 ; bgcolor = (0.5, 0.5, 0.5)
547 ; bedefault = false
548 ; tilew = 2048
549 ; tileh = 2048
550 ; mustoresize = 256 lsl 20
551 ; checkers = true
552 ; aalevel = 8
553 ; urilauncher =
554 (match platform with
555 | Plinux | Psun | Pbsd -> "xdg-open \"%s\""
556 | Posx -> "open \"%s\""
557 | Pcygwin -> "cygstart \"%s\""
558 | Punknown -> "echo %s")
559 ; pathlauncher = "lp \"%s\""
560 ; selcmd =
561 (match platform with
562 | Plinux | Pbsd | Psun -> "xsel -i"
563 | Posx -> "pbcopy"
564 | Pcygwin -> "wsel"
565 | Punknown -> "cat")
566 ; paxcmd = "cat"
567 ; passcmd = E.s
568 ; savecmd = E.s
569 ; colorspace = Rgb
570 ; invert = false
571 ; colorscale = 1.0
572 ; redirectstderr = false
573 ; ghyllscroll = None
574 ; columns = Csingle [||]
575 ; beyecolumns = None
576 ; updatecurs = false
577 ; hfsize = 12
578 ; pgscale = 1.0
579 ; usepbo = false
580 ; wheelbypage = false
581 ; stcmd = "echo SyncTex"
582 ; riani = false
583 ; pax = None
584 ; paxmark = Mark_word
585 ; leftscroll = false
586 ; title = E.s
587 ; lastvisit = 0.0
588 ; keyhashes =
589 let mk n = (n, Hashtbl.create 1) in
590 [ mk "global"
591 ; mk "info"
592 ; mk "help"
593 ; mk "outline"
594 ; mk "listview"
595 ; mk "birdseye"
596 ; mk "textentry"
597 ; mk "links"
598 ; mk "view"
603 let conf = { defconf with angle = defconf.angle };;
605 let gotouri uri =
606 if emptystr conf.urilauncher
607 then (print_endline uri; -1)
608 else (
609 let url = geturl uri in
610 if emptystr url
611 then (Printf.eprintf "obtained empty url from uri %S\n" uri; -1)
612 else
613 let re = Str.regexp "%s" in
614 let command = Str.global_replace re url conf.urilauncher in
615 try popen command []
616 with exn ->
617 Printf.eprintf
618 "failed to execute `%s': %s\n" command (exntos exn);
619 flush stderr;
624 let makehelp () =
625 let strings =
626 version ()
627 :: "(searching in this text works just by typing (i.e. no initial '/'))"
628 :: E.s :: Help.keys
630 Array.of_list (
631 List.map (fun s ->
632 let url = geturl s in
633 if nonemptystr url
634 then (s, 0, Action (fun u ->
635 if gotouri url > 0
636 then incr pidcount; u))
637 else (s, 0, Noaction)
638 ) strings);
641 let cbnew n v =
642 { store = Array.make n v
643 ; rc = 0
644 ; wc = 0
645 ; len = 0
649 let cbcap b = Array.length b.store;;
651 let cbput b v =
652 let cap = cbcap b in
653 b.store.(b.wc) <- v;
654 b.wc <- (b.wc + 1) mod cap;
655 b.rc <- b.wc;
656 b.len <- min (b.len + 1) cap;
659 let cbempty b = b.len = 0;;
661 let cbgetg b circular dir =
662 if cbempty b
663 then b.store.(0)
664 else
665 let rc = b.rc + dir in
666 let rc =
667 if circular
668 then (
669 if rc = -1
670 then b.len-1
671 else (
672 if rc >= b.len
673 then 0
674 else rc
677 else bound rc 0 (b.len-1)
679 b.rc <- rc;
680 b.store.(rc);
683 let cbget b = cbgetg b false;;
684 let cbgetc b = cbgetg b true;;
686 let state =
687 { ss = Unix.stdin
688 ; wsfd = Unix.stdin
689 ; errfd = None
690 ; stderr = Unix.stderr
691 ; errmsgs = Buffer.create 0
692 ; newerrmsgs = false
693 ; x = 0
694 ; y = 0
695 ; w = 0
696 ; anchor = emptyanchor
697 ; ranchors = []
698 ; layout = []
699 ; maxy = max_int
700 ; tilelru = Queue.create ()
701 ; pagemap = Hashtbl.create 10
702 ; tilemap = Hashtbl.create 10
703 ; pdims = []
704 ; pagecount = 0
705 ; currently = Idle
706 ; mstate = Mnone
707 ; rects = []
708 ; rects1 = []
709 ; text = E.s
710 ; mode = View
711 ; winstate = []
712 ; searchpattern = E.s
713 ; outlines = E.a
714 ; bookmarks = []
715 ; path = E.s
716 ; password = E.s
717 ; nameddest = E.s
718 ; geomcmds = firstgeomcmds
719 ; hists =
720 { nav = cbnew 10 emptyanchor
721 ; pat = cbnew 10 E.s
722 ; pag = cbnew 10 E.s
723 ; sel = cbnew 10 E.s
725 ; memused = 0
726 ; gen = 0
727 ; throttle = None
728 ; autoscroll = None
729 ; ghyll = noghyll
730 ; help = makehelp ()
731 ; docinfo = []
732 ; checkerstexid = None
733 ; prevzoom = (1.0, 0)
734 ; progress = -1.0
735 ; uioh = nouioh
736 ; redisplay = true
737 ; mpos = (-1, -1)
738 ; keystate = KSnone
739 ; glinks = false
740 ; prevcolumns = None
741 ; winw = -1
742 ; winh = -1
743 ; reprf = noreprf
744 ; origin = E.s
745 ; roam = noroam
746 ; bzoom = false
747 ; traw = Raw.create_static `float ~len:8
748 ; vraw = Raw.create_static `float ~len:8
752 let copykeyhashes c =
753 List.map (fun (k, v) -> k, Hashtbl.copy v) c.keyhashes;
756 let calcips h =
757 let d = state.winh - h in
758 max conf.interpagespace ((d + 1) / 2)
761 let rowyh (c, coverA, coverB) b n =
762 if c = 1 || (n < coverA || n >= state.pagecount - coverB)
763 then
764 let _, _, vy, (_, _, h, _) = b.(n) in
765 (vy, h)
766 else
767 let n' = n - coverA in
768 let d = n' mod c in
769 let s = n - d in
770 let e = min state.pagecount (s + c) in
771 let rec find m miny maxh = if m = e then miny, maxh else
772 let _, _, y, (_, _, h, _) = b.(m) in
773 let miny = min miny y in
774 let maxh = max maxh h in
775 find (m+1) miny maxh
776 in find s max_int 0
779 let page_of_y y =
780 let ((c, coverA, coverB) as cl), b =
781 match conf.columns with
782 | Csingle b -> (1, 0, 0), b
783 | Cmulti (c, b) -> c, b
784 | Csplit (_, b) -> (1, 0, 0), b
786 if Array.length b = 0
787 then -1
788 else
789 let rec bsearch nmin nmax =
790 if nmin > nmax
791 then bound nmin 0 (state.pagecount-1)
792 else
793 let n = (nmax + nmin) / 2 in
794 let vy, h = rowyh cl b n in
795 let y0, y1 =
796 if conf.presentation
797 then
798 let ips = calcips h in
799 let y0 = vy - ips in
800 let y1 = vy + h + ips in
801 y0, y1
802 else (
803 if n = 0
804 then 0, vy + h + conf.interpagespace
805 else
806 let y0 = vy - conf.interpagespace in
807 y0, y0 + h + conf.interpagespace
810 if y >= y0 && y < y1
811 then (
812 if c = 1
813 then n
814 else (
815 if n > coverA
816 then
817 if n < state.pagecount - coverB
818 then ((n-coverA)/c)*c + coverA
819 else n
820 else n
823 else (
824 if y > y0
825 then bsearch (n+1) nmax
826 else bsearch nmin (n-1)
829 bsearch 0 (state.pagecount-1);
832 let calcheight () =
833 match conf.columns with
834 | Cmulti ((_, _, _) as cl, b) ->
835 if Array.length b > 0
836 then
837 let y, h = rowyh cl b (Array.length b - 1) in
838 y + h + (if conf.presentation then calcips h else 0)
839 else 0
840 | Csingle b ->
841 if Array.length b > 0
842 then
843 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
844 y + h + (if conf.presentation then calcips h else 0)
845 else 0
846 | Csplit (_, b) ->
847 if Array.length b > 0
848 then
849 let (_, _, y, (_, _, h, _)) = b.(Array.length b - 1) in
850 y + h
851 else 0
854 let getpageywh pageno =
855 let pageno = bound pageno 0 (state.pagecount-1) in
856 match conf.columns with
857 | Csingle b ->
858 if Array.length b = 0
859 then 0, 0, 0
860 else
861 let (_, _, y, (_, w, h, _)) = b.(pageno) in
862 let y =
863 if conf.presentation
864 then y - calcips h
865 else y
867 y, w, h
868 | Cmulti (cl, b) ->
869 if Array.length b = 0
870 then 0, 0, 0
871 else
872 let y, h = rowyh cl b pageno in
873 let (_, _, _, (_, w, _, _)) = b.(pageno) in
874 let y =
875 if conf.presentation
876 then y - calcips h
877 else y
879 y, w, h
880 | Csplit (c, b) ->
881 if Array.length b = 0
882 then 0, 0, 0
883 else
884 let n = pageno*c in
885 let (_, _, y, (_, w, h, _)) = b.(n) in
886 y, w / c, h
889 let getpageyh pageno =
890 let y,_,h = getpageywh pageno in
891 y, h;
894 let getpagedim pageno =
895 let rec f ppdim l =
896 match l with
897 | (n, _, _, _) as pdim :: rest ->
898 if n >= pageno
899 then (if n = pageno then pdim else ppdim)
900 else f pdim rest
902 | [] -> ppdim
904 f (-1, -1, -1, -1) state.pdims
907 let getpagey pageno = fst (getpageyh pageno);;
909 let getanchor1 l =
910 let top =
911 let coloff = l.pagecol * l.pageh in
912 float (l.pagey + coloff) /. float l.pageh
914 let dtop =
915 if l.pagedispy = 0
916 then
918 else (
919 if conf.presentation
920 then float l.pagedispy /. float (calcips l.pageh)
921 else float l.pagedispy /. float conf.interpagespace
924 (l.pageno, top, dtop)
927 let getanchor () =
928 match state.layout with
929 | l :: _ -> getanchor1 l
930 | [] ->
931 let n = page_of_y state.y in
932 if n = -1
933 then state.anchor
934 else
935 let y, h = getpageyh n in
936 let dy = y - state.y in
937 let dtop =
938 if conf.presentation
939 then
940 let ips = calcips h in
941 float (dy + ips) /. float ips
942 else
943 float dy /. float conf.interpagespace
945 (n, 0.0, dtop)
948 let fontpath = ref E.s;;
950 type historder = [ `lastvisit | `title | `path | `file ];;
951 let historder : historder ref = ref `lastvisit;;
953 module KeyMap =
954 Map.Make (struct type t = (int * int) let compare = compare end);;
956 open Parser;;
958 let unent s =
959 let l = String.length s in
960 let b = Buffer.create l in
961 unent b s 0 l;
962 Buffer.contents b;
965 let home =
966 try Sys.getenv "HOME"
967 with exn ->
968 prerr_endline
969 ("Can not determine home directory location: " ^ exntos exn);
973 let modifier_of_string = function
974 | "alt" -> Wsi.altmask
975 | "shift" -> Wsi.shiftmask
976 | "ctrl" | "control" -> Wsi.ctrlmask
977 | "meta" -> Wsi.metamask
978 | _ -> 0
981 let key_of_string =
982 let r = Str.regexp "-" in
983 fun s ->
984 let elems = Str.full_split r s in
985 let f n k m =
986 let g s =
987 let m1 = modifier_of_string s in
988 if m1 = 0
989 then (Wsi.namekey s, m)
990 else (k, m lor m1)
991 in function
992 | Str.Delim s when n land 1 = 0 -> g s
993 | Str.Text s -> g s
994 | Str.Delim _ -> (k, m)
996 let rec loop n k m = function
997 | [] -> (k, m)
998 | x :: xs ->
999 let k, m = f n k m x in
1000 loop (n+1) k m xs
1002 loop 0 0 0 elems
1005 let keys_of_string =
1006 let r = Str.regexp "[ \t]" in
1007 fun s ->
1008 let elems = Str.split r s in
1009 List.map key_of_string elems
1012 let config_of c attrs =
1013 let apply c k v =
1015 match k with
1016 | "scroll-bar-width" -> { c with scrollbw = max 0 (int_of_string v) }
1017 | "scroll-handle-height" -> { c with scrollh = max 0 (int_of_string v) }
1018 | "case-insensitive-search" -> { c with icase = bool_of_string v }
1019 | "preload" -> { c with preload = bool_of_string v }
1020 | "page-bias" -> { c with pagebias = int_of_string v }
1021 | "scroll-step" -> { c with scrollstep = max 1 (int_of_string v) }
1022 | "horizontal-scroll-step" ->
1023 { c with hscrollstep = max (int_of_string v) 1 }
1024 | "auto-scroll-step" ->
1025 { c with autoscrollstep = max 0 (int_of_string v) }
1026 | "max-height-fit" -> { c with maxhfit = bool_of_string v }
1027 | "crop-hack" -> { c with crophack = bool_of_string v }
1028 | "throttle" ->
1029 let mw =
1030 match String.lowercase v with
1031 | "true" -> Some infinity
1032 | "false" -> None
1033 | f -> Some (float_of_string f)
1035 { c with maxwait = mw}
1036 | "highlight-links" -> { c with hlinks = bool_of_string v }
1037 | "under-cursor-info" -> { c with underinfo = bool_of_string v }
1038 | "vertical-margin" ->
1039 { c with interpagespace = max 0 (int_of_string v) }
1040 | "zoom" ->
1041 let zoom = float_of_string v /. 100. in
1042 let zoom = max zoom 0.0 in
1043 { c with zoom = zoom }
1044 | "presentation" -> { c with presentation = bool_of_string v }
1045 | "rotation-angle" -> { c with angle = int_of_string v }
1046 | "width" -> { c with cwinw = max 20 (int_of_string v) }
1047 | "height" -> { c with cwinh = max 20 (int_of_string v) }
1048 | "persistent-bookmarks" -> { c with savebmarks = bool_of_string v }
1049 | "proportional-display" ->
1050 let fm =
1051 if bool_of_string v
1052 then FitProportional
1053 else FitWidth
1055 { c with fitmodel = fm }
1056 | "fit-model" -> { c with fitmodel = FMTE.of_string v }
1057 | "pixmap-cache-size" ->
1058 { c with memlimit = max 2 (int_of_string_with_suffix v) }
1059 | "tex-count" -> { c with texcount = max 1 (int_of_string v) }
1060 | "slice-height" -> { c with sliceheight = max 2 (int_of_string v) }
1061 | "thumbnail-width" -> { c with thumbw = max 2 (int_of_string v) }
1062 | "persistent-location" -> { c with jumpback = bool_of_string v }
1063 | "background-color" -> { c with bgcolor = color_of_string v }
1064 | "tile-width" -> { c with tilew = max 2 (int_of_string v) }
1065 | "tile-height" -> { c with tileh = max 2 (int_of_string v) }
1066 | "mupdf-store-size" ->
1067 { c with mustoresize = max 1024 (int_of_string_with_suffix v) }
1068 | "checkers" -> { c with checkers = bool_of_string v }
1069 | "aalevel" -> { c with aalevel = max 0 (int_of_string v) }
1070 | "trim-margins" -> { c with trimmargins = bool_of_string v }
1071 | "trim-fuzz" -> { c with trimfuzz = irect_of_string v }
1072 | "uri-launcher" -> { c with urilauncher = unent v }
1073 | "path-launcher" -> { c with pathlauncher = unent v }
1074 | "color-space" -> { c with colorspace = CSTE.of_string v }
1075 | "invert-colors" -> { c with invert = bool_of_string v }
1076 | "brightness" -> { c with colorscale = float_of_string v }
1077 | "redirectstderr" -> { c with redirectstderr = bool_of_string v }
1078 | "ghyllscroll" -> { c with ghyllscroll = ghyllscroll_of_string v }
1079 | "columns" ->
1080 let (n, _, _) as nab = multicolumns_of_string v in
1081 if n < 0
1082 then { c with columns = Csplit (-n, E.a) }
1083 else { c with columns = Cmulti (nab, E.a) }
1084 | "birds-eye-columns" ->
1085 { c with beyecolumns = Some (max (int_of_string v) 2) }
1086 | "selection-command" -> { c with selcmd = unent v }
1087 | "synctex-command" -> { c with stcmd = unent v }
1088 | "pax-command" -> { c with paxcmd = unent v }
1089 | "askpass-command" -> { c with passcmd = unent v }
1090 | "savepath-command" -> { c with savecmd = unent v }
1091 | "update-cursor" -> { c with updatecurs = bool_of_string v }
1092 | "hint-font-size" -> { c with hfsize = bound (int_of_string v) 5 100 }
1093 | "page-scroll-scale" -> { c with pgscale = float_of_string v }
1094 | "use-pbo" -> { c with usepbo = bool_of_string v }
1095 | "wheel-scrolls-pages" -> { c with wheelbypage = bool_of_string v }
1096 | "horizontal-scrollbar-visible" ->
1097 let b =
1098 if bool_of_string v
1099 then c.scrollb lor scrollbhv
1100 else c.scrollb land (lnot scrollbhv)
1102 { c with scrollb = b }
1103 | "vertical-scrollbar-visible" ->
1104 let b =
1105 if bool_of_string v
1106 then c.scrollb lor scrollbvv
1107 else c.scrollb land (lnot scrollbvv)
1109 { c with scrollb = b }
1110 | "remote-in-a-new-instance" -> { c with riani = bool_of_string v }
1111 | "point-and-x" ->
1112 { c with pax =
1113 if bool_of_string v
1114 then Some (ref (0.0, 0, 0))
1115 else None }
1116 | "point-and-x-mark" -> { c with paxmark = MTE.of_string v }
1117 | "scroll-bar-on-the-left" -> { c with leftscroll = bool_of_string v }
1118 | "title" -> { c with title = unent v }
1119 | "last-visit" -> { c with lastvisit = float_of_string v }
1120 | _ -> c
1121 with exn ->
1122 prerr_endline ("Error processing attribute (`" ^
1123 k ^ "'=`" ^ v ^ "'): " ^ exntos exn);
1126 let rec fold c = function
1127 | [] -> c
1128 | (k, v) :: rest ->
1129 let c = apply c k v in
1130 fold c rest
1132 fold { c with keyhashes = copykeyhashes c } attrs;
1135 let fromstring f pos n v d =
1136 try f v
1137 with exn ->
1138 dolog "Error processing attribute (%S=%S) at %d\n%s"
1139 n v pos (exntos exn)
1144 let bookmark_of attrs =
1145 let rec fold title page rely visy = function
1146 | ("title", v) :: rest -> fold v page rely visy rest
1147 | ("page", v) :: rest -> fold title v rely visy rest
1148 | ("rely", v) :: rest -> fold title page v visy rest
1149 | ("visy", v) :: rest -> fold title page rely v rest
1150 | _ :: rest -> fold title page rely visy rest
1151 | [] -> title, page, rely, visy
1153 fold "invalid" "0" "0" "0" attrs
1156 let doc_of attrs =
1157 let rec fold path page rely pan visy = function
1158 | ("path", v) :: rest -> fold v page rely pan visy rest
1159 | ("page", v) :: rest -> fold path v rely pan visy rest
1160 | ("rely", v) :: rest -> fold path page v pan visy rest
1161 | ("pan", v) :: rest -> fold path page rely v visy rest
1162 | ("visy", v) :: rest -> fold path page rely pan v rest
1163 | _ :: rest -> fold path page rely pan visy rest
1164 | [] -> path, page, rely, pan, visy
1166 fold E.s "0" "0" "0" "0" attrs
1169 let map_of attrs =
1170 let rec fold rs ls = function
1171 | ("out", v) :: rest -> fold v ls rest
1172 | ("in", v) :: rest -> fold rs v rest
1173 | _ :: rest -> fold ls rs rest
1174 | [] -> ls, rs
1176 fold E.s E.s attrs
1179 let setconf dst src =
1180 dst.scrollbw <- src.scrollbw;
1181 dst.scrollh <- src.scrollh;
1182 dst.icase <- src.icase;
1183 dst.preload <- src.preload;
1184 dst.pagebias <- src.pagebias;
1185 dst.verbose <- src.verbose;
1186 dst.scrollstep <- src.scrollstep;
1187 dst.maxhfit <- src.maxhfit;
1188 dst.crophack <- src.crophack;
1189 dst.autoscrollstep <- src.autoscrollstep;
1190 dst.maxwait <- src.maxwait;
1191 dst.hlinks <- src.hlinks;
1192 dst.underinfo <- src.underinfo;
1193 dst.interpagespace <- src.interpagespace;
1194 dst.zoom <- src.zoom;
1195 dst.presentation <- src.presentation;
1196 dst.angle <- src.angle;
1197 dst.cwinw <- src.cwinw;
1198 dst.cwinh <- src.cwinh;
1199 dst.savebmarks <- src.savebmarks;
1200 dst.memlimit <- src.memlimit;
1201 dst.fitmodel <- src.fitmodel;
1202 dst.texcount <- src.texcount;
1203 dst.sliceheight <- src.sliceheight;
1204 dst.thumbw <- src.thumbw;
1205 dst.jumpback <- src.jumpback;
1206 dst.bgcolor <- src.bgcolor;
1207 dst.tilew <- src.tilew;
1208 dst.tileh <- src.tileh;
1209 dst.mustoresize <- src.mustoresize;
1210 dst.checkers <- src.checkers;
1211 dst.aalevel <- src.aalevel;
1212 dst.trimmargins <- src.trimmargins;
1213 dst.trimfuzz <- src.trimfuzz;
1214 dst.urilauncher <- src.urilauncher;
1215 dst.colorspace <- src.colorspace;
1216 dst.invert <- src.invert;
1217 dst.colorscale <- src.colorscale;
1218 dst.redirectstderr <- src.redirectstderr;
1219 dst.ghyllscroll <- src.ghyllscroll;
1220 dst.columns <- src.columns;
1221 dst.beyecolumns <- src.beyecolumns;
1222 dst.selcmd <- src.selcmd;
1223 dst.updatecurs <- src.updatecurs;
1224 dst.pathlauncher <- src.pathlauncher;
1225 dst.keyhashes <- copykeyhashes src;
1226 dst.hfsize <- src.hfsize;
1227 dst.hscrollstep <- src.hscrollstep;
1228 dst.pgscale <- src.pgscale;
1229 dst.usepbo <- src.usepbo;
1230 dst.wheelbypage <- src.wheelbypage;
1231 dst.stcmd <- src.stcmd;
1232 dst.paxcmd <- src.paxcmd;
1233 dst.passcmd <- src.passcmd;
1234 dst.savecmd <- src.savecmd;
1235 dst.scrollb <- src.scrollb;
1236 dst.riani <- src.riani;
1237 dst.paxmark <- src.paxmark;
1238 dst.leftscroll <- src.leftscroll;
1239 dst.title <- src.title;
1240 dst.pax <-
1241 if src.pax = None
1242 then None
1243 else Some ((ref (0.0, 0, 0)));
1246 let findkeyhash c name =
1247 try List.assoc name c.keyhashes
1248 with Not_found -> failwith ("invalid mode name `" ^ name ^ "'")
1251 let get s =
1252 let h = Hashtbl.create 10 in
1253 let dc = { defconf with angle = defconf.angle } in
1254 let rec toplevel v t spos _ =
1255 match t with
1256 | Vdata | Vcdata | Vend -> v
1257 | Vopen ("llppconfig", _, closed) ->
1258 if closed
1259 then v
1260 else { v with f = llppconfig }
1261 | Vopen _ ->
1262 error "unexpected subelement at top level" s spos
1263 | Vclose _ -> error "unexpected close at top level" s spos
1265 and llppconfig v t spos _ =
1266 match t with
1267 | Vdata | Vcdata -> v
1268 | Vend -> error "unexpected end of input in llppconfig" s spos
1269 | Vopen ("defaults", attrs, closed) ->
1270 let c = config_of dc attrs in
1271 setconf dc c;
1272 if closed
1273 then v
1274 else { v with f = defaults }
1276 | Vopen ("ui-font", attrs, closed) ->
1277 let rec getsize size = function
1278 | [] -> size
1279 | ("size", v) :: rest ->
1280 let size =
1281 fromstring int_of_string spos "size" v fstate.fontsize in
1282 getsize size rest
1283 | l -> getsize size l
1285 fstate.fontsize <- getsize fstate.fontsize attrs;
1286 if closed
1287 then v
1288 else { v with f = uifont (Buffer.create 10) }
1290 | Vopen ("doc", attrs, closed) ->
1291 let pathent, spage, srely, span, svisy = doc_of attrs in
1292 let path = unent pathent
1293 and pageno = fromstring int_of_string spos "page" spage 0
1294 and rely = fromstring float_of_string spos "rely" srely 0.0
1295 and pan = fromstring int_of_string spos "pan" span 0
1296 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
1297 let c = config_of dc attrs in
1298 let anchor = (pageno, rely, visy) in
1299 if closed
1300 then (Hashtbl.add h path (c, [], pan, anchor); v)
1301 else { v with f = doc path pan anchor c [] }
1303 | Vopen _ ->
1304 error "unexpected subelement in llppconfig" s spos
1306 | Vclose "llppconfig" -> { v with f = toplevel }
1307 | Vclose _ -> error "unexpected close in llppconfig" s spos
1309 and defaults v t spos _ =
1310 match t with
1311 | Vdata | Vcdata -> v
1312 | Vend -> error "unexpected end of input in defaults" s spos
1313 | Vopen ("keymap", attrs, closed) ->
1314 let modename =
1315 try List.assoc "mode" attrs
1316 with Not_found -> "global" in
1317 if closed
1318 then v
1319 else
1320 let ret keymap =
1321 let h = findkeyhash dc modename in
1322 KeyMap.iter (Hashtbl.replace h) keymap;
1323 defaults
1325 { v with f = pkeymap ret KeyMap.empty }
1327 | Vopen (_, _, _) ->
1328 error "unexpected subelement in defaults" s spos
1330 | Vclose "defaults" ->
1331 { v with f = llppconfig }
1333 | Vclose _ -> error "unexpected close in defaults" s spos
1335 and uifont b v t spos epos =
1336 match t with
1337 | Vdata | Vcdata ->
1338 Buffer.add_substring b s spos (epos - spos);
1340 | Vopen (_, _, _) ->
1341 error "unexpected subelement in ui-font" s spos
1342 | Vclose "ui-font" ->
1343 if emptystr !fontpath
1344 then fontpath := Buffer.contents b;
1345 { v with f = llppconfig }
1346 | Vclose _ -> error "unexpected close in ui-font" s spos
1347 | Vend -> error "unexpected end of input in ui-font" s spos
1349 and doc path pan anchor c bookmarks v t spos _ =
1350 match t with
1351 | Vdata | Vcdata -> v
1352 | Vend -> error "unexpected end of input in doc" s spos
1353 | Vopen ("bookmarks", _, closed) ->
1354 if closed
1355 then v
1356 else { v with f = pbookmarks path pan anchor c bookmarks }
1358 | Vopen ("keymap", attrs, closed) ->
1359 let modename =
1360 try List.assoc "mode" attrs
1361 with Not_found -> "global"
1363 if closed
1364 then v
1365 else
1366 let ret keymap =
1367 let h = findkeyhash c modename in
1368 KeyMap.iter (Hashtbl.replace h) keymap;
1369 doc path pan anchor c bookmarks
1371 { v with f = pkeymap ret KeyMap.empty }
1373 | Vopen (_, _, _) ->
1374 error "unexpected subelement in doc" s spos
1376 | Vclose "doc" ->
1377 Hashtbl.add h path (c, List.rev bookmarks, pan, anchor);
1378 { v with f = llppconfig }
1380 | Vclose _ -> error "unexpected close in doc" s spos
1382 and pkeymap ret keymap v t spos _ =
1383 match t with
1384 | Vdata | Vcdata -> v
1385 | Vend -> error "unexpected end of input in keymap" s spos
1386 | Vopen ("map", attrs, closed) ->
1387 let r, l = map_of attrs in
1388 let kss = fromstring keys_of_string spos "in" r [] in
1389 let lss = fromstring keys_of_string spos "out" l [] in
1390 let keymap =
1391 match kss with
1392 | [] -> keymap
1393 | ks :: [] -> KeyMap.add ks (KMinsrl lss) keymap
1394 | ks :: rest -> KeyMap.add ks (KMmulti (rest, lss)) keymap
1396 if closed
1397 then { v with f = pkeymap ret keymap }
1398 else
1399 let f () = v in
1400 { v with f = skip "map" f }
1402 | Vopen _ ->
1403 error "unexpected subelement in keymap" s spos
1405 | Vclose "keymap" ->
1406 { v with f = ret keymap }
1408 | Vclose _ -> error "unexpected close in keymap" s spos
1410 and pbookmarks path pan anchor c bookmarks v t spos _ =
1411 match t with
1412 | Vdata | Vcdata -> v
1413 | Vend -> error "unexpected end of input in bookmarks" s spos
1414 | Vopen ("item", attrs, closed) ->
1415 let titleent, spage, srely, svisy = bookmark_of attrs in
1416 let page = fromstring int_of_string spos "page" spage 0
1417 and rely = fromstring float_of_string spos "rely" srely 0.0
1418 and visy = fromstring float_of_string spos "visy" svisy 0.0 in
1419 let bookmarks =
1420 (unent titleent, 0, Oanchor (page, rely, visy)) :: bookmarks
1422 if closed
1423 then { v with f = pbookmarks path pan anchor c bookmarks }
1424 else
1425 let f () = v in
1426 { v with f = skip "item" f }
1428 | Vopen _ ->
1429 error "unexpected subelement in bookmarks" s spos
1431 | Vclose "bookmarks" ->
1432 { v with f = doc path pan anchor c bookmarks }
1434 | Vclose _ -> Parser.parse_error "unexpected close in bookmarks" s spos
1436 and skip tag f v t spos _ =
1437 match t with
1438 | Vdata | Vcdata -> v
1439 | Vend ->
1440 Parser.parse_error ("unexpected end of input in skipped " ^ tag) s spos
1441 | Vopen (tag', _, closed) ->
1442 if closed
1443 then v
1444 else
1445 let f' () = { v with f = skip tag f } in
1446 { v with f = skip tag' f' }
1447 | Vclose ctag ->
1448 if tag = ctag
1449 then f ()
1450 else Parser.parse_error ("unexpected close in skipped " ^ tag) s spos
1453 parse { f = toplevel; accu = () } s;
1454 h, dc;
1457 let do_load f ic =
1459 let len = in_channel_length ic in
1460 let s = really_input_string ic len in
1461 f s;
1462 with
1463 | Parse_error (msg, s, pos) ->
1464 let subs = subs s pos in
1465 Utils.error "parse error: %s: at %d [..%s..]" msg pos subs
1467 | exn ->
1468 failwith ("config load error: " ^ exntos exn)
1471 let defconfpath =
1472 let dir =
1473 let xdgconfdir = Utils.getenvwithdef "XDG_CONFIG_HOME" E.s in
1474 if xdgconfdir == E.s
1475 then
1477 let dir = Filename.concat home ".config" in
1478 if Sys.is_directory dir then dir else home
1479 with _ -> home
1480 else xdgconfdir
1482 Filename.concat dir "llpp.conf"
1485 let confpath = ref defconfpath;;
1487 let load1 f =
1488 if Sys.file_exists !confpath
1489 then
1490 match
1491 (try Some (open_in_bin !confpath)
1492 with exn ->
1493 prerr_endline
1494 ("Error opening configuration file `" ^ !confpath ^ "': " ^
1495 exntos exn);
1496 None
1498 with
1499 | Some ic ->
1500 let success =
1502 f (do_load get ic)
1503 with exn ->
1504 prerr_endline
1505 ("Error loading configuration from `" ^ !confpath ^ "': " ^
1506 exntos exn);
1507 false
1509 close_in ic;
1510 success
1512 | None -> false
1513 else
1514 f (Hashtbl.create 0, defconf)
1517 let load openlast =
1518 let f (h, dc) =
1519 if openlast
1520 then (
1521 let path, _ =
1522 Hashtbl.fold
1523 (fun path (conf, _, _, _) ((_, besttime) as best) ->
1524 if conf.lastvisit > besttime
1525 then (path, conf.lastvisit)
1526 else best)
1528 (state.path, -.infinity)
1530 state.path <- path;
1532 let pc, pb, px, pa =
1534 let path =
1535 if emptystr state.origin
1536 then state.path
1537 else state.origin
1539 let absname = abspath path in
1540 Hashtbl.find h absname
1541 with Not_found -> dc, [], 0, emptyanchor
1543 setconf defconf dc;
1544 setconf conf pc;
1545 state.bookmarks <- pb;
1546 state.x <- px;
1547 if conf.jumpback
1548 then state.anchor <- pa;
1549 cbput state.hists.nav pa;
1550 true
1552 load1 f
1555 let gethist listref =
1556 let f (h, _) =
1557 listref :=
1558 Hashtbl.fold (fun path (pc, pb, px, pa) accu ->
1559 (path, pc, pb, px, pa) :: accu)
1560 h [];
1561 true
1563 load1 f
1566 let add_attrs bb always dc c time =
1567 let ob s a b =
1568 if always || a != b
1569 then Printf.bprintf bb "\n %s='%b'" s a
1570 and op s a b =
1571 if always || a <> b
1572 then Printf.bprintf bb "\n %s='%b'" s (a != None)
1573 and oi s a b =
1574 if always || a != b
1575 then Printf.bprintf bb "\n %s='%d'" s a
1576 and oI s a b =
1577 if always || a != b
1578 then Printf.bprintf bb "\n %s='%s'" s (string_with_suffix_of_int a)
1579 and oz s a b =
1580 if always || a <> b
1581 then Printf.bprintf bb "\n %s='%g'" s (a*.100.)
1582 and oF s a b =
1583 if always || a <> b
1584 then Printf.bprintf bb "\n %s='%f'" s a
1585 and oc s a b =
1586 if always || a <> b
1587 then
1588 Printf.bprintf bb "\n %s='%s'" s (color_to_string a)
1589 and oC s a b =
1590 if always || a <> b
1591 then
1592 Printf.bprintf bb "\n %s='%s'" s (CSTE.to_string a)
1593 and oR s a b =
1594 if always || a <> b
1595 then
1596 Printf.bprintf bb "\n %s='%s'" s (irect_to_string a)
1597 and os s a b =
1598 if always || a <> b
1599 then
1600 Printf.bprintf bb "\n %s='%s'" s (enent a 0 (String.length a))
1601 and og s a b =
1602 if always || a <> b
1603 then
1604 match a with
1605 | Some (_N, _A, _B) ->
1606 Printf.bprintf bb "\n %s='%u,%u,%u'" s _N _A _B
1607 | None ->
1608 match b with
1609 | None -> ()
1610 | _ ->
1611 Printf.bprintf bb "\n %s='none'" s
1612 and oW s a b =
1613 if always || a <> b
1614 then
1615 let v =
1616 match a with
1617 | None -> "false"
1618 | Some f ->
1619 if f = infinity
1620 then "true"
1621 else string_of_float f
1623 Printf.bprintf bb "\n %s='%s'" s v
1624 and oco s a b =
1625 if always || a <> b
1626 then
1627 match a with
1628 | Cmulti ((n, a, b), _) when n > 1 ->
1629 Printf.bprintf bb "\n %s='%d,%d,%d'" s n a b
1630 | Csplit (n, _) when n > 1 ->
1631 Printf.bprintf bb "\n %s='%d'" s ~-n
1632 | Cmulti _ | Csplit _ | Csingle _ -> ()
1633 and obeco s a b =
1634 if always || a <> b
1635 then
1636 match a with
1637 | Some c when c > 1 -> Printf.bprintf bb "\n %s='%d'" s c
1638 | _ -> ()
1639 and oFm s a b =
1640 if always || a <> b
1641 then
1642 Printf.bprintf bb "\n %s='%s'" s (FMTE.to_string a)
1643 and oSv s a b m =
1644 if always || a <> b
1645 then
1646 Printf.bprintf bb "\n %s='%b'" s (a land m != 0)
1647 and oPm s a b =
1648 if always || a <> b
1649 then
1650 Printf.bprintf bb "\n %s='%s'" s (MTE.to_string a)
1652 oi "width" c.cwinw dc.cwinw;
1653 oi "height" c.cwinh dc.cwinh;
1654 oi "scroll-bar-width" c.scrollbw dc.scrollbw;
1655 oi "scroll-handle-height" c.scrollh dc.scrollh;
1656 oSv "horizontal-scrollbar-visible" c.scrollb dc.scrollb scrollbhv;
1657 oSv "vertical-scrollbar-visible" c.scrollb dc.scrollb scrollbvv;
1658 ob "case-insensitive-search" c.icase dc.icase;
1659 ob "preload" c.preload dc.preload;
1660 oi "page-bias" c.pagebias dc.pagebias;
1661 oi "scroll-step" c.scrollstep dc.scrollstep;
1662 oi "auto-scroll-step" c.autoscrollstep dc.autoscrollstep;
1663 ob "max-height-fit" c.maxhfit dc.maxhfit;
1664 ob "crop-hack" c.crophack dc.crophack;
1665 oW "throttle" c.maxwait dc.maxwait;
1666 ob "highlight-links" c.hlinks dc.hlinks;
1667 ob "under-cursor-info" c.underinfo dc.underinfo;
1668 oi "vertical-margin" c.interpagespace dc.interpagespace;
1669 oz "zoom" c.zoom dc.zoom;
1670 ob "presentation" c.presentation dc.presentation;
1671 oi "rotation-angle" c.angle dc.angle;
1672 ob "persistent-bookmarks" c.savebmarks dc.savebmarks;
1673 oFm "fit-model" c.fitmodel dc.fitmodel;
1674 oI "pixmap-cache-size" c.memlimit dc.memlimit;
1675 oi "tex-count" c.texcount dc.texcount;
1676 oi "slice-height" c.sliceheight dc.sliceheight;
1677 oi "thumbnail-width" c.thumbw dc.thumbw;
1678 ob "persistent-location" c.jumpback dc.jumpback;
1679 oc "background-color" c.bgcolor dc.bgcolor;
1680 oi "tile-width" c.tilew dc.tilew;
1681 oi "tile-height" c.tileh dc.tileh;
1682 oI "mupdf-store-size" c.mustoresize dc.mustoresize;
1683 ob "checkers" c.checkers dc.checkers;
1684 oi "aalevel" c.aalevel dc.aalevel;
1685 ob "trim-margins" c.trimmargins dc.trimmargins;
1686 oR "trim-fuzz" c.trimfuzz dc.trimfuzz;
1687 os "uri-launcher" c.urilauncher dc.urilauncher;
1688 os "path-launcher" c.pathlauncher dc.pathlauncher;
1689 oC "color-space" c.colorspace dc.colorspace;
1690 ob "invert-colors" c.invert dc.invert;
1691 oF "brightness" c.colorscale dc.colorscale;
1692 ob "redirectstderr" c.redirectstderr dc.redirectstderr;
1693 og "ghyllscroll" c.ghyllscroll dc.ghyllscroll;
1694 oco "columns" c.columns dc.columns;
1695 obeco "birds-eye-columns" c.beyecolumns dc.beyecolumns;
1696 os "selection-command" c.selcmd dc.selcmd;
1697 os "synctex-command" c.stcmd dc.stcmd;
1698 os "pax-command" c.paxcmd dc.paxcmd;
1699 os "askpass-command" c.passcmd dc.passcmd;
1700 os "savepath-command" c.savecmd dc.savecmd;
1701 ob "update-cursor" c.updatecurs dc.updatecurs;
1702 oi "hint-font-size" c.hfsize dc.hfsize;
1703 oi "horizontal-scroll-step" c.hscrollstep dc.hscrollstep;
1704 oF "page-scroll-scale" c.pgscale dc.pgscale;
1705 ob "use-pbo" c.usepbo dc.usepbo;
1706 ob "wheel-scrolls-pages" c.wheelbypage dc.wheelbypage;
1707 ob "remote-in-a-new-instance" c.riani dc.riani;
1708 op "point-and-x" c.pax dc.pax;
1709 oPm "point-and-x-mark" c.paxmark dc.paxmark;
1710 ob "scroll-bar-on-the-left" c.leftscroll dc.leftscroll;
1711 if not always
1712 then os "title" c.title dc.title;
1713 oF "last-visit" (snd (modf time)) 0.0;
1716 let keymapsbuf always dc c =
1717 let bb = Buffer.create 16 in
1718 let rec loop = function
1719 | [] -> ()
1720 | (modename, h) :: rest ->
1721 let dh = findkeyhash dc modename in
1722 if always || h <> dh
1723 then (
1724 if Hashtbl.length h > 0
1725 then (
1726 if Buffer.length bb > 0
1727 then Buffer.add_char bb '\n';
1728 Printf.bprintf bb "<keymap mode='%s'>\n" modename;
1729 Hashtbl.iter (fun i o ->
1730 let isdifferent = always ||
1732 let dO = Hashtbl.find dh i in
1733 dO <> o
1734 with Not_found -> true
1736 if isdifferent
1737 then
1738 let addkm (k, m) =
1739 if Wsi.withctrl m then Buffer.add_string bb "ctrl-";
1740 if Wsi.withalt m then Buffer.add_string bb "alt-";
1741 if Wsi.withshift m then Buffer.add_string bb "shift-";
1742 if Wsi.withmeta m then Buffer.add_string bb "meta-";
1743 Buffer.add_string bb (Wsi.keyname k);
1745 let addkms l =
1746 let rec loop = function
1747 | [] -> ()
1748 | km :: [] -> addkm km
1749 | km :: rest -> addkm km; Buffer.add_char bb ' '; loop rest
1751 loop l
1753 Buffer.add_string bb "<map in='";
1754 addkm i;
1755 match o with
1756 | KMinsrt km ->
1757 Buffer.add_string bb "' out='";
1758 addkm km;
1759 Buffer.add_string bb "'/>\n"
1761 | KMinsrl kms ->
1762 Buffer.add_string bb "' out='";
1763 addkms kms;
1764 Buffer.add_string bb "'/>\n"
1766 | KMmulti (ins, kms) ->
1767 Buffer.add_char bb ' ';
1768 addkms ins;
1769 Buffer.add_string bb "' out='";
1770 addkms kms;
1771 Buffer.add_string bb "'/>\n"
1772 ) h;
1773 Buffer.add_string bb "</keymap>";
1776 loop rest
1778 loop c.keyhashes;
1782 let save1 bb leavebirdseye x h dc =
1783 let uifontsize = fstate.fontsize in
1784 let dc = if conf.bedefault then conf else dc in
1785 Buffer.add_string bb "<llppconfig>\n";
1787 if nonemptystr !fontpath
1788 then
1789 Printf.bprintf bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
1790 uifontsize
1791 !fontpath
1792 else (
1793 if uifontsize <> 14
1794 then
1795 Printf.bprintf bb "<ui-font size='%d'/>\n" uifontsize
1798 Buffer.add_string bb "<defaults";
1799 add_attrs bb true dc dc nan;
1800 let kb = keymapsbuf true dc dc in
1801 if Buffer.length kb > 0
1802 then (
1803 Buffer.add_string bb ">\n";
1804 Buffer.add_buffer bb kb;
1805 Buffer.add_string bb "\n</defaults>\n";
1807 else Buffer.add_string bb "/>\n";
1809 let adddoc path pan anchor c bookmarks time =
1810 if bookmarks == [] && c = dc && anchor = emptyanchor
1811 then ()
1812 else (
1813 Printf.bprintf bb "<doc path='%s'"
1814 (enent path 0 (String.length path));
1816 if anchor <> emptyanchor
1817 then (
1818 let n, rely, visy = anchor in
1819 Printf.bprintf bb "\n page='%d'" n;
1820 if rely > 1e-6
1821 then
1822 Printf.bprintf bb " rely='%f'" rely
1824 if abs_float visy > 1e-6
1825 then
1826 Printf.bprintf bb " visy='%f'" visy
1830 if pan != 0
1831 then Printf.bprintf bb " pan='%d'" pan;
1833 add_attrs bb false dc c time;
1834 let kb = keymapsbuf false dc c in
1836 begin match bookmarks with
1837 | [] ->
1838 if Buffer.length kb > 0
1839 then (
1840 Buffer.add_string bb ">\n";
1841 Buffer.add_buffer bb kb;
1842 Buffer.add_string bb "\n</doc>\n";
1844 else Buffer.add_string bb "/>\n"
1845 | _ ->
1846 Buffer.add_string bb ">\n<bookmarks>\n";
1847 List.iter (fun (title, _, kind) ->
1848 begin match kind with
1849 | Oanchor (page, rely, visy) ->
1850 Printf.bprintf bb
1851 "<item title='%s' page='%d'"
1852 (enent title 0 (String.length title))
1853 page
1855 if rely > 1e-6
1856 then
1857 Printf.bprintf bb " rely='%f'" rely
1859 if abs_float visy > 1e-6
1860 then
1861 Printf.bprintf bb " visy='%f'" visy
1863 | Ohistory _ | Onone | Ouri _ | Oremote _
1864 | Oremotedest _ | Olaunch _ | Oaction _ ->
1865 failwith "unexpected link in bookmarks"
1866 end;
1867 Buffer.add_string bb "/>\n";
1868 ) bookmarks;
1869 Buffer.add_string bb "</bookmarks>";
1870 if Buffer.length kb > 0
1871 then (
1872 Buffer.add_string bb "\n";
1873 Buffer.add_buffer bb kb;
1875 Buffer.add_string bb "\n</doc>\n";
1876 end;
1880 let pan, conf =
1881 match state.mode with
1882 | Birdseye (c, pan, _, _, _) ->
1883 let beyecolumns =
1884 match conf.columns with
1885 | Cmulti ((c, _, _), _) -> Some c
1886 | Csingle _ -> None
1887 | Csplit _ -> None
1888 and columns =
1889 match c.columns with
1890 | Cmulti (c, _) -> Cmulti (c, E.a)
1891 | Csingle _ -> Csingle E.a
1892 | Csplit _ -> failwith "quit from bird's eye while split"
1894 pan, { c with beyecolumns = beyecolumns; columns = columns }
1895 | Textentry _
1896 | View
1897 | LinkNav _ -> x, conf
1899 let docpath = abspath state.path in
1900 adddoc docpath pan (getanchor ())
1902 let autoscrollstep =
1903 match state.autoscroll with
1904 | Some step -> step
1905 | None -> conf.autoscrollstep
1907 begin match state.mode with
1908 | Birdseye beye -> leavebirdseye beye true
1909 | Textentry _
1910 | View
1911 | LinkNav _ -> ()
1912 end;
1913 { conf with autoscrollstep = autoscrollstep }
1915 (if conf.savebmarks then state.bookmarks else [])
1916 (now ());
1918 Hashtbl.iter (fun path (c, bookmarks, x, anchor) ->
1919 if docpath <> abspath path
1920 then adddoc path x anchor c bookmarks c.lastvisit
1921 ) h;
1922 Buffer.add_string bb "</llppconfig>\n";
1923 true;
1926 let save leavebirdseye =
1927 let relx = float state.x /. float state.winw in
1928 let w, h, x =
1929 let cx w = truncate (relx *. float w) in
1930 List.fold_left
1931 (fun (w, h, x) ws ->
1932 match ws with
1933 | Wsi.Fullscreen -> (conf.cwinw, conf.cwinh, cx conf.cwinw)
1934 | Wsi.MaxVert -> (w, conf.cwinh, x)
1935 | Wsi.MaxHorz -> (conf.cwinw, h, cx conf.cwinw)
1937 (state.winw, state.winh, state.x) state.winstate
1939 conf.cwinw <- w;
1940 conf.cwinh <- h;
1941 let bb = Buffer.create 32768 in
1942 let save2 (h, dc) =
1943 save1 bb leavebirdseye x h dc
1945 if load1 save2 && Buffer.length bb > 0
1946 then
1948 let tmp = !confpath ^ ".tmp" in
1949 let oc = open_out_bin tmp in
1950 Buffer.output_buffer oc bb;
1951 close_out oc;
1952 Unix.rename tmp !confpath;
1953 with exn ->
1954 prerr_endline
1955 ("error while saving configuration: " ^ exntos exn)
1958 let gc fdi fdo =
1959 let wr s n =
1960 let n' = Unix.write fdo (Bytes.of_string s) 0 n in
1961 if n != n'
1962 then Utils.error "Unix.write %d = %d" n n'
1964 let rd s n =
1965 try Unix.read fdi s 0 n
1966 with exn -> Utils.error "reading gc pipe %s" (exntos exn) in
1967 let href = ref (Hashtbl.create 0) in
1968 let cref = ref defconf in
1969 let push (h, dc) =
1970 let f path (pc, _pb, _px, _pa) =
1971 let s =
1972 Printf.sprintf "%s\000%ld\000" path (Int32.of_float pc.lastvisit)
1974 wr s (String.length s)
1976 Hashtbl.iter f h;
1977 href := h;
1978 cref := dc;
1979 Unix.shutdown fdo Unix.SHUTDOWN_SEND;
1980 true
1982 ignore (load1 push);
1983 let s =
1984 let b = Buffer.create 32768 in
1985 let s = Bytes.create 4096 in
1986 let rec f () =
1987 let n = rd s (Bytes.length s) in
1988 if n = 0
1989 then Buffer.contents b
1990 else (Buffer.add_subbytes b s 0 n; f ())
1992 f ()
1994 let rec f ppos =
1995 match String.index_from s ppos '\000' with
1996 | zpos1 ->
1997 let zpos2 =
1998 try String.index_from s (zpos1+1) '\000' with Not_found -> -1 in
1999 if zpos2 = -1
2000 then error "Incorrect gc input in (%S) at %d" s zpos1
2001 else
2002 let okey = StringLabels.sub s ~pos:ppos ~len:(zpos1-ppos) in
2003 let nkey = StringLabels.sub s ~pos:(zpos1+1) ~len:(zpos2-zpos1-1) in
2004 if emptystr nkey
2005 then (Hashtbl.remove !href okey; f (zpos2+1))
2006 else
2007 let v =
2008 try Hashtbl.find !href okey
2009 with Not_found -> Utils.error "gc: could not find %S" okey
2011 Hashtbl.remove !href okey;
2012 Hashtbl.replace !href nkey v;
2013 f (zpos2+1)
2014 | exception Not_found -> ()
2016 f 0;
2017 let bb = Buffer.create 32768 in
2018 let save2 (_h, dc) = save1 bb (fun _ _ -> ()) 0 !href dc in
2019 if load1 save2 && Buffer.length bb > 0
2020 then (
2022 let tmp = !confpath ^ ".tmp" in
2023 let oc = open_out_bin tmp in
2024 Buffer.output_buffer oc bb;
2025 close_out oc;
2026 Unix.rename tmp !confpath;
2027 with exn ->
2028 prerr_endline
2029 ("error while saving configuration: " ^ exntos exn)