Unify 'r' and SIGHUP behavior
[llpp.git] / wsi.ml
blobbba6a475b4062a35e919e02c1539a14d5658ef03
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
66 and fs =
67 | NoFs
68 | Fs of (int * int * int * int)
71 let state =
72 { mink = max_int
73 ; maxk = min_int
74 ; keymap = [||]
75 ; fifo = Queue.create ()
76 ; seq = 0
77 ; protoatom = -1
78 ; deleatom = -1
79 ; idbase = -1
80 ; fullscreen = (fun _ -> ())
81 ; setwmname = (fun _ -> ())
82 ; sock = Unix.stdin
83 ; t = onot
84 ; x = -1
85 ; y = -1
86 ; w = -1
87 ; h = -1
88 ; fs = NoFs
89 ; stringatom = 31
90 ; curcurs = CURSOR_INHERIT
94 let w8 s pos i = String.set s pos (Char.chr (i land 0xff));;
96 let w16 s pos i =
97 w8 s pos i;
98 w8 s (pos+1) (i lsr 8);
101 let w32 s pos i =
102 w16 s pos i;
103 w16 s (pos+2) (i lsr 16);
106 let r16 s pos =
107 let rb pos1 = Char.code (String.get s (pos + pos1)) in
108 (rb 0) lor ((rb 1) lsl 8)
111 let r16s s pos =
112 let i = r16 s pos in
113 i - ((i land 0x8000) lsl 1);
116 let r8 s pos = Char.code (String.get s pos);;
118 let r32 s pos =
119 let rb pos1 = Char.code (String.get s (pos + pos1)) in
120 let l = (rb 0) lor ((rb 1) lsl 8)
121 and u = (rb 2) lor ((rb 3) lsl 8) in
122 (u lsl 16) lor l
125 let exntos = function
126 | Unix.Unix_error (e, s, a) -> Printf.sprintf "%s(%s):%s(%d)"
127 s a (Unix.error_message e) (Obj.magic e)
128 | exn -> Printexc.to_string exn;
131 let error fmt = Printf.kprintf failwith fmt;;
133 let readstr sock n =
134 let s = String.create n in
135 let rec loop pos n =
136 let m = Unix.read sock s pos n in
137 if m = 0
138 then state.t#quit;
139 if n != m
140 then (
141 ignore (Unix.select [sock] [] [] 0.01);
142 loop (pos + m) (n - m)
145 loop 0 n;
149 let sendstr1 s pos len sock =
150 vlog "%d => %S" state.seq s;
151 state.seq <- state.seq + 1;
152 let n = Unix.send sock s pos len [] in
153 if n != len
154 then error "send %d returned %d" len n;
157 let updkmap sock resp =
158 let syms = r8 resp 1 in
159 let len = r32 resp 4 in
160 let data =
161 if len > 0
162 then readstr sock (4*len)
163 else ""
165 let m = len / syms in
166 state.keymap <- Array.make_matrix
167 (state.maxk - state.mink) syms 0xffffff;
168 let rec loop i = if i = m then () else
169 let k = i*4*syms in
170 let rec loop2 k l = if l = syms then () else
171 let v = r32 data k in
172 state.keymap.(i).(l) <- v;
173 loop2 (k+4) (l+1)
175 loop2 k 0;
176 loop (i+1);
178 loop 0;
181 let sendwithrep sock s f =
182 Queue.push f state.fifo;
183 sendstr1 s 0 (String.length s) sock;
186 let padcatl ss =
187 let b = Buffer.create 16 in
188 List.iter (Buffer.add_string b) ss;
189 let bl = Buffer.length b in
190 let pl = bl land 3 in
191 if pl != 0
192 then (
193 let pad = "123" in
194 Buffer.add_substring b pad 0 (4 - pl);
196 Buffer.contents b;
199 let padcat s1 s2 = padcatl [s1; s2];;
201 let internreq name onlyifexists =
202 let s = "\016\000\000\000\000\000\000\000" in
203 let s = padcat s name in
204 if onlyifexists then w8 s 1 1;
205 w16 s 2 (String.length s / 4);
206 w16 s 4 (String.length name);
210 let sendintern sock s onlyifexists f =
211 let s = internreq s onlyifexists in
212 sendwithrep sock s f;
215 let createwindowreq wid parent x y w h bw mask =
216 let s = "\001\000\009\000wwwwppppxxyywwhhbwccvvvvmmmmeeee" in
217 w32 s 4 wid;
218 w32 s 8 parent;
219 w16 s 12 x;
220 w16 s 14 y;
221 w16 s 16 w;
222 w16 s 18 h;
223 w16 s 20 bw;
224 w16 s 22 1;
225 w32 s 24 0;
226 w32 s 28 0x800; (* eventmask *)
227 w32 s 32 mask;
231 let getgeometryreq wid =
232 let s = "\014u\002\000dddd" in
233 w32 s 4 wid;
237 let mapreq wid =
238 let s = "\008u\002\000wwww" in
239 w32 s 4 wid;
243 let getkeymapreq first count =
244 let s = "\101u\002\000fcuu" in
245 w8 s 4 first;
246 w8 s 5 count;
250 let changepropreq wid prop typ format props =
251 let s = "\018\000llwwwwppppttttfuuuLLLL" in
252 let s = padcat s props in
253 w16 s 2 (String.length s / 4);
254 w32 s 4 wid;
255 w32 s 8 prop;
256 w32 s 12 typ;
257 w8 s 16 format;
258 let ful = String.length props / (match format with
259 | 8 -> 1
260 | 16 -> 2
261 | 32 -> 4
262 | n -> error "no idea what %d means" n)
264 w32 s 20 ful;
268 let openfontreq fid name =
269 let s = "\045ullffffnnuu" in
270 let s = padcat s name in
271 w16 s 2 (String.length s / 4);
272 w32 s 4 fid;
273 w16 s 8 (String.length name);
277 let createglyphcursorreq fid cid cindex =
278 let s = "\094u\008\000ccccffffffffssmmrrggbbRRGGBB" in
279 w32 s 4 cid;
280 w32 s 8 fid;
281 w32 s 12 fid;
282 w16 s 16 cindex;
283 w16 s 18 (cindex+1);
284 w16 s 20 0;
285 w16 s 22 0;
286 w16 s 24 0;
287 w16 s 26 0xffff;
288 w16 s 28 0xffff;
289 w16 s 30 0xffff;
293 let changewindowattributesreq wid mask attrs =
294 let s = "\002ullwwwwmmmm" in
295 let s = padcat s attrs in
296 w16 s 2 (String.length s / 4);
297 w32 s 4 wid;
298 w32 s 8 mask;
302 let configurewindowreq wid mask values =
303 let s = "\012ullwwwwmmuu" in
304 let s = padcat s values in
305 w16 s 2 (String.length s / 4);
306 w32 s 4 wid;
307 w16 s 8 mask;
311 let s32 n =
312 let s = "1234" in
313 w32 s 0 n;
317 let clientmessage format seq wid typ data =
318 let s = "\033fsswwwwtttt" in
319 let s = padcat s data in
320 w8 s 1 format;
321 w16 s 2 seq;
322 w32 s 4 wid;
323 w32 s 8 typ;
327 let sendeventreq propagate destwid mask data =
328 let s = "\025p\011\000wwwwmmmm" in
329 let s = padcat s data in
330 w8 s 1 propagate;
331 w32 s 4 destwid;
332 w32 s 8 mask;
336 let getkeysym code mask =
337 let index = (mask land 1) lxor ((mask land 2) lsr 1) in
338 let keysym = state.keymap.(code-state.mink).(index) in
339 if index = 1 && keysym = 0
340 then state.keymap.(code-state.mink).(0)
341 else keysym
344 let readresp sock =
345 let resp = readstr sock 32 in
346 let opcode = r8 resp 0 in
347 match opcode land lnot 0x80 with
348 | 0 -> (* error *)
349 let s = resp in
350 let code = r8 s 1
351 and serial = r16 s 2
352 and resid = r32 resp 4
353 and min = r16 s 8
354 and maj = r8 s 10 in
355 error "code=%d serial=%d resid=%#x min=%d maj=%d\n%S"
356 code serial resid min maj resp;
358 | 1 -> (* response *)
359 let rep = Queue.pop state.fifo in
360 rep resp;
362 | 2 -> (* key press *)
363 if Array.length state.keymap > 0
364 then
365 let code = r8 resp 1 in
366 let mask = r16 resp 28 in
367 let keysym = getkeysym code mask in
368 vlog "keysym = %x %c" keysym (Char.unsafe_chr keysym);
369 state.t#key keysym mask;
371 | 3 -> (* key release *)
372 if Array.length state.keymap > 0
373 then
374 let code = r8 resp 1 in
375 let mask = r16 resp 28 in
376 let keysym = getkeysym code mask in
377 vlog "release keysym = %x %c mask %#x"
378 keysym (Char.unsafe_chr keysym) mask
380 | 4 -> (* buttonpress *)
381 let n = r8 resp 1
382 and x = r16s resp 24
383 and y = r16s resp 26
384 and m = r16 resp 28 in
385 state.t#mouse n true x y m;
386 vlog "press %d" n
388 | 5 -> (* buttonrelease *)
389 let n = r8 resp 1
390 and x = r16s resp 24
391 and y = r16s resp 26
392 and m = r16 resp 28 in
393 state.t#mouse n false x y m;
394 vlog "release %d %d %d" n x y
396 | 6 -> (* motion *)
397 let x = r16s resp 24 in
398 let y = r16s resp 26 in
399 let m = r16 resp 28 in
400 if m land 0x1f00 = 0
401 then state.t#pmotion x y
402 else state.t#motion x y;
403 vlog "move %dx%d => %d" x y m
405 | 7 -> (* enter *)
406 let x = r16s resp 24
407 and y = r16s resp 26 in
408 state.t#enter x y;
409 vlog "enter %d %d" x y
411 | 8 -> (* leave *)
412 state.t#leave
414 | 18 -> vlog "unmap";
416 | 19 -> (* map *)
417 vlog "map";
419 | 12 -> (* exposure *)
420 vlog "exposure";
421 state.t#expose
423 | 15 -> (* visibility *)
424 let vis = r8 resp 8 in
425 if vis != 2 then state.t#expose;
426 vlog "visibility %d" vis;
428 | 34 -> (* mapping *)
429 state.keymap <- [||];
430 let s = getkeymapreq state.mink (state.maxk-state.mink-1) in
431 sendwithrep sock s (updkmap sock);
433 | 33 -> (* clientmessage *)
434 let atom = r32 resp 8 in
435 if atom = state.protoatom
436 then (
437 let atom = r32 resp 12 in
438 if atom = state.deleatom
439 then state.t#quit;
441 vlog "atom %#x" atom
443 | 21 -> (* reparent *)
444 vlog "reparent"
446 | 22 -> (* configure *)
447 let x = r16s resp 16
448 and y = r16s resp 18
449 and w = r16 resp 20
450 and h = r16 resp 22 in
451 vlog "configure cur [%d %d %d %d] conf [%d %d %d %d]"
452 state.x state.y state.w state.h
453 x y w h
455 glxsync ();
456 if w != state.w || h != state.h
457 then (
458 state.t#reshape w h;
460 state.w <- w;
461 state.h <- h;
462 state.x <- x;
463 state.y <- y;
464 state.t#expose
466 | n ->
467 dolog "event %d %S" n resp
470 let readresp sock =
471 let rec loop () =
472 readresp sock;
473 if hasdata sock then loop ();
475 loop ();
478 let sendstr s ?(pos=0) ?(len=String.length s) sock =
479 sendstr1 s pos len sock;
480 if hasdata sock then readresp sock;
483 let reshape w h =
484 if state.fs = NoFs
485 then
486 let s = "wwuuhhuu" in
487 w32 s 0 w;
488 w32 s 4 h;
489 let s = configurewindowreq state.idbase 0x000c s in
490 sendstr s state.sock;
491 else state.fullscreen state.idbase
494 let syncsendwithrep sock secstowait s f =
495 let completed = ref false in
496 sendwithrep sock s (fun resp -> f resp; completed := true);
497 let now = Unix.gettimeofday in
498 let deadline = now () +. secstowait in
499 let rec readtillcompletion () =
500 let r, _, _ = Unix.select [sock] [] [] (deadline -. now ()) in
501 match r with
502 | [] -> error "didn't get X response in %f seconds, aborting" secstowait
503 | _ ->
504 readresp sock;
505 if not !completed
506 then readtillcompletion ()
508 readtillcompletion ();
511 let syncsendintern sock secstowait s onlyifexists f =
512 let s = internreq s onlyifexists in
513 syncsendwithrep sock secstowait s f;
516 let setup sock screennum w h =
517 let s = readstr sock 2 in
518 let n = String.length s in
519 if n != 2
520 then error "failed to read X connection setup response n=%d" n;
521 match s.[0] with
522 | '\000' ->
523 let reasonlen = r8 s 1 in
524 let s = readstr sock 6 in
525 let maj = r16 s 0
526 and min = r16 s 2
527 and add = r16 s 4 in
528 let len = add*4 in
529 let data = readstr sock len in
530 let reason = String.sub data 0 reasonlen in
531 error "X connection failed maj=%d min=%d reason=%S"
532 maj min reason
534 | '\002' -> failwith "X connection setup failed: authentication required";
536 | '\001' ->
537 let s = readstr sock 38 in
538 let maj = r16 s 0
539 and min = r16 s 2
540 and add = r16 s 4
541 and idbase = r32 s 10
542 and idmask = r32 s 14
543 and vlen = r16 s 22
544 and screens = r8 s 26
545 and formats = r8 s 27
546 and minkk = r8 s 32
547 and maxkk = r8 s 33 in
548 let data = readstr sock (4*add-32) in
549 let vendor = String.sub data 0 vlen in
550 let pos = ((vlen+3) land lnot 3) + formats*8 in
552 if screennum >= screens
553 then error "invalid screen %d, max %d" screennum (screens-1);
555 let pos =
556 let s = data in
557 let rec findscreen n pos = if n = screennum then pos else
558 let pos =
559 let ndepths = r8 s (pos+39) in
560 let rec skipdepths n pos = if n = ndepths then pos else
561 let pos =
562 let nvisiuals = r16 s (pos+2) in
563 pos + nvisiuals*24 + 8
565 skipdepths (n+1) pos
567 skipdepths n (pos+40)
569 findscreen (n+1) pos
571 findscreen 0 pos
573 let root = r32 data pos in
574 let rootw = r16 data (pos+20)
575 and rooth = r16 data (pos+22) in
576 state.mink <- minkk;
577 state.maxk <- maxkk;
578 state.idbase <- idbase;
579 vlog "vendor = %S, maj=%d min=%d" vendor maj min;
580 vlog "screens = %d formats = %d" screens formats;
581 vlog "minkk = %d maxkk = %d" minkk maxkk;
582 vlog "idbase = %#x idmask = %#x" idbase idmask;
583 vlog "root=%#x %dx%d" root rootw rooth;
585 let mask = 0
586 + 0x00000001 (* KeyPress *)
587 (* + 0x00000002 *) (* KeyRelease *)
588 + 0x00000004 (* ButtonPress *)
589 + 0x00000008 (* ButtonRelease *)
590 + 0x00000010 (* EnterWindow *)
591 + 0x00000020 (* LeaveWindow *)
592 + 0x00000040 (* PointerMotion *)
593 (* + 0x00000080 *) (* PointerMotionHint *)
594 (* + 0x00000100 *) (* Button1Motion *)
595 (* + 0x00000200 *) (* Button2Motion *)
596 (* + 0x00000400 *) (* Button3Motion *)
597 (* + 0x00000800 *) (* Button4Motion *)
598 (* + 0x00001000 *) (* Button5Motion *)
599 + 0x00002000 (* ButtonMotion *)
600 (* + 0x00004000 *) (* KeymapState *)
601 + 0x00008000 (* Exposure *)
602 + 0x00010000 (* VisibilityChange *)
603 + 0x00020000 (* StructureNotify *)
604 (* + 0x00040000 *) (* ResizeRedirect *)
605 (* + 0x00080000 *) (* SubstructureNotify *)
606 (* + 0x00100000 *) (* SubstructureRedirect *)
607 (* + 0x00200000 *) (* FocusChange *)
608 (* + 0x00400000 *) (* PropertyChange *)
609 (* + 0x00800000 *) (* ColormapChange *)
610 (* + 0x01000000 *) (* OwnerGrabButton *)
612 let wid = state.idbase in
613 let s = createwindowreq wid root 0 0 w h 0 mask in
614 sendstr s sock;
616 sendintern sock "WM_PROTOCOLS" false (fun resp ->
617 state.protoatom <- r32 resp 8;
618 sendintern sock "WM_DELETE_WINDOW" false (fun resp ->
619 state.deleatom <- r32 resp 8;
620 let s = s32 state.deleatom in
621 let s = changepropreq wid state.protoatom 4 32 s in
622 sendstr s sock;
626 syncsendintern sock 2.0 "WM_CLASS" false (fun resp ->
627 let atom = r32 resp 8 in
628 let llpp = "llpp\000llpp\000" in
629 let s = changepropreq wid atom 31 8 llpp in
630 sendstr s sock;
633 let s = mapreq wid in
634 sendstr s sock;
636 let s = getkeymapreq state.mink (state.maxk-state.mink) in
637 sendwithrep sock s (updkmap sock);
639 let s = openfontreq (wid+1) "cursor" in
640 sendstr s sock;
642 Array.iteri (fun i glyphindex ->
643 let s = createglyphcursorreq (wid+1) (wid+2+i) glyphindex in
644 sendstr s sock;
645 ) [|34;48;50;58;128;152|];
647 sendintern sock "UTF8_STRING" true (fun resp ->
648 let atom = r32 resp 8 in
649 if atom != 0
650 then state.stringatom <- atom;
653 let setwmname s =
654 let s = changepropreq state.idbase 39 state.stringatom 8 s in
655 sendstr s state.sock;
657 state.setwmname <- setwmname;
658 sendintern sock "_NET_WM_NAME" true (fun resp ->
659 let atom = r32 resp 8 in
660 if atom != 0
661 then state.setwmname <- (fun s ->
662 setwmname s;
663 let s = changepropreq state.idbase atom state.stringatom 8 s in
664 sendstr s state.sock;
668 state.fullscreen <- (fun wid ->
669 let s = "xxuuyyuuwwuuhhuu" in
670 match state.fs with
671 | NoFs ->
672 w32 s 0 0;
673 w32 s 4 0;
674 w32 s 8 rootw;
675 w32 s 12 rooth;
676 let s = configurewindowreq wid 0x000f s in
677 sendstr s state.sock;
678 state.fs <- Fs (state.x, state.y, state.w, state.h);
680 | Fs (x, y, w, h) ->
681 w32 s 0 x;
682 w32 s 4 y;
683 w32 s 8 w;
684 w32 s 12 h;
685 let s = configurewindowreq wid 0x000f s in
686 sendstr s state.sock;
687 state.fs <- NoFs;
690 sendintern sock "_NET_WM_STATE" true (fun resp ->
691 let nwmsatom = r32 resp 8 in
692 if nwmsatom != 0
693 then
694 sendintern sock "_NET_WM_STATE_FULLSCREEN" true (fun resp ->
695 let fsatom = r32 resp 8 in
696 if fsatom != 0
697 then
698 state.fullscreen <-
699 (fun wid ->
700 let data = String.make 20 '\000' in
701 let fs, f =
702 match state.fs with
703 | NoFs -> Fs (-1, -1, -1, -1), 1
704 | Fs _ -> NoFs, 0
706 w32 data 0 f;
707 w32 data 4 fsatom;
709 let cm = clientmessage 32 0 wid nwmsatom data in
710 let s = sendeventreq 0 root 0x180000 cm in
711 sendstr s sock;
712 state.fs <- fs;
716 let s = getgeometryreq wid in
717 syncsendwithrep sock 2.0 s (fun resp ->
718 glx wid;
719 let w = r16 resp 16
720 and h = r16 resp 18 in
721 state.w <- w;
722 state.h <- h;
725 | c ->
726 error "unknown conection setup response %d" (Char.code c)
729 let getauth haddr dnum =
730 let haddr =
731 if haddr = "localhost" || String.length haddr = 0
732 then
733 try Unix.gethostname ()
734 with exn ->
735 dolog "failed to resolve `%S': %s" haddr (exntos exn);
736 haddr
737 else haddr
739 let path =
740 try Sys.getenv "XAUTHORITY"
741 with Not_found ->
742 try Filename.concat (Sys.getenv "HOME") ".Xauthority"
743 with Not_found -> ""
745 let readauth ic =
746 let input_string ic len =
747 let s = String.create len in
748 really_input ic s 0 len;
751 let r16 s =
752 let rb pos = Char.code (String.get s pos) in
753 (rb 1) lor ((rb 0) lsl 8)
755 let rec find () =
756 let rs () =
757 let s = input_string ic 2 in
758 let n = r16 s in
759 input_string ic n
761 let family = input_string ic 2 in
762 let addr = rs () in
763 let nums = rs () in
764 let optnum =
765 try Some (int_of_string nums)
766 with exn ->
767 dolog
768 "display number(%S) is not an integer (corrupt %S?): %s"
769 nums path (exntos exn);
770 None
772 let name = rs () in
773 let data = rs () in
775 vlog "family %S addr %S(%S) num %S(%d) name %S data %S"
776 family addr haddr nums dnum name data;
777 match optnum with
778 | Some num when addr = haddr && num = dnum ->
779 name, data
780 | _ -> find ()
782 let name, data =
783 try find ()
784 with
785 | End_of_file -> "", ""
786 | exn ->
787 dolog "exception while reading X authority data (%S): %s"
788 path (exntos exn);
789 "", ""
791 close_in ic;
792 name, data;
794 let opt =
796 if String.length path = 0
797 then None
798 else Some (open_in_bin path)
799 with exn ->
800 if Sys.file_exists path
801 then
802 dolog "failed to open X authority file `%S' : %s"
803 path (exntos exn);
804 None
806 match opt with
807 | None -> "", ""
808 | Some ic -> readauth ic
811 let init t w h osx =
812 let d =
813 try Sys.getenv "DISPLAY"
814 with exn ->
815 error "could not get DISPLAY evironment variable: %s"
816 (exntos exn)
818 let getnum w b e =
819 if b = e
820 then error "invalid DISPLAY(%s) %S" w d
821 else
822 let s = String.sub d b (e - b) in
823 try int_of_string s
824 with exn ->
825 error "invalid DISPLAY %S can not parse %s(%S): %s"
826 d w s (exntos exn)
828 let rec phost pos =
829 if pos = String.length d
830 then error "invalid DISPLAY %S no display number specified" d
831 else (
832 if d.[pos] = ':'
833 then
834 let rec pdispnum pos1 =
835 if pos1 = String.length d
836 then getnum "display number" (pos+1) pos1, 0
837 else
838 match d.[pos1] with
839 | '.' ->
840 let dispnum = getnum "display number" (pos+1) pos1 in
841 let rec pscreennum pos2 =
842 if pos2 = String.length d
843 then getnum "screen number" (pos1+1) pos2
844 else
845 match d.[pos2] with
846 | '0' .. '9' -> pscreennum (pos2+1)
847 | _ ->
848 error "invalid DISPLAY %S, cannot parse screen number" d
850 dispnum, pscreennum (pos1+1)
851 | '0' .. '9' -> pdispnum (pos1+1)
852 | _ ->
853 error "invalid DISPLAY %S, cannot parse display number" d
855 String.sub d 0 pos, pdispnum (pos+1)
856 else phost (pos+1)
859 let host, (dispnum, screennum) = phost 0 in
860 let aname, adata = getauth host dispnum in
861 let fd =
862 let fd, addr =
863 if osx || String.length host = 0 || host = "unix"
864 then
865 let addr =
866 if osx
867 then Unix.ADDR_UNIX d
868 else Unix.ADDR_UNIX ("/tmp/.X11-unix/X" ^ string_of_int dispnum)
870 let fd = Unix.socket Unix.PF_UNIX Unix.SOCK_STREAM 0 in
871 fd, addr
872 else
873 let h =
874 try Unix.gethostbyname host
875 with exn ->
876 error "cannot resolve %S: %s" host (exntos exn)
878 let addr = h.Unix.h_addr_list.(0) in
879 let port = 6000 + dispnum in
880 let fd = Unix.socket Unix.PF_INET Unix.SOCK_STREAM 0 in
881 fd, (Unix.ADDR_INET (addr, port))
883 try Unix.connect fd addr; fd
884 with exn ->
885 error "failed to connect to X: %s" (exntos exn)
887 cloexec fd;
888 let s = "luMMmmnndduu" in
889 let s = padcat s aname in
890 let s = padcat s adata in
891 w16 s 2 11;
892 w16 s 4 0;
893 w16 s 6 (String.length aname);
894 w16 s 8 (String.length adata);
895 sendstr1 s 0 (String.length s) fd;
896 state.sock <- fd;
897 setup fd screennum w h;
898 state.t <- t;
899 fd, state.w, state.h;
902 let settitle s =
903 state.setwmname s;
906 let setcursor cursor =
907 if cursor != state.curcurs
908 then
909 let n =
910 match cursor with
911 | CURSOR_INHERIT -> -1
912 | CURSOR_INFO -> 3
913 | CURSOR_CYCLE -> 2
914 | CURSOR_CROSSHAIR -> 0
915 | CURSOR_TEXT -> 5
917 let s = s32 (if n = -1 then 0 else state.idbase+2+n) in
918 let s = changewindowattributesreq state.idbase (*cursor*)0x4000 s in
919 sendstr s state.sock;
920 state.curcurs <- cursor;
923 let fullscreen () =
924 state.fullscreen state.idbase;
927 let metamask = 0x40;;
928 let altmask = 8;;
929 let shiftmask = 1;;
930 let ctrlmask = 4;;
932 let withalt mask = mask land altmask != 0;;
933 let withctrl mask = mask land ctrlmask != 0;;
934 let withshift mask = mask land shiftmask != 0;;
935 let withmeta mask = mask land metamask != 0;;
936 let withnone mask = mask land (altmask + ctrlmask + shiftmask + metamask) = 0;;
938 let xlatt, xlatf =
939 let t = Hashtbl.create 20
940 and f = Hashtbl.create 20 in
941 let add n nl k =
942 List.iter (fun s -> Hashtbl.add t s k) (n::nl);
943 Hashtbl.add f k n
945 let addc c =
946 let s = String.create 1 in
947 s.[0] <- c;
948 add s [] (Char.code c)
950 let addcr a b =
951 let an = Char.code a and bn = Char.code b in
952 for i = an to bn do addc (Char.chr i) done;
954 addcr '0' '9';
955 addcr 'a' 'z';
956 addcr 'A' 'Z';
957 String.iter addc "`~!@#$%^&*()-_=+\\|[{]};:,./<>?";
958 for i = 0 to 29 do add ("f" ^ string_of_int (i+1)) [] (0xffbe + i) done;
959 add "space" [] 0x20;
960 add "ret" ["return"; "enter"] 0xff0d;
961 add "tab" [] 0xff09;
962 add "left" [] 0xff51;
963 add "right" [] 0xff53;
964 add "home" [] 0xff50;
965 add "end" [] 0xff57;
966 add "ins" ["insert"] 0xff63;
967 add "del" ["delete"] 0xffff;
968 add "esc" ["escape"] 0xff1b;
969 add "pgup" ["pageup"] 0xff55;
970 add "pgdown" ["pagedown"] 0xff56;
971 add "backspace" [] 0xff08;
972 add "up" [] 0xff52;
973 add "down" [] 0xff54;
974 t, f;
977 let keyname k =
978 try Hashtbl.find xlatf k
979 with Not_found -> Printf.sprintf "%#x" k;
982 let namekey name =
983 try Hashtbl.find xlatt name
984 with Not_found ->
985 if String.length name = 1
986 then Char.code name.[0]
987 else int_of_string name;