3 external fz_version
: unit -> string = "ml_fz_version";;
6 { mutable fontsize
: int
7 ; mutable wwidth
: float
8 ; mutable maxrows
: int
21 let fastghyllscroll = (5,1,2);;
22 let neatghyllscroll = (10,1,9);;
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
=
35 | "fast" -> Some
fastghyllscroll
36 | "neat" -> Some
(10,1,9)
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)"
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
) =
55 then Printf.sprintf
"%d" n
56 else Printf.sprintf
"%d,%d,%d" n a b
;
59 let multicolumns_of_string s
=
61 (int_of_string s
, 0, 0)
63 Scanf.sscanf s
"%u,%u,%u" (fun n a b
->
65 then failwith
"subtly broken"; (n
, a
, b
)
72 | KMmulti
of key list
* key list
74 and keyhash
= (key
, keymap
) Hashtbl.t
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
87 and fitmodel
= | FitWidth
| FitProportional
| FitPage
88 and trimmargins
= bool
89 and irect
= (int * int * int * int)
94 and params
= (angle
* fitmodel
* trimparams
95 * texcount
* sliceheight
* memsize
96 * colorspace
* fontpath
* trimcachepath
97 * haspbo
* usefontconfig
)
101 and opaque
= Opaque.t
107 and fontpath
= string
108 and trimcachepath
= string
110 and trimparams
= (trimmargins
* irect
)
111 and colorspace
= | Rgb
| Bgr
| Gray
113 and usefontconfig
= bool
120 and tileparams
= (x
* y
* width
* height
* tilex
* tiley
)
124 | Ulinkgoto
of (int * int)
126 | Uunexpected
of string
127 | Ulaunch
of launchcommand
129 | Uremote
of (filename
* pageno
)
130 | Uremotedest
of (filename
* destname
)
131 | Uannotation
of (opaque
* slinkindex
)
133 and facename
= string
134 and launchcommand
= string
135 and filename
= string
137 and destname
= string
149 | LDfirstvisible
of (int * int * 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
178 module type TextEnumType
=
182 val names
: string array
185 module TextEnumMake
(Ten
: TextEnumType
) =
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
;;
193 if i
= Array.length
names
194 then failwith
("invalid " ^
Ten.name ^
": " ^ s
)
203 module CSTE
= TextEnumMake
(struct
204 type t
= colorspace
;;
205 let name = "colorspace";;
206 let names = [|"rgb"; "bgr"; "gray"|];;
209 module MTE
= TextEnumMake
(struct
212 let names = [|"page"; "block"; "line"; "word"|];;
215 module FMTE
= TextEnumMake
(struct
217 let name = "fitmodel";;
218 let names = [|"width"; "proportional"; "page"|];;
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
286 ; mutable annotinline
: bool
289 | Csingle
of singlecolumn
290 | Cmulti
of multicolumns
291 | Csplit
of splitcolumns
296 | Olaunch
of launchcommand
297 | Oremote
of (filename
* pageno
)
298 | Oremotedest
of (filename
* destname
)
299 | Ohistory
of (filename
* (conf
* outline list
* x
* anchor
))
300 | Oaction
of (unit -> unit)
301 and outline
= (caption
* outlinelevel
* outlinekind
)
302 and outlinelevel
= int
320 type tile
= opaque
* pixmapsize
* elapsed
321 and elapsed
= float;;
322 type pagemapkey
= pageno
* gen
;;
323 type tilemapkey
= pageno
* gen
* colorspace
* angle
* width
* height
* col
* row
328 | Loading
of (page
* gen
)
330 page
* opaque
* colorspace
* angle
* gen
* col
* row
* width
* height
332 | Outlining
of outline list
335 type mpos
= int * int
337 | Msel
of (mpos
* mpos
)
339 | Mscrolly
| Mscrollx
340 | Mzoom
of (buttonno
* step
)
341 | Mzoomrect
of (mpos
* mpos
)
348 | Birdseye
of (conf
* leftx
* pageno
* pageno
* anchor
)
349 | Textentry
of (textentry
* onleave
)
351 | LinkNav
of linktarget
352 and onleave
= leavetextentrystatus
-> unit
353 and leavetextentrystatus
= | Cancel
| Confirm
354 and helpitem
= string * int * action
357 | Action
of (uioh
-> uioh
)
359 | Ltexact
of (pageno
* direction
)
360 | Ltgendir
of direction
361 | Ltnotready
of (pageno
* direction
)
362 and direction
= int (* -1, 0, 1 *)
363 and textentry
= string * string * onhist
option * onkey
* ondone
* cancelonempty
364 and onkey
= string -> int -> te
365 and ondone
= string -> unit
366 and histcancel
= unit -> unit
367 and onhist
= ((histcmd
-> string) * histcancel
)
368 and histcmd
= HCnext
| HCprev
| HCfirst
| HClast
369 and cancelonempty
= bool
374 | TEswitch
of textentry
386 { mutable ss
: Unix.file_descr
387 ; mutable wsfd
: Unix.file_descr
388 ; mutable errfd
: Unix.file_descr
option
389 ; mutable stderr
: Unix.file_descr
390 ; mutable errmsgs
: Buffer.t
391 ; mutable newerrmsgs
: bool
395 ; mutable anchor
: anchor
396 ; mutable ranchors
: (string * string * anchor
* string) list
398 ; mutable layout
: page list
399 ; pagemap
: (pagemapkey
, opaque
) Hashtbl.t
400 ; tilemap
: (tilemapkey
, tile
) Hashtbl.t
401 ; tilelru
: (tilemapkey
* opaque
* pixmapsize
) Queue.t
402 ; mutable pdims
: (pageno
* width
* height
* leftx
) list
403 ; mutable pagecount
: int
404 ; mutable currently
: currently
405 ; mutable mstate
: mstate
406 ; mutable searchpattern
: string
407 ; mutable rects
: (pageno
* recttype
* rect
) list
408 ; mutable rects1
: (pageno
* recttype
* rect
) list
409 ; mutable text
: string
410 ; mutable winstate
: Wsi.winstate list
411 ; mutable mode
: mode
412 ; mutable uioh
: uioh
413 ; mutable outlines
: outline array
414 ; mutable bookmarks
: outline list
415 ; mutable path
: string
416 ; mutable password
: string
417 ; mutable nameddest
: string
418 ; mutable geomcmds
: (string * ((string * (unit -> unit)) list
))
419 ; mutable memused
: memsize
421 ; mutable throttle
: (page list
* int * float) option
422 ; mutable autoscroll
: int option
423 ; mutable ghyll
: (int option -> unit)
424 ; mutable help
: helpitem array
425 ; mutable docinfo
: (int * string) list
426 ; mutable checkerstexid
: GlTex.texture_id
option
428 ; mutable prevzoom
: (float * int)
429 ; mutable progress
: float
430 ; mutable redisplay
: bool
431 ; mutable mpos
: mpos
432 ; mutable keystate
: keystate
433 ; mutable glinks
: bool
434 ; mutable prevcolumns
: (columns
* float) option
437 ; mutable reprf
: (unit -> unit)
438 ; mutable origin
: string
439 ; mutable roam
: (unit -> unit)
440 ; mutable bzoom
: bool
441 ; mutable traw
: [`
float] Raw.t
442 ; mutable vraw
: [`
float] Raw.t
445 { pat
: string circbuf
446 ; pag
: string circbuf
447 ; nav
: anchor circbuf
448 ; sel
: string circbuf
452 let emptyanchor = (0, 0.0, 0.0);;
453 let emptykeyhash = Hashtbl.create
0;;
455 let noreprf () = ();;
458 let nouioh : uioh
= object (self
)
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
473 let platform_to_string = function
474 | Punknown
-> "unknown"
479 | Pcygwin
-> "Cygwin"
483 Printf.sprintf
"llpp version %s, fitz %s, ocaml %s/%d bit"
484 Help.version (fz_version
()) Sys.ocaml_version
Sys.word_size
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
492 if s
.[colonpos+1] = '
/'
&& s
.[colonpos+2] = '
/'
495 try String.rindex_from s
colonpos ' '
499 String.sub s
(schemestartpos+1) (colonpos-1-schemestartpos)
502 | "http" | "ftp" | "mailto" ->
504 try String.index_from s
colonpos ' '
505 with Not_found
-> len
507 String.sub s
(schemestartpos+1) (epos-1-schemestartpos)
517 ; scrollb
= scrollbhv lor scrollbvv
533 ; presentation
= false
538 ; fitmodel
= FitProportional
539 ; trimmargins
= false
540 ; trimfuzz
= (0,0,0,0)
541 ; memlimit
= 32 lsl 20
546 ; bgcolor
= (0.5, 0.5, 0.5)
550 ; mustoresize
= 256 lsl 20
555 | Plinux
| Psun
| Pbsd
-> "xdg-open \"%s\""
556 | Posx
-> "open \"%s\""
557 | Pcygwin
-> "cygstart \"%s\""
558 | Punknown
-> "echo %s")
559 ; pathlauncher
= "lp \"%s\""
562 | Plinux
| Pbsd
| Psun
-> "xsel -i"
572 ; redirectstderr
= false
574 ; columns
= Csingle
[||]
580 ; wheelbypage
= false
581 ; stcmd
= "echo SyncTex"
584 ; paxmark
= Mark_word
590 let mk n
= (n
, Hashtbl.create
1) in
604 let conf = { defconf with angle
= defconf.angle
};;
607 if emptystr
conf.urilauncher
608 then print_endline uri
610 let url = geturl uri
in
612 then (Printf.eprintf
"obtained empty url from uri %S\n" uri
)
614 let re = Str.regexp
"%s" in
615 let command = Str.global_replace
re url conf.urilauncher
in
616 try ignore
(popen
command [])
619 "failed to execute `%s': %s\n" command (exntos exn
);
627 :: "(searching in this text works just by typing (i.e. no initial '/'))"
632 let url = geturl s
in
634 then (s
, 0, Action
(fun u
-> gotouri url; u
))
635 else (s
, 0, Noaction
)
640 { store
= Array.make n v
647 let cbcap b
= Array.length b
.store
;;
652 b
.wc
<- (b
.wc
+ 1) mod cap;
654 b
.len <- min
(b
.len + 1) cap;
657 let cbempty b
= b
.len = 0;;
659 let cbgetg b circular dir
=
663 let rc = b
.rc + dir
in
675 else bound
rc 0 (b
.len-1)
681 let cbget b
= cbgetg b
false;;
682 let cbgetc b
= cbgetg b
true;;
688 ; stderr
= Unix.stderr
689 ; errmsgs
= Buffer.create
0
694 ; anchor
= emptyanchor
698 ; tilelru
= Queue.create
()
699 ; pagemap
= Hashtbl.create
10
700 ; tilemap
= Hashtbl.create
10
710 ; searchpattern
= E.s
718 { nav
= cbnew 10 emptyanchor
730 ; checkerstexid
= None
731 ; prevzoom
= (1.0, 0)
745 ; traw
= Raw.create_static `
float ~
len:8
746 ; vraw
= Raw.create_static `
float ~
len:8
750 let copykeyhashes c
=
751 List.map
(fun (k
, v
) -> k
, Hashtbl.copy v
) c
.keyhashes
;
755 let d = state.winh
- h
in
756 max
conf.interpagespace
((d + 1) / 2)
759 let rowyh (c
, coverA
, coverB
) b n
=
760 if c
= 1 || (n
< coverA
|| n
>= state.pagecount
- coverB
)
762 let _, _, vy
, (_, _, h
, _) = b
.(n
) in
765 let n'
= n - coverA
in
768 let e = min
state.pagecount
(s + c
) in
769 let rec find m miny maxh
= if m
= e then miny
, maxh
else
770 let _, _, y
, (_, _, h
, _) = b
.(m
) in
771 let miny = min
miny y
in
772 let maxh = max
maxh h
in
778 let ((c
, coverA
, coverB
) as cl
), b
=
779 match conf.columns
with
780 | Csingle b
-> (1, 0, 0), b
781 | Cmulti
(c
, b
) -> c
, b
782 | Csplit
(_, b
) -> (1, 0, 0), b
784 if Array.length b
= 0
787 let rec bsearch nmin nmax
=
789 then bound nmin
0 (state.pagecount
-1)
791 let n = (nmax
+ nmin
) / 2 in
792 let vy, h
= rowyh cl b
n in
796 let ips = calcips h
in
798 let y1 = vy + h
+ ips in
802 then 0, vy + h
+ conf.interpagespace
804 let y0 = vy - conf.interpagespace
in
805 y0, y0 + h
+ conf.interpagespace
815 if n < state.pagecount
- coverB
816 then ((n-coverA
)/c
)*c
+ coverA
823 then bsearch (n+1) nmax
824 else bsearch nmin
(n-1)
827 bsearch 0 (state.pagecount
-1);
831 match conf.columns
with
832 | Cmulti
((_, _, _) as cl
, b
) ->
833 if Array.length b
> 0
835 let y, h
= rowyh cl b
(Array.length b
- 1) in
836 y + h
+ (if conf.presentation
then calcips h
else 0)
839 if Array.length b
> 0
841 let (_, _, y, (_, _, h
, _)) = b
.(Array.length b
- 1) in
842 y + h
+ (if conf.presentation
then calcips h
else 0)
845 if Array.length b
> 0
847 let (_, _, y, (_, _, h
, _)) = b
.(Array.length b
- 1) in
852 let getpageywh pageno
=
853 let pageno = bound
pageno 0 (state.pagecount
-1) in
854 match conf.columns
with
856 if Array.length b
= 0
859 let (_, _, y, (_, w
, h
, _)) = b
.(pageno) in
867 if Array.length b
= 0
870 let y, h
= rowyh cl b
pageno in
871 let (_, _, _, (_, w
, _, _)) = b
.(pageno) in
879 if Array.length b
= 0
883 let (_, _, y, (_, w
, h
, _)) = b
.(n) in
887 let getpageyh pageno =
888 let y,_,h
= getpageywh pageno in
892 let getpagedim pageno =
895 | (n, _, _, _) as pdim
:: rest
->
897 then (if n = pageno then pdim
else ppdim
)
902 f (-1, -1, -1, -1) state.pdims
905 let getpagey pageno = fst
(getpageyh pageno);;
909 let coloff = l
.pagecol
* l
.pageh
in
910 float (l
.pagey
+ coloff) /. float l
.pageh
918 then float l
.pagedispy
/. float (calcips l
.pageh
)
919 else float l
.pagedispy
/. float conf.interpagespace
922 (l
.pageno, top, dtop)
926 match state.layout
with
927 | l
:: _ -> getanchor1 l
929 let n = page_of_y state.y in
933 let y, h
= getpageyh n in
934 let dy = y - state.y in
938 let ips = calcips h
in
939 float (dy + ips) /. float ips
941 float dy /. float conf.interpagespace
946 let fontpath = ref E.s;;
948 type historder
= [ `lastvisit
| `title
| `path
| `file
];;
949 let historder : historder ref = ref `lastvisit
;;
952 Map.Make
(struct type t
= (int * int) let compare = compare end);;
957 let l = String.length
s in
958 let b = Buffer.create
l in
964 try Sys.getenv
"HOME"
967 ("Can not determine home directory location: " ^ exntos exn
);
971 let modifier_of_string = function
972 | "alt" -> Wsi.altmask
973 | "shift" -> Wsi.shiftmask
974 | "ctrl" | "control" -> Wsi.ctrlmask
975 | "meta" -> Wsi.metamask
980 let r = Str.regexp
"-" in
982 let elems = Str.full_split
r s in
985 let m1 = modifier_of_string s in
987 then (Wsi.namekey
s, m
)
990 | Str.Delim
s when n land 1 = 0 -> g s
992 | Str.Delim
_ -> (k
, m
)
994 let rec loop n k m
= function
997 let k, m
= f n k m x
in
1003 let keys_of_string =
1004 let r = Str.regexp
"[ \t]" in
1006 let elems = Str.split
r s in
1007 List.map
key_of_string elems
1010 let config_of c attrs
=
1014 | "scroll-bar-width" -> { c
with scrollbw
= max
0 (int_of_string v
) }
1015 | "scroll-handle-height" -> { c
with scrollh
= max
0 (int_of_string v
) }
1016 | "case-insensitive-search" -> { c
with icase
= bool_of_string v
}
1017 | "preload" -> { c
with preload
= bool_of_string v
}
1018 | "page-bias" -> { c
with pagebias
= int_of_string v
}
1019 | "scroll-step" -> { c
with scrollstep
= max
1 (int_of_string v
) }
1020 | "horizontal-scroll-step" ->
1021 { c
with hscrollstep
= max
(int_of_string v
) 1 }
1022 | "auto-scroll-step" ->
1023 { c
with autoscrollstep
= max
0 (int_of_string v
) }
1024 | "max-height-fit" -> { c
with maxhfit
= bool_of_string v
}
1025 | "crop-hack" -> { c
with crophack
= bool_of_string v
}
1028 match String.lowercase v
with
1029 | "true" -> Some infinity
1031 | f -> Some
(float_of_string
f)
1033 { c
with maxwait
= mw}
1034 | "highlight-links" -> { c
with hlinks
= bool_of_string v
}
1035 | "under-cursor-info" -> { c
with underinfo
= bool_of_string v
}
1036 | "vertical-margin" ->
1037 { c
with interpagespace
= max
0 (int_of_string v
) }
1039 let zoom = float_of_string v
/. 100. in
1040 let zoom = max
zoom 0.0 in
1041 { c
with zoom = zoom }
1042 | "presentation" -> { c
with presentation
= bool_of_string v
}
1043 | "rotation-angle" -> { c
with angle
= int_of_string v
}
1044 | "width" -> { c
with cwinw
= max
20 (int_of_string v
) }
1045 | "height" -> { c
with cwinh
= max
20 (int_of_string v
) }
1046 | "persistent-bookmarks" -> { c
with savebmarks
= bool_of_string v
}
1047 | "proportional-display" ->
1050 then FitProportional
1053 { c
with fitmodel
= fm }
1054 | "fit-model" -> { c
with fitmodel
= FMTE.of_string v
}
1055 | "pixmap-cache-size" ->
1056 { c
with memlimit
= max
2 (int_of_string_with_suffix v
) }
1057 | "tex-count" -> { c
with texcount
= max
1 (int_of_string v
) }
1058 | "slice-height" -> { c
with sliceheight
= max
2 (int_of_string v
) }
1059 | "thumbnail-width" -> { c
with thumbw
= max
2 (int_of_string v
) }
1060 | "persistent-location" -> { c
with jumpback
= bool_of_string v
}
1061 | "background-color" -> { c
with bgcolor
= color_of_string v
}
1062 | "tile-width" -> { c
with tilew
= max
2 (int_of_string v
) }
1063 | "tile-height" -> { c
with tileh
= max
2 (int_of_string v
) }
1064 | "mupdf-store-size" ->
1065 { c
with mustoresize
= max
1024 (int_of_string_with_suffix v
) }
1066 | "checkers" -> { c
with checkers
= bool_of_string v
}
1067 | "aalevel" -> { c
with aalevel
= max
0 (int_of_string v
) }
1068 | "trim-margins" -> { c
with trimmargins
= bool_of_string v
}
1069 | "trim-fuzz" -> { c
with trimfuzz
= irect_of_string v
}
1070 | "uri-launcher" -> { c
with urilauncher
= unent v
}
1071 | "path-launcher" -> { c
with pathlauncher
= unent v
}
1072 | "color-space" -> { c
with colorspace
= CSTE.of_string v
}
1073 | "invert-colors" -> { c
with invert
= bool_of_string v
}
1074 | "brightness" -> { c
with colorscale
= float_of_string v
}
1075 | "redirectstderr" -> { c
with redirectstderr
= bool_of_string v
}
1076 | "ghyllscroll" -> { c
with ghyllscroll
= ghyllscroll_of_string v
}
1078 let (n, _, _) as nab
= multicolumns_of_string v
in
1080 then { c
with columns
= Csplit
(-n, E.a
) }
1081 else { c
with columns
= Cmulti
(nab
, E.a
) }
1082 | "birds-eye-columns" ->
1083 { c
with beyecolumns
= Some
(max
(int_of_string v
) 2) }
1084 | "selection-command" -> { c
with selcmd
= unent v
}
1085 | "synctex-command" -> { c
with stcmd
= unent v
}
1086 | "pax-command" -> { c
with paxcmd
= unent v
}
1087 | "askpass-command" -> { c
with passcmd
= unent v
}
1088 | "savepath-command" -> { c
with savecmd
= unent v
}
1089 | "update-cursor" -> { c
with updatecurs
= bool_of_string v
}
1090 | "hint-font-size" -> { c
with hfsize
= bound
(int_of_string v
) 5 100 }
1091 | "page-scroll-scale" -> { c
with pgscale
= float_of_string v
}
1092 | "use-pbo" -> { c
with usepbo
= bool_of_string v
}
1093 | "wheel-scrolls-pages" -> { c
with wheelbypage
= bool_of_string v
}
1094 | "horizontal-scrollbar-visible" ->
1097 then c
.scrollb
lor scrollbhv
1098 else c
.scrollb
land (lnot
scrollbhv)
1100 { c
with scrollb
= b }
1101 | "vertical-scrollbar-visible" ->
1104 then c
.scrollb
lor scrollbvv
1105 else c
.scrollb
land (lnot
scrollbvv)
1107 { c
with scrollb
= b }
1108 | "remote-in-a-new-instance" -> { c
with riani
= bool_of_string v
}
1112 then Some
(ref (0.0, 0, 0))
1114 | "point-and-x-mark" -> { c
with paxmark
= MTE.of_string v
}
1115 | "scroll-bar-on-the-left" -> { c
with leftscroll
= bool_of_string v
}
1116 | "title" -> { c
with title
= unent v
}
1117 | "last-visit" -> { c
with lastvisit
= float_of_string v
}
1118 | "edit-annots-inline" -> { c
with annotinline
= bool_of_string v
}
1121 prerr_endline
("Error processing attribute (`" ^
1122 k ^
"'=`" ^ v ^
"'): " ^ exntos exn
);
1125 let rec fold c
= function
1128 let c = apply c k v
in
1131 fold { c with keyhashes
= copykeyhashes c } attrs
;
1134 let fromstring f pos
n v
d =
1137 dolog
"Error processing attribute (%S=%S) at %d\n%s"
1138 n v pos
(exntos exn
)
1143 let bookmark_of attrs
=
1144 let rec fold title page rely visy
= function
1145 | ("title", v
) :: rest
-> fold v page rely visy rest
1146 | ("page", v
) :: rest
-> fold title v rely visy rest
1147 | ("rely", v
) :: rest
-> fold title page v visy rest
1148 | ("visy", v
) :: rest
-> fold title page rely v rest
1149 | _ :: rest
-> fold title page rely visy rest
1150 | [] -> title
, page
, rely
, visy
1152 fold "invalid" "0" "0" "0" attrs
1156 let rec fold path page rely pan visy
= function
1157 | ("path", v
) :: rest
-> fold v page rely pan visy rest
1158 | ("page", v
) :: rest
-> fold path v rely pan visy rest
1159 | ("rely", v
) :: rest
-> fold path page v pan visy rest
1160 | ("pan", v
) :: rest
-> fold path page rely v visy rest
1161 | ("visy", v
) :: rest
-> fold path page rely pan v rest
1162 | _ :: rest
-> fold path page rely pan visy rest
1163 | [] -> path
, page
, rely
, pan
, visy
1165 fold E.s "0" "0" "0" "0" attrs
1169 let rec fold rs ls
= function
1170 | ("out", v
) :: rest
-> fold v ls rest
1171 | ("in", v
) :: rest
-> fold rs v rest
1172 | _ :: rest
-> fold ls rs rest
1178 let setconf dst src
=
1179 dst
.scrollbw
<- src
.scrollbw
;
1180 dst
.scrollh
<- src
.scrollh
;
1181 dst
.icase
<- src
.icase
;
1182 dst
.preload
<- src
.preload
;
1183 dst
.pagebias
<- src
.pagebias
;
1184 dst
.verbose
<- src
.verbose
;
1185 dst
.scrollstep
<- src
.scrollstep
;
1186 dst
.maxhfit
<- src
.maxhfit
;
1187 dst
.crophack
<- src
.crophack
;
1188 dst
.autoscrollstep
<- src
.autoscrollstep
;
1189 dst
.maxwait
<- src
.maxwait
;
1190 dst
.hlinks
<- src
.hlinks
;
1191 dst
.underinfo
<- src
.underinfo
;
1192 dst
.interpagespace
<- src
.interpagespace
;
1193 dst
.zoom <- src
.zoom;
1194 dst
.presentation
<- src
.presentation
;
1195 dst
.angle
<- src
.angle
;
1196 dst
.cwinw
<- src
.cwinw
;
1197 dst
.cwinh
<- src
.cwinh
;
1198 dst
.savebmarks
<- src
.savebmarks
;
1199 dst
.memlimit
<- src
.memlimit
;
1200 dst
.fitmodel
<- src
.fitmodel
;
1201 dst
.texcount
<- src
.texcount
;
1202 dst
.sliceheight
<- src
.sliceheight
;
1203 dst
.thumbw
<- src
.thumbw
;
1204 dst
.jumpback
<- src
.jumpback
;
1205 dst
.bgcolor
<- src
.bgcolor
;
1206 dst
.tilew
<- src
.tilew
;
1207 dst
.tileh
<- src
.tileh
;
1208 dst
.mustoresize
<- src
.mustoresize
;
1209 dst
.checkers
<- src
.checkers
;
1210 dst
.aalevel
<- src
.aalevel
;
1211 dst
.trimmargins
<- src
.trimmargins
;
1212 dst
.trimfuzz
<- src
.trimfuzz
;
1213 dst
.urilauncher
<- src
.urilauncher
;
1214 dst
.colorspace
<- src
.colorspace
;
1215 dst
.invert
<- src
.invert
;
1216 dst
.colorscale
<- src
.colorscale
;
1217 dst
.redirectstderr
<- src
.redirectstderr
;
1218 dst
.ghyllscroll
<- src
.ghyllscroll
;
1219 dst
.columns
<- src
.columns
;
1220 dst
.beyecolumns
<- src
.beyecolumns
;
1221 dst
.selcmd
<- src
.selcmd
;
1222 dst
.updatecurs
<- src
.updatecurs
;
1223 dst
.pathlauncher
<- src
.pathlauncher
;
1224 dst
.keyhashes
<- copykeyhashes src
;
1225 dst
.hfsize
<- src
.hfsize
;
1226 dst
.hscrollstep
<- src
.hscrollstep
;
1227 dst
.pgscale
<- src
.pgscale
;
1228 dst
.usepbo
<- src
.usepbo
;
1229 dst
.wheelbypage
<- src
.wheelbypage
;
1230 dst
.stcmd
<- src
.stcmd
;
1231 dst
.paxcmd
<- src
.paxcmd
;
1232 dst
.passcmd
<- src
.passcmd
;
1233 dst
.savecmd
<- src
.savecmd
;
1234 dst
.scrollb
<- src
.scrollb
;
1235 dst
.riani
<- src
.riani
;
1236 dst
.paxmark
<- src
.paxmark
;
1237 dst
.leftscroll
<- src
.leftscroll
;
1238 dst
.title
<- src
.title
;
1239 dst
.annotinline
<- src
.annotinline
;
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 ^
"'")
1252 let h = Hashtbl.create
10 in
1253 let dc = { defconf with angle
= defconf.angle
} in
1254 let rec toplevel v t spos
_ =
1256 | Vdata
| Vcdata
| Vend
-> v
1257 | Vopen
("llppconfig", _, closed
) ->
1260 else { v
with f = llppconfig
}
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
_ =
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
1274 else { v
with f = defaults
}
1276 | Vopen
("ui-font", attrs
, closed
) ->
1277 let rec getsize size
= function
1279 | ("size", v
) :: rest
->
1281 fromstring int_of_string spos
"size" v
fstate.fontsize
in
1283 | l -> getsize size l
1285 fstate.fontsize
<- getsize fstate.fontsize attrs
;
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
1300 then (Hashtbl.add
h path (c, [], pan
, anchor); v
)
1301 else { v
with f = doc
path pan
anchor c [] }
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
_ =
1311 | Vdata
| Vcdata
-> v
1312 | Vend
-> error
"unexpected end of input in defaults" s spos
1313 | Vopen
("keymap", attrs
, closed
) ->
1315 try List.assoc
"mode" attrs
1316 with Not_found
-> "global" in
1321 let h = findkeyhash dc modename in
1322 KeyMap.iter
(Hashtbl.replace
h) keymap
;
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 =
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
_ =
1351 | Vdata
| Vcdata
-> v
1352 | Vend
-> error
"unexpected end of input in doc" s spos
1353 | Vopen
("bookmarks", _, closed
) ->
1356 else { v
with f = pbookmarks
path pan
anchor c bookmarks
}
1358 | Vopen
("keymap", attrs
, closed
) ->
1360 try List.assoc
"mode" attrs
1361 with Not_found
-> "global"
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
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
_ =
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
1393 | ks
:: [] -> KeyMap.add ks
(KMinsrl
lss) keymap
1394 | ks
:: rest
-> KeyMap.add ks
(KMmulti
(rest
, lss)) keymap
1397 then { v
with f = pkeymap
ret keymap }
1400 { v
with f = skip
"map" f }
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
_ =
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
1420 (unent titleent, 0, Oanchor
(page, rely
, visy
)) :: bookmarks
1423 then { v
with f = pbookmarks
path pan
anchor c bookmarks }
1426 { v
with f = skip
"item" f }
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
_ =
1438 | Vdata
| Vcdata
-> v
1440 Parser.parse_error
("unexpected end of input in skipped " ^ tag
) s spos
1441 | Vopen
(tag'
, _, closed
) ->
1445 let f'
() = { v
with f = skip tag
f } in
1446 { v
with f = skip tag'
f'
}
1450 else Parser.parse_error
("unexpected close in skipped " ^ tag
) s spos
1453 parse
{ f = toplevel; accu
= () } s;
1459 let len = in_channel_length ic
in
1460 let s = really_input_string ic
len in
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
1468 failwith
("config load error: " ^ exntos exn
)
1473 let xdgconfdir = Utils.getenvwithdef
"XDG_CONFIG_HOME" E.s in
1474 if xdgconfdir == E.s
1477 let dir = Filename.concat
home ".config" in
1478 if Sys.is_directory
dir then dir else home
1482 Filename.concat
dir "llpp.conf"
1485 let confpath = ref defconfpath;;
1488 if Sys.file_exists
!confpath
1491 (try Some
(open_in_bin
!confpath)
1494 ("Error opening configuration file `" ^
!confpath ^
"': " ^
1505 ("Error loading configuration from `" ^
!confpath ^
"': " ^
1514 f (Hashtbl.create
0, defconf)
1523 (fun path (conf, _, _, _) ((_, besttime
) as best
) ->
1524 if conf.lastvisit
> besttime
1525 then (path, conf.lastvisit
)
1528 (state.path, -.infinity
)
1532 let pc, pb
, px
, pa
=
1534 let absname = abspath
state.path in
1535 Hashtbl.find h absname
1536 with Not_found
-> dc, [], 0, emptyanchor
1540 state.bookmarks <- pb
;
1543 then state.anchor <- pa
;
1544 cbput state.hists
.nav pa
;
1550 let gethist listref
=
1553 Hashtbl.fold (fun path (pc, pb
, px
, pa
) accu
->
1554 (path, pc, pb
, px
, pa
) :: accu
)
1561 let add_attrs bb always
dc c time
=
1564 then Printf.bprintf bb
"\n %s='%b'" s a
1567 then Printf.bprintf bb
"\n %s='%b'" s (a
!= None
)
1570 then Printf.bprintf bb
"\n %s='%d'" s a
1573 then Printf.bprintf bb
"\n %s='%s'" s (string_with_suffix_of_int a
)
1576 then Printf.bprintf bb
"\n %s='%g'" s (a
*.100.)
1579 then Printf.bprintf bb
"\n %s='%f'" s a
1582 then Printf.bprintf bb
"\n %s='%Ld'" s a
1585 then Printf.bprintf bb
"\n %s='%s'" s (color_to_string a
)
1588 then Printf.bprintf bb
"\n %s='%s'" s (CSTE.to_string a
)
1591 then Printf.bprintf bb
"\n %s='%s'" s (irect_to_string a
)
1594 then Printf.bprintf bb
"\n %s='%s'" s (enent a
0 (String.length a
))
1599 | Some
(_N
, _A
, _B
) ->
1600 Printf.bprintf bb
"\n %s='%u,%u,%u'" s _N _A _B
1605 Printf.bprintf bb
"\n %s='none'" s
1615 else string_of_float
f
1617 Printf.bprintf bb
"\n %s='%s'" s v
1622 | Cmulti
((n, a
, b), _) when n > 1 ->
1623 Printf.bprintf bb
"\n %s='%d,%d,%d'" s n a
b
1624 | Csplit
(n, _) when n > 1 ->
1625 Printf.bprintf bb
"\n %s='%d'" s ~
-n
1626 | Cmulti
_ | Csplit
_ | Csingle
_ -> ()
1631 | Some
c when c > 1 -> Printf.bprintf bb
"\n %s='%d'" s c
1635 then Printf.bprintf bb
"\n %s='%s'" s (FMTE.to_string a
)
1638 then Printf.bprintf bb
"\n %s='%b'" s (a
land m
!= 0)
1641 then Printf.bprintf bb
"\n %s='%s'" s (MTE.to_string a
)
1643 oi
"width" c.cwinw
dc.cwinw
;
1644 oi
"height" c.cwinh
dc.cwinh
;
1645 oi
"scroll-bar-width" c.scrollbw
dc.scrollbw
;
1646 oi
"scroll-handle-height" c.scrollh
dc.scrollh
;
1647 oSv
"horizontal-scrollbar-visible" c.scrollb
dc.scrollb
scrollbhv;
1648 oSv
"vertical-scrollbar-visible" c.scrollb
dc.scrollb
scrollbvv;
1649 ob "case-insensitive-search" c.icase
dc.icase
;
1650 ob "preload" c.preload
dc.preload
;
1651 oi
"page-bias" c.pagebias
dc.pagebias
;
1652 oi
"scroll-step" c.scrollstep
dc.scrollstep
;
1653 oi
"auto-scroll-step" c.autoscrollstep
dc.autoscrollstep
;
1654 ob "max-height-fit" c.maxhfit
dc.maxhfit
;
1655 ob "crop-hack" c.crophack
dc.crophack
;
1656 oW
"throttle" c.maxwait
dc.maxwait
;
1657 ob "highlight-links" c.hlinks
dc.hlinks
;
1658 ob "under-cursor-info" c.underinfo
dc.underinfo
;
1659 oi
"vertical-margin" c.interpagespace
dc.interpagespace
;
1660 oz
"zoom" c.zoom dc.zoom;
1661 ob "presentation" c.presentation
dc.presentation
;
1662 oi
"rotation-angle" c.angle
dc.angle
;
1663 ob "persistent-bookmarks" c.savebmarks
dc.savebmarks
;
1664 oFm
"fit-model" c.fitmodel
dc.fitmodel
;
1665 oI
"pixmap-cache-size" c.memlimit
dc.memlimit
;
1666 oi
"tex-count" c.texcount
dc.texcount
;
1667 oi
"slice-height" c.sliceheight
dc.sliceheight
;
1668 oi
"thumbnail-width" c.thumbw
dc.thumbw
;
1669 ob "persistent-location" c.jumpback
dc.jumpback
;
1670 oc
"background-color" c.bgcolor
dc.bgcolor
;
1671 oi
"tile-width" c.tilew
dc.tilew
;
1672 oi
"tile-height" c.tileh
dc.tileh
;
1673 oI
"mupdf-store-size" c.mustoresize
dc.mustoresize
;
1674 ob "checkers" c.checkers
dc.checkers
;
1675 oi
"aalevel" c.aalevel
dc.aalevel
;
1676 ob "trim-margins" c.trimmargins
dc.trimmargins
;
1677 oR
"trim-fuzz" c.trimfuzz
dc.trimfuzz
;
1678 os
"uri-launcher" c.urilauncher
dc.urilauncher
;
1679 os
"path-launcher" c.pathlauncher
dc.pathlauncher
;
1680 oC
"color-space" c.colorspace
dc.colorspace
;
1681 ob "invert-colors" c.invert
dc.invert
;
1682 oF
"brightness" c.colorscale
dc.colorscale
;
1683 ob "redirectstderr" c.redirectstderr
dc.redirectstderr
;
1684 og
"ghyllscroll" c.ghyllscroll
dc.ghyllscroll
;
1685 oco
"columns" c.columns
dc.columns
;
1686 obeco
"birds-eye-columns" c.beyecolumns
dc.beyecolumns
;
1687 os
"selection-command" c.selcmd
dc.selcmd
;
1688 os
"synctex-command" c.stcmd
dc.stcmd
;
1689 os
"pax-command" c.paxcmd
dc.paxcmd
;
1690 os
"askpass-command" c.passcmd
dc.passcmd
;
1691 os
"savepath-command" c.savecmd
dc.savecmd
;
1692 ob "update-cursor" c.updatecurs
dc.updatecurs
;
1693 oi
"hint-font-size" c.hfsize
dc.hfsize
;
1694 oi
"horizontal-scroll-step" c.hscrollstep
dc.hscrollstep
;
1695 oF
"page-scroll-scale" c.pgscale
dc.pgscale
;
1696 ob "use-pbo" c.usepbo
dc.usepbo
;
1697 ob "wheel-scrolls-pages" c.wheelbypage
dc.wheelbypage
;
1698 ob "remote-in-a-new-instance" c.riani
dc.riani
;
1699 op
"point-and-x" c.pax
dc.pax
;
1700 oPm
"point-and-x-mark" c.paxmark
dc.paxmark
;
1701 ob "scroll-bar-on-the-left" c.leftscroll
dc.leftscroll
;
1703 then os
"title" c.title
dc.title
;
1704 oL
"last-visit" (Int64.of_float time
) 0L;
1705 ob "edit-annotations-inline" c.annotinline
dc.annotinline
;
1708 let keymapsbuf always
dc c =
1709 let bb = Buffer.create
16 in
1710 let rec loop = function
1712 | (modename, h) :: rest
->
1713 let dh = findkeyhash dc modename in
1714 if always
|| h <> dh
1716 if Hashtbl.length
h > 0
1718 if Buffer.length
bb > 0
1719 then Buffer.add_char
bb '
\n'
;
1720 Printf.bprintf
bb "<keymap mode='%s'>\n" modename;
1721 Hashtbl.iter
(fun i o
->
1722 let isdifferent = always
||
1724 let dO = Hashtbl.find dh i
in
1726 with Not_found
-> true
1731 if Wsi.withctrl m
then Buffer.add_string
bb "ctrl-";
1732 if Wsi.withalt m
then Buffer.add_string
bb "alt-";
1733 if Wsi.withshift m
then Buffer.add_string
bb "shift-";
1734 if Wsi.withmeta m
then Buffer.add_string
bb "meta-";
1735 Buffer.add_string
bb (Wsi.keyname
k);
1738 let rec loop = function
1740 | km
:: [] -> addkm km
1741 | km
:: rest
-> addkm km
; Buffer.add_char
bb ' '
; loop rest
1745 Buffer.add_string
bb "<map in='";
1749 Buffer.add_string
bb "' out='";
1751 Buffer.add_string
bb "'/>\n"
1754 Buffer.add_string
bb "' out='";
1756 Buffer.add_string
bb "'/>\n"
1758 | KMmulti
(ins
, kms
) ->
1759 Buffer.add_char
bb ' '
;
1761 Buffer.add_string
bb "' out='";
1763 Buffer.add_string
bb "'/>\n"
1765 Buffer.add_string
bb "</keymap>";
1774 let save1 bb leavebirdseye x
h dc =
1775 let uifontsize = fstate.fontsize
in
1776 let dc = if conf.bedefault
then conf else dc in
1777 Buffer.add_string
bb "<llppconfig>\n";
1779 if nonemptystr
!fontpath
1781 Printf.bprintf
bb "<ui-font size='%d'><![CDATA[%s]]></ui-font>\n"
1787 Printf.bprintf
bb "<ui-font size='%d'/>\n" uifontsize
1790 Buffer.add_string
bb "<defaults";
1791 add_attrs bb true dc dc nan
;
1792 let kb = keymapsbuf true dc dc in
1793 if Buffer.length
kb > 0
1795 Buffer.add_string
bb ">\n";
1796 Buffer.add_buffer
bb kb;
1797 Buffer.add_string
bb "\n</defaults>\n";
1799 else Buffer.add_string
bb "/>\n";
1801 let adddoc path pan
anchor c bookmarks time
=
1802 if bookmarks == [] && c = dc && anchor = emptyanchor
1805 Printf.bprintf
bb "<doc path='%s'"
1806 (enent
path 0 (String.length
path));
1808 if anchor <> emptyanchor
1810 let n, rely
, visy
= anchor in
1811 Printf.bprintf
bb "\n page='%d'" n;
1814 Printf.bprintf
bb " rely='%f'" rely
1816 if abs_float visy
> 1e-6
1818 Printf.bprintf
bb " visy='%f'" visy
1823 then Printf.bprintf
bb " pan='%d'" pan
;
1825 add_attrs bb false dc c time
;
1826 let kb = keymapsbuf false dc c in
1828 begin match bookmarks with
1830 if Buffer.length
kb > 0
1832 Buffer.add_string
bb ">\n";
1833 Buffer.add_buffer
bb kb;
1834 Buffer.add_string
bb "\n</doc>\n";
1836 else Buffer.add_string
bb "/>\n"
1838 Buffer.add_string
bb ">\n<bookmarks>\n";
1839 List.iter
(fun (title
, _, kind
) ->
1840 begin match kind
with
1841 | Oanchor
(page, rely
, visy
) ->
1843 "<item title='%s' page='%d'"
1844 (enent title
0 (String.length title
))
1849 Printf.bprintf
bb " rely='%f'" rely
1851 if abs_float visy
> 1e-6
1853 Printf.bprintf
bb " visy='%f'" visy
1855 | Ohistory
_ | Onone
| Ouri
_ | Oremote
_
1856 | Oremotedest
_ | Olaunch
_ | Oaction
_ ->
1857 failwith
"unexpected link in bookmarks"
1859 Buffer.add_string
bb "/>\n";
1861 Buffer.add_string
bb "</bookmarks>";
1862 if Buffer.length
kb > 0
1864 Buffer.add_string
bb "\n";
1865 Buffer.add_buffer
bb kb;
1867 Buffer.add_string
bb "\n</doc>\n";
1873 match state.mode
with
1874 | Birdseye
(c, pan, _, _, _) ->
1876 match conf.columns
with
1877 | Cmulti
((c, _, _), _) -> Some
c
1881 match c.columns
with
1882 | Cmulti
(c, _) -> Cmulti
(c, E.a
)
1883 | Csingle
_ -> Csingle
E.a
1884 | Csplit
_ -> failwith
"quit from bird's eye while split"
1886 pan, { c with beyecolumns = beyecolumns; columns
= columns
}
1889 | LinkNav
_ -> x
, conf
1891 let docpath = if nonemptystr
state.path then abspath
state.path else E.s in
1894 adddoc docpath pan (getanchor ())
1896 let autoscrollstep =
1897 match state.autoscroll
with
1899 | None
-> conf.autoscrollstep
1901 begin match state.mode
with
1902 | Birdseye beye
-> leavebirdseye beye
true
1907 { conf with autoscrollstep = autoscrollstep }
1909 (if conf.savebmarks
then state.bookmarks else [])
1913 Hashtbl.iter
(fun path (c, bookmarks, x
, anchor) ->
1914 if docpath <> abspath
path
1915 then adddoc path x
anchor c bookmarks c.lastvisit
1917 Buffer.add_string
bb "</llppconfig>\n";
1921 let save leavebirdseye
=
1922 let relx = float state.x
/. float state.winw
in
1924 let cx w = truncate
(relx *. float w) in
1926 (fun (w, h, x
) ws
->
1928 | Wsi.Fullscreen
-> (conf.cwinw
, conf.cwinh
, cx conf.cwinw
)
1929 | Wsi.MaxVert
-> (w, conf.cwinh
, x
)
1930 | Wsi.MaxHorz
-> (conf.cwinw
, h, cx conf.cwinw
)
1932 (state.winw
, state.winh
, state.x
) state.winstate
1936 let bb = Buffer.create
32768 in
1938 save1 bb leavebirdseye x
h dc
1940 if load1 save2 && Buffer.length
bb > 0
1943 let tmp = !confpath ^
".tmp" in
1944 let oc = open_out_bin
tmp in
1945 Buffer.output_buffer
oc bb;
1947 Unix.rename
tmp !confpath;
1950 ("error while saving configuration: " ^ exntos exn
)
1955 let n'
= Unix.write fdo
(Bytes.of_string s) 0 n in
1957 then Utils.error
"Unix.write %d = %d" n n'
1960 try Unix.read fdi
s 0 n
1961 with exn
-> Utils.error
"reading gc pipe %s" (exntos exn
) in
1962 let href = ref (Hashtbl.create
0) in
1963 let cref = ref defconf in
1965 let f path (pc, _pb
, _px
, _pa
) =
1967 Printf.sprintf
"%s\000%ld\000" path (Int32.of_float
pc.lastvisit
)
1969 wr s (String.length
s)
1974 Unix.shutdown fdo
Unix.SHUTDOWN_SEND
;
1977 ignore
(load1 push);
1979 let b = Buffer.create
32768 in
1980 let s = Bytes.create
4096 in
1982 let n = rd s (Bytes.length
s) in
1984 then Buffer.contents
b
1985 else (Buffer.add_subbytes
b s 0 n; f ())
1990 match String.index_from
s ppos '
\000'
with
1993 try String.index_from
s (zpos1
+1) '
\000'
with Not_found
-> -1 in
1995 then error
"Incorrect gc input in (%S) at %d" s zpos1
1997 let okey = StringLabels.sub
s ~pos
:ppos ~
len:(zpos1
-ppos
) in
1998 let nkey = StringLabels.sub
s ~pos
:(zpos1
+1) ~
len:(zpos2-zpos1
-1) in
2000 then (Hashtbl.remove
!href okey; f (zpos2+1))
2003 try Hashtbl.find !href okey
2004 with Not_found
-> Utils.error
"gc: could not find %S" okey
2006 Hashtbl.remove
!href okey;
2007 Hashtbl.replace
!href nkey v;
2009 | exception Not_found
-> ()
2012 let bb = Buffer.create
32768 in
2013 let save2 (_h
, dc) = save1 bb (fun _ _ -> ()) 0 !href dc in
2014 if load1 save2 && Buffer.length
bb > 0
2017 let tmp = !confpath ^
".tmp" in
2018 let oc = open_out_bin
tmp in
2019 Buffer.output_buffer
oc bb;
2021 Unix.rename
tmp !confpath;
2024 ("error while saving configuration: " ^ exntos exn
)
2028 let logcurrently = function
2029 | Idle
-> dolog
"Idle"
2030 | Loading
(l, gen
) ->
2031 dolog
"Loading %d gen=%d curgen=%d" l.pageno gen
state.gen
2032 | Tiling
(l, pageopaque
, colorspace
, angle
, gen
, col
, row
, tilew
, tileh
) ->
2034 "Tiling %d[%d,%d] page=%s cs=%s angle"
2035 l.pageno col row
(~
> pageopaque
)
2036 (CSTE.to_string colorspace
)
2038 dolog
"gen=(%d,%d) (%d,%d) tile=(%d,%d) (%d,%d)"
2039 angle gen
conf.angle
state.gen
2041 conf.tilew
conf.tileh