3 let (~
>) = Bytes.unsafe_of_string
;;
25 type wid
= int and screenno
= int and vid
= int and atom
= int;;
27 external glxinit
: string -> wid
-> screenno
-> vid
= "ml_glxinit";;
28 external glxcompleteinit
: unit -> unit = "ml_glxcompleteinit";;
29 external swapb
: unit -> unit = "ml_swapb";;
31 let vlog fmt
= Format.ksprintf ignore fmt
;;
38 method reshape _ _
= ()
39 method mouse _ _ _ _ _
= ()
40 method motion _ _
= ()
41 method pmotion _ _
= ()
45 method winstate _
= ()
51 method map
: bool -> unit
53 method visible
: visiblestate
-> unit
54 method reshape
: int -> int -> unit
55 method mouse
: int -> bool -> int -> int -> int -> unit
56 method motion
: int -> int -> unit
57 method pmotion
: int -> int -> unit
58 method key
: int -> int -> unit
59 method enter
: int -> int -> unit
61 method winstate
: winstate list
-> unit
68 ; mutable keymap
: int array array
69 ; fifo
: (bytes
-> unit) Queue.t
71 ; mutable protoatom
: atom
72 ; mutable deleatom
: atom
73 ; mutable nwmsatom
: atom
74 ; mutable maxvatom
: atom
75 ; mutable maxhatom
: atom
76 ; mutable fulsatom
: atom
77 ; mutable idbase
: int
80 ; mutable fullscreen
: (int -> unit)
81 ; mutable setwmname
: (bytes
-> unit)
82 ; mutable actwin
: (unit -> unit)
83 ; mutable stringatom
: int
85 ; mutable sock
: Unix.file_descr
91 ; mutable curcurs
: cursor
92 ; mutable capslmask
: int
93 ; mutable numlmask
: int
94 ; mutable levl3mask
: int
95 ; mutable levl5mask
: int
100 | Fs
of (int * int * int * int)
107 ; fifo
= Queue.create
()
118 ; fullscreen
= (fun _
-> ())
119 ; setwmname
= (fun _
-> ())
120 ; actwin
= (fun _
-> ())
129 ; curcurs
= CURSOR_INHERIT
140 let makereq opcode len reqlen
=
141 let s = Bytes.create len
in
147 let recv fd
s pos len
=
148 Unix.read fd
s pos len
;
152 let s = Bytes.create n
in
154 let m = tempfailureretry
(recv sock
s pos
) n
in
159 ignore
(tempfailureretry
(Unix.select
[sock
] [] []) 0.01);
160 loop (pos
+ m) (n
- m)
167 let sendstr1 s pos len sock
=
168 let s = Bytes.unsafe_to_string
s in
169 vlog "%d <= %S" state.seq
s;
170 state.seq
<- state.seq
+ 1;
171 let n = tempfailureretry
(Unix.write_substring sock
s pos
) len
in
173 then error
"send %d returned %d" len
n;
176 let updkmap sock resp
=
177 let syms = r8 resp
1 in
178 let len = r32 resp
4 in
181 then readstr sock
(4*len)
184 let m = len / syms in
185 state.keymap
<- Array.make_matrix
186 (state.maxk
- state.mink
) syms 0xffffff;
187 let rec loop i
= if i
= m then () else
189 let rec loop2 k l
= if l
= syms then () else
190 let v = r32
data k in
191 state.keymap
.(i
).(l
) <- v;
200 let updmodmap sock resp
=
202 let len = r16 resp
4 in
205 then readstr sock
(len*4)
208 if len > 0 then (*???*)
209 let modmap = Array.make_matrix
8 n 0xffffff in
210 let rec loop l
= if l
= 8 then () else
212 let rec loop1 m = if m = n then () else
214 let code = r8
data p in
215 modmap.(l
).(m) <- code;
218 let ki = code - state.mink
in
221 let a = state.keymap
.(ki) in
222 let rec capsloop i
= if i
= Array.length
a || i
> 3 then () else
225 then state.capslmask
<- 2
233 let ki = code - state.mink
in
236 let a = state.keymap
.(ki) in
237 let rec lloop i
= if i
= Array.length
a || i
> 3 then () else
240 | 0xfe03 -> state.levl3mask
<- 1 lsl l
241 | 0xfe11 -> state.levl5mask
<- 1 lsl l
242 | 0xff7f -> state.numlmask
<- 1 lsl l
256 let sendwithrep sock
s f
=
257 Queue.push f
state.fifo
;
258 sendstr1 s 0 (Bytes.length
s) sock
;
264 let b = Buffer.create
16 in
265 List.iter
(Buffer.add_bytes
b) ss
;
266 let bl = Buffer.length
b in
267 let pl = bl land 3 in
270 Buffer.add_substring
b pad 0 (4 - pl);
275 let padcat s1 s2
= padcatl [s1
; s2
];;
277 let internreq name onlyifexists
=
278 let s = makereq 16 8 8 in
279 let s = padcat s name
in
280 w8
s 1 (if onlyifexists
then 1 else 0);
281 w16
s 2 (Bytes.length
s / 4);
282 w16
s 4 (Bytes.length name
);
286 let sendintern sock
s onlyifexists f
=
287 let s = internreq s onlyifexists
in
288 sendwithrep sock
s f
;
291 let createwindowreq wid parent x y w h bw eventmask vid depth mid
=
292 let s = makereq 1 48 12 in
301 w16
s 22 0; (* copyfromparent *)
302 w32
s 24 vid
; (* visual *)
303 w32
s 28 0x280a; (* valuemask =
308 w32
s 32 0; (* background pixel *)
309 w32
s 36 0; (* border pixel*)
315 let createcolormapreq mid wid vid
=
316 let s = makereq 78 16 4 in
324 let getgeometryreq wid
=
325 let s = makereq 14 8 2 in
331 let s = makereq 8 8 2 in
336 let getkeymapreq first count
=
337 let s = makereq 101 8 2 in
343 let changepropreq wid prop typ format props
=
344 let s = makereq 18 24 0 in
345 let s = padcat s props
in
347 w16
s 2 (Bytes.length
s / 4);
352 let ful = Bytes.length props
/ (match format
with
356 | n -> error
"no idea what %d means" n)
362 let getpropreq delete wid prop typ
=
363 let s = makereq 20 24 6 in
364 w8
s 1 (if delete
then 1 else 0);
373 let openfontreq fid name
=
374 let s = makereq 45 12 0 in
375 let s = padcat s name
in
376 w16
s 2 (Bytes.length
s / 4);
378 w16
s 8 (Bytes.length name
);
382 let createglyphcursorreq fid cid cindex
=
383 let s = makereq 94 32 8 in
398 let changewindowattributesreq wid mask attrs
=
399 let s = makereq 2 12 0 in
400 let s = padcat s attrs
in
401 w16
s 2 (Bytes.length
s / 4);
407 let configurewindowreq wid mask values
=
408 let s = makereq 12 12 0 in
409 let s = padcat s values
in
410 w16
s 2 (Bytes.length
s / 4);
417 let s = Bytes.create
4 in
422 let clientmessage format seq wid typ
data =
423 let s = makereq 33 12 0 in
424 let s = padcat s data in
432 let sendeventreq propagate destwid mask
data =
433 let s = makereq 25 12 11 in
434 let s = padcat s data in
442 let getmodifiermappingreq () =
446 let queryextensionreq name
=
447 let s = makereq 98 8 0 in
448 let s = padcat s name
in
449 w16
s 2 (Bytes.length
s / 4);
450 w16
s 4 (Bytes.length name
);
454 let getkeysym pkpk
code mask
=
455 if (pkpk
>= 0xff80 && pkpk
<= 0xffbd)
456 || (pkpk
>= 0x11000000 && pkpk
<= 0x1100ffff)
458 if mask
land state.numlmask
!= 0
460 let keysym = state.keymap
.(code-state.mink
).(1) in
461 if keysym = 0 then pkpk
else keysym
466 if pkpk
land 0xf000 = 0xf000
468 else (mask
land 1) lxor ((mask
land state.capslmask
) lsr 1)
471 if state.xkb
&& mask
land 0x2000 != 0
475 let l3 = (mask
land state.levl3mask
) != 0 in
476 let l4 = (mask
land state.levl5mask
) != 0 in
478 if l3 then (if l4 then 8 else 4) else (if l4 then 6 else 0)
480 let keysym = state.keymap
.(code-state.mink
).(index) in
481 if index land 1 = 1 && keysym = 0
482 then state.keymap
.(code-state.mink
).(index - 1)
487 let getkeysym code mask
=
488 let pkpk = state.keymap
.(code-state.mink
).(0) in
489 if state.xkb
&& pkpk lsr 8 = 0xfe (* XKB *)
491 else getkeysym pkpk code mask
495 let resp = readstr sock
32 in
496 let opcode = r8
resp 0 in
497 match opcode land lnot
0x80 with
502 and resid
= r32
resp 4
505 error
"code=%d serial=%d resid=%#x min=%d maj=%d\n%S"
506 code serial resid min maj
(Bytes.unsafe_to_string
resp);
508 | 1 -> (* response *)
509 let rep = Queue.pop
state.fifo
in
512 | 2 -> (* key press *)
513 if Array.length
state.keymap
> 0
515 let code = r8
resp 1 in
516 let mask = r16
resp 28 in
517 let keysym = getkeysym code mask in
518 vlog "keysym = %x %c mask %#x code %d"
519 keysym (Char.unsafe_chr
keysym) mask code;
520 state.t#key
keysym mask;
522 | 3 -> (* key release *)
523 if Array.length
state.keymap
> 0
525 let code = r8
resp 1 in
526 let mask = r16
resp 28 in
527 let keysym = getkeysym code mask in
528 vlog "release keysym = %x %c mask %#x code %#d"
529 keysym (Char.unsafe_chr
keysym) mask code
531 | 4 -> (* buttonpress *)
535 and m = r16
resp 28 in
536 state.t#mouse
n true x y
m;
539 | 5 -> (* buttonrelease *)
543 and m = r16
resp 28 in
544 state.t#mouse
n false x y
m;
545 vlog "release %d %d %d" n x y
548 let x = r16s
resp 24 in
549 let y = r16s
resp 26 in
550 let m = r16
resp 28 in
552 then state.t#pmotion
x y
553 else state.t#motion
x y;
554 vlog "move %dx%d => %d" x y m
558 and y = r16s
resp 26 in
560 vlog "enter %d %d" x y
573 | 12 -> (* exposure *)
577 | 15 -> (* visibility *)
582 | 1 -> PartiallyObscured
585 dolog
"unknown visibility %d" v;
589 vlog "visibility %d" v;
591 | 34 -> (* mapping *)
593 let s = getkeymapreq state.mink
(state.maxk
-state.mink
-1) in
594 sendwithrep sock
s (updkmap sock
);
595 state.capslmask
<- 0;
596 state.levl3mask
<- 0;
597 state.levl5mask
<- 0;
599 let s = getmodifiermappingreq () in
600 sendwithrep sock
s (updmodmap sock
);
602 | 33 -> (* clientmessage *)
603 let atom = r32
resp 8 in
604 if atom = state.protoatom
606 let atom = r32
resp 12 in
607 if atom = state.deleatom
612 | 21 -> (* reparent *)
615 | 22 -> (* configure *)
619 and h
= r16
resp 22 in
620 vlog "configure cur [%d %d %d %d] conf [%d %d %d %d]"
621 state.x state.y state.w
state.h
624 if w
!= state.w
|| h
!= state.h
635 let atom = r32
resp 8 in
636 if atom = state.nwmsatom
638 let s = getpropreq false state.wid
atom 4 in
639 sendwithrep sock
s (fun resp ->
640 let len = r32
resp 4 in
641 let nitems = r32
resp 16 in
646 let s = readstr sock
(len*4) in
647 let rec loop wsl i
= if i
= nitems then wsl else
648 let atom = r32
s (i
*4) in
650 if atom = state.maxhatom
653 if atom = state.maxvatom
656 if atom = state.fulsatom
658 state.fs
<- Fs
(state.x, state.y, state.w
, state.h
);
668 state.t#winstate
(List.sort compare
wsl)
672 dolog
"event %d %S" n (Bytes.unsafe_to_string
resp)
678 if hasdata sock
then loop ();
683 let sendstr s ?
(pos
=0) ?
(len=Bytes.length
s) sock
=
684 sendstr1 s pos
len sock
;
685 if hasdata sock
then readresp sock
;
691 let s = Bytes.create
8 in
694 let s = configurewindowreq state.wid
0x000c s in
695 sendstr s state.sock
;
696 else state.fullscreen
state.wid
703 let syncsendwithrep sock secstowait
s f
=
704 let completed = ref false in
705 sendwithrep sock
s (fun resp -> f
resp; completed := true);
706 let now = Unix.gettimeofday
in
707 let deadline = now () +. secstowait
in
708 let rec readtillcompletion () =
710 let timeout = deadline -. now () in
713 else Unix.select
[sock
] [] [] timeout
715 let r, _
, _
= tempfailureretry
sf deadline in
717 | [] -> error
"didn't get X response in %f seconds, aborting" secstowait
721 then readtillcompletion ()
723 readtillcompletion ();
727 let s = mapreq state.wid
in
728 sendstr s state.sock
;
731 let syncsendintern sock secstowait
s onlyifexists f
=
732 let s = internreq s onlyifexists
in
733 syncsendwithrep sock secstowait
s f
;
736 let setup disp sock rootwid screennum w h
=
737 let s = readstr sock
2 in
738 let n = Bytes.length
s in
740 then error
"failed to read X connection setup response n=%d" n;
741 match Bytes.get
s 0 with
743 let reasonlen = r8
s 1 in
744 let s = readstr sock
6 in
749 let data = readstr sock
len in
750 let reason = Bytes.sub
data 0 reasonlen in
751 error
"X connection failed maj=%d min=%d reason=%S"
752 maj min
(Bytes.unsafe_to_string
reason)
754 | '
\002'
-> failwith
"X connection setup failed: authentication required";
757 let s = readstr sock
38 in
761 and idbase
= r32
s 10
762 and idmask
= r32
s 14
764 and screens
= r8
s 26
765 and formats
= r8
s 27
767 and maxkk
= r8
s 33 in
768 let data = readstr sock
(4*add
-32) in
769 let vendor = Bytes.sub
data 0 vlen
in
770 let pos = ((vlen
+3) land lnot
3) + formats
*8 in
772 if screennum
>= screens
773 then error
"invalid screen %d, max %d" screennum
(screens
-1);
776 let rec findscreen n pos = if n = screennum
then pos else
778 let ndepths = r8
data (pos+39) in
779 let rec skipdepths n pos = if n = ndepths then pos else
781 let nvisiuals = r16
data (pos+2) in
782 pos + nvisiuals*24 + 8
786 skipdepths n (pos+40)
792 let root = if rootwid
= 0 then r32
data pos else rootwid
in
793 let rootw = r16
data (pos+20)
794 and rooth
= r16
data (pos+22)
795 and rootdepth
= r8
data (pos+38)in
799 state.idbase
<- idbase
;
800 vlog "vendor = %S, maj=%d min=%d" (Bytes.unsafe_to_string
vendor) maj min
;
801 vlog "screens = %d formats = %d" screens formats
;
802 vlog "minkk = %d maxkk = %d" minkk maxkk
;
803 vlog "idbase = %#x idmask = %#x" idbase idmask
;
804 vlog "root=%#x %dx%d" root rootw rooth
;
805 vlog "wmm = %d, hmm = %d" (r16
data (pos+24)) (r16
data (pos+26));
806 vlog "visualid = %#x " (r32
data (pos+32));
807 vlog "root depth = %d" rootdepth
;
809 let wid = state.idbase
in
816 let vid = glxinit disp
wid screennum
in
817 let ndepths = r8
data (pos+39) in
818 let rec finddepth n'
pos =
820 then error
"couldn't find depth for visual %#x" vid;
821 let depth = r8
data pos in
822 let nvisuals = r16
data (pos+2) in
823 let rec findvisual n pos =
825 then finddepth (n'
+1) pos
827 let id = r32
data pos in
830 else findvisual (n+1) (pos+24)
834 let depth = finddepth 0 (pos+40) in
836 let s = createcolormapreq mid root vid in
840 + 0x00000001 (* KeyPress *)
841 (* + 0x00000002 *) (* KeyRelease *)
842 + 0x00000004 (* ButtonPress *)
843 + 0x00000008 (* ButtonRelease *)
844 + 0x00000010 (* EnterWindow *)
845 + 0x00000020 (* LeaveWindow *)
846 + 0x00000040 (* PointerMotion *)
847 (* + 0x00000080 *) (* PointerMotionHint *)
848 (* + 0x00000100 *) (* Button1Motion *)
849 (* + 0x00000200 *) (* Button2Motion *)
850 (* + 0x00000400 *) (* Button3Motion *)
851 (* + 0x00000800 *) (* Button4Motion *)
852 (* + 0x00001000 *) (* Button5Motion *)
853 + 0x00002000 (* ButtonMotion *)
854 (* + 0x00004000 *) (* KeymapState *)
855 + 0x00008000 (* Exposure *)
856 + 0x00010000 (* VisibilityChange *)
857 + 0x00020000 (* StructureNotify *)
858 (* + 0x00040000 *) (* ResizeRedirect *)
859 (* + 0x00080000 *) (* SubstructureNotify *)
860 (* + 0x00100000 *) (* SubstructureRedirect *)
861 (* + 0x00200000 *) (* FocusChange *)
862 + 0x00400000 (* PropertyChange *)
863 (* + 0x00800000 *) (* ColormapChange *)
864 (* + 0x01000000 *) (* OwnerGrabButton *)
867 let s = createwindowreq wid root 0 0 w h
0 mask vid depth mid in
870 sendintern sock
(~
> "WM_PROTOCOLS") false (fun resp ->
871 state.protoatom
<- r32
resp 8;
873 sock
(~
> "WM_DELETE_WINDOW") false (fun resp ->
874 state.deleatom
<- r32
resp 8;
875 let s = s32 state.deleatom
in
876 let s = changepropreq wid state.protoatom
4 32 s in
881 sendintern sock
(~
> "WM_CLIENT_MACHINE") false (fun resp ->
882 let atom = r32
resp 8 in
885 try Unix.gethostname
()
887 dolog
"error getting host name: %s" (exntos exn
);
892 let s = changepropreq wid atom state.stringatom
8
895 sendintern sock
(~
> "_NET_WM_PID") false (fun resp ->
896 let atom = r32
resp 8 in
897 let pid = Unix.getpid
() in
899 let s = changepropreq wid atom 6(*cardinal*) 32 s in
904 state.actwin
<- (fun () ->
905 let s = Bytes.create
4 in
906 let s = configurewindowreq wid 0x40 s in
907 sendstr s state.sock
;
908 let s = mapreq wid in
909 sendstr s state.sock
;
912 sendintern sock
(~
> "_NET_ACTIVE_WINDOW") true (fun resp ->
913 let atom = r32
resp 8 in
914 state.actwin
<- (fun () ->
915 let data = Bytes.make
20 '
\000'
in
916 let cm = clientmessage 32 0 wid atom data in
917 let s = sendeventreq 0 root 0x180000 cm in
918 sendstr s state.sock
;
922 syncsendintern sock
2.0 (~
> "WM_CLASS") false (fun resp ->
923 let atom = r32
resp 8 in
924 let llpp = ~
> "llpp\000llpp\000" in
925 let s = changepropreq wid atom 31 8 llpp in
929 let s = getkeymapreq state.mink
(state.maxk
-state.mink
) in
930 sendwithrep sock
s (updkmap sock
);
932 let s = getmodifiermappingreq () in
933 sendwithrep sock
s (updmodmap sock
);
935 let s = openfontreq fid (~
> "cursor") in
938 Array.iteri
(fun i glyphindex
->
939 let s = createglyphcursorreq fid (fid+1+i
) glyphindex
in
941 ) [|34;48;50;58;128;152|];
943 sendintern sock
(~
> "UTF8_STRING") true (fun resp ->
944 let atom = r32
resp 8 in
946 then state.stringatom
<- atom;
950 let s = changepropreq wid 39 state.stringatom
8 s in
951 sendstr s state.sock
;
953 state.setwmname <- setwmname;
954 sendintern sock
(~
> "_NET_WM_NAME") true (fun resp ->
955 let atom = r32
resp 8 in
957 then state.setwmname <- (fun s ->
959 let s = changepropreq wid atom state.stringatom
8 s in
960 sendstr s state.sock
;
964 state.fullscreen
<- (fun wid ->
965 let s = Bytes.create
16 in
972 let s = configurewindowreq wid 0x000f s in
973 sendstr s state.sock
;
974 state.fs
<- Fs
(state.x, state.y, state.w
, state.h
);
981 let s = configurewindowreq wid 0x000f s in
982 sendstr s state.sock
;
986 sendintern sock
(~
> "_NET_WM_STATE") true (fun resp ->
987 state.nwmsatom
<- r32
resp 8;
988 if state.nwmsatom
!= 0
990 sendintern sock
(~
> "_NET_WM_STATE_MAXIMIZED_VERT") true (fun resp ->
991 state.maxvatom
<- r32
resp 8;
993 sendintern sock
(~
> "_NET_WM_STATE_MAXIMIZED_HORZ") true (fun resp ->
994 state.maxhatom
<- r32
resp 8;
996 sendintern sock
(~
> "_NET_WM_STATE_FULLSCREEN") true (fun resp ->
997 state.fulsatom
<- r32
resp 8;
998 if state.fulsatom
!= 0
1002 let data = Bytes.make
20 '
\000'
in
1005 | NoFs
-> Fs
(-1, -1, -1, -1), 1
1009 w32
data 4 state.fulsatom
;
1011 let cm = clientmessage 32 0 wid state.nwmsatom
data in
1012 let s = sendeventreq 0 root 0x180000 cm in
1019 let s = queryextensionreq (~
> "XKEYBOARD") in
1022 let present = r8
resp 8 in
1025 let maj = r8
resp 9 in
1026 let s = Bytes.create
8 in
1027 w8
s 0 maj; (* XKB *)
1028 w8
s 1 0; (* XKBUseExtension *)
1029 w16
s 2 2; (* request-length *)
1030 w16
s 4 1; (* wantedMajor *)
1031 w16
s 6 0; (* watnedMinor *)
1035 let supported = r8
resp 1 in
1036 state.xkb
<- supported != 0
1040 let s = getgeometryreq wid in
1041 syncsendwithrep sock
2.0 s (fun resp ->
1044 and h
= r16
resp 18 in
1050 error
"unknown conection setup response %d" (Char.code c
)
1053 let getauth haddr dnum
=
1055 if haddr = "localhost" || String.length
haddr = 0
1057 try Unix.gethostname
()
1059 dolog
"failed to resolve `%S': %s" haddr (exntos exn
);
1064 try Sys.getenv
"XAUTHORITY"
1066 try Filename.concat
(Sys.getenv
"HOME") ".Xauthority"
1067 with Not_found
-> E.s
1071 let rb pos = Char.code (Bytes.get
s pos) in
1072 (rb 1) lor ((rb 0) lsl 8)
1076 let s = really_input_string ic
2 in
1077 let n = r16be (~
> s) in
1078 really_input_string ic
n
1080 let family = really_input_string ic
2 in
1084 try Some
(int_of_string
nums)
1087 "display number(%S) is not an integer (corrupt %S?): %s"
1088 nums path (exntos exn
);
1094 vlog "family %S addr %S(%S) num %S(%d) name %S data %S"
1095 family addr haddr nums dnum
name data;
1097 | Some num
when addr = haddr && num
= dnum
->
1104 | End_of_file
-> E.s, E.s
1106 dolog
"exception while reading X authority data (%S): %s"
1113 if String.length
path = 0
1116 match open_in_bin
path with
1118 | (exception exn
) ->
1119 dolog
"failed to open X authority file `%S' : %s" path (exntos exn
);
1123 let init t rootwid
w h platform
=
1125 try Sys.getenv
"DISPLAY"
1127 error
"could not get DISPLAY evironment variable: %s"
1132 then error
"invalid DISPLAY(%s) %S" w d
1134 let s = String.sub
d b (e
- b) in
1137 error
"invalid DISPLAY %S can not parse %s(%S): %s"
1141 if pos = String.length
d
1142 then error
"invalid DISPLAY %S no display number specified" d
1146 let rec pdispnum pos1
=
1147 if pos1
= String.length
d
1148 then getnum "display number" (pos+1) pos1
, 0
1152 let dispnum = getnum "display number" (pos+1) pos1
in
1153 let rec pscreennum pos2
=
1154 if pos2
= String.length
d
1155 then getnum "screen number" (pos1
+1) pos2
1158 | '
0'
.. '
9'
-> pscreennum (pos2
+1)
1160 error
"invalid DISPLAY %S, cannot parse screen number" d
1162 dispnum, pscreennum (pos1
+1)
1163 | '
0'
.. '
9'
-> pdispnum (pos1
+1)
1165 error
"invalid DISPLAY %S, cannot parse display number" d
1167 String.sub
d 0 pos, pdispnum (pos+1)
1171 let host, (dispnum, screennum
) = phost 0 in
1172 let aname, adata
= getauth host dispnum in
1175 if String.length
host = 0 || host = "unix"
1179 | Utils.Posx
-> Unix.ADDR_UNIX
d
1181 Unix.ADDR_UNIX
("\000/tmp/.X11-unix/X" ^ string_of_int
dispnum)
1182 | Utils.Punknown
| Utils.Psun
| Utils.Pbsd
| Utils.Pcygwin
->
1183 Unix.ADDR_UNIX
("/tmp/.X11-unix/X" ^ string_of_int
dispnum)
1185 Unix.socket
Unix.PF_UNIX
Unix.SOCK_STREAM
0, addr
1188 try Unix.gethostbyname
host
1190 error
"cannot resolve %S: %s" host (exntos exn
)
1192 let addr = h.Unix.h_addr_list
.(0) in
1193 let port = 6000 + dispnum in
1194 let fd = Unix.socket
Unix.PF_INET
Unix.SOCK_STREAM
0 in
1195 fd, (Unix.ADDR_INET
(addr, port))
1197 try Unix.connect
fd addr; fd
1199 error
"failed to connect to X: %s" (exntos exn
)
1202 let s = Bytes.create
12 in
1203 let s = padcat s (~
> aname) in
1204 let s = padcat s (~
> adata
) in
1205 Bytes.set
s 0 ordermagic
;
1208 w16
s 6 (String.length
aname);
1209 w16
s 8 (String.length adata
);
1210 sendstr1 s 0 (Bytes.length
s) fd;
1212 setup d fd rootwid screennum
w h;
1214 fd, state.w, state.h;
1218 state.setwmname (~
> s);
1221 let setcursor cursor
=
1222 if cursor
!= state.curcurs
1226 | CURSOR_INHERIT
-> -1
1229 | CURSOR_CROSSHAIR
-> 0
1232 let s = s32 (if n = -1 then 0 else state.fid+1+n) in
1233 let s = changewindowattributesreq state.wid 0x4000(*cursor*) s in
1234 sendstr s state.sock
;
1235 state.curcurs
<- cursor
;
1239 state.fullscreen state.wid;
1242 let metamask = 0x40;;
1247 let withalt mask = mask land altmask != 0;;
1248 let withctrl mask = mask land ctrlmask != 0;;
1249 let withshift mask = mask land shiftmask != 0;;
1250 let withmeta mask = mask land metamask != 0;;
1251 let withnone mask = mask land (altmask + ctrlmask + shiftmask + metamask) = 0;;
1254 let t = Hashtbl.create
20
1255 and f
= Hashtbl.create
20 in
1257 List.iter
(fun s -> Hashtbl.add t s k) (n::nl
);
1261 let s = String.make
1 c
in
1262 add s [] (Char.code c
)
1265 let an = Char.code a and bn
= Char.code b in
1266 for i
= an to bn
do addc (Char.chr i
) done;
1271 String.iter
addc "`~!@#$%^&*()-_=+\\|[{]};:,./<>?";
1272 for i
= 0 to 29 do add ("f" ^ string_of_int
(i
+1)) [] (0xffbe + i
) done;
1273 add "space" [] 0x20;
1274 add "ret" ["return"; "enter"] 0xff0d;
1275 add "tab" [] 0xff09;
1276 add "left" [] 0xff51;
1277 add "right" [] 0xff53;
1278 add "home" [] 0xff50;
1279 add "end" [] 0xff57;
1280 add "ins" ["insert"] 0xff63;
1281 add "del" ["delete"] 0xffff;
1282 add "esc" ["escape"] 0xff1b;
1283 add "pgup" ["pageup"] 0xff55;
1284 add "pgdown" ["pagedown"] 0xff56;
1285 add "backspace" [] 0xff08;
1287 add "down" [] 0xff54;
1288 add "menu" [] 0xff67;
1293 try Hashtbl.find xlatf
k
1294 with Not_found
-> Printf.sprintf
"%#x" k;
1298 try Hashtbl.find xlatt name
1300 if String.length
name = 1
1301 then Char.code name.[0]
1302 else int_of_string
name;