summaryrefslogtreecommitdiff
path: root/Build/source/texk/xdvik/xserver-info.c
blob: 3a47c0ef1b236ebd0853faef79a1e4d69f52b4b7 (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
/* Xserver debugging functions, lifted from X11 R6.6's xdpyinfo.c.
   Original copyright follows:
*/

/*
  Copyright 1988, 1998  The Open Group

  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
  */

#include "xdvi-config.h"
#include "xdvi.h"
#include "xserver-info.h"

#ifdef XSERVER_INFO

static void
print_display_info (Display *dpy)
{
    char dummybuf[40];
    char *cp;
    int minkeycode, maxkeycode;
    int i, 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));
    /* apparently AIX 3 does not have XExtendedMaxRequestSize.
       We don't really need it either.
    */
    /*     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:  %lu\n", XDisplayMotionBufferSize (dpy)); */

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

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

    pmf = XListPixmapFormats (dpy, &n);
    printf("number of supported pixmap formats:    %d\n", n);
    if (pmf) {
	printf("supported pixmap formats:\n");
	for (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 */
    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:    
	sprintf(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;			/* retured info */
    int nvi;				/* number of elements returned */
    int i;				/* temp variable: iterator */
    /*      char eventbuf[80]; */			/* want 79 chars per line + nul */
    static 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",
	   DisplayWidth (dpy, scr), DisplayHeight (dpy, scr),
	   DisplayWidthMM(dpy, scr), DisplayHeightMM (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 (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 %lu, white %lu\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 (i = 0; i < nvi; i++) {
	print_visual_info (vip+i);
    }
    if (vip) XFree ((char *) vip);
}


/*
  public function: when DBG_ALL is enabled, dump info on Xserver
  to stdout.
*/
void
print_xserver_info(void)
{
    int i;
    if (globals.debug & DBG_PK) {
	puts("========== Xserver properties info begin ==========\n");
	print_display_info(DISP);
	for (i = 0; i < ScreenCount(DISP); i++) {
	    print_screen_info(DISP, i);
	}
	puts("========== Xserver properties info end ==========\n");
    }
}


#else
/* silence `empty compilation unit' warnings */
static void bar(void); static void foo(void) { bar(); } static void bar(void) { foo(); }
#endif /* XSERVER_INFO */