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";;
30 external setcursor
: cursor
-> unit = "ml_setcursor";;
31 external setwinbgcol
: int -> unit = "ml_setbgcol";;
33 let vlog fmt
= Format.ksprintf ignore fmt
;;
40 method reshape _ _
= ()
41 method mouse _ _ _ _ _
= ()
42 method motion _ _
= ()
43 method pmotion _ _
= ()
47 method winstate _
= ()
54 method map
: bool -> unit
56 method visible
: visiblestate
-> unit
57 method reshape
: int -> int -> unit
58 method mouse
: int -> bool -> int -> int -> int -> unit
59 method motion
: int -> int -> unit
60 method pmotion
: int -> int -> unit
61 method key
: int -> int -> unit
62 method enter
: int -> int -> unit
64 method winstate
: winstate list
-> unit
71 ; mutable keymap
: int array array
72 ; fifo
: (bytes
-> unit) Queue.t
74 ; mutable protoatom
: atom
75 ; mutable deleatom
: atom
76 ; mutable nwmsatom
: atom
77 ; mutable maxvatom
: atom
78 ; mutable maxhatom
: atom
79 ; mutable fulsatom
: atom
80 ; mutable idbase
: int
83 ; mutable fullscreen
: (int -> unit)
84 ; mutable setwmname
: (bytes
-> unit)
85 ; mutable actwin
: (unit -> unit)
86 ; mutable stringatom
: int
88 ; mutable sock
: Unix.file_descr
94 ; mutable curcurs
: cursor
95 ; mutable capslmask
: int
96 ; mutable numlmask
: int
97 ; mutable levl3mask
: int
98 ; mutable levl5mask
: int
103 | Fs
of (int * int * int * int)
110 ; fifo
= Queue.create
()
121 ; fullscreen
= (fun _
-> ())
122 ; setwmname
= (fun _
-> ())
123 ; actwin
= (fun _
-> ())
132 ; curcurs
= CURSOR_TEXT
141 let w8 s pos i
= Bytes.set s pos
(Char.chr
(i
land 0xff));;
142 let r8 s pos
= Char.code
(Bytes.get s pos
);;
144 let ordermagic = 'l'
;;
148 w8 s
(pos
+1) (i
lsr 8)
153 w16 s
(pos
+2) (i
lsr 16)
157 let rb pos1
= Char.code
(Bytes.get s
(pos
+ pos1
)) in
158 (rb 0) lor ((rb 1) lsl 8)
163 i - ((i land 0x8000) lsl 1)
167 let rb pos1
= Char.code
(Bytes.get s
(pos
+ pos1
)) in
168 let l = (rb 0) lor ((rb 1) lsl 8)
169 and u
= (rb 2) lor ((rb 3) lsl 8) in
173 let makereq opcode len reqlen
=
174 let s = Bytes.create len
in
181 let s = Bytes.create n
in
183 let m = tempfailureretry
(Unix.read sock
s pos
) n
in
188 ignore
(tempfailureretry
(Unix.select
[sock
] [] []) 0.01);
189 loop (pos
+ m) (n
- m)
196 let sendstr1 s pos len sock
=
197 let s = Bytes.unsafe_to_string
s in
198 vlog "%d <= %S" state.seq
s;
199 state.seq
<- state.seq
+ 1;
200 let n = tempfailureretry
(Unix.write_substring sock
s pos
) len
in
202 then error
"send %d returned %d" len
n;
205 let updkmap sock resp
=
206 let syms = r8 resp
1 in
207 let len = r32 resp
4 in
210 then readstr sock
(4*len)
213 let m = len / syms in
214 state.keymap
<- Array.make_matrix
215 (state.maxk
- state.mink
) syms 0xffffff;
216 let rec loop i = if i = m then () else
218 let rec loop2 k l = if l = syms then () else
219 let v = r32 data k in
220 state.keymap
.(i).(l) <- v;
229 let updmodmap sock resp
=
231 let len = r16 resp
4 in
234 then readstr sock
(len*4)
237 if len > 0 then (*???*)
238 let modmap = Array.make_matrix
8 n 0xffffff in
248 let code = r8 data p in
249 modmap.(l).(m) <- code;
252 let ki = code - state.mink
in
255 let a = state.keymap
.(ki) in
257 if i = Array.length
a || i > 3
262 then state.capslmask
<- 2
270 let ki = code - state.mink
in
273 let a = state.keymap
.(ki) in
275 if i = Array.length
a || i > 3
280 | 0xfe03 -> state.levl3mask
<- 1 lsl l
281 | 0xfe11 -> state.levl5mask
<- 1 lsl l
282 | 0xff7f -> state.numlmask
<- 1 lsl l
296 let sendwithrep sock
s f
=
297 Queue.push f
state.fifo
;
298 sendstr1 s 0 (Bytes.length
s) sock
;
304 let b = Buffer.create
16 in
305 List.iter
(Buffer.add_bytes
b) ss
;
306 let bl = Buffer.length
b in
307 let pl = bl land 3 in
310 Buffer.add_substring
b pad 0 (4 - pl);
315 let padcat s1 s2
= padcatl [s1
; s2
];;
317 let internreq name onlyifexists
=
318 let s = makereq 16 8 8 in
319 let s = padcat s name
in
320 w8 s 1 (if onlyifexists
then 1 else 0);
321 w16 s 2 (Bytes.length
s / 4);
322 w16 s 4 (Bytes.length name
);
326 let sendintern sock
s onlyifexists f
=
327 let s = internreq s onlyifexists
in
328 sendwithrep sock
s f
;
331 let createwindowreq wid parent x y w h bw eventmask vid depth mid
=
332 let s = makereq 1 48 12 in
341 w16 s 22 0; (* copyfromparent *)
342 w32 s 24 vid
; (* visual *)
343 w32 s 28 0x280a; (* valuemask =
348 w32 s 32 0; (* background pixel *)
349 w32 s 36 0; (* border pixel*)
355 let createcolormapreq mid wid vid
=
356 let s = makereq 78 16 4 in
364 let getgeometryreq wid
=
365 let s = makereq 14 8 2 in
371 let s = makereq 8 8 2 in
376 let getkeymapreq first count
=
377 let s = makereq 101 8 2 in
383 let changepropreq wid prop typ format props
=
384 let s = makereq 18 24 0 in
385 let s = padcat s props
in
387 w16 s 2 (Bytes.length
s / 4);
392 let ful = Bytes.length props
/ (match format
with
396 | n -> error
"no idea what %d means" n)
402 let getpropreq delete wid prop typ
=
403 let s = makereq 20 24 6 in
404 w8 s 1 (if delete
then 1 else 0);
413 let configurewindowreq wid mask values
=
414 let s = makereq 12 12 0 in
415 let s = padcat s values
in
416 w16 s 2 (Bytes.length
s / 4);
423 let s = Bytes.create
4 in
428 let clientmessage format seq wid typ
data =
429 let s = makereq 33 12 0 in
430 let s = padcat s data in
438 let sendeventreq propagate destwid mask
data =
439 let s = makereq 25 12 11 in
440 let s = padcat s data in
448 let getmodifiermappingreq () =
452 let queryextensionreq name
=
453 let s = makereq 98 8 0 in
454 let s = padcat s name
in
455 w16 s 2 (Bytes.length
s / 4);
456 w16 s 4 (Bytes.length name
);
460 let getkeysym pkpk
code mask
=
461 if (pkpk
>= 0xff80 && pkpk
<= 0xffbd)
462 || (pkpk
>= 0x11000000 && pkpk
<= 0x1100ffff)
464 if mask
land state.numlmask
!= 0
466 let keysym = state.keymap
.(code-state.mink
).(1) in
467 if keysym = 0 then pkpk
else keysym
472 if pkpk
land 0xf000 = 0xf000
474 else (mask
land 1) lxor ((mask
land state.capslmask
) lsr 1)
477 if state.xkb
&& mask
land 0x2000 != 0
481 let l3 = (mask
land state.levl3mask
) != 0 in
482 let l4 = (mask
land state.levl5mask
) != 0 in
484 if l3 then (if l4 then 8 else 4) else (if l4 then 6 else 0)
486 let keysym = state.keymap
.(code-state.mink
).(index) in
487 if index land 1 = 1 && keysym = 0
488 then state.keymap
.(code-state.mink
).(index - 1)
493 let getkeysym code mask
=
494 let pkpk = state.keymap
.(code-state.mink
).(0) in
495 if state.xkb
&& pkpk lsr 8 = 0xfe (* XKB *)
497 else getkeysym pkpk code mask
501 let resp = readstr sock
32 in
502 let opcode = r8 resp 0 in
503 match opcode land lnot
0x80 with
508 and resid
= r32 resp 4
511 error
"code=%d serial=%d resid=%#x min=%d maj=%d\n%S"
512 code serial resid min maj
(Bytes.unsafe_to_string
resp);
514 | 1 -> (* response *)
515 let rep = Queue.pop
state.fifo
in
518 | 2 -> (* key press *)
519 if Array.length
state.keymap
> 0
521 let code = r8 resp 1 in
522 let mask = r16 resp 28 in
523 let keysym = getkeysym code mask in
524 vlog "keysym = %x %c mask %#x code %d"
525 keysym (Char.unsafe_chr
keysym) mask code;
527 then state.t#key
keysym mask
529 | 3 -> (* key release *)
530 if Array.length
state.keymap
> 0
532 let code = r8 resp 1 in
533 let mask = r16 resp 28 in
534 let keysym = getkeysym code mask in
535 vlog "release keysym = %x %c mask %#x code %#d"
536 keysym (Char.unsafe_chr
keysym) mask code
538 | 4 -> (* buttonpress *)
542 and m = r16 resp 28 in
543 state.t#mouse
n true x y
m;
546 | 5 -> (* buttonrelease *)
550 and m = r16 resp 28 in
551 state.t#mouse
n false x y
m;
552 vlog "release %d %d %d" n x y
555 let x = r16s resp 24 in
556 let y = r16s resp 26 in
557 let m = r16 resp 28 in
559 then state.t#pmotion
x y
560 else state.t#motion
x y;
561 vlog "move %dx%d => %d" x y m
565 and y = r16s resp 26 in
567 vlog "enter %d %d" x y
580 | 12 -> (* exposure *)
584 | 15 -> (* visibility *)
589 | 1 -> PartiallyObscured
592 dolog
"unknown visibility %d" v;
596 vlog "visibility %d" v;
598 | 34 -> (* mapping *)
600 let s = getkeymapreq state.mink
(state.maxk
-state.mink
-1) in
601 sendwithrep sock
s (updkmap sock
);
602 state.capslmask
<- 0;
603 state.levl3mask
<- 0;
604 state.levl5mask
<- 0;
606 let s = getmodifiermappingreq () in
607 sendwithrep sock
s (updmodmap sock
);
609 | 33 -> (* clientmessage *)
610 let atom = r32 resp 8 in
611 if atom = state.protoatom
613 let atom = r32 resp 12 in
614 if atom = state.deleatom
619 | 21 -> (* reparent *)
622 | 22 -> (* configure *)
626 and h
= r16 resp 22 in
627 vlog "configure cur [%d %d %d %d] conf [%d %d %d %d]"
628 state.x state.y state.w
state.h
631 if w
!= state.w
|| h
!= state.h
642 let atom = r32 resp 8 in
643 if atom = state.nwmsatom
645 let s = getpropreq false state.wid
atom 4 in
646 sendwithrep sock
s (fun resp ->
647 let len = r32 resp 4 in
648 let nitems = r32 resp 16 in
653 let s = readstr sock
(len*4) in
658 let atom = r32 s (i*4) in
660 if atom = state.maxhatom
663 if atom = state.maxvatom
666 if atom = state.fulsatom
668 state.fs
<- Fs
(state.x, state.y,
679 state.t#winstate
(List.sort compare
wsl)
683 dolog
"event %d %S" n (Bytes.unsafe_to_string
resp)
689 if hasdata sock
then loop ();
694 let sendstr s ?
(pos
=0) ?
(len=Bytes.length
s) sock
=
695 sendstr1 s pos
len sock
;
696 if hasdata sock
then readresp sock
;
702 let s = Bytes.create
8 in
705 let s = configurewindowreq state.wid
0x000c s in
706 sendstr s state.sock
;
707 else state.fullscreen
state.wid
714 let syncsendwithrep sock secstowait
s f
=
715 let completed = ref false in
716 sendwithrep sock
s (fun resp -> f
resp; completed := true);
717 let now = Unix.gettimeofday
in
718 let deadline = now () +. secstowait
in
719 let rec readtillcompletion () =
721 let timeout = deadline -. now () in
724 else Unix.select
[sock
] [] [] timeout
726 let r, _
, _
= tempfailureretry
sf deadline in
728 | [] -> error
"didn't get X response in %f seconds, aborting" secstowait
732 then readtillcompletion ()
734 readtillcompletion ();
738 let s = mapreq state.wid
in
739 sendstr s state.sock
;
742 let syncsendintern sock secstowait
s onlyifexists f
=
743 let s = internreq s onlyifexists
in
744 syncsendwithrep sock secstowait
s f
;
747 let setup disp sock rootwid screennum w h
=
748 let s = readstr sock
2 in
749 let n = Bytes.length
s in
751 then error
"failed to read X connection setup response n=%d" n;
752 match Bytes.get
s 0 with
754 let reasonlen = r8 s 1 in
755 let s = readstr sock
6 in
760 let data = readstr sock
len in
761 let reason = Bytes.sub
data 0 reasonlen in
762 error
"X connection failed maj=%d min=%d reason=%S"
763 maj min
(Bytes.unsafe_to_string
reason)
765 | '
\002'
-> failwith
"X connection setup failed: authentication required";
768 let s = readstr sock
38 in
772 and idbase
= r32 s 10
773 and idmask
= r32 s 14
775 and screens
= r8 s 26
776 and formats
= r8 s 27
778 and maxkk
= r8 s 33 in
779 let data = readstr sock
(4*add
-32) in
780 let vendor = Bytes.sub
data 0 vlen
in
781 let pos = ((vlen
+3) land lnot
3) + formats
*8 in
783 if screennum
>= screens
784 then error
"invalid screen %d, max %d" screennum
(screens
-1);
787 let rec findscreen n pos =
792 let ndepths = r8 data (pos+39) in
793 let rec skipdepths n pos =
798 let nvisiuals = r16 data (pos+2) in
799 pos + nvisiuals*24 + 8
803 skipdepths n (pos+40)
809 let root = if rootwid
= 0 then r32 data pos else rootwid
in
810 let rootw = r16 data (pos+20)
811 and rooth
= r16 data (pos+22)
812 and rootdepth
= r8 data (pos+38)in
816 state.idbase
<- idbase
;
817 vlog "vendor = %S, maj=%d min=%d" (Bytes.unsafe_to_string
vendor) maj min
;
818 vlog "screens = %d formats = %d" screens formats
;
819 vlog "minkk = %d maxkk = %d" minkk maxkk
;
820 vlog "idbase = %#x idmask = %#x" idbase idmask
;
821 vlog "root=%#x %dx%d" root rootw rooth
;
822 vlog "wmm = %d, hmm = %d" (r16 data (pos+24)) (r16 data (pos+26));
823 vlog "visualid = %#x" (r32 data (pos+32));
824 vlog "root depth = %d" rootdepth
;
826 let wid = state.idbase
in
833 let vid = glxinit disp
wid screennum
in
834 let ndepths = r8 data (pos+39) in
835 let rec finddepth n'
pos =
837 then error
"cannot find depth for visual %#x" vid;
838 let depth = r8 data pos in
839 let nvisuals = r16 data (pos+2) in
840 let rec findvisual n pos =
842 then finddepth (n'
+1) pos
844 let id = r32 data pos in
847 else findvisual (n+1) (pos+24)
851 let depth = finddepth 0 (pos+40) in
853 let s = createcolormapreq mid root vid in
857 + 0x00000001 (* KeyPress *)
858 (* + 0x00000002 *) (* KeyRelease *)
859 + 0x00000004 (* ButtonPress *)
860 + 0x00000008 (* ButtonRelease *)
861 + 0x00000010 (* EnterWindow *)
862 + 0x00000020 (* LeaveWindow *)
863 + 0x00000040 (* PointerMotion *)
864 (* + 0x00000080 *) (* PointerMotionHint *)
865 (* + 0x00000100 *) (* Button1Motion *)
866 (* + 0x00000200 *) (* Button2Motion *)
867 (* + 0x00000400 *) (* Button3Motion *)
868 (* + 0x00000800 *) (* Button4Motion *)
869 (* + 0x00001000 *) (* Button5Motion *)
870 + 0x00002000 (* ButtonMotion *)
871 (* + 0x00004000 *) (* KeymapState *)
872 + 0x00008000 (* Exposure *)
873 + 0x00010000 (* VisibilityChange *)
874 + 0x00020000 (* StructureNotify *)
875 (* + 0x00040000 *) (* ResizeRedirect *)
876 (* + 0x00080000 *) (* SubstructureNotify *)
877 (* + 0x00100000 *) (* SubstructureRedirect *)
878 (* + 0x00200000 *) (* FocusChange *)
879 + 0x00400000 (* PropertyChange *)
880 (* + 0x00800000 *) (* ColormapChange *)
881 (* + 0x01000000 *) (* OwnerGrabButton *)
884 let s = createwindowreq wid root 0 0 w h
0 mask vid depth mid in
888 sock
(~
> "WM_PROTOCOLS") false (fun resp ->
889 state.protoatom
<- r32 resp 8;
891 sock
(~
> "WM_DELETE_WINDOW") false (fun resp ->
892 state.deleatom
<- r32 resp 8;
893 let s = s32 state.deleatom
in
894 let s = changepropreq wid state.protoatom
4 32 s in
900 sock
(~
> "WM_CLIENT_MACHINE") false (fun resp ->
901 let atom = r32 resp 8 in
904 try Unix.gethostname
()
906 dolog
"error getting host name: %s" @@ exntos exn
;
911 let s = changepropreq wid atom state.stringatom
8
915 sock
(~
> "_NET_WM_PID") false (fun resp ->
916 let atom = r32 resp 8 in
917 let pid = Unix.getpid
() in
919 let s = changepropreq wid atom 6(*cardinal*) 32 s in
924 state.actwin
<- (fun () ->
925 let s = Bytes.create
4 in
926 let s = configurewindowreq wid 0x40 s in
927 sendstr s state.sock
;
928 let s = mapreq wid in
929 sendstr s state.sock
;
933 sock
(~
> "_NET_ACTIVE_WINDOW") true (fun resp ->
934 let atom = r32 resp 8 in
935 state.actwin
<- (fun () ->
936 let data = Bytes.make
20 '
\000'
in
937 let cm = clientmessage 32 0 wid atom data in
938 let s = sendeventreq 0 root 0x180000 cm in
939 sendstr s state.sock
;
944 sock
2.0 (~
> "WM_CLASS") false (fun resp ->
945 let atom = r32 resp 8 in
946 let llpp = ~
> "llpp\000llpp\000" in
947 let s = changepropreq wid atom 31 8 llpp in
951 let s = getkeymapreq state.mink
(state.maxk
-state.mink
) in
952 sendwithrep sock
s (updkmap sock
);
954 let s = getmodifiermappingreq () in
955 sendwithrep sock
s (updmodmap sock
);
958 sock
(~
> "UTF8_STRING") true (fun resp ->
959 let atom = r32 resp 8 in
961 then state.stringatom
<- atom;
965 let s = changepropreq wid 39 state.stringatom
8 s in
966 sendstr s state.sock
;
968 state.setwmname <- setwmname;
970 sock
(~
> "_NET_WM_NAME") true (fun resp ->
971 let atom = r32 resp 8 in
973 then state.setwmname <- (fun s ->
975 let s = changepropreq wid atom state.stringatom
8 s in
976 sendstr s state.sock
;
980 state.fullscreen
<- (fun wid ->
981 let s = Bytes.create
16 in
988 let s = configurewindowreq wid 0x000f s in
989 sendstr s state.sock
;
990 state.fs
<- Fs
(state.x, state.y, state.w
, state.h
);
997 let s = configurewindowreq wid 0x000f s in
998 sendstr s state.sock
;
1003 sock
(~
> "_NET_WM_STATE") true (fun resp ->
1004 state.nwmsatom
<- r32 resp 8;
1005 if state.nwmsatom
!= 0
1007 sendintern sock
(~
> "_NET_WM_STATE_MAXIMIZED_VERT") true (fun resp ->
1008 state.maxvatom
<- r32 resp 8;
1010 sendintern sock
(~
> "_NET_WM_STATE_MAXIMIZED_HORZ") true (fun resp ->
1011 state.maxhatom
<- r32 resp 8;
1014 sock
(~
> "_NET_WM_STATE_FULLSCREEN") true (fun resp ->
1015 state.fulsatom
<- r32 resp 8;
1016 if state.fulsatom
!= 0
1020 let data = Bytes.make
20 '
\000'
in
1023 | NoFs
-> Fs
(-1, -1, -1, -1), 1
1027 w32 data 4 state.fulsatom
;
1029 let cm = clientmessage 32 0 wid state.nwmsatom
data in
1030 let s = sendeventreq 0 root 0x180000 cm in
1037 let s = queryextensionreq (~
> "XKEYBOARD") in
1040 let present = r8 resp 8 in
1043 let maj = r8 resp 9 in
1044 let s = Bytes.create
8 in
1045 w8 s 0 maj; (* XKB *)
1046 w8 s 1 0; (* XKBUseExtension *)
1047 w16 s 2 2; (* request-length *)
1048 w16 s 4 1; (* wantedMajor *)
1049 w16 s 6 0; (* watnedMinor *)
1053 let supported = r8 resp 1 in
1054 state.xkb
<- supported != 0
1058 let s = getgeometryreq wid in
1059 syncsendwithrep sock
2.0 s (fun resp ->
1062 and h
= r16 resp 18 in
1068 error
"unknown connection setup response %d" (Char.code c
)
1071 let getauth haddr dnum
=
1073 if emptystr
haddr || haddr = "localhost"
1075 try Unix.gethostname
()
1077 dolog
"failed to resolve `%S': %s" haddr @@ exntos exn
;
1082 try Sys.getenv
"XAUTHORITY"
1084 try Filename.concat
(Sys.getenv
"HOME") ".Xauthority"
1085 with Not_found
-> E.s
1089 let rb pos = Char.code (Bytes.get
s pos) in
1090 (rb 1) lor ((rb 0) lsl 8)
1094 let s = really_input_string ic
2 in
1095 let n = r16be (~
> s) in
1096 really_input_string ic
n
1098 let family = really_input_string ic
2 in
1102 try Some
(int_of_string
nums)
1105 "display number(%S) is not an integer (corrupt %S?): %s"
1106 nums path @@ exntos exn
;
1112 vlog "family %S addr %S(%S) num %S(%d) name %S data %S"
1113 family addr haddr nums dnum
name data;
1115 | Some num
when addr = haddr && num
= dnum
->
1122 | End_of_file
-> E.s, E.s
1124 dolog
"exception while reading X authority data (%S): %s"
1134 match open_in_bin
path with
1137 dolog
"failed to open X authority file `%S' : %s" path @@ exntos exn
;
1141 let init t rootwid
w h platform
=
1143 try Sys.getenv
"DISPLAY"
1145 error
"cannot get DISPLAY evironment variable: %s" @@ exntos exn
1149 then error
"invalid DISPLAY(%s) %S" w d
1151 let s = String.sub
d b (e
- b) in
1154 error
"invalid DISPLAY %S can not parse %s(%S): %s"
1158 if pos = String.length
d
1159 then error
"invalid DISPLAY %S no display number specified" d
1163 let rec pdispnum pos1
=
1164 if pos1
= String.length
d
1165 then getnum "display number" (pos+1) pos1
, 0
1169 let dispnum = getnum "display number" (pos+1) pos1
in
1170 let rec pscreennum pos2
=
1171 if pos2
= String.length
d
1172 then getnum "screen number" (pos1
+1) pos2
1175 | '
0'
.. '
9'
-> pscreennum (pos2
+1)
1177 error
"invalid DISPLAY %S, cannot parse screen number" d
1179 dispnum, pscreennum (pos1
+1)
1180 | '
0'
.. '
9'
-> pdispnum (pos1
+1)
1182 error
"invalid DISPLAY %S, cannot parse display number" d
1184 String.sub
d 0 pos, pdispnum (pos+1)
1188 let host, (dispnum, screennum
) = phost 0 in
1189 let aname, adata
= getauth host dispnum in
1192 if emptystr
host || host.[0] = '
/'
|| host = "unix"
1196 | Utils.Posx
-> Unix.ADDR_UNIX
d
1198 Unix.ADDR_UNIX
("\000/tmp/.X11-unix/X" ^ string_of_int
dispnum)
1199 | Utils.Punknown
| Utils.Psun
| Utils.Pbsd
| Utils.Pcygwin
->
1200 Unix.ADDR_UNIX
("/tmp/.X11-unix/X" ^ string_of_int
dispnum)
1202 Unix.socket
Unix.PF_UNIX
Unix.SOCK_STREAM
0, addr
1205 try Unix.gethostbyname
host
1206 with exn
-> error
"cannot resolve %S: %s" host @@ exntos exn
1208 let addr = h.Unix.h_addr_list
.(0) in
1209 let port = 6000 + dispnum in
1210 let fd = Unix.socket
Unix.PF_INET
Unix.SOCK_STREAM
0 in
1211 fd, (Unix.ADDR_INET
(addr, port))
1213 try Unix.connect
fd addr; fd
1214 with exn
-> error
"failed to connect to X: %s" @@ exntos exn
1217 let s = Bytes.create
12 in
1218 let s = padcat s (~
> aname) in
1219 let s = padcat s (~
> adata
) in
1220 Bytes.set
s 0 ordermagic;
1223 w16 s 6 (String.length
aname);
1224 w16 s 8 (String.length adata
);
1225 sendstr1 s 0 (Bytes.length
s) fd;
1227 setup d fd rootwid screennum
w h;
1229 fd, state.w, state.h;
1233 state.setwmname (~
> s);
1236 let setcursor cursor
=
1237 if cursor
!= state.curcurs
1240 state.curcurs
<- cursor
;
1245 state.fullscreen state.wid;
1248 let metamask = 0x40;;
1253 let withalt mask = mask land altmask != 0;;
1254 let withctrl mask = mask land ctrlmask != 0;;
1255 let withshift mask = mask land shiftmask != 0;;
1256 let withmeta mask = mask land metamask != 0;;
1257 let withnone mask = mask land (altmask + ctrlmask + shiftmask + metamask) = 0;;
1260 let t = Hashtbl.create
20
1261 and f
= Hashtbl.create
20 in
1263 List.iter
(fun s -> Hashtbl.add t s k) (n::nl
);
1267 let s = String.make
1 c
in
1268 add s [] (Char.code c
)
1271 let an = Char.code a and bn
= Char.code b in
1272 for i = an to bn
do addc (Char.chr
i) done;
1277 String.iter
addc "`~!@#$%^&*()-_=+\\|[{]};:,./<>?";
1278 for i = 0 to 29 do add ("f" ^ string_of_int
(i+1)) [] (0xffbe + i) done;
1279 add "space" [] 0x20;
1280 add "ret" ["return"; "enter"] 0xff0d;
1281 add "tab" [] 0xff09;
1282 add "left" [] 0xff51;
1283 add "right" [] 0xff53;
1284 add "home" [] 0xff50;
1285 add "end" [] 0xff57;
1286 add "ins" ["insert"] 0xff63;
1287 add "del" ["delete"] 0xffff;
1288 add "esc" ["escape"] 0xff1b;
1289 add "pgup" ["pageup"] 0xff55;
1290 add "pgdown" ["pagedown"] 0xff56;
1291 add "backspace" [] 0xff08;
1293 add "down" [] 0xff54;
1294 add "menu" [] 0xff67;
1299 try Hashtbl.find xlatf
k
1300 with Not_found
-> Printf.sprintf
"%#x" k;
1304 try Hashtbl.find xlatt name
1306 if String.length
name = 1
1307 then Char.code name.[0]
1308 else int_of_string
name;
1314 | 0xff08 -> Backspace
1336 | 0xffab -> Ascii '
+'
1337 | 0xffad -> Ascii '
-'
1339 | code when code > 31 && code < 128 -> Ascii
(Char.unsafe_chr
code)
1340 | code when code >= 0xffb0 && code <= 0xffb9 ->
1341 Ascii
(Char.unsafe_chr
(code - 0xffb0 + 0x30))
1342 | code when code >= 0xffbe && code <= 0xffc8 -> Fn
(code - 0xffbe + 1)