summaryrefslogtreecommitdiff
path: root/xdpyinfo.c
blob: 3e3caf1ca7b32c82fbac2be4f618329bdd84f318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
/*
 * xdpyinfo - print information about X display connection
 *
 *
Copyright 1988, 1998  The Open Group
Copyright 2005 Hitachi, Ltd.

Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
 *
 * Author:  Jim Fulton, MIT X Consortium
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
# if HAVE_X11_EXTENSIONS_MULTIBUF_H
#  define MULTIBUFFER
# endif

# if HAVE_X11_EXTENSIONS_XSHM_H
#  define MITSHM
# endif

# if HAVE_X11_EXTENSIONS_XKB_H && HAVE_X11_XKBLIB_H
#  define XKB
# endif

# if HAVE_X11_EXTENSIONS_XF86VMODE_H && \
	(HAVE_X11_EXTENSIONS_XF86VMSTR_H || HAVE_X11_EXTENSIONS_XF86VMPROTO_H)
#  define XF86VIDMODE
# endif

# if (HAVE_X11_EXTENSIONS_XXF86DGA_H && HAVE_X11_EXTENSIONS_XF86DGAPROTO_H) \
  || (HAVE_X11_EXTENSIONS_XF86DGA_H && HAVE_X11_EXTENSIONS_XF86DGASTR_H)
#  define XFreeXDGA
# endif

# if HAVE_X11_EXTENSIONS_XF86MISC_H && HAVE_X11_EXTENSIONS_XF86MSCSTR_H
#  define XF86MISC
# endif

# if HAVE_X11_EXTENSIONS_XINPUT_H
#  define XINPUT
# endif

# if HAVE_X11_EXTENSIONS_XRENDER_H
#  define XRENDER
# endif

# if HAVE_X11_EXTENSIONS_XCOMPOSITE_H
#  define COMPOSITE
# endif

# if HAVE_X11_EXTENSIONS_XINERAMA_H
#  define PANORAMIX
# endif

# if HAVE_X11_EXTENSIONS_DMXEXT_H
#  define DMX
# endif

# if HAVE_X11_EXTENSIONS_XPRESENT_H
#  define PRESENT
# endif

#endif

#ifdef WIN32
#include <X11/Xwindows.h>
#endif

#include <X11/Xlib-xcb.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#ifdef MULTIBUFFER
#include <X11/extensions/multibuf.h>
#endif
#include <X11/extensions/XTest.h>
#include <X11/extensions/sync.h>
#include <X11/Xproto.h>
#include <X11/extensions/Xdbe.h>
#include <X11/extensions/record.h>
#include <X11/extensions/shape.h>
#ifdef MITSHM
#include <X11/extensions/XShm.h>
#endif
#ifdef XKB
#include <X11/extensions/XKB.h>
#include <X11/XKBlib.h>
#endif
#ifdef XF86VIDMODE
#include <X11/extensions/xf86vmode.h>
# if HAVE_X11_EXTENSIONS_XF86VMPROTO_H /* xf86vidmodeproto 2.2.99.1 & later */
#  include <X11/extensions/xf86vmproto.h>
# else
#  include <X11/extensions/xf86vmstr.h>
# endif
#endif
#ifdef XFreeXDGA
# if HAVE_X11_EXTENSIONS_XXF86DGA_H && HAVE_X11_EXTENSIONS_XF86DGAPROTO_H
#  include <X11/extensions/Xxf86dga.h>
#  include <X11/extensions/xf86dgaproto.h>
# else
#  include <X11/extensions/xf86dga.h>
#  include <X11/extensions/xf86dgastr.h>
# endif
#endif
#ifdef XF86MISC
#include <X11/extensions/xf86misc.h>
#include <X11/extensions/xf86mscstr.h>
#endif
#ifdef XINPUT
#include <X11/extensions/XInput.h>
#endif
#ifdef XRENDER
#include <X11/extensions/Xrender.h>
#endif
#ifdef COMPOSITE
#include <X11/extensions/Xcomposite.h>
#endif
#ifdef PANORAMIX
#include <X11/extensions/Xinerama.h>
#endif
#ifdef DMX
#include <X11/extensions/dmxext.h>
#endif
#ifdef PRESENT
#include <X11/extensions/Xpresent.h>
#include <X11/extensions/Xrandr.h>
#endif
#include <X11/Xos.h>
#include <stdio.h>
#include <stdlib.h>

static char *ProgramName;
static Bool queryExtensions = False;

#if defined(XF86MISC)
static int
silent_errors(_X_UNUSED Display *dpy, _X_UNUSED XErrorEvent *ev)
{
    return 0;
}
#endif

static int print_event_mask(char *buf, int lastcol, int indent, long mask);

static int StrCmp(const void *a, const  void *b)
{
    return strcmp(*(const char * const *)a, *(const char * const *)b);
}

static void
print_extension_info(Display *dpy)
{
    int n = 0;
    char **extlist = XListExtensions (dpy, &n);

    printf ("number of extensions:    %d\n", n);

    if (extlist) {
	qsort(extlist, (size_t)n, sizeof(char *), StrCmp);

	if (!queryExtensions) {
	    for (int i = 0; i < n; i++) {
		printf ("    %s\n", extlist[i]);
	    }
	} else {
	    xcb_connection_t *xcb_conn = XGetXCBConnection (dpy);
	    xcb_query_extension_cookie_t *qe_cookies;

	    qe_cookies = calloc((size_t)n, sizeof(xcb_query_extension_cookie_t));
	    if (!qe_cookies) {
		perror ("calloc failed to allocate memory for extensions");
		return;
	    }

	    /*
	     * Generate all extension queries at once, so they can be
	     * sent to the xserver in a single batch
	     */
	    for (int i = 0; i < n; i++) {
		qe_cookies[i] = xcb_query_extension (xcb_conn,
						     (uint16_t)strlen(extlist[i]),
						     extlist[i]);
	    }

	    /*
	     * Start processing replies as they come in.
	     * The first call will flush the queue to the server, then
	     * each one will wait, if needed, for its reply.
	     */
	    for (int i = 0; i < n; i++) {
		xcb_query_extension_reply_t *rep
		    = xcb_query_extension_reply(xcb_conn, qe_cookies[i], NULL);

		printf ("    %s  (opcode: %d", extlist[i], rep->major_opcode);
		if (rep->first_event)
		    printf (", base event: %d", rep->first_event);
		if (rep->first_error)
		    printf (", base error: %d", rep->first_error);
		printf (")\n");

		free (rep);
	    }
	    free (qe_cookies);
	}
	/* do not free, Xlib can depend on contents being unaltered */
	/* XFreeExtensionList (extlist); */
    }
}

static void
print_display_info(Display *dpy)
{
    char dummybuf[40];
    const char *cp;
    int minkeycode, maxkeycode;
    int n;
    long req_size;
    XPixmapFormatValues *pmf;
    Window focuswin;
    int focusrevert;

    printf ("name of display:    %s\n", DisplayString (dpy));
    printf ("version number:    %d.%d\n",
	    ProtocolVersion (dpy), ProtocolRevision (dpy));
    printf ("vendor string:    %s\n", ServerVendor (dpy));
    printf ("vendor release number:    %d\n", VendorRelease (dpy));

    if (strstr(ServerVendor (dpy), "X.Org")) {
	int vendrel = VendorRelease(dpy);

	printf("X.Org version: ");
        if (vendrel >= 12100000) {
            vendrel -= 10000000; /* Y2.1K compliant */
            printf("%d.%d",
	       (vendrel /   100000) % 100,
	       (vendrel /     1000) % 100);
        } else {
            printf("%d.%d.%d", vendrel / 10000000,
                   (vendrel /   100000) % 100,
                   (vendrel /     1000) % 100);
        }
        if (vendrel % 1000)
            printf(".%d", vendrel % 1000);
        printf("\n");
    }
    else if (strstr(ServerVendor (dpy), "XFree86")) {
	int vendrel = VendorRelease(dpy);

	printf("XFree86 version: ");
	if (vendrel < 336) {
	    /*
	     * vendrel was set incorrectly for 3.3.4 and 3.3.5, so handle
	     * those cases here.
	     */
	    printf("%d.%d.%d", vendrel / 100,
			      (vendrel / 10) % 10,
			       vendrel       % 10);
	} else if (vendrel < 3900) {
	    /* 3.3.x versions, other than the exceptions handled above */
	    printf("%d.%d", vendrel / 1000,
			   (vendrel /  100) % 10);
	    if (((vendrel / 10) % 10) || (vendrel % 10)) {
		printf(".%d", (vendrel / 10) % 10);
		if (vendrel % 10) {
		    printf(".%d", vendrel % 10);
		}
	    }
	} else if (vendrel < 40000000) {
	    /* 4.0.x versions */
	    printf("%d.%d", vendrel / 1000,
			   (vendrel /   10) % 10);
	    if (vendrel % 10) {
		printf(".%d", vendrel % 10);
	    }
	} else {
	    /* post-4.0.x */
	    printf("%d.%d.%d", vendrel / 10000000,
			      (vendrel /   100000) % 100,
			      (vendrel /     1000) % 100);
	    if (vendrel % 1000) {
		printf(".%d", vendrel % 1000);
	    }
	}
	printf("\n");
    }

    if (strstr(ServerVendor (dpy), "DMX")) {
	int vendrel = VendorRelease(dpy);
        int major, minor, year, month, day;

        major    = vendrel / 100000000;
        vendrel -= major   * 100000000;
        minor    = vendrel /   1000000;
        vendrel -= minor   *   1000000;
        year     = vendrel /     10000;
        vendrel -= year    *     10000;
        month    = vendrel /       100;
        vendrel -= month   *       100;
        day      = vendrel;

                                /* Add other epoch tests here */
        if (major > 0 && minor > 0) year += 2000;

                                /* Do some sanity tests in case there is
                                 * another server with the same vendor
                                 * string.  That server could easily use
                                 * values < 100000000, which would have
                                 * the effect of keeping our major
                                 * number 0. */
        if (major > 0 && major <= 20
            && minor >= 0 && minor <= 99
            && year >= 2000
            && month >= 1 && month <= 12
            && day >= 1 && day <= 31)
            printf("DMX version: %d.%d.%04d%02d%02d\n",
                   major, minor, year, month, day);
    }

    req_size = XExtendedMaxRequestSize (dpy);
    if (!req_size) req_size = XMaxRequestSize (dpy);
    printf ("maximum request size:  %ld bytes\n", req_size * 4);
    printf ("motion buffer size:  %ld\n", XDisplayMotionBufferSize (dpy));

    switch (BitmapBitOrder (dpy)) {
      case LSBFirst:    cp = "LSBFirst"; break;
      case MSBFirst:    cp = "MSBFirst"; break;
      default:
	snprintf (dummybuf, sizeof(dummybuf),
                  "unknown order %d", BitmapBitOrder (dpy));
	cp = dummybuf;
	break;
    }
    printf ("bitmap unit, bit order, padding:    %d, %s, %d\n",
	    BitmapUnit (dpy), cp, BitmapPad (dpy));

    switch (ImageByteOrder (dpy)) {
      case LSBFirst:    cp = "LSBFirst"; break;
      case MSBFirst:    cp = "MSBFirst"; break;
      default:
	snprintf (dummybuf, sizeof(dummybuf),
                  "unknown order %d", ImageByteOrder (dpy));
	cp = dummybuf;
	break;
    }
    printf ("image byte order:    %s\n", cp);

    pmf = XListPixmapFormats (dpy, &n);
    printf ("number of supported pixmap formats:    %d\n", n);
    if (pmf) {
	printf ("supported pixmap formats:\n");
	for (int i = 0; i < n; i++) {
	    printf ("    depth %d, bits_per_pixel %d, scanline_pad %d\n",
		    pmf[i].depth, pmf[i].bits_per_pixel, pmf[i].scanline_pad);
	}
	XFree ((char *) pmf);
    }


    /*
     * when we get interfaces to the PixmapFormat stuff, insert code here
     */

    XDisplayKeycodes (dpy, &minkeycode, &maxkeycode);
    printf ("keycode range:    minimum %d, maximum %d\n",
	    minkeycode, maxkeycode);

    XGetInputFocus (dpy, &focuswin, &focusrevert);
    printf ("focus:  ");
    switch (focuswin) {
      case PointerRoot:
	printf ("PointerRoot\n");
	break;
      case None:
	printf ("None\n");
	break;
      default:
	printf("window 0x%lx, revert to ", focuswin);
	switch (focusrevert) {
	  case RevertToParent:
	    printf ("Parent\n");
	    break;
	  case RevertToNone:
	    printf ("None\n");
	    break;
	  case RevertToPointerRoot:
	    printf ("PointerRoot\n");
	    break;
	  default:			/* should not happen */
	    printf ("%d\n", focusrevert);
	    break;
	}
	break;
    }

    print_extension_info (dpy);

    printf ("default screen number:    %d\n", DefaultScreen (dpy));
    printf ("number of screens:    %d\n", ScreenCount (dpy));
}

static void
print_visual_info(XVisualInfo *vip)
{
    char errorbuf[40];			/* for sprintfing into */
    const char *class = NULL;		/* for printing */

    switch (vip->class) {
      case StaticGray:    class = "StaticGray"; break;
      case GrayScale:    class = "GrayScale"; break;
      case StaticColor:    class = "StaticColor"; break;
      case PseudoColor:    class = "PseudoColor"; break;
      case TrueColor:    class = "TrueColor"; break;
      case DirectColor:    class = "DirectColor"; break;
      default:
	snprintf (errorbuf, sizeof(errorbuf), "unknown class %d", vip->class);
	class = errorbuf;
	break;
    }

    printf ("  visual:\n");
    printf ("    visual id:    0x%lx\n", vip->visualid);
    printf ("    class:    %s\n", class);
    printf ("    depth:    %d plane%s\n", vip->depth,
	    vip->depth == 1 ? "" : "s");
    if (vip->class == TrueColor || vip->class == DirectColor)
	printf ("    available colormap entries:    %d per subfield\n",
		vip->colormap_size);
    else
	printf ("    available colormap entries:    %d\n",
		vip->colormap_size);
    printf ("    red, green, blue masks:    0x%lx, 0x%lx, 0x%lx\n",
	    vip->red_mask, vip->green_mask, vip->blue_mask);
    printf ("    significant bits in color specification:    %d bits\n",
	    vip->bits_per_rgb);
}

static void
print_screen_info(Display *dpy, int scr)
{
    Screen *s = ScreenOfDisplay (dpy, scr);  /* opaque structure */
    XVisualInfo viproto;		/* fill in for getting info */
    XVisualInfo *vip;			/* returned info */
    int nvi;				/* number of elements returned */
    char eventbuf[80];			/* want 79 chars per line + nul */
    static const char *yes = "YES", *no = "NO", *when = "WHEN MAPPED";
    double xres, yres;
    int ndepths = 0, *depths = NULL;
    unsigned int width, height;

    /*
     * there are 2.54 centimeters to an inch; so there are 25.4 millimeters.
     *
     *     dpi = N pixels / (M millimeters / (25.4 millimeters / 1 inch))
     *         = N pixels / (M inch / 25.4)
     *         = N * 25.4 pixels / M inch
     */

    xres = ((((double) DisplayWidth(dpy,scr)) * 25.4) /
	    ((double) DisplayWidthMM(dpy,scr)));
    yres = ((((double) DisplayHeight(dpy,scr)) * 25.4) /
	    ((double) DisplayHeightMM(dpy,scr)));

    printf ("\n");
    printf ("screen #%d:\n", scr);
    printf ("  dimensions:    %dx%d pixels (%dx%d millimeters)\n",
	    XDisplayWidth (dpy, scr),  XDisplayHeight (dpy, scr),
	    XDisplayWidthMM(dpy, scr), XDisplayHeightMM (dpy, scr));
    printf ("  resolution:    %dx%d dots per inch\n",
	    (int) (xres + 0.5), (int) (yres + 0.5));
    depths = XListDepths (dpy, scr, &ndepths);
    if (!depths) ndepths = 0;
    printf ("  depths (%d):    ", ndepths);
    for (int i = 0; i < ndepths; i++) {
	printf ("%d", depths[i]);
	if (i < ndepths - 1) {
	    putchar (',');
	    putchar (' ');
	}
    }
    putchar ('\n');
    if (depths) XFree ((char *) depths);
    printf ("  root window id:    0x%lx\n", RootWindow (dpy, scr));
    printf ("  depth of root window:    %d plane%s\n",
	    DisplayPlanes (dpy, scr),
	    DisplayPlanes (dpy, scr) == 1 ? "" : "s");
    printf ("  number of colormaps:    minimum %d, maximum %d\n",
	    MinCmapsOfScreen(s), MaxCmapsOfScreen(s));
    printf ("  default colormap:    0x%lx\n", DefaultColormap (dpy, scr));
    printf ("  default number of colormap cells:    %d\n",
	    DisplayCells (dpy, scr));
    printf ("  preallocated pixels:    black %ld, white %ld\n",
	    BlackPixel (dpy, scr), WhitePixel (dpy, scr));
    printf ("  options:    backing-store %s, save-unders %s\n",
	    (DoesBackingStore (s) == NotUseful) ? no :
	    ((DoesBackingStore (s) == Always) ? yes : when),
	    DoesSaveUnders (s) ? yes : no);
    XQueryBestSize (dpy, CursorShape, RootWindow (dpy, scr), 65535, 65535,
		    &width, &height);
    if (width == 65535 && height == 65535)
	printf ("  largest cursor:    unlimited\n");
    else
	printf ("  largest cursor:    %dx%d\n", width, height);
    printf ("  current input event mask:    0x%lx\n", EventMaskOfScreen (s));
    (void) print_event_mask (eventbuf, 79, 4, EventMaskOfScreen (s));

    nvi = 0;
    viproto.screen = scr;
    vip = XGetVisualInfo (dpy, VisualScreenMask, &viproto, &nvi);
    printf ("  number of visuals:    %d\n", nvi);
    printf ("  default visual id:  0x%lx\n",
	    XVisualIDFromVisual (DefaultVisual (dpy, scr)));
    for (int i = 0; i < nvi; i++) {
	print_visual_info (vip+i);
    }
    if (vip) XFree ((char *) vip);
}

/*
 * The following routine prints out an event mask, wrapping events at nice
 * boundaries.
 */

#define MASK_NAME_WIDTH 25

static struct _event_table {
    const char *name;
    long value;
} event_table[] = {
    { "KeyPressMask             ", KeyPressMask },
    { "KeyReleaseMask           ", KeyReleaseMask },
    { "ButtonPressMask          ", ButtonPressMask },
    { "ButtonReleaseMask        ", ButtonReleaseMask },
    { "EnterWindowMask          ", EnterWindowMask },
    { "LeaveWindowMask          ", LeaveWindowMask },
    { "PointerMotionMask        ", PointerMotionMask },
    { "PointerMotionHintMask    ", PointerMotionHintMask },
    { "Button1MotionMask        ", Button1MotionMask },
    { "Button2MotionMask        ", Button2MotionMask },
    { "Button3MotionMask        ", Button3MotionMask },
    { "Button4MotionMask        ", Button4MotionMask },
    { "Button5MotionMask        ", Button5MotionMask },
    { "ButtonMotionMask         ", ButtonMotionMask },
    { "KeymapStateMask          ", KeymapStateMask },
    { "ExposureMask             ", ExposureMask },
    { "VisibilityChangeMask     ", VisibilityChangeMask },
    { "StructureNotifyMask      ", StructureNotifyMask },
    { "ResizeRedirectMask       ", ResizeRedirectMask },
    { "SubstructureNotifyMask   ", SubstructureNotifyMask },
    { "SubstructureRedirectMask ", SubstructureRedirectMask },
    { "FocusChangeMask          ", FocusChangeMask },
    { "PropertyChangeMask       ", PropertyChangeMask },
    { "ColormapChangeMask       ", ColormapChangeMask },
    { "OwnerGrabButtonMask      ", OwnerGrabButtonMask },
    { NULL, 0 }};

static int
print_event_mask(char *buf,     /* string to write into */
                 int lastcol,   /* strlen(buf)+1 */
                 int indent,    /* amount by which to indent */
                 long mask)     /* event mask */
{
    int len;
    int bitsfound = 0;

    buf[0] = buf[lastcol] = '\0';	/* just in case */

#define INDENT() do { len = indent; memset(buf, ' ', indent); } while (0)

    INDENT ();

    for (struct _event_table *etp = event_table; etp->name; etp++) {
	if (mask & etp->value) {
	    if (len + MASK_NAME_WIDTH > lastcol) {
		puts (buf);
		INDENT ();
	    }
	    strcpy (buf+len, etp->name);
	    len += MASK_NAME_WIDTH;
	    bitsfound++;
	}
    }

    if (bitsfound) puts (buf);

#undef INDENT

    return (bitsfound);
}

static void
print_standard_extension_info(Display *dpy, const char *extname,
			      int majorrev, int minorrev)
{
    int opcode, event, error;

    printf("%s version %d.%d ", extname, majorrev, minorrev);

    XQueryExtension(dpy, extname, &opcode, &event, &error);
    printf ("opcode: %d", opcode);
    if (event)
	printf (", base event: %d", event);
    if (error)
	printf (", base error: %d", error);
    printf("\n");
}

#ifdef MULTIBUFFER
static int
print_multibuf_info(Display *dpy, const char *extname)
{
#define MULTIBUF_FMT "    visual id, max buffers, depth:    0x%lx, %d, %d\n"
    int majorrev, minorrev;

    if (!XmbufGetVersion(dpy, &majorrev, &minorrev))
	return 0;

    print_standard_extension_info(dpy, extname, majorrev, minorrev);

    for (int i = 0; i < ScreenCount (dpy); i++)
    {
        int nmono, nstereo;		/* count */
        XmbufBufferInfo *mono_info = NULL, *stereo_info = NULL; /* arrays */
        const int scr = 0;

	if (!XmbufGetScreenInfo (dpy, RootWindow(dpy, scr), &nmono, &mono_info,
				 &nstereo, &stereo_info)) {
	    fprintf (stderr,
		     "%s:  unable to get multibuffer info for screen %d\n",
		     ProgramName, scr);
	} else {
	    printf ("  screen %d number of mono multibuffer types:    %d\n", i, nmono);
	    for (int j = 0; j < nmono; j++) {
		printf (MULTIBUF_FMT, mono_info[j].visualid,
			mono_info[j].max_buffers, mono_info[j].depth);
	    }
	    printf ("  number of stereo multibuffer types:    %d\n", nstereo);
	    for (int j = 0; j < nstereo; j++) {
		printf (MULTIBUF_FMT, stereo_info[j].visualid,
			stereo_info[j].max_buffers, stereo_info[j].depth);
	    }
	    if (mono_info) XFree ((char *) mono_info);
	    if (stereo_info) XFree ((char *) stereo_info);
	}
    }
    return 1;
} /* end print_multibuf_info */
#endif

static int
print_xtest_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev, foo;

    if (!XTestQueryExtension(dpy, &foo, &foo, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);
    return 1;
}

static int
print_sync_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev;
    XSyncSystemCounter *syscounters;
    int ncounters;

    if (!XSyncInitialize(dpy, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);

    syscounters = XSyncListSystemCounters(dpy, &ncounters);
    printf("  system counters: %d\n", ncounters);
    for (int i = 0; i < ncounters; i++)
    {
	printf("    %s  id: 0x%08x  resolution_lo: %d  resolution_hi: %d\n",
	       syscounters[i].name, (unsigned int)syscounters[i].counter,
	       XSyncValueLow32(syscounters[i].resolution),
	       XSyncValueHigh32(syscounters[i].resolution));
    }
    XSyncFreeSystemCounterList(syscounters);
    return 1;
}

static int
print_shape_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev;

    if (!XShapeQueryVersion(dpy, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);
    return 1;
}

#ifdef XFreeXDGA
static int
catch_dga_errors(Display *dpy, XErrorEvent *event)
{
    char error_name[128];
    char request_name[128];
    char code[64];

    XGetErrorText(dpy, event->error_code, error_name, sizeof(error_name));
    if (event->request_code < 128) {
        snprintf(code, sizeof(code), "%d", event->request_code);
        XGetErrorDatabaseText(dpy, "XRequest", code, "",
                              request_name, sizeof(request_name));
    } else {
        snprintf(code, sizeof(code), "%s.%d", "XFree86-DGA", event->minor_code);
        XGetErrorDatabaseText(dpy, "XRequest", code, "",
                              request_name, sizeof(request_name));
    }

    printf("  DGA: %s returned error: %s\n", request_name, error_name);
    return 0;
}

static int
print_dga_info(Display *dpy, const char *extname)
{
    unsigned int offset;
    int majorrev, minorrev, width, bank, ram, flags;
    XErrorHandler old_handler;

    old_handler = XSetErrorHandler(catch_dga_errors);

    if (!XF86DGAQueryVersion(dpy, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);

    if (!XF86DGAQueryDirectVideo(dpy, DefaultScreen(dpy), &flags)
	|| ! (flags & XF86DGADirectPresent) )
    {
	printf("  DGA not available on screen %d.\n", DefaultScreen(dpy));
	return 1;
    }

    if (!XF86DGAGetVideoLL(dpy, DefaultScreen(dpy), &offset,
			    &width, &bank, &ram))
	return 0;
    printf("  Base address = 0x%X, Width = %d, Bank size = %d,"
	   " RAM size = %dk\n", offset, width, bank, ram);

    XSetErrorHandler(old_handler);

    return 1;
}
#endif

#ifdef XF86VIDMODE
#define V_PHSYNC        0x001
#define V_NHSYNC        0x002
#define V_PVSYNC        0x004
#define V_NVSYNC        0x008
#define V_INTERLACE     0x010
#define V_DBLSCAN       0x020
#define V_CSYNC         0x040
#define V_PCSYNC        0x080
#define V_NCSYNC        0x100

static void
print_XF86VidMode_modeline(
    unsigned int        dotclock,
    unsigned short      hdisplay,
    unsigned short      hsyncstart,
    unsigned short      hsyncend,
    unsigned short      htotal,
    unsigned short      vdisplay,
    unsigned short      vsyncstart,
    unsigned short      vsyncend,
    unsigned short      vtotal,
    unsigned int        flags)
{
    printf("    %6.2f   %4d %4d %4d %4d   %4d %4d %4d %4d ",
	   dotclock/1000.0,
	   hdisplay, hsyncstart, hsyncend, htotal,
	   vdisplay, vsyncstart, vsyncend, vtotal);
    if (flags & V_PHSYNC)    printf(" +hsync");
    if (flags & V_NHSYNC)    printf(" -hsync");
    if (flags & V_PVSYNC)    printf(" +vsync");
    if (flags & V_NVSYNC)    printf(" -vsync");
    if (flags & V_INTERLACE) printf(" interlace");
    if (flags & V_CSYNC)     printf(" composite");
    if (flags & V_PCSYNC)    printf(" +csync");
    if (flags & V_NCSYNC)    printf(" -csync");
    if (flags & V_DBLSCAN)   printf(" doublescan");
    printf("\n");
}

static int
print_XF86VidMode_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev;
    XF86VidModeMonitor monitor;

    if (!XF86VidModeQueryVersion(dpy, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);

    if (XF86VidModeGetMonitor(dpy, DefaultScreen(dpy), &monitor)) {
	printf("  Monitor Information:\n");
	printf("    Vendor: %s, Model: %s\n",
	       monitor.vendor == NULL ? "" : monitor.vendor,
	       monitor.model == NULL ? "" : monitor.model);
	printf("    Num hsync: %d, Num vsync: %d\n",
	       monitor.nhsync, monitor.nvsync);
	for (int i = 0; i < monitor.nhsync; i++) {
	    printf("    hsync range %d: %6.2f - %6.2f\n", i,
		   monitor.hsync[i].lo, monitor.hsync[i].hi);
	}
	for (int i = 0; i < monitor.nvsync; i++) {
	    printf("    vsync range %d: %6.2f - %6.2f\n", i,
		   monitor.vsync[i].lo, monitor.vsync[i].hi);
	}
	XFree(monitor.vendor);
	XFree(monitor.model);
	XFree(monitor.hsync);
	XFree(monitor.vsync);
    } else {
	printf("  Monitor Information not available\n");
    }

    if ((majorrev > 0) || (majorrev == 0 && minorrev > 5)) {
      int modecount, dotclock;
      XF86VidModeModeLine modeline;
      XF86VidModeModeInfo **modelines;

      if (XF86VidModeGetAllModeLines(dpy, DefaultScreen(dpy), &modecount,
				     &modelines)) {
	  printf("  Available Video Mode Settings:\n");
	  printf("     Clock   Hdsp Hbeg Hend Httl   Vdsp Vbeg Vend Vttl  Flags\n");
	  for (int i = 0; i < modecount; i++) {
	      print_XF86VidMode_modeline
		  (modelines[i]->dotclock, modelines[i]->hdisplay,
		   modelines[i]->hsyncstart, modelines[i]->hsyncend,
		   modelines[i]->htotal, modelines[i]->vdisplay,
		   modelines[i]->vsyncstart, modelines[i]->vsyncend,
		   modelines[i]->vtotal, modelines[i]->flags);
	  }
	  XFree(modelines);
      } else {
	  printf("  Available Video Mode Settings not available\n");
      }

      if (XF86VidModeGetModeLine(dpy, DefaultScreen(dpy),
				 &dotclock, &modeline)) {
	  printf("  Current Video Mode Setting:\n");
	  print_XF86VidMode_modeline(dotclock,
				     modeline.hdisplay, modeline.hsyncstart,
				     modeline.hsyncend, modeline.htotal,
				     modeline.vdisplay, modeline.vsyncstart,
				     modeline.vsyncend, modeline.vtotal,
				     modeline.flags);
      } else {
	  printf("  Current Video Mode Setting not available\n");
      }
    }

    return 1;
}
#endif

#ifdef XF86MISC

static const char *kbdtable[] = {
		     "Unknown", "84-key", "101-key", "Other", "Xqueue" };
static const char *msetable[] = {
		     "None", "Microsoft", "MouseSystems", "MMSeries",
		     "Logitech", "BusMouse", "Mouseman", "PS/2", "MMHitTab",
		     "GlidePoint", "IntelliMouse", "ThinkingMouse",
		     "IMPS/2", "ThinkingMousePS/2", "MouseManPlusPS/2",
		     "GlidePointPS/2", "NetMousePS/2", "NetScrollPS/2",
		     "SysMouse", "Auto" };
static const char *flgtable[] = {
		     "None", "ClearDTR", "ClearRTS", "ClearDTR and ClearRTS" };

static int
print_XF86Misc_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev;
    XErrorHandler old_handler;

    if (!XF86MiscQueryVersion(dpy, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);

    old_handler = XSetErrorHandler(silent_errors);

    if ((majorrev > 0) || (majorrev == 0 && minorrev > 0)) {
      XF86MiscKbdSettings kbdinfo;
      XF86MiscMouseSettings mouseinfo;

      if (!XF86MiscGetKbdSettings(dpy, &kbdinfo))
	return 0;
      printf("  Keyboard Settings-    Type: %s, Rate: %d, Delay: %d, ServerNumLock: %s\n",
	kbdtable[kbdinfo.type], kbdinfo.rate, kbdinfo.delay,
	(kbdinfo.servnumlock? "yes": "no"));

      if (!XF86MiscGetMouseSettings(dpy, &mouseinfo))
	return 0;
      printf("  Mouse Settings-       Device: %s, Type: ",
	strlen(mouseinfo.device) == 0 ? "None": mouseinfo.device);
      XFree(mouseinfo.device);
      if (mouseinfo.type == MTYPE_XQUEUE)
	printf("Xqueue\n");
      else if (mouseinfo.type == MTYPE_OSMOUSE)
	printf("OSMouse\n");
      else if (mouseinfo.type <= MTYPE_AUTOMOUSE)
	printf("%s\n", msetable[mouseinfo.type+1]);
      else
	printf("Unknown\n");
      printf("                        BaudRate: %d, SampleRate: %d, Resolution: %d\n",
	mouseinfo.baudrate, mouseinfo.samplerate, mouseinfo.resolution);
      printf("                        Emulate3Buttons: %s, Emulate3Timeout: %d ms\n",
	mouseinfo.emulate3buttons? "yes": "no", mouseinfo.emulate3timeout);
      printf("                        ChordMiddle: %s, Flags: %s\n",
	mouseinfo.chordmiddle? "yes": "no",
	flgtable[(mouseinfo.flags & MF_CLEAR_DTR? 1: 0)
		+(mouseinfo.flags & MF_CLEAR_RTS? 1: 0)] );
      printf("                        Buttons: %d\n", mouseinfo.buttons);
    }

    XSetErrorHandler(old_handler);

    return 1;
}
#endif

#ifdef MITSHM
static int
print_mitshm_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev;
    Bool sharedPixmaps;

    if (!XShmQueryVersion(dpy, &majorrev, &minorrev, &sharedPixmaps))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);
    printf("  shared pixmaps: ");
    if (sharedPixmaps)
    {
	int format = XShmPixmapFormat(dpy);
	printf("yes, format: %d\n", format);
    }
    else
    {
	printf("no\n");
    }
    return 1;
}
#endif /* MITSHM */

#ifdef XKB
static int
print_xkb_info(Display *dpy, const char *extname)
{
    int opcode, eventbase, errorbase, majorrev, minorrev;

    if (!XkbQueryExtension(dpy, &opcode, &eventbase, &errorbase,
			   &majorrev, &minorrev)) {
        return 0;
    }
    printf("%s version %d.%d ", extname, majorrev, minorrev);

    printf ("opcode: %d", opcode);
    if (eventbase)
	printf (", base event: %d", eventbase);
    if (errorbase)
	printf (", base error: %d", errorbase);
    printf("\n");

    return 1;
}
#endif

static int
print_dbe_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev;
    XdbeScreenVisualInfo *svi;
    int numscreens = 0;

    if (!XdbeQueryExtension(dpy, &majorrev, &minorrev))
	return 0;

    print_standard_extension_info(dpy, extname, majorrev, minorrev);
    svi = XdbeGetVisualInfo(dpy, (Drawable *)NULL, &numscreens);
    for (int iscrn = 0; iscrn < numscreens; iscrn++)
    {
	printf("  Double-buffered visuals on screen %d\n", iscrn);
	for (int ivis = 0; ivis < svi[iscrn].count; ivis++)
	{
	    printf("    visual id 0x%lx  depth %d  perflevel %d\n",
		   svi[iscrn].visinfo[ivis].visual,
		   svi[iscrn].visinfo[ivis].depth,
		   svi[iscrn].visinfo[ivis].perflevel);
	}
    }
    XdbeFreeVisualInfo(svi);
    return 1;
}

static int
print_record_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev;

    if (!XRecordQueryVersion(dpy, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);
    return 1;
}

#ifdef XINPUT
static int
print_xinput_info(Display *dpy, const char *extname)
{
  int           loop, num_extensions;
  char          **extensions;
  XExtensionVersion *ext;

  ext = XGetExtensionVersion(dpy, extname);

  if (!ext || (ext == (XExtensionVersion*) NoSuchExtension))
      return 0;

  print_standard_extension_info(dpy, extname, ext->major_version,
				ext->minor_version);
  XFree(ext);

  extensions = XListExtensions(dpy, &num_extensions);
  for (loop = 0; loop < num_extensions &&
         (strcmp(extensions[loop], extname) != 0); loop++);
  XFreeExtensionList(extensions);
  if (loop != num_extensions) {
      int           num_devices;
      XDeviceInfo   *devices;

      printf("  Extended devices :\n");
      devices = XListInputDevices(dpy, &num_devices);
      for(loop=0; loop<num_devices; loop++) {
	  printf("	\"%s\"	[", devices[loop].name ? devices[loop].name : "<noname>");
	  switch(devices[loop].use) {
	  case IsXPointer:
	      printf("XPointer]\n");
	      break;
	  case IsXKeyboard:
	      printf("XKeyboard]\n");
	      break;
	  case IsXExtensionDevice:
	      printf("XExtensionDevice]\n");
	      break;
#ifdef IsXExtensionKeyboard
	  case IsXExtensionKeyboard:
	      printf("XExtensionKeyboard]\n");
	      break;
#endif
#ifdef IsXExtensionPointer
	  case IsXExtensionPointer:
	      printf("XExtensionPointer]\n");
	      break;
#endif
	  default:
	      printf("invalid value]\n");
	      break;
	  }
        }
      XFreeDeviceList(devices);
      return 1;
    }
  else
      return 0;
}
#endif

#ifdef XRENDER
static int
print_xrender_info(Display *dpy, const char *extname)
{
  int		    loop, num_extensions;
  char		    **extensions;
  int		    major, minor;

  if (!XRenderQueryVersion (dpy, &major, &minor))
    return 0;

  print_standard_extension_info(dpy, extname, major, minor);

  extensions = XListExtensions(dpy, &num_extensions);
  for (loop = 0; loop < num_extensions &&
         (strcmp(extensions[loop], extname) != 0); loop++);
  XFreeExtensionList(extensions);
  if (loop != num_extensions) {
    XRenderPictFormat *pictform;

    printf ("  Render formats :\n");
    for (int count = 0; (pictform = XRenderFindFormat (dpy, 0, NULL, count));
         count++)
    {
      printf  ("  pict format:\n");
      printf  ("\tformat id:    0x%lx\n", pictform->id);
      printf  ("\ttype:         %s\n",
	     pictform->type == PictTypeIndexed ? "Indexed" : "Direct");
      printf  ("\tdepth:        %d\n", pictform->depth);
      if (pictform->type == PictTypeDirect) {
	printf("\talpha:        %2d mask 0x%x\n", pictform->direct.alpha, pictform->direct.alphaMask);
	printf("\tred:          %2d mask 0x%x\n", pictform->direct.red, pictform->direct.redMask);
	printf("\tgreen:        %2d mask 0x%x\n", pictform->direct.green, pictform->direct.greenMask);
	printf("\tblue:         %2d mask 0x%x\n", pictform->direct.blue, pictform->direct.blueMask);
      }
      else
	printf("\tcolormap      0x%lx\n", pictform->colormap);
    }
    printf ("  Screen formats :\n");
    for (int i = 0; i < ScreenCount (dpy); i++) {
      int	     nvi;		/* number of elements returned */
      XVisualInfo    viproto;		/* fill in for getting info */
      XVisualInfo    *vip;		/* returned info */
      int 	     ndepths = 0, *depths = NULL;
#if RENDER_MAJOR > 0 || RENDER_MINOR >= 6
      XFilters	    *filters;
#endif

      nvi = 0;
      viproto.screen = i;
      vip = XGetVisualInfo (dpy, VisualScreenMask, &viproto, &nvi);
      printf ("    Screen %d", i);
#if RENDER_MAJOR > 0 || RENDER_MINOR >= 6
      switch (XRenderQuerySubpixelOrder (dpy, i)) {
      case SubPixelUnknown: printf (" (sub-pixel order Unknown)"); break;
      case SubPixelHorizontalRGB: printf (" (sub-pixel order Horizontal RGB)"); break;
      case SubPixelHorizontalBGR: printf (" (sub-pixel order Horizontal BGR)"); break;
      case SubPixelVerticalRGB: printf (" (sub-pixel order Vertical RGB)"); break;
      case SubPixelVerticalBGR: printf (" (sub-pixel order Vertical BGR)"); break;
      case SubPixelNone: printf (" (sub-pixel order None)"); break;
      }
      printf ("\n");
      filters = XRenderQueryFilters (dpy, RootWindow (dpy, i));
      if (filters)
      {
	printf ("      filters: ");
	for (int f = 0; f < filters->nfilter; f++)
	{
	  printf ("%s", filters->filter[f]);
	  if (f < filters->nalias && filters->alias[f] != FilterAliasNone)
	    printf ("(%s)", filters->filter[filters->alias[f]]);
	  if (f < filters->nfilter - 1)
	    printf (", ");
	}
	XFree (filters);
      }
#endif
      printf ("\n");
      for (int j = 0; j < nvi; j++)
      {
	printf  ("      visual format:\n");
	printf  ("        visual id:      0x%lx\n", vip[j].visualid);
	pictform = XRenderFindVisualFormat (dpy, vip[j].visual);
	if (pictform)
	  printf("        pict format id: 0x%lx\n", pictform->id);
	else
	  printf("        pict format id: None\n");
      }
      if (vip) XFree ((char *) vip);
      depths = XListDepths (dpy, i, &ndepths);
      if (!depths) ndepths = 0;
      for (int j = 0; j < ndepths; j++)
      {
	XRenderPictFormat templ;

	templ.depth = depths[j];
	printf  ("     depth formats:\n");
	printf  ("       depth           %d\n", depths[j]);
	for (int count = 0;
             (pictform = XRenderFindFormat (dpy, PictFormatDepth, &templ, count));
             count++) {
	  printf("       pict format id: 0x%lx\n", pictform->id);
        }
      }
      if (depths) XFree (depths);
    }
    return 1;
  }
  else
    return 0;
}
#endif /* XRENDER */

#ifdef COMPOSITE
static int
print_composite_info(Display *dpy, const char *extname)
{
    int majorrev, minorrev, foo;

    if (!XCompositeQueryExtension(dpy, &foo, &foo))
	return 0;
    if (!XCompositeQueryVersion(dpy, &majorrev, &minorrev))
	return 0;
    print_standard_extension_info(dpy, extname, majorrev, minorrev);
    return 1;
}
#endif

#ifdef PANORAMIX

static int
print_xinerama_info(Display *dpy, const char *extname)
{
  int              majorrev, minorrev;

  if (!XineramaQueryVersion (dpy, &majorrev, &minorrev))
    return 0;

  print_standard_extension_info(dpy, extname, majorrev, minorrev);

  if (!XineramaIsActive(dpy)) {
    printf("  Xinerama is inactive.\n");
  } else {
    int count = 0;
    XineramaScreenInfo *xineramaScreens = XineramaQueryScreens(dpy, &count);

    for (int i = 0; i < count; i++) {
      XineramaScreenInfo *xs = &xineramaScreens[i];
      printf("  head #%d: %dx%d @ %d,%d\n", xs->screen_number,
             xs->width, xs->height, xs->x_org, xs->y_org);
    }

    XFree(xineramaScreens);
  }

  return 1;
}

#endif /* PANORAMIX */

#ifdef DMX
static const char *core(DMXInputAttributes *iinfo)
{
    if (iinfo->isCore)         return "core";
    else if (iinfo->sendsCore) return "extension (sends core)";
    else                       return "extension";
}

static int print_dmx_info(Display *dpy, const char *extname)
{
    int                  event_base, error_base;
    int                  major_version, minor_version, patch_version;
    int                  count;

    if (!DMXQueryExtension(dpy, &event_base, &error_base)
        || !DMXQueryVersion(dpy, &major_version, &minor_version,
                            &patch_version)) return 0;
    print_standard_extension_info(dpy, extname, major_version, minor_version);
    printf("  Version stamp: %d\n", patch_version);

    if (!DMXGetScreenCount(dpy, &count)) return 1;
    printf("  Screen count: %d\n", count);
    for (int i = 0; i < count; i++) {
        DMXScreenAttributes  sinfo;

        if (DMXGetScreenAttributes(dpy, i, &sinfo)) {
            printf("    %2d %s %ux%u+%d+%d %d @%dx%d\n",
                   i, sinfo.displayName,
                   sinfo.screenWindowWidth, sinfo.screenWindowHeight,
                   sinfo.screenWindowXoffset, sinfo.screenWindowYoffset,
                   sinfo.logicalScreen,
                   sinfo.rootWindowXorigin, sinfo.rootWindowYorigin);
        }
    }

    if (major_version != 1
        || minor_version < 1
        || !DMXGetInputCount(dpy, &count))
        return 1;

    printf("  Input count = %d\n", count);
    for (int i = 0; i < count; i++) {
        DMXInputAttributes   iinfo;
#ifdef XINPUT
        Display *backend;
        char    *backendname = NULL;
#endif
        if (DMXGetInputAttributes(dpy, i, &iinfo)) {
            switch (iinfo.inputType) {
            case DMXLocalInputType:
                printf("    %2d local %s", i, core(&iinfo));
                break;
            case DMXConsoleInputType:
                printf("    %2d console %s %s", i, core(&iinfo),
                       iinfo.name);
                break;
            case DMXBackendInputType:
#ifdef XINPUT
                if (iinfo.physicalId >= 0) {
                    if ((backend = XOpenDisplay(iinfo.name))) {
                        XExtensionVersion *ext
                            = XGetExtensionVersion(backend, INAME);
                        if (ext
                            && ext != (XExtensionVersion *)NoSuchExtension) {

                            int         dcount;
                            XDeviceInfo *devInfo = XListInputDevices(backend,
                                                                     &dcount);
                            if (devInfo) {
                                for (int d = 0; d < dcount; d++) {
                                    if ((unsigned)iinfo.physicalId
                                        == devInfo[d].id
                                        && devInfo[d].name) {
                                        backendname = strdup(devInfo[d].name);
                                        break;
                                    }
                                }
                                XFreeDeviceList(devInfo);
                            }
                        }
                        XCloseDisplay(backend);
                    }
                }
#endif
                printf("    %2d backend %s o%d/%s",i, core(&iinfo),
                       iinfo.physicalScreen, iinfo.name);
                if (iinfo.physicalId >= 0) printf("/id%d", iinfo.physicalId);
#ifdef XINPUT
                if (backendname) {
                    printf("=%s", backendname);
                    free(backendname);
                }
#endif
                break;
            }
        }
        printf("\n");
    }
    return 1;
}

#endif /* DMX */


#ifdef PRESENT
static inline void print_present_capabilities(uint32_t capabilities)
{
    if (capabilities == PresentCapabilityNone) {
        fputs("PresentCapabilityNone", stdout);
    }
    else {
        int count = 0;

        if (capabilities & PresentCapabilityAsync) {
            fputs("PresentCapabilityAsync", stdout);
            count++;
            capabilities &= ~PresentCapabilityAsync;
        }
        if (capabilities & PresentCapabilityFence) {
            if (count)
                fputs(" | ", stdout);
            fputs("PresentCapabilityFence", stdout);
            count++;
            capabilities &= ~PresentCapabilityFence;
        }
        if (capabilities & PresentCapabilityUST) {
            if (count)
                fputs(" | ", stdout);
            fputs("PresentCapabilityUST", stdout);
            count++;
            capabilities &= ~PresentCapabilityUST;
        }
#ifdef PresentCapabilityAsyncMayTear /* added in xorgproto-2023.1 */
        if (capabilities & PresentCapabilityAsyncMayTear) {
            if (count)
                fputs(" | ", stdout);
            fputs("PresentCapabilityAsyncMayTear", stdout);
            count++;
            capabilities &= ~PresentCapabilityAsyncMayTear;
        }
#endif
#ifdef PresentCapabilitySyncobj /* added in xorgproto-2024.1 */
        if (capabilities & PresentCapabilitySyncobj) {
            if (count)
                fputs(" | ", stdout);
            fputs("PresentCapabilitySyncobj", stdout);
            count++;
            capabilities &= ~PresentCapabilitySyncobj;
        }
#endif
        /* Are there any bits left we didn't recognize? */
        if (capabilities != 0) {
            for (unsigned int b = 0; b < 32; b++) {
                uint32_t m = 1U << b;

                if (capabilities & m) {
                    if (count)
                        fputs(" | ", stdout);
                    printf("PresentCapabilityUnknownBit%d", b);
                    capabilities &= ~m;
                }
            }
        }
    }
}


static int print_present_info(Display *dpy, const char *extname)
{
    int                  opcode, event_base, error_base;
    int                  major_version, minor_version;
    Bool                 query_crtcs = False;

    if (!XPresentQueryExtension(dpy, &opcode, &event_base, &error_base)
        || !XPresentQueryVersion(dpy, &major_version, &minor_version))
        return 0;
    print_standard_extension_info(dpy, extname, major_version, minor_version);

    if (XRRQueryExtension (dpy, &event_base, &error_base)) {
        int rr_major, rr_minor;

        if (XRRQueryVersion (dpy, &rr_major, &rr_minor) &&
            (rr_major == 1) && (rr_minor >= 2)) {
            query_crtcs = True;
        }
    }

    for (int i = 0; i < ScreenCount (dpy); i++) {
        Window screen_root = RootWindow(dpy, i);
        uint32_t capabilities = XPresentQueryCapabilities(dpy, screen_root);

        printf("  screen #%d capabilities: 0x%x (", i, capabilities);
        print_present_capabilities(capabilities);
        puts(")");

        if (query_crtcs) {
            XRRScreenResources *res = XRRGetScreenResources (dpy, screen_root);

            if (res != NULL) {
                for (int c = 0; c < res->ncrtc; c++) {
                    capabilities = XPresentQueryCapabilities(dpy, res->crtcs[c]);
                    printf("    crtc 0x%lx capabilities: 0x%x (",
                           res->crtcs[c], capabilities);
                    print_present_capabilities(capabilities);
                    puts(")");
                }
                XRRFreeScreenResources(res);
            }
        }
    }

    return 1;
}
#endif /* XPRESENT */

/* utilities to manage the list of recognized extensions */


typedef int (*ExtensionPrintFunc)(
    Display *, const char *
);

typedef struct {
    const char *extname;
    ExtensionPrintFunc printfunc;
    Bool printit;
} ExtensionPrintInfo;

static ExtensionPrintInfo known_extensions[] =
{
#ifdef MITSHM
    {"MIT-SHM",	print_mitshm_info, False},
#endif /* MITSHM */
#ifdef XKB
    {XkbName, print_xkb_info, False},
#endif /* XKB */
#ifdef MULTIBUFFER
    {MULTIBUFFER_PROTOCOL_NAME,	print_multibuf_info, False},
#endif
    {"SHAPE", print_shape_info, False},
    {SYNC_NAME, print_sync_info, False},
#ifdef XFreeXDGA
    {XF86DGANAME, print_dga_info, False},
#endif /* XFreeXDGA */
#ifdef XF86VIDMODE
    {XF86VIDMODENAME, print_XF86VidMode_info, False},
#endif /* XF86VIDMODE */
#ifdef XF86MISC
    {XF86MISCNAME, print_XF86Misc_info, False},
#endif /* XF86MISC */
    {XTestExtensionName, print_xtest_info, False},
    {"DOUBLE-BUFFER", print_dbe_info, False},
    {"RECORD", print_record_info, False},
#ifdef XINPUT
    {INAME, print_xinput_info, False},
#endif
#ifdef XRENDER
    {RENDER_NAME, print_xrender_info, False},
#endif
#ifdef COMPOSITE
    {COMPOSITE_NAME, print_composite_info, False},
#endif
#ifdef PANORAMIX
    {"XINERAMA", print_xinerama_info, False},
#endif
#ifdef DMX
    {"DMX", print_dmx_info, False},
#endif
#ifdef PRESENT
    {"Present", print_present_info, False},
#endif
    /* add new extensions here */
};

static const int num_known_extensions = sizeof known_extensions / sizeof known_extensions[0];

static void
print_known_extensions(FILE *f)
{
    int i, col;
    for (i = 0, col = 6; i < num_known_extensions; i++)
    {
	int extlen = (int) strlen(known_extensions[i].extname) + 1;

	if ((col + extlen) > 79)
	{
		col = 6;
		fprintf(f, "\n     ");
	}
	fprintf(f, "%s ", known_extensions[i].extname);
	col += extlen;
    }
}

static void
mark_extension_for_printing(const char *extname)
{
    if (strcmp(extname, "all") == 0)
    {
	for (int i = 0; i < num_known_extensions; i++)
	    known_extensions[i].printit = True;
    }
    else
    {
	for (int i = 0; i < num_known_extensions; i++)
	{
	    if (strcmp(extname, known_extensions[i].extname) == 0)
	    {
		known_extensions[i].printit = True;
		return;
	    }
	}
	printf("%s extension not supported by %s\n", extname, ProgramName);
    }
}

static void
print_marked_extensions(Display *dpy)
{
    for (int i = 0; i < num_known_extensions; i++)
    {
	if (known_extensions[i].printit)
	{
	    printf("\n");
	    if (! (*known_extensions[i].printfunc)(dpy,
					known_extensions[i].extname))
	    {
		printf("%s extension not supported by server\n",
		       known_extensions[i].extname);
	    }
	}
    }
}

static void _X_NORETURN
usage(void)
{
    fprintf (stderr, "usage:  %s [options]\n%s", ProgramName,
             "-display displayname\tserver to query\n"
             "-version\t\tprint program version and exit\n"
             "-queryExtensions\tprint info returned by XQueryExtension\n"
             "-ext all\t\tprint detailed info for all supported extensions\n"
             "-ext extension-name\tprint detailed info for extension-name if one of:\n     ");
    print_known_extensions(stderr);
    fprintf (stderr, "\n");
    exit (1);
}

int
main(int argc, char *argv[])
{
    Display *dpy;			/* X connection */
    char *displayname = NULL;		/* server to contact */

    ProgramName = argv[0];

    for (int i = 1; i < argc; i++) {
	char *arg = argv[i];
	size_t len = strlen(arg);

	if (!strncmp("-display", arg, len)) {
	    if (++i >= argc) {
		fprintf (stderr, "%s: -display requires an argument\n",
			 ProgramName);
		usage ();
	    }
	    displayname = argv[i];
	} else if (!strncmp("-queryExtensions", arg, len)) {
	    queryExtensions = True;
	} else if (!strncmp("-ext", arg, len)) {
	    if (++i >= argc) {
		fprintf (stderr, "%s: -ext requires an argument\n",
			 ProgramName);
		usage ();
	    }
	    mark_extension_for_printing(argv[i]);
        } else if (!strncmp("-version", arg, len)) {
            printf("%s\n", PACKAGE_STRING);
            exit (0);
	} else {
	    fprintf (stderr, "%s: unrecognized argument '%s'\n",
		     ProgramName, arg);
	    usage ();
	}
    }

    dpy = XOpenDisplay (displayname);
    if (!dpy) {
	fprintf (stderr, "%s:  unable to open display \"%s\".\n",
		 ProgramName, XDisplayName (displayname));
	exit (1);
    }

    print_display_info (dpy);
    for (int i = 0; i < ScreenCount (dpy); i++) {
	print_screen_info (dpy, i);
    }

    print_marked_extensions(dpy);

    XCloseDisplay (dpy);
    exit (0);
}