summaryrefslogtreecommitdiff
path: root/xwd.c
blob: 98ac5064ccf261f397b3f96736627e3d1b2360ad (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
/*

Copyright 1987, 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.

*/

/*
 * xwd.c MIT Project Athena, X Window system window raster image dumper.
 *
 * This program will dump a raster image of the contents of a window into a
 * file for output on graphics printers or for other uses.
 *
 *  Author:	Tony Della Fera, DEC
 *		17-Jun-85
 *
 *  Modification history:
 *
 *  11/14/86 Bill Wyatt, Smithsonian Astrophysical Observatory
 *    - Removed Z format option, changing it to an XY option. Monochrome
 *      windows will always dump in XY format. Color windows will dump
 *      in Z format by default, but can be dumped in XY format with the
 *      -xy option.
 *
 *  11/18/86 Bill Wyatt
 *    - VERSION 6 is same as version 5 for monchrome. For colors, the
 *      appropriate number of Color structs are dumped after the header,
 *      which has the number of colors (=0 for monochrome) in place of the
 *      V5 padding at the end. Up to 16-bit displays are supported. I
 *      don't yet know how 24- to 32-bit displays will be handled under
 *      the Version 11 protocol.
 *
 *  6/15/87 David Krikorian, MIT Project Athena
 *    - VERSION 7 runs under the X Version 11 servers, while the previous
 *      versions of xwd were are for X Version 10.  This version is based
 *      on xwd version 6, and should eventually have the same color
 *      abilities. (Xwd V7 has yet to be tested on a color machine, so
 *      all color-related code is commented out until color support
 *      becomes practical.)
 */

/*%
 *%    This is the format for commenting out color-related code until
 *%  color can be supported.
%*/

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdio.h>
#include <errno.h>
#include <X11/Xos.h>
#include <stdlib.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>

#include "X11/XWDFile.h"

#define FEEP_VOLUME 0

/* Include routines to do parsing */
#include "dsimple.h"
#include "list.h"
#include "wsutils.h"
#include "multiVis.h"

#ifdef XKB
#include <X11/extensions/XKBbells.h>
#endif

/* Setable Options */

static int format = ZPixmap;
static Bool nobdrs = False;
static Bool on_root = False;
static Bool standard_out = True;
static Bool debug = False;
static Bool silent = False;
static Bool use_installed = False;
static long add_pixel_value = 0;


extern int main(int, char **);
extern void Window_Dump(Window, FILE *);
extern int Image_Size(XImage *);
extern int Get_XColors(XWindowAttributes *, XColor **);
extern void _swapshort(register char *, register unsigned);
extern void _swaplong(register char *, register unsigned);
static long parse_long(char *);
static int Get24bitDirectColors(XColor **);
static int ReadColors(Visual *, Colormap, XColor **);

static long
parse_long(char *s)
{
    long retval = 0L;
    int thesign = 1;

    if (s && s[0]) {
        switch (s[0]) {
        case '-':
            (void) sscanf(s + 1, "%lu", &retval);
            thesign = -1;
            break;
        case '0':
            (void) sscanf(s + 1, "%lo", &retval);
            break;
        case 'x':
        case 'X':
            (void) sscanf(s + 1, "%lx", &retval);
            break;
        default:
            (void) sscanf(s, "%lu", &retval);
            break;
        }
    }
    return (thesign * retval);
}

int
main(int argc, char **argv)
{
    register int i;
    Window target_win;
    FILE *out_file = stdout;
    Bool frame_only = False;

    INIT_NAME;

    /* Handle args that don't require opening a display */
    for (int n = 1; n < argc; n++) {
	const char *argn = argv[n];
	/* accept single or double dash for -help & -version */
	if (argn[0] == '-' && argn[1] == '-') {
	    argn++;
	}
	if (strcmp (argn, "-help") == 0) {
	    usage(NULL, EXIT_SUCCESS);
	    exit(0);
	}
	if (strcmp (argn, "-version") == 0) {
	    puts(PACKAGE_STRING);
	    exit(EXIT_SUCCESS);
	}
    }

    Setup_Display_And_Screen(&argc, argv);

    /* Get window select on command line, if any */
    target_win = Select_Window_Args(&argc, argv);

    for (i = 1; i < argc; i++) {
        if (!strcmp(argv[i], "-nobdrs")) {
            nobdrs = True;
            continue;
        }
        if (!strcmp(argv[i], "-debug")) {
            debug = True;
            continue;
        }
        if (!strcmp(argv[i], "-out")) {
            if (++i >= argc)
                usage("-out requires an argument", EXIT_FAILURE);
            if (!(out_file = fopen(argv[i], "wb")))
                Fatal_Error("Can't open output file as specified.");
            standard_out = False;
            continue;
        }
        if (!strcmp(argv[i], "-xy")) {
            format = XYPixmap;
            continue;
        }
        if (!strcmp(argv[i], "-screen")) {
            on_root = True;
            continue;
        }
        if (!strcmp(argv[i], "-icmap")) {
            use_installed = True;
            continue;
        }
        if (!strcmp(argv[i], "-add")) {
            if (++i >= argc)
                usage("-add requires an argument", EXIT_FAILURE);
            add_pixel_value = parse_long(argv[i]);
            continue;
        }
        if (!strcmp(argv[i], "-frame")) {
            frame_only = True;
            continue;
        }
        if (!strcmp(argv[i], "-silent")) {
            silent = True;
            continue;
        }
        fprintf(stderr, "%s: unrecognized argument '%s'\n",
                program_name, argv[i]);
        usage(NULL, EXIT_FAILURE);
    }
#ifdef WIN32
    if (standard_out)
        _setmode(fileno(out_file), _O_BINARY);
#endif

    /*
     * Let the user select the target window.
     */
    if (target_win == None)
        target_win = Select_Window(dpy, !frame_only);

    /*
     * Dump it!
     */
    Window_Dump(target_win, out_file);

    XCloseDisplay(dpy);
    if (fclose(out_file)) {
        perror("xwd");
        exit(1);
    }
    exit(0);
}

static int
Get24bitDirectColors(XColor **colors)
{
    int i, ncolors = 256;
    XColor *tcol;

    *colors = tcol = malloc(sizeof(XColor) * ncolors);

    for (i = 0; i < ncolors; i++) {
        tcol[i].pixel = i << 16 | i << 8 | i;
        tcol[i].red = tcol[i].green = tcol[i].blue = i << 8 | i;
        tcol[i].flags = 0;
    }

    return ncolors;
}

/*
 * Window_Dump: dump a window to a file which must already be open for
 *              writing.
 */

void
Window_Dump(Window window, FILE *out)
{
    unsigned long swaptest = 1;
    XColor *colors;
    unsigned buffer_size;
    size_t win_name_size;
    CARD32 header_size;
    int ncolors, i;
    char *win_name;
    char default_win_name[] = "xwdump";
    Bool got_win_name;
    XWindowAttributes win_info;
    XImage *image;
    int absx, absy, x, y;
    unsigned width, height;
    int dwidth, dheight;
    Window dummywin;
    XWDFileHeader header;
    XWDColor xwdcolor;

    int transparentOverlays, multiVis;
    int numVisuals;
    XVisualInfo *pVisuals;
    int numOverlayVisuals;
    OverlayInfo *pOverlayVisuals;
    int numImageVisuals;
    XVisualInfo **pImageVisuals;
    list_ptr vis_regions;       /* list of regions to read from */
    list_ptr vis_image_regions;
    Visual vis_h, *vis;
    int allImage = 0;

    /*
     * Inform the user not to alter the screen.
     */
    if (!silent) {
#ifdef XKB
        XkbStdBell(dpy, None, 50, XkbBI_Wait);
#else
        XBell(dpy, FEEP_VOLUME);
#endif
        XFlush(dpy);
    }

    /*
     * Get the parameters of the window being dumped.
     */
    if (debug)
        outl("xwd: Getting target window information.\n");
    if (!XGetWindowAttributes(dpy, window, &win_info))
        Fatal_Error("Can't get target window attributes.");

    /* handle any frame window */
    if (!XTranslateCoordinates(dpy, window, RootWindow(dpy, screen), 0, 0,
                               &absx, &absy, &dummywin)) {
        fprintf(stderr,
                "%s:  unable to translate window coordinates (%d,%d)\n",
                program_name, absx, absy);
        exit(1);
    }
    win_info.x = absx;
    win_info.y = absy;
    width = win_info.width;
    height = win_info.height;

    if (!nobdrs) {
        absx -= win_info.border_width;
        absy -= win_info.border_width;
        width += (2 * win_info.border_width);
        height += (2 * win_info.border_width);
    }
    dwidth = DisplayWidth(dpy, screen);
    dheight = DisplayHeight(dpy, screen);

    /* clip to window */
    if (absx < 0) {
        width += absx;
        absx = 0;
    }
    if (absy < 0) {
        height += absy;
        absy = 0;
    }
    if (absx + width > dwidth)
        width = dwidth - absx;
    if (absy + height > dheight)
        height = dheight - absy;

    if (!XFetchName(dpy, window, &win_name) || !win_name || !win_name[0]) {
        win_name = default_win_name;
        got_win_name = False;
    }
    else {
        got_win_name = True;
    }

    /* sizeof(char) is included for the null string terminator. */
    win_name_size = strlen(win_name) + sizeof(char);

    /*
     * Snarf the pixmap with XGetImage.
     */

    x = absx - win_info.x;
    y = absy - win_info.y;

    multiVis = GetMultiVisualRegions(dpy, RootWindow(dpy, screen),
                                     absx, absy,
                                     width, height, &transparentOverlays,
                                     &numVisuals, &pVisuals,
                                     &numOverlayVisuals, &pOverlayVisuals,
                                     &numImageVisuals, &pImageVisuals,
                                     &vis_regions, &vis_image_regions,
                                     &allImage);
    if (on_root || multiVis) {
        if (!multiVis)
            image = XGetImage(dpy, RootWindow(dpy, screen), absx, absy,
                              width, height, AllPlanes, format);
        else
            image = ReadAreaToImage(dpy, RootWindow(dpy, screen), absx, absy,
                                    width, height,
                                    numVisuals, pVisuals,
                                    numOverlayVisuals, pOverlayVisuals,
                                    numImageVisuals, pImageVisuals,
                                    vis_regions, vis_image_regions,
                                    format, allImage);
    }
    else
        image = XGetImage(dpy, window, x, y, width, height, AllPlanes, format);
    if (!image) {
        fprintf(stderr, "%s:  unable to get image at %dx%d+%d+%d\n",
                program_name, width, height, x, y);
        exit(1);
    }

    if (add_pixel_value != 0)
        XAddPixel(image, add_pixel_value);

    /*
     * Determine the pixmap size.
     */
    buffer_size = Image_Size(image);

    if (debug)
        outl("xwd: Getting Colors.\n");

    if (!multiVis) {
        ncolors = Get_XColors(&win_info, &colors);
        vis = win_info.visual;
    }
    else {
        ncolors = Get24bitDirectColors(&colors);
        initFakeVisual(&vis_h);
        vis = &vis_h;
    }
    /*
     * Inform the user that the image has been retrieved.
     */
    if (!silent) {
#ifdef XKB
        XkbStdBell(dpy, window, FEEP_VOLUME, XkbBI_Proceed);
        XkbStdBell(dpy, window, FEEP_VOLUME, XkbBI_RepeatingLastBell);
#else
        XBell(dpy, FEEP_VOLUME);
        XBell(dpy, FEEP_VOLUME);
#endif
        XFlush(dpy);
    }

    /*
     * Calculate header size.
     */
    if (debug)
        outl("xwd: Calculating header size.\n");
    header_size = SIZEOF(XWDheader) + (CARD32) win_name_size;

    /*
     * Write out header information.
     */
    if (debug)
        outl("xwd: Constructing and dumping file header.\n");
    memset(&header, 0, SIZEOF(XWDheader));
    header.header_size = (CARD32) header_size;
    header.file_version = (CARD32) XWD_FILE_VERSION;
    header.pixmap_format = (CARD32) format;
    header.pixmap_depth = (CARD32) image->depth;
    header.pixmap_width = (CARD32) image->width;
    header.pixmap_height = (CARD32) image->height;
    header.xoffset = (CARD32) image->xoffset;
    header.byte_order = (CARD32) image->byte_order;
    header.bitmap_unit = (CARD32) image->bitmap_unit;
    header.bitmap_bit_order = (CARD32) image->bitmap_bit_order;
    header.bitmap_pad = (CARD32) image->bitmap_pad;
    header.bits_per_pixel = (CARD32) image->bits_per_pixel;
    header.bytes_per_line = (CARD32) image->bytes_per_line;
    /****
    header.visual_class = (CARD32) win_info.visual->class;
    header.red_mask = (CARD32) win_info.visual->red_mask;
    header.green_mask = (CARD32) win_info.visual->green_mask;
    header.blue_mask = (CARD32) win_info.visual->blue_mask;
    header.bits_per_rgb = (CARD32) win_info.visual->bits_per_rgb;
    header.colormap_entries = (CARD32) win_info.visual->map_entries;
    *****/
    header.visual_class = (CARD32) vis->class;
    header.red_mask = (CARD32) vis->red_mask;
    header.green_mask = (CARD32) vis->green_mask;
    header.blue_mask = (CARD32) vis->blue_mask;
    header.bits_per_rgb = (CARD32) vis->bits_per_rgb;
    header.colormap_entries = (CARD32) vis->map_entries;

    header.ncolors = ncolors;
    header.window_width = (CARD32) win_info.width;
    header.window_height = (CARD32) win_info.height;
    header.window_x = absx;
    header.window_y = absy;
    header.window_bdrwidth = (CARD32) win_info.border_width;

    if (*(char *) &swaptest) {
        _swaplong((char *) &header, sizeof(header));
        for (i = 0; i < ncolors; i++) {
            _swaplong((char *) &colors[i].pixel, sizeof(CARD32));
            _swapshort((char *) &colors[i].red, 3 * sizeof(short));
        }
    }

    if (fwrite((char *) &header, SIZEOF(XWDheader), 1, out) != 1 ||
        fwrite(win_name, win_name_size, 1, out) != 1) {
        perror("xwd");
        exit(1);
    }

    /*
     * Write out the color maps, if any
     */

    if (debug)
        outl("xwd: Dumping %d colors.\n", ncolors);
    for (i = 0; i < ncolors; i++) {
        xwdcolor.pixel = colors[i].pixel;
        xwdcolor.red = colors[i].red;
        xwdcolor.green = colors[i].green;
        xwdcolor.blue = colors[i].blue;
        xwdcolor.flags = colors[i].flags;
        if (fwrite((char *) &xwdcolor, SIZEOF(XWDColor), 1, out) != 1) {
            perror("xwd");
            exit(1);
        }
    }

    /*
     * Write out the buffer.
     */
    if (debug)
        outl("xwd: Dumping pixmap.  bufsize=%d\n", buffer_size);

    /*
     *  This copying of the bit stream (data) to a file is to be replaced
     *  by an Xlib call which hasn't been written yet.  It is not clear
     *  what other functions of xwd will be taken over by this (as yet)
     *  non-existent X function.
     */
    if (fwrite(image->data, (int) buffer_size, 1, out) != 1) {
        perror("xwd");
        exit(1);
    }

    /*
     * free the color buffer.
     */

    if (debug && ncolors > 0)
        outl("xwd: Freeing colors.\n");
    if (ncolors > 0)
        free(colors);

    /*
     * Free window name string.
     */
    if (debug)
        outl("xwd: Freeing window name string.\n");
    if (got_win_name)
        XFree(win_name);

    /*
     * Free image
     */
    XDestroyImage(image);
}

/*
 * Report the syntax for calling xwd.
 */
void
usage(const char *errmsg, int exitval)
{
    if (errmsg != NULL)
        fprintf(stderr, "%s: %s\n", program_name, errmsg);

    fprintf(stderr,
            "Usage: %s [options] [-root| -id <wdid>| -name <wdname>] > mywddump\n",
            program_name);
    fprintf(stderr,
            "       %s [options] [-root| -id <wdid>| -name <wdname>] -out mywddump\n",
            program_name);
    fputs("Options:\n" "  -help                    Print this message\n"
          "  -version                 Print the program version and exit\n"
          "  -debug                   Enable debug mode\n"
          "  -d, -display <host:dpy>  Specify server to connect\n"
          "  -nobdrs                  Exclude window borders\n"
          "  -out <file>              Specify an output file\n"
          "  -xy                      Select XY dumping format for color displays\n"
          "  -add <value>             Add a signed value to every pixel\n"
          "  -frame                   Include window manager frame\n"
          "  -root                    Select the root window\n"
          "  -id <wdid>               Select a window by its resource id\n"
          "  -name <wdname>           Select a window by its WM_NAME property\n"
          "  -icmap                   Use the first colormap of the screen\n"
          "  -screen                  Send the request against the root window\n"
          "  -silent                  Don't ring any bells\n", stderr);
    exit(exitval);
}

/*
 * Determine the pixmap size.
 */

int
Image_Size(XImage *image)
{
    if (image->format != ZPixmap)
        return (image->bytes_per_line * image->height * image->depth);

    return (image->bytes_per_line * image->height);
}

#define lowbit(x) ((x) & (~(x) + 1))

static int
ReadColors(Visual *vis, Colormap cmap, XColor **colors)
{
    int i, ncolors;

    ncolors = vis->map_entries;

    if (!(*colors = malloc(sizeof(XColor) * ncolors)))
        Fatal_Error("Out of memory!");

    if (vis->class == DirectColor || vis->class == TrueColor) {
        Pixel red, green, blue, red1, green1, blue1;

        red = green = blue = 0;
        red1 = lowbit(vis->red_mask);
        green1 = lowbit(vis->green_mask);
        blue1 = lowbit(vis->blue_mask);
        for (i = 0; i < ncolors; i++) {
            (*colors)[i].pixel = red | green | blue;
            (*colors)[i].pad = 0;
            red += red1;
            if (red > vis->red_mask)
                red = 0;
            green += green1;
            if (green > vis->green_mask)
                green = 0;
            blue += blue1;
            if (blue > vis->blue_mask)
                blue = 0;
        }
    }
    else {
        for (i = 0; i < ncolors; i++) {
            (*colors)[i].pixel = i;
            (*colors)[i].pad = 0;
        }
    }

    XQueryColors(dpy, cmap, *colors, ncolors);

    return (ncolors);
}

/*
 * Get the XColors of all pixels in image - returns # of colors
 */
int
Get_XColors(XWindowAttributes *win_info, XColor **colors)
{
    int i, ncolors;
    Colormap cmap = win_info->colormap;

    if (use_installed)
        /* assume the visual will be OK ... */
        cmap = XListInstalledColormaps(dpy, win_info->root, &i)[0];
    if (!cmap)
        return (0);
    ncolors = ReadColors(win_info->visual, cmap, colors);
    return ncolors;
}

void
_swapshort(register char *bp, register unsigned n)
{
    char *ep = bp + n;

    while (bp < ep) {
        char c = *bp;
        *bp = *(bp + 1);
        bp++;
        *bp++ = c;
    }
}

void
_swaplong(register char *bp, register unsigned n)
{
    char *ep = bp + n;

    while (bp < ep) {
        char c = bp[3];
        bp[3] = bp[0];
        bp[0] = c;
        c = bp[2];
        bp[2] = bp[1];
        bp[1] = c;
        bp += 4;
    }
}