08d3cc8470820699020df6d87b55766f20b69863
[llpp.git] / wsi.ml
blob08d3cc8470820699020df6d87b55766f20b69863
1 type cursor =
2 | CURSOR_INHERIT
3 | CURSOR_INFO
4 | CURSOR_CYCLE
5 | CURSOR_CROSSHAIR
6 | CURSOR_TEXT
7 ;;
9 external cloexec : Unix.file_descr -> unit = "ml_cloexec";;
10 external glx : int -> unit = "ml_glx";;
11 external glxsync : unit -> unit = "ml_glxsync";;
12 external swapb : unit -> unit = "ml_swapb";;
13 external hasdata : Unix.file_descr -> bool = "ml_hasdata";;
14 external toutf8 : int -> string = "ml_keysymtoutf8";;
16 let dolog fmt = Format.kprintf prerr_endline fmt;;
17 let vlog fmt = Format.kprintf ignore fmt;;
19 let onot = object
20 method display = ()
21 method expose = ()
22 method reshape _ _ = ()
23 method mouse _ _ _ _ _ = ()
24 method motion _ _ = ()
25 method pmotion _ _ = ()
26 method key _ _ = ()
27 method enter _ _ = ()
28 method leave = ()
29 method quit = exit 0
30 end;;
32 class type t = object
33 method display : unit
34 method expose : unit
35 method reshape : int -> int -> unit
36 method mouse : int -> bool -> int -> int -> int -> unit
37 method motion : int -> int -> unit
38 method pmotion : int -> int -> unit
39 method key : int -> int -> unit
40 method enter : int -> int -> unit
41 method leave : unit
42 method quit : unit
43 end;;
45 type state =
46 { mutable mink : int
47 ; mutable maxk : int
48 ; mutable keymap : int array array
49 ; fifo : (string -> unit) Queue.t
50 ; mutable seq : int
51 ; mutable protoatom : int
52 ; mutable deleatom : int
53 ; mutable idbase : int
54 ; mutable fullscreen : (int -> unit)
55 ; mutable setwmname : (string -> unit)
56 ; mutable stringatom : int
57 ; mutable t : t
58 ; mutable sock : Unix.file_descr
59 ; mutable x : int
60 ; mutable y : int
61 ; mutable w : int
62 ; mutable h : int
63 ; mutable fs : fs
64 ; mutable curcurs : cursor
65 ; mutable capslmask : int
67 and fs =
68 | NoFs
69 | Fs of (int * int * int * int)
72 let state =
73 { mink = max_int
74 ; maxk = min_int
75 ; keymap = [||]
76 ; fifo = Queue.create ()
77 ; seq = 0
78 ; protoatom = -1
79 ; deleatom = -1
80 ; idbase = -1
81 ; fullscreen = (fun _ -> ())
82 ; setwmname = (fun _ -> ())
83 ; sock = Unix.stdin
84 ; t = onot
85 ; x = -1
86 ; y = -1
87 ; w = -1
88 ; h = -1
89 ; fs = NoFs
90 ; stringatom = 31
91 ; curcurs = CURSOR_INHERIT
92 ; capslmask = 0
96 let w8 s pos i = String.set s pos (Char.chr (i land 0xff));;
98 let w16 s pos i =
99 w8 s pos i;
100 w8 s (pos+1) (i lsr 8);
103 let w32 s pos i =
104 w16 s pos i;
105 w16 s (pos+2) (i lsr 16);
108 let r16 s pos =
109 let rb pos1 = Char.code (String.get s (pos + pos1)) in
110 (rb 0) lor ((rb 1) lsl 8)
113 let r16s s pos =
114 let i = r16 s pos in
115 i - ((i land 0x8000) lsl 1);
118 let r8 s pos = Char.code (String.get s pos);;
120 let r32 s pos =
121 let rb pos1 = Char.code (String.get s (pos + pos1)) in
122 let l = (rb 0) lor ((rb 1) lsl 8)
123 and u = (rb 2) lor ((rb 3) lsl 8) in
124 (u lsl 16) lor l
127 let exntos = function
128 | Unix.Unix_error (e, s, a) -> Printf.sprintf "%s(%s):%s(%d)"
129 s a (Unix.error_message e) (Obj.magic e)
130 | exn -> Printexc.to_string exn;
133 let error fmt = Printf.kprintf failwith fmt;;
135 let readstr sock n =
136 let s = String.create n in
137 let rec loop pos n =
138 let m = Unix.read sock s pos n in
139 if m = 0
140 then state.t#quit;
141 if n != m
142 then (
143 ignore (Unix.select [sock] [] [] 0.01);
144 loop (pos + m) (n - m)
147 loop 0 n;
151 let sendstr1 s pos len sock =
152 vlog "%d => %S" state.seq s;
153 state.seq <- state.seq + 1;
154 let n = Unix.send sock s pos len [] in
155 if n != len
156 then error "send %d returned %d" len n;
159 let updkmap sock resp =
160 let syms = r8 resp 1 in
161 let len = r32 resp 4 in
162 let data =
163 if len > 0
164 then readstr sock (4*len)
165 else ""
167 let m = len / syms in
168 state.keymap <- Array.make_matrix
169 (state.maxk - state.mink) syms 0xffffff;
170 let rec loop i = if i = m then () else
171 let k = i*4*syms in
172 let rec loop2 k l = if l = syms then () else
173 let v = r32 data k in
174 state.keymap.(i).(l) <- v;
175 loop2 (k+4) (l+1)
177 loop2 k 0;
178 loop (i+1);
180 loop 0;
183 let updmodmap sock resp =
184 let n = r8 resp 1 in
185 let len = r16 resp 4 in
186 let data =
187 if len > 0
188 then readstr sock (len*4)
189 else ""
191 let modmap = Array.make_matrix 8 n 0xffffff in
192 let rec loop l = if l = 8 then () else
193 let p = l*n in
194 let rec loop1 m = if m = n then () else
195 let p = p+m in
196 let code = r8 data p in
197 modmap.(l).(m) <- code;
198 if l = 1
199 then (
200 let ki = code - state.mink in
201 if ki >= 0
202 then
203 let a = state.keymap.(ki) in
204 let rec capsloop i = if i = Array.length a || i > 3 then () else
205 let s = a.(i) in
206 if s = 0xffe5
207 then state.capslmask <- 2
208 else capsloop (i+1)
210 capsloop 0;
212 loop1 (m+1)
214 loop1 0;
215 loop (l+1)
217 loop 0;
220 let sendwithrep sock s f =
221 Queue.push f state.fifo;
222 sendstr1 s 0 (String.length s) sock;
225 let padcatl ss =
226 let b = Buffer.create 16 in
227 List.iter (Buffer.add_string b) ss;
228 let bl = Buffer.length b in
229 let pl = bl land 3 in
230 if pl != 0
231 then (
232 let pad = "123" in
233 Buffer.add_substring b pad 0 (4 - pl);
235 Buffer.contents b;
238 let padcat s1 s2 = padcatl [s1; s2];;
240 let internreq name onlyifexists =
241 let s = "\016\000\000\000\000\000\000\000" in
242 let s = padcat s name in
243 if onlyifexists then w8 s 1 1;
244 w16 s 2 (String.length s / 4);
245 w16 s 4 (String.length name);
249 let sendintern sock s onlyifexists f =
250 let s = internreq s onlyifexists in
251 sendwithrep sock s f;
254 let createwindowreq wid parent x y w h bw mask =
255 let s = "\001\000\009\000wwwwppppxxyywwhhbwccvvvvmmmmeeee" in
256 w32 s 4 wid;
257 w32 s 8 parent;
258 w16 s 12 x;
259 w16 s 14 y;
260 w16 s 16 w;
261 w16 s 18 h;
262 w16 s 20 bw;
263 w16 s 22 1;
264 w32 s 24 0;
265 w32 s 28 0x800; (* eventmask *)
266 w32 s 32 mask;
270 let getgeometryreq wid =
271 let s = "\014u\002\000dddd" in
272 w32 s 4 wid;
276 let mapreq wid =
277 let s = "\008u\002\000wwww" in
278 w32 s 4 wid;
282 let getkeymapreq first count =
283 let s = "\101u\002\000fcuu" in
284 w8 s 4 first;
285 w8 s 5 count;
289 let changepropreq wid prop typ format props =
290 let s = "\018\000llwwwwppppttttfuuuLLLL" in
291 let s = padcat s props in
292 w16 s 2 (String.length s / 4);
293 w32 s 4 wid;
294 w32 s 8 prop;
295 w32 s 12 typ;
296 w8 s 16 format;
297 let ful = String.length props / (match format with
298 | 8 -> 1
299 | 16 -> 2
300 | 32 -> 4
301 | n -> error "no idea what %d means" n)
303 w32 s 20 ful;
307 let openfontreq fid name =
308 let s = "\045ullffffnnuu" in
309 let s = padcat s name in
310 w16 s 2 (String.length s / 4);
311 w32 s 4 fid;
312 w16 s 8 (String.length name);
316 let createglyphcursorreq fid cid cindex =
317 let s = "\094u\008\000ccccffffffffssmmrrggbbRRGGBB" in
318 w32 s 4 cid;
319 w32 s 8 fid;
320 w32 s 12 fid;
321 w16 s 16 cindex;
322 w16 s 18 (cindex+1);
323 w16 s 20 0;
324 w16 s 22 0;
325 w16 s 24 0;
326 w16 s 26 0xffff;
327 w16 s 28 0xffff;
328 w16 s 30 0xffff;
332 let changewindowattributesreq wid mask attrs =
333 let s = "\002ullwwwwmmmm" in
334 let s = padcat s attrs in
335 w16 s 2 (String.length s / 4);
336 w32 s 4 wid;
337 w32 s 8 mask;
341 let configurewindowreq wid mask values =
342 let s = "\012ullwwwwmmuu" in
343 let s = padcat s values in
344 w16 s 2 (String.length s / 4);
345 w32 s 4 wid;
346 w16 s 8 mask;
350 let s32 n =
351 let s = "1234" in
352 w32 s 0 n;
356 let clientmessage format seq wid typ data =
357 let s = "\033fsswwwwtttt" in
358 let s = padcat s data in
359 w8 s 1 format;
360 w16 s 2 seq;
361 w32 s 4 wid;
362 w32 s 8 typ;
366 let sendeventreq propagate destwid mask data =
367 let s = "\025p\011\000wwwwmmmm" in
368 let s = padcat s data in
369 w8 s 1 propagate;
370 w32 s 4 destwid;
371 w32 s 8 mask;
375 let getmodifiermappingreq () =
376 let s = "\119u\001\000" in
380 let getkeysym code mask =
381 let shift = (mask land 1) lxor ((mask land state.capslmask) lsr 1) in
382 let mod3 = if mask land 0x80 = 0x80 then 4 else 0 in
383 let mod4 = if mask land 0x20 = 0x20 then 8 else 0 in
384 let index = mod3 + mod4 + shift in
385 let keysym = state.keymap.(code-state.mink).(index) in
386 if index land 1 = 1 && keysym = 0
387 then state.keymap.(code-state.mink).(index - 1)
388 else keysym
391 let readresp sock =
392 let resp = readstr sock 32 in
393 let opcode = r8 resp 0 in
394 match opcode land lnot 0x80 with
395 | 0 -> (* error *)
396 let s = resp in
397 let code = r8 s 1
398 and serial = r16 s 2
399 and resid = r32 resp 4
400 and min = r16 s 8
401 and maj = r8 s 10 in
402 error "code=%d serial=%d resid=%#x min=%d maj=%d\n%S"
403 code serial resid min maj resp;
405 | 1 -> (* response *)
406 let rep = Queue.pop state.fifo in
407 rep resp;
409 | 2 -> (* key press *)
410 if Array.length state.keymap > 0
411 then
412 let code = r8 resp 1 in
413 let mask = r16 resp 28 in
414 let keysym = getkeysym code mask in
415 vlog "keysym = %x %c mask %#x code %d"
416 keysym (Char.unsafe_chr keysym) mask code;
417 state.t#key keysym mask;
419 | 3 -> (* key release *)
420 if Array.length state.keymap > 0
421 then
422 let code = r8 resp 1 in
423 let mask = r16 resp 28 in
424 let keysym = getkeysym code mask in
425 vlog "release keysym = %x %c mask %#x code %#d"
426 keysym (Char.unsafe_chr keysym) mask code
428 | 4 -> (* buttonpress *)
429 let n = r8 resp 1
430 and x = r16s resp 24
431 and y = r16s resp 26
432 and m = r16 resp 28 in
433 state.t#mouse n true x y m;
434 vlog "press %d" n
436 | 5 -> (* buttonrelease *)
437 let n = r8 resp 1
438 and x = r16s resp 24
439 and y = r16s resp 26
440 and m = r16 resp 28 in
441 state.t#mouse n false x y m;
442 vlog "release %d %d %d" n x y
444 | 6 -> (* motion *)
445 let x = r16s resp 24 in
446 let y = r16s resp 26 in
447 let m = r16 resp 28 in
448 if m land 0x1f00 = 0
449 then state.t#pmotion x y
450 else state.t#motion x y;
451 vlog "move %dx%d => %d" x y m
453 | 7 -> (* enter *)
454 let x = r16s resp 24
455 and y = r16s resp 26 in
456 state.t#enter x y;
457 vlog "enter %d %d" x y
459 | 8 -> (* leave *)
460 state.t#leave
462 | 18 -> vlog "unmap";
464 | 19 -> (* map *)
465 vlog "map";
467 | 12 -> (* exposure *)
468 vlog "exposure";
469 state.t#expose
471 | 15 -> (* visibility *)
472 let vis = r8 resp 8 in
473 if vis != 2 then state.t#expose;
474 vlog "visibility %d" vis;
476 | 34 -> (* mapping *)
477 state.keymap <- [||];
478 let s = getkeymapreq state.mink (state.maxk-state.mink-1) in
479 sendwithrep sock s (updkmap sock);
480 state.capslmask <- 0;
481 let s = getmodifiermappingreq () in
482 sendwithrep sock s (updmodmap sock);
485 | 33 -> (* clientmessage *)
486 let atom = r32 resp 8 in
487 if atom = state.protoatom
488 then (
489 let atom = r32 resp 12 in
490 if atom = state.deleatom
491 then state.t#quit;
493 vlog "atom %#x" atom
495 | 21 -> (* reparent *)
496 vlog "reparent"
498 | 22 -> (* configure *)
499 let x = r16s resp 16
500 and y = r16s resp 18
501 and w = r16 resp 20
502 and h = r16 resp 22 in
503 vlog "configure cur [%d %d %d %d] conf [%d %d %d %d]"
504 state.x state.y state.w state.h
505 x y w h
507 glxsync ();
508 if w != state.w || h != state.h
509 then (
510 state.t#reshape w h;
512 state.w <- w;
513 state.h <- h;
514 state.x <- x;
515 state.y <- y;
516 state.t#expose
518 | n ->
519 dolog "event %d %S" n resp
522 let readresp sock =
523 let rec loop () =
524 readresp sock;
525 if hasdata sock then loop ();
527 loop ();
530 let sendstr s ?(pos=0) ?(len=String.length s) sock =
531 sendstr1 s pos len sock;
532 if hasdata sock then readresp sock;
535 let reshape w h =
536 if state.fs = NoFs
537 then
538 let s = "wwuuhhuu" in
539 w32 s 0 w;
540 w32 s 4 h;
541 let s = configurewindowreq state.idbase 0x000c s in
542 sendstr s state.sock;
543 else state.fullscreen state.idbase
546 let syncsendwithrep sock secstowait s f =
547 let completed = ref false in
548 sendwithrep sock s (fun resp -> f resp; completed := true);
549 let now = Unix.gettimeofday in
550 let deadline = now () +. secstowait in
551 let rec readtillcompletion () =
552 let r, _, _ = Unix.select [sock] [] [] (deadline -. now ()) in
553 match r with
554 | [] -> error "didn't get X response in %f seconds, aborting" secstowait
555 | _ ->
556 readresp sock;
557 if not !completed
558 then readtillcompletion ()
560 readtillcompletion ();
563 let syncsendintern sock secstowait s onlyifexists f =
564 let s = internreq s onlyifexists in
565 syncsendwithrep sock secstowait s f;
568 let setup sock screennum w h =
569 let s = readstr sock 2 in
570 let n = String.length s in
571 if n != 2
572 then error "failed to read X connection setup response n=%d" n;
573 match s.[0] with
574 | '\000' ->
575 let reasonlen = r8 s 1 in
576 let s = readstr sock 6 in
577 let maj = r16 s 0
578 and min = r16 s 2
579 and add = r16 s 4 in
580 let len = add*4 in
581 let data = readstr sock len in
582 let reason = String.sub data 0 reasonlen in
583 error "X connection failed maj=%d min=%d reason=%S"
584 maj min reason
586 | '\002' -> failwith "X connection setup failed: authentication required";
588 | '\001' ->
589 let s = readstr sock 38 in
590 let maj = r16 s 0
591 and min = r16 s 2
592 and add = r16 s 4
593 and idbase = r32 s 10
594 and idmask = r32 s 14
595 and vlen = r16 s 22
596 and screens = r8 s 26
597 and formats = r8 s 27
598 and minkk = r8 s 32
599 and maxkk = r8 s 33 in
600 let data = readstr sock (4*add-32) in
601 let vendor = String.sub data 0 vlen in
602 let pos = ((vlen+3) land lnot 3) + formats*8 in
604 if screennum >= screens
605 then error "invalid screen %d, max %d" screennum (screens-1);
607 let pos =
608 let s = data in
609 let rec findscreen n pos = if n = screennum then pos else
610 let pos =
611 let ndepths = r8 s (pos+39) in
612 let rec skipdepths n pos = if n = ndepths then pos else
613 let pos =
614 let nvisiuals = r16 s (pos+2) in
615 pos + nvisiuals*24 + 8
617 skipdepths (n+1) pos
619 skipdepths n (pos+40)
621 findscreen (n+1) pos
623 findscreen 0 pos
625 let root = r32 data pos in
626 let rootw = r16 data (pos+20)
627 and rooth = r16 data (pos+22) in
628 state.mink <- minkk;
629 state.maxk <- maxkk;
630 state.idbase <- idbase;
631 vlog "vendor = %S, maj=%d min=%d" vendor maj min;
632 vlog "screens = %d formats = %d" screens formats;
633 vlog "minkk = %d maxkk = %d" minkk maxkk;
634 vlog "idbase = %#x idmask = %#x" idbase idmask;
635 vlog "root=%#x %dx%d" root rootw rooth;
637 let mask = 0
638 + 0x00000001 (* KeyPress *)
639 (* + 0x00000002 *) (* KeyRelease *)
640 + 0x00000004 (* ButtonPress *)
641 + 0x00000008 (* ButtonRelease *)
642 + 0x00000010 (* EnterWindow *)
643 + 0x00000020 (* LeaveWindow *)
644 + 0x00000040 (* PointerMotion *)
645 (* + 0x00000080 *) (* PointerMotionHint *)
646 (* + 0x00000100 *) (* Button1Motion *)
647 (* + 0x00000200 *) (* Button2Motion *)
648 (* + 0x00000400 *) (* Button3Motion *)
649 (* + 0x00000800 *) (* Button4Motion *)
650 (* + 0x00001000 *) (* Button5Motion *)
651 + 0x00002000 (* ButtonMotion *)
652 (* + 0x00004000 *) (* KeymapState *)
653 + 0x00008000 (* Exposure *)
654 + 0x00010000 (* VisibilityChange *)
655 + 0x00020000 (* StructureNotify *)
656 (* + 0x00040000 *) (* ResizeRedirect *)
657 (* + 0x00080000 *) (* SubstructureNotify *)
658 (* + 0x00100000 *) (* SubstructureRedirect *)
659 (* + 0x00200000 *) (* FocusChange *)
660 (* + 0x00400000 *) (* PropertyChange *)
661 (* + 0x00800000 *) (* ColormapChange *)
662 (* + 0x01000000 *) (* OwnerGrabButton *)
664 let wid = state.idbase in
665 let s = createwindowreq wid root 0 0 w h 0 mask in
666 sendstr s sock;
668 sendintern sock "WM_PROTOCOLS" false (fun resp ->
669 state.protoatom <- r32 resp 8;
670 sendintern sock "WM_DELETE_WINDOW" false (fun resp ->
671 state.deleatom <- r32 resp 8;
672 let s = s32 state.deleatom in
673 let s = changepropreq wid state.protoatom 4 32 s in
674 sendstr s sock;
678 syncsendintern sock 2.0 "WM_CLASS" false (fun resp ->
679 let atom = r32 resp 8 in
680 let llpp = "llpp\000llpp\000" in
681 let s = changepropreq wid atom 31 8 llpp in
682 sendstr s sock;
685 let s = mapreq wid in
686 sendstr s sock;
688 let s = getkeymapreq state.mink (state.maxk-state.mink) in
689 sendwithrep sock s (updkmap sock);
691 let s = getmodifiermappingreq () in
692 sendwithrep sock s (updmodmap sock);
694 let s = openfontreq (wid+1) "cursor" in
695 sendstr s sock;
697 Array.iteri (fun i glyphindex ->
698 let s = createglyphcursorreq (wid+1) (wid+2+i) glyphindex in
699 sendstr s sock;
700 ) [|34;48;50;58;128;152|];
702 sendintern sock "UTF8_STRING" true (fun resp ->
703 let atom = r32 resp 8 in
704 if atom != 0
705 then state.stringatom <- atom;
708 let setwmname s =
709 let s = changepropreq state.idbase 39 state.stringatom 8 s in
710 sendstr s state.sock;
712 state.setwmname <- setwmname;
713 sendintern sock "_NET_WM_NAME" true (fun resp ->
714 let atom = r32 resp 8 in
715 if atom != 0
716 then state.setwmname <- (fun s ->
717 setwmname s;
718 let s = changepropreq state.idbase atom state.stringatom 8 s in
719 sendstr s state.sock;
723 state.fullscreen <- (fun wid ->
724 let s = "xxuuyyuuwwuuhhuu" in
725 match state.fs with
726 | NoFs ->
727 w32 s 0 0;
728 w32 s 4 0;
729 w32 s 8 rootw;
730 w32 s 12 rooth;
731 let s = configurewindowreq wid 0x000f s in
732 sendstr s state.sock;
733 state.fs <- Fs (state.x, state.y, state.w, state.h);
735 | Fs (x, y, w, h) ->
736 w32 s 0 x;
737 w32 s 4 y;
738 w32 s 8 w;
739 w32 s 12 h;
740 let s = configurewindowreq wid 0x000f s in
741 sendstr s state.sock;
742 state.fs <- NoFs;
745 sendintern sock "_NET_WM_STATE" true (fun resp ->
746 let nwmsatom = r32 resp 8 in
747 if nwmsatom != 0
748 then
749 sendintern sock "_NET_WM_STATE_FULLSCREEN" true (fun resp ->
750 let fsatom = r32 resp 8 in
751 if fsatom != 0
752 then
753 state.fullscreen <-
754 (fun wid ->
755 let data = String.make 20 '\000' in
756 let fs, f =
757 match state.fs with
758 | NoFs -> Fs (-1, -1, -1, -1), 1
759 | Fs _ -> NoFs, 0
761 w32 data 0 f;
762 w32 data 4 fsatom;
764 let cm = clientmessage 32 0 wid nwmsatom data in
765 let s = sendeventreq 0 root 0x180000 cm in
766 sendstr s sock;
767 state.fs <- fs;
771 let s = getgeometryreq wid in
772 syncsendwithrep sock 2.0 s (fun resp ->
773 glx wid;
774 let w = r16 resp 16
775 and h = r16 resp 18 in
776 state.w <- w;
777 state.h <- h;
780 | c ->
781 error "unknown conection setup response %d" (Char.code c)
784 let getauth haddr dnum =
785 let haddr =
786 if haddr = "localhost" || String.length haddr = 0
787 then
788 try Unix.gethostname ()
789 with exn ->
790 dolog "failed to resolve `%S': %s" haddr (exntos exn);
791 haddr
792 else haddr
794 let path =
795 try Sys.getenv "XAUTHORITY"
796 with Not_found ->
797 try Filename.concat (Sys.getenv "HOME") ".Xauthority"
798 with Not_found -> ""
800 let readauth ic =
801 let input_string ic len =
802 let s = String.create len in
803 really_input ic s 0 len;
806 let r16 s =
807 let rb pos = Char.code (String.get s pos) in
808 (rb 1) lor ((rb 0) lsl 8)
810 let rec find () =
811 let rs () =
812 let s = input_string ic 2 in
813 let n = r16 s in
814 input_string ic n
816 let family = input_string ic 2 in
817 let addr = rs () in
818 let nums = rs () in
819 let optnum =
820 try Some (int_of_string nums)
821 with exn ->
822 dolog
823 "display number(%S) is not an integer (corrupt %S?): %s"
824 nums path (exntos exn);
825 None
827 let name = rs () in
828 let data = rs () in
830 vlog "family %S addr %S(%S) num %S(%d) name %S data %S"
831 family addr haddr nums dnum name data;
832 match optnum with
833 | Some num when addr = haddr && num = dnum ->
834 name, data
835 | _ -> find ()
837 let name, data =
838 try find ()
839 with
840 | End_of_file -> "", ""
841 | exn ->
842 dolog "exception while reading X authority data (%S): %s"
843 path (exntos exn);
844 "", ""
846 close_in ic;
847 name, data;
849 let opt =
851 if String.length path = 0
852 then None
853 else Some (open_in_bin path)
854 with exn ->
855 if Sys.file_exists path
856 then
857 dolog "failed to open X authority file `%S' : %s"
858 path (exntos exn);
859 None
861 match opt with
862 | None -> "", ""
863 | Some ic -> readauth ic
866 let init t w h osx =
867 let d =
868 try Sys.getenv "DISPLAY"
869 with exn ->
870 error "could not get DISPLAY evironment variable: %s"
871 (exntos exn)
873 let getnum w b e =
874 if b = e
875 then error "invalid DISPLAY(%s) %S" w d
876 else
877 let s = String.sub d b (e - b) in
878 try int_of_string s
879 with exn ->
880 error "invalid DISPLAY %S can not parse %s(%S): %s"
881 d w s (exntos exn)
883 let rec phost pos =
884 if pos = String.length d
885 then error "invalid DISPLAY %S no display number specified" d
886 else (
887 if d.[pos] = ':'
888 then
889 let rec pdispnum pos1 =
890 if pos1 = String.length d
891 then getnum "display number" (pos+1) pos1, 0
892 else
893 match d.[pos1] with
894 | '.' ->
895 let dispnum = getnum "display number" (pos+1) pos1 in
896 let rec pscreennum pos2 =
897 if pos2 = String.length d
898 then getnum "screen number" (pos1+1) pos2
899 else
900 match d.[pos2] with
901 | '0' .. '9' -> pscreennum (pos2+1)
902 | _ ->
903 error "invalid DISPLAY %S, cannot parse screen number" d
905 dispnum, pscreennum (pos1+1)
906 | '0' .. '9' -> pdispnum (pos1+1)
907 | _ ->
908 error "invalid DISPLAY %S, cannot parse display number" d
910 String.sub d 0 pos, pdispnum (pos+1)
911 else phost (pos+1)
914 let host, (dispnum, screennum) = phost 0 in
915 let aname, adata = getauth host dispnum in
916 let fd =
917 let fd, addr =
918 if osx || String.length host = 0 || host = "unix"
919 then
920 let addr =
921 if osx
922 then Unix.ADDR_UNIX d
923 else Unix.ADDR_UNIX ("/tmp/.X11-unix/X" ^ string_of_int dispnum)
925 let fd = Unix.socket Unix.PF_UNIX Unix.SOCK_STREAM 0 in
926 fd, addr
927 else
928 let h =
929 try Unix.gethostbyname host
930 with exn ->
931 error "cannot resolve %S: %s" host (exntos exn)
933 let addr = h.Unix.h_addr_list.(0) in
934 let port = 6000 + dispnum in
935 let fd = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
936 fd, (Unix.ADDR_INET (addr, port))
938 try Unix.connect fd addr; fd
939 with exn ->
940 error "failed to connect to X: %s" (exntos exn)
942 cloexec fd;
943 let s = "luMMmmnndduu" in
944 let s = padcat s aname in
945 let s = padcat s adata in
946 w16 s 2 11;
947 w16 s 4 0;
948 w16 s 6 (String.length aname);
949 w16 s 8 (String.length adata);
950 sendstr1 s 0 (String.length s) fd;
951 state.sock <- fd;
952 setup fd screennum w h;
953 state.t <- t;
954 fd, state.w, state.h;
957 let settitle s =
958 state.setwmname s;
961 let setcursor cursor =
962 if cursor != state.curcurs
963 then
964 let n =
965 match cursor with
966 | CURSOR_INHERIT -> -1
967 | CURSOR_INFO -> 3
968 | CURSOR_CYCLE -> 2
969 | CURSOR_CROSSHAIR -> 0
970 | CURSOR_TEXT -> 5
972 let s = s32 (if n = -1 then 0 else state.idbase+2+n) in
973 let s = changewindowattributesreq state.idbase (*cursor*)0x4000 s in
974 sendstr s state.sock;
975 state.curcurs <- cursor;
978 let fullscreen () =
979 state.fullscreen state.idbase;
982 let metamask = 0x40;;
983 let altmask = 8;;
984 let shiftmask = 1;;
985 let ctrlmask = 4;;
987 let withalt mask = mask land altmask != 0;;
988 let withctrl mask = mask land ctrlmask != 0;;
989 let withshift mask = mask land shiftmask != 0;;
990 let withmeta mask = mask land metamask != 0;;
991 let withnone mask = mask land (altmask + ctrlmask + shiftmask + metamask) = 0;;
993 let xlatt, xlatf =
994 let t = Hashtbl.create 20
995 and f = Hashtbl.create 20 in
996 let add n nl k =
997 List.iter (fun s -> Hashtbl.add t s k) (n::nl);
998 Hashtbl.add f k n
1000 let addc c =
1001 let s = String.create 1 in
1002 s.[0] <- c;
1003 add s [] (Char.code c)
1005 let addcr a b =
1006 let an = Char.code a and bn = Char.code b in
1007 for i = an to bn do addc (Char.chr i) done;
1009 addcr '0' '9';
1010 addcr 'a' 'z';
1011 addcr 'A' 'Z';
1012 String.iter addc "`~!@#$%^&*()-_=+\\|[{]};:,./<>?";
1013 for i = 0 to 29 do add ("f" ^ string_of_int (i+1)) [] (0xffbe + i) done;
1014 add "space" [] 0x20;
1015 add "ret" ["return"; "enter"] 0xff0d;
1016 add "tab" [] 0xff09;
1017 add "left" [] 0xff51;
1018 add "right" [] 0xff53;
1019 add "home" [] 0xff50;
1020 add "end" [] 0xff57;
1021 add "ins" ["insert"] 0xff63;
1022 add "del" ["delete"] 0xffff;
1023 add "esc" ["escape"] 0xff1b;
1024 add "pgup" ["pageup"] 0xff55;
1025 add "pgdown" ["pagedown"] 0xff56;
1026 add "backspace" [] 0xff08;
1027 add "up" [] 0xff52;
1028 add "down" [] 0xff54;
1029 t, f;
1032 let keyname k =
1033 try Hashtbl.find xlatf k
1034 with Not_found -> Printf.sprintf "%#x" k;
1037 let namekey name =
1038 try Hashtbl.find xlatt name
1039 with Not_found ->
1040 if String.length name = 1
1041 then Char.code name.[0]
1042 else int_of_string name;