Fix recurse_page
[llpp.git] / main.ml
blob6dc4b408626b7606c8d3edc27087684f850792d0
1 open Format;;
3 let log fmt = Printf.kprintf prerr_endline fmt;;
4 let dolog fmt = Printf.kprintf prerr_endline fmt;;
6 external init : Unix.file_descr -> unit = "ml_init";;
7 external draw : int -> int -> int -> int -> string -> unit = "ml_draw";;
8 external preload : string -> unit = "ml_preload";;
9 external gettext : string -> (int * int * int * int) -> int -> bool -> unit =
10 "ml_gettext";;
11 external checklink : string -> int -> int -> bool = "ml_checklink";;
12 external getlink : string -> int -> int -> (int * int) option = "ml_getlink";;
14 type mstate = Msel of ((int * int) * (int * int)) | Mnone;;
17 type te =
18 | TEstop
19 | TEdone of string
20 | TEcont of string
23 type 'a circbuf =
24 { store : 'a array
25 ; mutable rc : int
26 ; mutable wc : int
27 ; mutable len : int
31 let cbnew n v =
32 { store = Array.create n v
33 ; rc = 0
34 ; wc = 0
35 ; len = 0
39 let cblen b = Array.length b.store;;
41 let cbput b v =
42 let len = cblen b in
43 b.store.(b.wc) <- v;
44 b.wc <- (b.wc + 1) mod len;
45 b.len <- (b.len + 1) mod len;
48 let cbpeekw b = b.store.(b.wc);;
50 let cbget b =
51 let v = b.store.(b.rc) in
52 if b.len = 0
53 then
55 else (
56 let rc = if b.rc = 0 then b.len - 1 else b.rc - 1 in
57 b.rc <- rc;
62 let cbrfollowlen b =
63 b.rc <- b.len - 1;
66 type layout =
67 { pageno : int
68 ; pagedimno : int
69 ; pagew : int
70 ; pageh : int
71 ; pagedispy : int
72 ; pagey : int
73 ; pagevh : int
77 type conf =
78 { mutable scrollw : int
79 ; mutable scrollh : int
80 ; mutable rectsel : bool
81 ; mutable icase : bool
82 ; mutable preload : bool
83 ; mutable titletext : bool
84 ; mutable pagebias : int
85 ; mutable redispimm : bool
86 ; mutable verbose : bool
87 ; mutable scrollincr : int
88 ; mutable maxhfit : bool
92 type outline = string * int * int * int;;
93 type outlines = Oarray of outline array | Olist of outline list;;
95 type state =
96 { mutable csock : Unix.file_descr
97 ; mutable ssock : Unix.file_descr
98 ; mutable w : int
99 ; mutable h : int
100 ; mutable y : int
101 ; mutable prevy : int
102 ; mutable maxy : int
103 ; mutable layout : layout list
104 ; pagemap : ((int * int), string) Hashtbl.t
105 ; mutable pages : (int * int * int) list
106 ; mutable pagecount : int
107 ; pagecache : string circbuf
108 ; navhist : float circbuf
109 ; mutable inflight : int
110 ; mutable mstate : mstate
111 ; mutable searchpattern : string
112 ; mutable rects : (int * int * Gl.point2 * Gl.point2) list
113 ; mutable text : string
114 ; mutable fullscreen : (int * int) option
115 ; mutable textentry :
116 (char * string * (string -> int -> te) * (string -> unit)) option
117 ; mutable outlines : outlines
118 ; mutable outline : (int * int * outline array * string) option
122 let conf =
123 { scrollw = 5
124 ; scrollh = 12
125 ; icase = true
126 ; rectsel = true
127 ; preload = false
128 ; titletext = false
129 ; pagebias = 0
130 ; redispimm = false
131 ; verbose = false
132 ; scrollincr = 18
133 ; maxhfit = true
137 let state =
138 { csock = Unix.stdin
139 ; ssock = Unix.stdin
140 ; w = 0
141 ; h = 0
142 ; y = 0
143 ; prevy = 0
144 ; layout = []
145 ; maxy = max_int
146 ; pagemap = Hashtbl.create 10
147 ; pagecache = cbnew 10 ""
148 ; pages = []
149 ; pagecount = 0
150 ; inflight = 0
151 ; mstate = Mnone
152 ; navhist = cbnew 100 0.0
153 ; rects = []
154 ; text = ""
155 ; fullscreen = None
156 ; textentry = None
157 ; searchpattern = ""
158 ; outlines = Olist []
159 ; outline = None
163 let vlog fmt =
164 if conf.verbose
165 then
166 Printf.kprintf prerr_endline fmt
167 else
168 Printf.kprintf ignore fmt
171 let writecmd fd s =
172 let len = String.length s in
173 let n = 4 + len in
174 let b = Buffer.create n in
175 Buffer.add_char b (Char.chr ((len lsr 24) land 0xff));
176 Buffer.add_char b (Char.chr ((len lsr 16) land 0xff));
177 Buffer.add_char b (Char.chr ((len lsr 8) land 0xff));
178 Buffer.add_char b (Char.chr ((len lsr 0) land 0xff));
179 Buffer.add_string b s;
180 let s' = Buffer.contents b in
181 let n' = Unix.write fd s' 0 n in
182 if n' != n then failwith "write failed";
185 let readcmd fd =
186 let s = "xxxx" in
187 let n = Unix.read fd s 0 4 in
188 if n != 4 then failwith "incomplete read(len)";
189 let len = 0
190 lor (Char.code s.[0] lsl 24)
191 lor (Char.code s.[1] lsl 16)
192 lor (Char.code s.[2] lsl 8)
193 lor (Char.code s.[3] lsl 0)
195 let s = String.create len in
196 let n = Unix.read fd s 0 len in
197 if n != len then failwith "incomplete read(data)";
201 let yratio y =
202 if y = state.maxy then 1.0
203 else float y /. float state.maxy
206 let wcmd s l =
207 let b = Buffer.create 10 in
208 Buffer.add_string b s;
209 let rec combine = function
210 | [] -> Buffer.contents b
211 | x :: xs ->
212 Buffer.add_char b ' ';
213 let s =
214 match x with
215 | `b b -> if b then "1" else "0"
216 | `s s -> s
217 | `i i -> string_of_int i
218 | `f f -> string_of_float f
219 | `I f -> string_of_int (truncate f)
221 Buffer.add_string b s;
222 combine xs;
224 let s = combine l in
225 writecmd state.csock s;
228 let calcheight () =
229 let rec f pn ph fh l =
230 match l with
231 | (n, _, h) :: rest ->
232 let fh = fh + (n - pn) * ph in
233 f n h fh rest
235 | [] ->
236 let fh = fh + (ph * (state.pagecount - pn)) in
237 max 0 fh
239 let fh = f 0 0 0 state.pages in
243 let getpagey pageno =
244 let rec f pn ph y l =
245 match l with
246 | (n, _, h) :: rest ->
247 if n >= pageno
248 then
249 y + (pageno - pn) * ph
250 else
251 let y = y + (n - pn) * ph in
252 f n h y rest
254 | [] ->
255 y + (pageno - pn) * ph
257 f 0 0 0 state.pages;
260 let layout y sh =
261 let rec f pageno pdimno prev vy py dy l cacheleft accu =
262 if pageno = state.pagecount || cacheleft = 0
263 then accu
264 else
265 let ((_, w, h) as curr), rest, pdimno =
266 match l with
267 | ((pageno', _, _) as curr) :: rest when pageno' = pageno ->
268 curr, rest, pdimno + 1
269 | _ ->
270 prev, l, pdimno
272 let pageno' = pageno + 1 in
273 if py + h > vy
274 then
275 let py' = vy - py in
276 let vh = h - py' in
277 if dy + vh > sh
278 then
279 let vh = sh - dy in
280 if vh <= 0
281 then
282 accu
283 else
284 let e =
285 { pageno = pageno
286 ; pagedimno = pdimno
287 ; pagew = w
288 ; pageh = h
289 ; pagedispy = dy
290 ; pagey = py'
291 ; pagevh = vh
294 e :: accu
295 else
296 let e =
297 { pageno = pageno
298 ; pagedimno = pdimno
299 ; pagew = w
300 ; pageh = h
301 ; pagedispy = dy
302 ; pagey = py'
303 ; pagevh = vh
306 let accu = e :: accu in
307 f pageno' pdimno curr
308 (vy + vh) (py + h) (dy + vh + 2) rest
309 (pred cacheleft) accu
310 else
311 f pageno' pdimno curr vy (py + h) dy rest cacheleft accu
313 let accu = f 0 ~-1 (0,0,0) y 0 0 state.pages (cblen state.pagecache) [] in
314 state.maxy <- calcheight ();
315 List.rev accu
318 let clamp incr =
319 let y = state.y + incr in
320 let y = max 0 y in
321 let y = min y (state.maxy - (if conf.maxhfit then state.h else 0)) in
325 let gotoy y =
326 let y = max 0 y in
327 let y = min state.maxy y in
328 let pages = layout y state.h in
329 state.y <- y;
330 state.layout <- pages;
331 if conf.redispimm
332 then
333 Glut.postRedisplay ()
337 let addnav () =
338 cbput state.navhist (yratio state.y);
339 cbrfollowlen state.navhist;
342 let getnav () =
343 let y = cbget state.navhist in
344 truncate (y *. float state.maxy)
347 let gotopage n top =
348 let y = getpagey n in
349 addnav ();
350 state.y <- y + top;
351 gotoy state.y;
354 let reshape ~w ~h =
355 state.w <- w;
356 state.h <- h;
357 GlDraw.viewport 0 0 w h;
358 GlMat.mode `modelview;
359 GlMat.load_identity ();
360 GlMat.mode `projection;
361 GlMat.load_identity ();
362 GlMat.rotate ~x:1.0 ~angle:180.0 ();
363 GlMat.translate ~x:~-.1.0 ~y:~-.1.0 ();
364 GlMat.scale3 (2.0 /. float w, 2.0 /. float state.h, 1.0);
365 GlClear.color (1., 1., 1.);
366 GlClear.clear [`color];
367 state.layout <- [];
368 state.pages <- [];
369 state.rects <- [];
370 state.text <- "";
371 wcmd "geometry" [`i (state.w - conf.scrollw); `i h];
374 let showtext c s =
375 if not conf.titletext
376 then (
377 GlDraw.color (0.0, 0.0, 0.0);
378 GlDraw.rect
379 (0.0, float (state.h - 18))
380 (float (state.w - conf.scrollw - 1), float state.h)
382 let font = Glut.BITMAP_8_BY_13 in
383 GlDraw.color (1.0, 1.0, 1.0);
384 GlPix.raster_pos ~x:0.0 ~y:(float (state.h - 5)) ();
385 Glut.bitmapCharacter ~font ~c:(Char.code c);
386 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
388 else
389 let len = String.length s in
390 let dst = String.create (len + 1) in
391 dst.[0] <- c;
392 StringLabels.blit
393 ~src:s
394 ~dst
395 ~src_pos:0
396 ~dst_pos:1
397 ~len
399 Glut.setWindowTitle ~title:dst
402 let enttext () =
403 let len = String.length state.text in
404 match state.textentry with
405 | None ->
406 if len > 0 then showtext ' ' state.text
408 | Some (c, text, _, _) ->
409 let s =
410 if len > 0
411 then
412 text ^ " [" ^ state.text ^ "]"
413 else
414 text
416 showtext c s;
419 let act cmd =
420 match cmd.[0] with
421 | 'c' ->
422 state.pages <- []
424 | 'd' ->
425 Glut.postRedisplay ()
427 | 'C' ->
428 let n = Scanf.sscanf cmd "C %d" (fun n -> n) in
429 state.pagecount <- n;
430 let rely = yratio state.y in
431 let maxy = calcheight () in
432 state.y <- truncate (float maxy *. rely);
433 let pages = layout state.y state.h in
434 state.layout <- pages;
435 Glut.postRedisplay ();
437 | 'T' ->
438 let s = Scanf.sscanf cmd "T %n"
439 (fun n -> String.sub cmd n (String.length cmd - n))
441 state.text <- s;
442 showtext ' ' s;
443 Glut.swapBuffers ();
444 (* Glut.postRedisplay () *)
446 | 'F' ->
447 let pageno, c, x0, y0, x1, y1 =
448 Scanf.sscanf cmd "F %d %d %f %f %f %f"
449 (fun p c x0 y0 x1 y1 -> (p, c, x0, y0, x1, y1))
451 let y = (getpagey pageno) + truncate y0 in
452 addnav ();
453 gotoy y;
454 state.rects <- [pageno, c, (x0, y0), (x1, y1)]
456 | 'R' ->
457 let pageno, c, x0, y0, x1, y1 =
458 Scanf.sscanf cmd "R %d %d %f %f %f %f"
459 (fun pageno c x0 y0 x1 y1 -> (pageno, c, x0, y0, x1, y1))
461 state.rects <- (pageno, c, (x0, y0), (x1, y1)) :: state.rects
463 | 'r' ->
464 let n, w, h, p =
465 Scanf.sscanf cmd "r %d %d %d %s"
466 (fun n w h p -> (n, w, h, p))
468 Hashtbl.replace state.pagemap (n, w) p;
469 let evicted = cbpeekw state.pagecache in
470 if String.length evicted > 0
471 then begin
472 wcmd "free" [`s evicted];
473 let l = Hashtbl.fold (fun k p a ->
474 if evicted = p then k :: a else a) state.pagemap []
476 List.iter (fun k -> Hashtbl.remove state.pagemap k) l;
477 end;
478 cbput state.pagecache p;
479 state.inflight <- pred state.inflight;
480 Glut.postRedisplay ()
482 | 'l' ->
483 let (n, w, h) as pagelayout =
484 Scanf.sscanf cmd "l %d %d %d" (fun n w h -> n, w, h)
486 state.pages <- pagelayout :: state.pages
488 | 'o' ->
489 let (l, n, t, pos) =
490 Scanf.sscanf cmd "o %d %d %d %n" (fun l n t pos -> l, n, t, pos)
492 let s = String.sub cmd pos (String.length cmd - pos) in
493 let outline = (s, l, n, t) in
494 let outlines =
495 match state.outlines with
496 | Olist outlines -> Olist (outline :: outlines)
497 | Oarray _ -> Olist [outline]
499 state.outlines <- outlines
501 | _ ->
502 log "unknown cmd `%S'" cmd
505 let getopaque pageno =
506 try Some (Hashtbl.find state.pagemap (pageno + 1, state.w - conf.scrollw))
507 with Not_found -> None
510 let cache pageno opaque =
511 Hashtbl.replace state.pagemap (pageno + 1, state.w - conf.scrollw) opaque
514 let validopaque opaque = String.length opaque > 0;;
516 let preload l =
517 match getopaque l.pageno with
518 | Some opaque when validopaque opaque ->
519 preload opaque
521 | None when state.inflight < 2+0*(cblen state.pagecache) ->
522 state.inflight <- succ state.inflight;
523 cache l.pageno "";
524 wcmd "render" [`i (l.pageno + 1)
525 ;`i l.pagedimno
526 ;`i l.pagew
527 ;`i l.pageh];
529 | _ -> ()
532 let idle () =
533 if not conf.redispimm && state.y != state.prevy
534 then (
535 state.prevy <- state.y;
536 Glut.postRedisplay ();
538 else
539 let r, _, _ = Unix.select [state.csock] [] [] 0.02 in
541 begin match r with
542 | [] ->
543 if conf.preload then begin
544 let h = state.h in
545 let y = if state.y < state.h then 0 else state.y - state.h in
546 let pages = layout y (h*3) in
547 List.iter preload pages;
548 end;
550 | _ ->
551 let cmd = readcmd state.csock in
552 act cmd;
553 end;
556 let search pattern forward =
557 if String.length pattern > 0
558 then
559 let pn, py =
560 match state.layout with
561 | [] -> 0, 0
562 | l :: _ ->
563 l.pageno, (l.pagey + if forward then 0 else 0*l.pagevh)
565 wcmd "search" [`b conf.icase; `i pn; `i py; `i (if forward then 1 else 0)
566 ; `s (pattern ^ "\000")]
569 let intentry text key =
570 let c = Char.unsafe_chr key in
571 match c with
572 | '0' .. '9' ->
573 let s = "x" in s.[0] <- c;
574 let text = text ^ s in
575 TEcont text
577 | _ ->
578 state.text <- Printf.sprintf "invalid char (%d, `%c')" key c;
579 TEcont text
582 let addchar s c =
583 let b = Buffer.create (String.length s + 1) in
584 Buffer.add_string b s;
585 Buffer.add_char b c;
586 Buffer.contents b;
589 let textentry text key =
590 let c = Char.unsafe_chr key in
591 match c with
592 | _ when key >= 32 && key <= 127 ->
593 let text = addchar text c in
594 TEcont text
596 | _ ->
597 log "unhandled key %d char `%c'" key (Char.unsafe_chr key);
598 TEcont text
601 let optentry text key =
602 let btos b = if b then "on" else "off" in
603 let c = Char.unsafe_chr key in
604 match c with
605 | 'r' ->
606 conf.rectsel <- not conf.rectsel;
607 TEdone ("rectsel " ^ (btos conf.rectsel))
609 | 'i' ->
610 conf.icase <- not conf.icase;
611 TEdone ("case insensitive search " ^ (btos conf.icase))
613 | 'p' ->
614 conf.preload <- not conf.preload;
615 TEdone ("preload " ^ (btos conf.preload))
617 | 't' ->
618 conf.titletext <- not conf.titletext;
619 TEdone ("titletext " ^ (btos conf.titletext))
621 | 'd' ->
622 conf.redispimm <- not conf.redispimm;
623 TEdone ("immediate redisplay " ^ (btos conf.redispimm))
625 | 'v' ->
626 conf.verbose <- not conf.verbose;
627 TEdone ("verbose " ^ (btos conf.verbose))
629 | 'h' ->
630 conf.maxhfit <- not conf.maxhfit;
631 state.maxy <- state.maxy + (if conf.maxhfit then -state.h else state.h);
632 TEdone ("maxhfit " ^ (btos conf.maxhfit))
634 | _ ->
635 state.text <- Printf.sprintf "bad option %d `%c'" key c;
636 TEstop
639 let maxoutlinerows () = (state.h - 31) / 16;;
641 let enteroutlinemode () =
642 let pageno =
643 match state.layout with
644 | [] -> -1
645 | {pageno=pageno} :: rest -> pageno
647 let outlines =
648 match state.outlines with
649 | Oarray a -> a
650 | Olist l ->
651 let a = Array.of_list (List.rev l) in
652 state.outlines <- Oarray a;
655 let active =
656 let rec loop n =
657 if n = Array.length outlines
658 then 0
659 else
660 let (_, _, outlinepageno, _) = outlines.(n) in
661 if outlinepageno >= pageno then n else loop (n+1)
663 loop 0
665 state.outline <-
666 Some (active, max 0 (active - maxoutlinerows ()), outlines, "");
667 Glut.postRedisplay ();
670 let viewkeyboard ~key ~x ~y =
671 let enttext te =
672 state.textentry <- te;
673 state.text <- "";
674 enttext ();
675 Glut.swapBuffers ()
677 match state.textentry with
678 | None ->
679 let c = Char.chr key in
680 begin match c with
681 | '\027' | 'q' ->
682 exit 0
684 | '\008' ->
685 let y = getnav () in
686 gotoy y
688 | 'o' ->
689 enteroutlinemode ()
691 | 'u' ->
692 state.rects <- [];
693 state.text <- "";
694 Glut.postRedisplay ()
696 | '/' | '?' ->
697 let ondone isforw s =
698 state.searchpattern <- s;
699 search s isforw
701 enttext (Some (c, "", textentry, ondone (c ='/')))
703 | '+' ->
704 let ondone s =
705 let n =
706 try int_of_string s with exc ->
707 state.text <- Printf.sprintf "bad integer `%s': %s"
708 s (Printexc.to_string exc);
709 max_int
711 if n != max_int
712 then (
713 conf.pagebias <- n;
714 state.text <- "page bias is now " ^ string_of_int n;
717 enttext (Some ('+', "", intentry, ondone))
719 | '-' ->
720 let ondone msg =
721 state.text <- msg;
723 enttext (Some ('-', "", optentry, ondone))
725 | '0' .. '9' ->
726 let ondone s =
727 let n =
728 try int_of_string s with exc ->
729 state.text <- Printf.sprintf "bad integer `%s': %s"
730 s (Printexc.to_string exc);
733 if n >= 0
734 then (
735 addnav ();
736 state.y <- y;
737 gotoy (getpagey (n + conf.pagebias - 1))
740 let pageentry text key =
741 match Char.unsafe_chr key with
742 | 'g' -> TEdone text
743 | _ -> intentry text key
745 let text = "x" in text.[0] <- c;
746 enttext (Some (':', text, pageentry, ondone))
748 | 'b' ->
749 conf.scrollw <- if conf.scrollw > 0 then 0 else 5;
750 reshape state.w state.h;
752 | 'f' ->
753 begin match state.fullscreen with
754 | None ->
755 state.fullscreen <- Some (state.w, state.h);
756 Glut.fullScreen ()
757 | Some (w, h) ->
758 state.fullscreen <- None;
759 Glut.reshapeWindow ~w ~h
762 | 'n' ->
763 search state.searchpattern true
765 | 'p' ->
766 search state.searchpattern false
768 | 't' ->
769 begin match state.layout with
770 | [] -> ()
771 | l :: _ ->
772 gotoy (state.y - l.pagey);
775 | ' ' | 'N' ->
776 begin match List.rev state.layout with
777 | [] -> ()
778 | l :: _ ->
779 gotoy (clamp (l.pageh - l.pagey))
782 | '\127' | 'P' ->
783 begin match state.layout with
784 | [] -> ()
785 | l :: _ ->
786 gotoy (clamp (-l.pageh));
789 | '=' ->
790 let f (fn, ln) l =
791 if fn = -1 then l.pageno, l.pageno else fn, l.pageno
793 let fn, ln = List.fold_left f (-1, -1) state.layout in
794 let s =
795 let percent = (100. *. yratio state.y) in
796 if fn = ln
797 then
798 Printf.sprintf "Page %d of %d %.2f%%"
799 (fn+1) state.pagecount percent
800 else
801 Printf.sprintf
802 "Pages %d-%d of %d %.2f%%"
803 (fn+1) (ln+1) state.pagecount percent
805 showtext ' ' s;
806 Glut.swapBuffers ()
808 | 'w' ->
809 begin match state.layout with
810 | [] -> ()
811 | l :: _ ->
812 Glut.reshapeWindow (l.pagew + conf.scrollw) l.pageh;
813 Glut.postRedisplay ();
816 | _ ->
817 vlog "huh? %d %c" key (Char.chr key);
820 | Some (c, text, onkey, ondone) when key = 8 ->
821 let len = String.length text in
822 if len = 0 || len = 1
823 then (
824 state.textentry <- None;
825 Glut.postRedisplay ();
827 else (
828 let s = String.sub text 0 (len - 1) in
829 enttext (Some (c, s, onkey, ondone))
832 | Some (c, text, onkey, ondone) ->
833 begin match Char.unsafe_chr key with
834 | '\r' | '\n' ->
835 ondone text;
836 state.textentry <- None;
837 Glut.postRedisplay ()
839 | '\027' ->
840 state.textentry <- None;
841 Glut.postRedisplay ()
843 | _ ->
844 begin match onkey text key with
845 | TEdone text ->
846 state.textentry <- None;
847 ondone text;
848 Glut.postRedisplay ()
850 | TEcont text ->
851 enttext (Some (c, text, onkey, ondone));
853 | TEstop ->
854 state.textentry <- None;
855 Glut.postRedisplay ()
856 end;
857 end;
860 let outlinekeyboard ~key ~x ~y (active, first, outlines, qsearch) =
861 let search active pattern incr =
862 let re = Str.regexp_case_fold pattern in
863 let rec loop n =
864 if n = Array.length outlines || n = -1 then None else
865 let (s, _, _, _) = outlines.(n) in
867 (try ignore (Str.search_forward re s 0); true
868 with Not_found -> false)
869 then (
870 let maxrows = maxoutlinerows () in
871 if first > n
872 then Some (n, max 0 (n - maxrows))
873 else Some (n, max first (n - maxrows))
875 else loop (n + incr)
877 loop active
879 match key with
880 | 27 ->
881 if String.length qsearch = 0
882 then (
883 state.text <- "";
884 state.outline <- None;
885 Glut.postRedisplay ();
887 else (
888 state.text <- "";
889 state.outline <- Some (active, first, outlines, "");
890 Glut.postRedisplay ();
893 | 18 | 19 ->
894 let incr = if key = 18 then -1 else 1 in
895 let active, first =
896 match search (active + incr) qsearch incr with
897 | None -> active, first
898 | Some af -> af
900 state.outline <- Some (active, first, outlines, qsearch);
901 Glut.postRedisplay ();
903 | 8 ->
904 let len = String.length qsearch in
905 if len = 0
906 then ()
907 else (
908 if len = 1
909 then (
910 state.text <- "";
911 state.outline <- Some (active, first, outlines, "");
913 else
914 let qsearch = String.sub qsearch 0 (len - 1) in
915 state.text <- qsearch;
916 state.outline <- Some (active, first, outlines, qsearch);
918 Glut.postRedisplay ()
920 | 13 ->
921 let (_, _, n, t) = outlines.(active) in
922 gotopage n t;
923 state.text <- "";
924 state.outline <- None;
925 Glut.postRedisplay ();
927 | _ when key >= 32 && key <= 127 ->
928 let pattern = addchar qsearch (Char.chr key) in
929 let pattern, active, first =
930 match search active pattern 1 with
931 | None -> qsearch, active, first
932 | Some (active, first) -> (pattern, active, first)
934 state.text <- pattern;
935 state.outline <- Some (active, first, outlines, pattern);
936 Glut.postRedisplay ()
938 | _ -> log "unknown key %d" key
941 let keyboard ~key ~x ~y =
942 match state.outline with
943 | None -> viewkeyboard ~key ~x ~y
944 | Some outline -> outlinekeyboard ~key ~x ~y outline
947 let special ~key ~x ~y =
948 match state.outline with
949 | None ->
950 let y =
951 match key with
952 | Glut.KEY_F3 -> search state.searchpattern true; state.y
953 | Glut.KEY_UP -> clamp (-conf.scrollincr)
954 | Glut.KEY_DOWN -> clamp conf.scrollincr
955 | Glut.KEY_PAGE_UP -> clamp (-state.h)
956 | Glut.KEY_PAGE_DOWN -> clamp state.h
957 | Glut.KEY_HOME -> addnav (); 0
958 | Glut.KEY_END ->
959 addnav ();
960 state.maxy - (if conf.maxhfit then state.h else 0)
961 | _ -> state.y
963 state.text <- "";
964 gotoy y
966 | Some (active, first, outlines, qsearch) ->
967 let maxrows = maxoutlinerows () in
968 let navigate incr =
969 let active = active + incr in
970 let active = max 0 (min active (Array.length outlines - 1)) in
971 let first =
972 if active > first
973 then
974 let rows = active - first in
975 if rows > maxrows then first + incr else first
976 else active
978 state.outline <- Some (active, first, outlines, qsearch);
979 Glut.postRedisplay ()
981 match key with
982 | Glut.KEY_UP -> navigate ~-1
983 | Glut.KEY_DOWN -> navigate 1
984 | Glut.KEY_PAGE_UP -> navigate ~-maxrows
985 | Glut.KEY_PAGE_DOWN -> navigate maxrows
987 | Glut.KEY_HOME ->
988 state.outline <- Some (0, 0, outlines, qsearch);
989 Glut.postRedisplay ()
991 | Glut.KEY_END ->
992 let active = Array.length outlines - 1 in
993 let first = max 0 (active - maxrows) in
994 state.outline <- Some (active, first, outlines, qsearch);
995 Glut.postRedisplay ()
997 | _ -> ()
1000 let drawplaceholder l =
1001 if true
1002 then (
1003 GlDraw.color (0.2, 0.2, 0.2);
1004 GlDraw.color (1.0, 1.0, 1.0);
1005 GlDraw.rect
1006 (0.0, float l.pagedispy)
1007 (float l.pagew, float (l.pagedispy + l.pagevh))
1009 let x = 0.0
1010 and y = float (l.pagedispy + l.pagevh - 5) in
1011 let font = Glut.BITMAP_8_BY_13 in
1012 GlDraw.color (0.0, 0.0, 0.0);
1013 GlPix.raster_pos ~x ~y ();
1014 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c))
1015 ("Loading " ^ string_of_int l.pageno);
1017 else (
1018 GlDraw.begins `quads;
1019 GlDraw.vertex2 (0.0, float l.pagedispy);
1020 GlDraw.vertex2 (float l.pagew, float l.pagedispy);
1021 GlDraw.vertex2 (float l.pagew, float (l.pagedispy + l.pagevh));
1022 GlDraw.vertex2 (0.0, float (l.pagedispy + l.pagevh));
1023 GlDraw.ends ();
1027 let now () = Unix.gettimeofday ();;
1029 let drawpage i l =
1030 begin match getopaque l.pageno with
1031 | Some opaque when validopaque opaque ->
1032 GlDraw.color (1.0, 1.0, 1.0);
1033 let a = now () in
1034 draw l.pagedispy l.pagew l.pagevh l.pagey opaque;
1035 let b = now () in
1036 let d = b-.a in
1037 vlog "draw %f sec" d;
1039 | Some _ ->
1040 drawplaceholder l
1042 | None ->
1043 if state.inflight < cblen state.pagecache
1044 then (
1045 List.iter preload state.layout;
1047 else (
1048 drawplaceholder l;
1049 vlog "inflight %d" state.inflight;
1051 end;
1052 GlDraw.color (0.5, 0.5, 0.5);
1053 GlDraw.rect
1054 (0., float i)
1055 (float (state.w - conf.scrollw), float (i + (l.pagedispy - i)))
1057 l.pagedispy + l.pagevh;
1060 let scrollindicator () =
1061 let maxy = state.maxy - (if conf.maxhfit then state.h else 0) in
1062 GlDraw.color (0.64 , 0.64, 0.64);
1063 GlDraw.rect
1064 (float (state.w - conf.scrollw), 0.)
1065 (float state.w, float state.h)
1067 GlDraw.color (0.0, 0.0, 0.0);
1068 let sh = (float (maxy + state.h) /. float state.h) in
1069 let sh = float state.h /. sh in
1070 let sh = max sh (float conf.scrollh) in
1072 let percent =
1073 if state.y = state.maxy
1074 then 1.0
1075 else float state.y /. float maxy
1077 let position = (float state.h -. sh) *. percent in
1079 let position =
1080 if position +. sh > float state.h
1081 then
1082 float state.h -. sh
1083 else
1084 position
1086 GlDraw.rect
1087 (float (state.w - conf.scrollw), position)
1088 (float state.w, position +. sh)
1092 let showsel () =
1093 match state.mstate with
1094 | Mnone ->
1097 | Msel ((x0, y0), (x1, y1)) ->
1098 let y0' = min y0 y1
1099 and y1 = max y0 y1 in
1100 let y0 = y0' in
1101 let f l =
1102 if (y0 >= l.pagedispy && y0 <= (l.pagedispy + l.pagevh))
1103 || ((y1 >= l.pagedispy)) (* && y1 <= (dy + vh))) *)
1104 then
1105 match getopaque l.pageno with
1106 | Some opaque when validopaque opaque ->
1107 let oy = -l.pagey + l.pagedispy in
1108 gettext opaque (min x0 x1, y0, max x1 x0, y1) oy conf.rectsel
1109 | _ -> ()
1111 List.iter f state.layout
1114 let showrects () =
1115 Gl.enable `blend;
1116 GlDraw.color (0.0, 0.0, 1.0) ~alpha:0.5;
1117 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1118 List.iter
1119 (fun (pageno, c, (x0, y0), (x1, y1)) ->
1120 List.iter (fun l ->
1121 if l.pageno = pageno
1122 then (
1123 let d = float (l.pagedispy - l.pagey) in
1124 GlDraw.color (0.0, 0.0, 1.0 /. float c) ~alpha:0.5;
1125 GlDraw.rect (x0, y0 +. d) (x1, y1 +. d)
1127 ) state.layout
1128 ) state.rects
1130 Gl.disable `blend;
1133 let showoutline = function
1134 | None -> ()
1135 | Some (active, first, outlines, qsearch) ->
1136 Gl.enable `blend;
1137 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1138 GlDraw.color (0., 0., 0.) ~alpha:0.85;
1139 GlDraw.rect (0., 0.) (float state.w, float state.h);
1140 Gl.disable `blend;
1142 GlDraw.color (1., 1., 1.);
1143 let font = Glut.BITMAP_9_BY_15 in
1144 let draw_string x y s =
1145 GlPix.raster_pos ~x ~y ();
1146 String.iter (fun c -> Glut.bitmapCharacter ~font ~c:(Char.code c)) s
1148 let rec loop row =
1149 if row = Array.length outlines || (row - first) * 16 > state.h
1150 then ()
1151 else (
1152 let (s, l, _, _) = outlines.(row) in
1153 let y = (row - first) * 16 in
1154 let x = 5 + 5*l in
1155 if row = active
1156 then (
1157 Gl.enable `blend;
1158 GlDraw.polygon_mode `both `line;
1159 GlFunc.blend_func `src_alpha `one_minus_src_alpha;
1160 GlDraw.color (1., 1., 1.) ~alpha:0.9;
1161 GlDraw.rect (0., float (y + 1))
1162 (float (state.w - conf.scrollw - 1), float (y + 18));
1163 GlDraw.polygon_mode `both `fill;
1164 Gl.disable `blend;
1165 GlDraw.color (1., 1., 1.);
1167 draw_string (float x) (float (y + 16)) s;
1168 loop (row+1)
1171 loop first
1174 let display () =
1175 let lasty = List.fold_left drawpage 0 (state.layout) in
1176 GlDraw.color (0.5, 0.5, 0.5);
1177 GlDraw.rect
1178 (0., float lasty)
1179 (float (state.w - conf.scrollw), float state.h)
1181 showrects ();
1182 scrollindicator ();
1183 showsel ();
1184 showoutline state.outline;
1185 enttext ();
1186 Glut.swapBuffers ();
1189 let getlink x y =
1190 let rec f = function
1191 | l :: rest ->
1192 begin match getopaque l.pageno with
1193 | Some opaque when validopaque opaque ->
1194 let y = y - l.pagedispy in
1195 if y > 0
1196 then
1197 let y = l.pagey + y in
1198 match getlink opaque x y with
1199 | None -> f rest
1200 | some -> some
1201 else
1202 f rest
1203 | _ ->
1204 f rest
1206 | [] -> None
1208 f state.layout
1211 let checklink x y =
1212 let rec f = function
1213 | l :: rest ->
1214 begin match getopaque l.pageno with
1215 | Some opaque when validopaque opaque ->
1216 let y = y - l.pagedispy in
1217 if y > 0
1218 then
1219 let y = l.pagey + y in
1220 if checklink opaque x y then true else f rest
1221 else
1222 f rest
1223 | _ ->
1224 f rest
1226 | [] -> false
1228 f state.layout
1231 let mouse ~button ~bstate ~x ~y =
1232 match button with
1233 | Glut.OTHER_BUTTON n when n == 3 || n == 4 && bstate = Glut.UP ->
1234 let incr =
1235 if n = 3
1236 then
1237 -conf.scrollincr
1238 else
1239 conf.scrollincr
1241 let incr = incr * 2 in
1242 let y = clamp incr in
1243 gotoy y
1245 | Glut.LEFT_BUTTON when state.outline = None ->
1246 let dest = if bstate = Glut.DOWN then getlink x y else None in
1247 begin match dest with
1248 | Some (pageno, top) ->
1249 gotopage pageno top
1251 | None ->
1252 if bstate = Glut.DOWN
1253 then (
1254 Glut.setCursor Glut.CURSOR_CROSSHAIR;
1255 state.mstate <- Msel ((x, y), (x, y));
1256 Glut.postRedisplay ()
1258 else (
1259 Glut.setCursor Glut.CURSOR_RIGHT_ARROW;
1260 state.mstate <- Mnone;
1264 | _ ->
1267 let mouse ~button ~state ~x ~y = mouse button state x y;;
1269 let motion ~x ~y =
1270 if state.outline = None
1271 then
1272 match state.mstate with
1273 | Mnone -> ()
1274 | Msel (a, _) ->
1275 state.mstate <- Msel (a, (x, y));
1276 Glut.postRedisplay ()
1279 let pmotion ~x ~y =
1280 if state.outline = None
1281 then
1282 match state.mstate with
1283 | Mnone when (checklink x y) ->
1284 Glut.setCursor Glut.CURSOR_INFO
1286 | Mnone ->
1287 Glut.setCursor Glut.CURSOR_RIGHT_ARROW
1289 | Msel (a, _) ->
1293 let () =
1294 let name = ref "" in
1295 Arg.parse [] (fun s -> name := s) "options:";
1296 let name =
1297 if String.length !name = 0
1298 then (prerr_endline "filename missing"; exit 1)
1299 else !name
1302 let w = 900 in
1303 let h = 900 in
1304 let _ = Glut.init Sys.argv in
1305 let () = Glut.initDisplayMode ~depth:false ~double_buffer:true () in
1306 let () = Glut.initWindowSize w h in
1307 let _ = Glut.createWindow ("llpp " ^ Filename.basename name) in
1309 let csock, ssock = Unix.socketpair Unix.PF_UNIX Unix.SOCK_STREAM 0 in
1311 init ssock;
1312 state.w <- w;
1313 state.h <- h;
1314 state.csock <- csock;
1315 state.ssock <- ssock;
1316 writecmd csock ("open " ^ name ^ "\000");
1318 let () = Glut.displayFunc display in
1319 let () = Glut.reshapeFunc reshape in
1320 let () = Glut.keyboardFunc keyboard in
1321 let () = Glut.specialFunc special in
1322 let () = Glut.idleFunc (Some idle) in
1323 let () = Glut.mouseFunc mouse in
1324 let () = Glut.motionFunc motion in
1325 let () = Glut.passiveMotionFunc pmotion in
1326 let rec handlelablglutbug () =
1328 Glut.mainLoop ();
1329 with Glut.BadEnum "key in special_of_int" ->
1330 showtext '!' " LablGlut bug: special key not recognized";
1331 Glut.swapBuffers ();
1332 handlelablglutbug ()
1334 handlelablglutbug ()