about summary refs log tree commit diff
path: root/urt/rle_getrow.c
blob: 6a25c987a4d1ebc54f7c7d5def2d2a1da50be600 (plain) (blame)
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
/*
 * This software is copyrighted as noted below.  It may be freely copied,
 * modified, and redistributed, provided that the copyright notice is
 * preserved on all copies.
 *
 * There is no warranty or other guarantee of fitness for this software,
 * it is provided solely "as is".  Bug reports or fixes may be sent
 * to the author, who may or may not act on them as he desires.
 *
 * You may not include this software in a program or other software product
 * without supplying the source, or without informing the end-user that the
 * source is available for no extra charge.
 *
 * If you modify this software, you should include a notice giving the
 * name of the person performing the modification, the date of modification,
 * and the reason for such modification.
 *
 *  Modified at BRL 16-May-88 by Mike Muuss to avoid Alliant STDC desire
 *  to have all "void" functions so declared.
 */
/*
 * rle_getrow.c - Read an RLE file in.
 *
 * Author:  Spencer W. Thomas
 *      Computer Science Dept.
 *      University of Utah
 * Date:    Wed Apr 10 1985
 * Copyright (c) 1985 Spencer W. Thomas
 *
 * $Id: rle_getrow.c,v 3.0.1.5 1992/03/04 19:33:08 spencer Exp spencer $
 */

#include <string.h>
#include <stdio.h>

#include "netpbm/pm.h"
#include "netpbm/mallocvar.h"

#include "rle.h"
#include "rle_code.h"
#include "vaxshort.h"

/* Read a two-byte "short" that started in VAX (LITTLE_ENDIAN) order */
#define VAXSHORT( var, fp )\
    { var = fgetc(fp)&0xFF; var |= (fgetc(fp)) << 8; }

/* Instruction format -- first byte is opcode, second is datum. */

#define OPCODE(inst) (inst[0] & ~LONG)
#define LONGP(inst) (inst[0] & LONG)
#define DATUM(inst) (inst[1] & 0xff)    /* Make sure it's unsigned. */

static int     debug_f;     /* If non-zero, print debug info. */



static void
readComments(rle_hdr * const hdrP) {

    FILE * ifP = hdrP->rle_file;

    /* There are comments */
    short comlen;
    char * cp;

    VAXSHORT(comlen, ifP); /* get comment length */

    if (comlen < 0)
        pm_error("Negative comment length in RLE header");
    else if (comlen > 0) {
        unsigned int const evenlen = (comlen + 1) & ~1;    /* make it even */

        char * commentHeap;
        unsigned int i;

        MALLOCARRAY(commentHeap, evenlen);

        if (commentHeap == NULL) {
            pm_error("Malloc failed for comment buffer of size %u "
                     "in rle_get_setup, reading '%s'",
                     evenlen, hdrP->file_name );
        }
        fread(commentHeap, 1, evenlen, ifP);
        /* Count the comments */
        for (i = 0, cp = commentHeap; cp < commentHeap + comlen; ++cp) {
            if (*cp == '\0')
                ++i;
        }
        ++i;            /* extra for NULL pointer at end */
        /* Get space to put pointers to comments */
        MALLOCARRAY(hdrP->comments, i);
        if (hdrP->comments == NULL) {
            pm_error("Malloc failed for %d comment pointers "
                     "in rle_get_setup, reading '%s'",
                     i, hdrP->file_name );
        }
        /* Set comment heap */
        hdrP->comments[0] = commentHeap;

        /* Set pointers to individual comments in the heap as
          hdrP->comments[1], hdrP->comments[2], etc.
        */
        for (i = 1, cp = commentHeap + 1;
             cp < commentHeap + comlen;
             ++cp)
            if (*(cp - 1) == '\0')
                hdrP->comments[i++] = cp;
        hdrP->comments[i] = NULL;
    } else
        hdrP->comments = NULL;
}



int
rle_get_setup(rle_hdr * const hdrP) {
/*-----------------------------------------------------------------------------
  Read the initialization information from an RLE file.
  Inputs:
    hdrP:    Contains pointer to the input file.
  Outputs:
    hdrP:    Initialized with information from the input file.
  Returns
     0  on success,
     -1 if the file is not an RLE file,
     -2 if malloc of the color map failed,
     -3 if an immediate EOF is hit (empty input file)
     -4 if an EOF is encountered reading the setup information.
  Assumptions:
    input file is positioned to the "magic" number in an RLE file (usually
    first byte of the file).
  Algorithm:
    Read in the setup info and fill in *hdrP.
---------------------------------------------------------------------------- */
    struct XtndRsetup setup;
    short magic;
    FILE * ifP = hdrP->rle_file;
    int i;

    /* Clear old stuff out of the header. */
    rle_hdr_clear(hdrP);
    if (hdrP->is_init != RLE_INIT_MAGIC)
        rle_names(hdrP, "Urt", "some file", 0);
    ++hdrP->img_num;     /* Count images. */

    VAXSHORT(magic, ifP);
    if (feof(ifP))
        return RLE_EMPTY;
    if (magic != RLE_MAGIC)
        return RLE_NOT_RLE;
    fread(&setup, 1, SETUPSIZE, ifP);  /* assume VAX packing */
    if (feof( ifP))
        return RLE_EOF;

    /* Extract information from setup */
    hdrP->ncolors = setup.h_ncolors;
    for (i = 0; i < hdrP->ncolors; ++i)
        RLE_SET_BIT(*hdrP, i);

    if (!(setup.h_flags & H_NO_BACKGROUND) && setup.h_ncolors > 0) {
        rle_pixel * bg_color;

        MALLOCARRAY(hdrP->bg_color, setup.h_ncolors);
        if (!hdrP->bg_color)
            pm_error("Failed to allocation array for %u background colors",
                     setup.h_ncolors);
        MALLOCARRAY(bg_color, 1 + (setup.h_ncolors / 2) * 2);
        if (!bg_color)
            pm_error("Failed to allocation array for %u background colors",
                     1+(setup.h_ncolors / 2) * 2);
        fread((char *)bg_color, 1, 1 + (setup.h_ncolors / 2) * 2, ifP);
        for (i = 0; i < setup.h_ncolors; ++i)
            hdrP->bg_color[i] = bg_color[i];
        free(bg_color);
    } else {
        getc(ifP);   /* skip filler byte */
        hdrP->bg_color = NULL;
    }

    if (setup.h_flags & H_NO_BACKGROUND)
        hdrP->background = 0;
    else if (setup.h_flags & H_CLEARFIRST)
        hdrP->background = 2;
    else
        hdrP->background = 1;
    if (setup.h_flags & H_ALPHA) {
        hdrP->alpha = 1;
        RLE_SET_BIT( *hdrP, RLE_ALPHA );
    } else
        hdrP->alpha = 0;

    hdrP->xmin = vax_gshort(setup.hc_xpos);
    hdrP->ymin = vax_gshort(setup.hc_ypos);
    hdrP->xmax = hdrP->xmin + vax_gshort(setup.hc_xlen) - 1;
    hdrP->ymax = hdrP->ymin + vax_gshort(setup.hc_ylen) - 1;

    hdrP->ncmap = setup.h_ncmap;
    hdrP->cmaplen = setup.h_cmaplen;

    if (hdrP->ncmap > 0) {
        int const maplen = hdrP->ncmap * (1 << hdrP->cmaplen);

        unsigned int i;
        unsigned char *maptemp;

        MALLOCARRAY(hdrP->cmap, maplen);
        MALLOCARRAY(maptemp, 2 * maplen);
        if (hdrP->cmap == NULL || maptemp == NULL) {
            pm_error("Malloc failed for color map of size %d*%d "
                     "in rle_get_setup, reading '%s'",
                     hdrP->ncmap, (1 << hdrP->cmaplen),
                     hdrP->file_name );
            return RLE_NO_SPACE;
        }
        fread(maptemp, 2, maplen, ifP);
        for (i = 0; i < maplen; ++i)
            hdrP->cmap[i] = vax_gshort(&maptemp[i * 2]);
        free(maptemp);
    }

    if (setup.h_flags & H_COMMENT)
        readComments(hdrP);
    else
        hdrP->comments = NULL;

    /* Initialize state for rle_getrow */
    hdrP->priv.get.scan_y = hdrP->ymin;
    hdrP->priv.get.vert_skip = 0;
    hdrP->priv.get.is_eof = 0;
    hdrP->priv.get.is_seek = ftell(ifP) > 0;
    debug_f = 0;

    if (!feof(ifP))
        return RLE_SUCCESS; /* success! */
    else {
        hdrP->priv.get.is_eof = 1;
        return RLE_EOF;
    }
}



int
rle_getrow(rle_hdr *    const hdrP,
           rle_pixel ** const scanline) {
/*-----------------------------------------------------------------------------
  Get a scanline from the input file.
  Inputs:
   hdrP:    Header structure containing information about
           the input file.
  Outputs:
   scanline:   an array of pointers to the individual color
           scanlines.  Scanline is assumed to have
           hdrP->ncolors pointers to arrays of rle_pixel,
           each of which is at least hdrP->xmax+1 long.
   Returns the current scanline number.
  Assumptions:
   rle_get_setup has already been called.
  Algorithm:
   If a vertical skip is being executed, and clear-to-background is
   specified (hdrP->background is true), just set the
   scanlines to the background color.  If clear-to-background is
   not set, just increment the scanline number and return.

   Otherwise, read input until a vertical skip is encountered,
   decoding the instructions into scanline data.

   If ymax is reached (or, somehow, passed), continue reading and
   discarding input until end of image.
---------------------------------------------------------------------------- */
    FILE * const ifP = hdrP->rle_file;

    rle_pixel * scanc;

    int scan_x; /* current X position */
    int max_x;  /* End of the scanline */
    int channel;         /* current color channel */
    int ns;         /* Number to skip */
    int nc;
    short word, long_data;
    char inst[2];

    scan_x = hdrP->xmin; /* initial value */
    max_x = hdrP->xmax;  /* initial value */
    channel = 0; /* initial value */
    /* Clear to background if specified */
    if (hdrP->background != 1) {
        if (hdrP->alpha && RLE_BIT( *hdrP, -1))
            memset((char *)scanline[-1] + hdrP->xmin, 0,
                   hdrP->xmax - hdrP->xmin + 1);
        for (nc = 0; nc < hdrP->ncolors; ++nc) {
            if (RLE_BIT( *hdrP, nc)) {
                /* Unless bg color given explicitly, use 0. */
                if (hdrP->background != 2 || hdrP->bg_color[nc] == 0)
                    memset((char *)scanline[nc] + hdrP->xmin, 0,
                           hdrP->xmax - hdrP->xmin + 1);
                else
                    memset((char *)scanline[nc] + hdrP->xmin,
                           hdrP->bg_color[nc],
                           hdrP->xmax - hdrP->xmin + 1);
            }
        }
    }

    /* If skipping, then just return */
    if (hdrP->priv.get.vert_skip > 0) {
        --hdrP->priv.get.vert_skip;
        ++hdrP->priv.get.scan_y;
        if (hdrP->priv.get.vert_skip > 0) {
            if (hdrP->priv.get.scan_y >= hdrP->ymax) {
                int const y = hdrP->priv.get.scan_y;
                while (rle_getskip(hdrP) != 32768)
                    ;
                return y;
            } else
                return hdrP->priv.get.scan_y;
        }
    }

    /* If EOF has been encountered, return also */
    if (hdrP->priv.get.is_eof)
        return ++hdrP->priv.get.scan_y;

    /* Otherwise, read and interpret instructions until a skipLines
       instruction is encountered.
    */
    if (RLE_BIT(*hdrP, channel))
        scanc = scanline[channel] + scan_x;
    else
        scanc = NULL;
    for (;;) {
        inst[0] = getc(ifP);
        inst[1] = getc(ifP);
        if (feof(ifP)) {
            hdrP->priv.get.is_eof = 1;
            break;      /* <--- one of the exits */
        }

        switch(OPCODE(inst)) {
        case RSkipLinesOp:
            if (LONGP(inst)) {
                VAXSHORT(hdrP->priv.get.vert_skip, ifP);
            } else
                hdrP->priv.get.vert_skip = DATUM(inst);
            if (debug_f)
                pm_message("Skip %d Lines (to %d)",
                           hdrP->priv.get.vert_skip,
                           hdrP->priv.get.scan_y +
                           hdrP->priv.get.vert_skip);

            break;          /* need to break for() here, too */

        case RSetColorOp:
            channel = DATUM(inst);  /* select color channel */
            if (channel == 255)
                channel = -1;
            scan_x = hdrP->xmin;
            if (RLE_BIT(*hdrP, channel))
                scanc = scanline[channel]+scan_x;
            if (debug_f)
                pm_message("Set color to %d (reset x to %d)",
                           channel, scan_x );
            break;

        case RSkipPixelsOp:
            if (LONGP(inst)) {
                VAXSHORT(long_data, ifP);
                scan_x += long_data;
                scanc += long_data;
                if (debug_f)
                    pm_message("Skip %d pixels (to %d)", long_data, scan_x);
            } else {
                scan_x += DATUM(inst);
                scanc += DATUM(inst);
                if (debug_f)
                    pm_message("Skip %d pixels (to %d)", DATUM(inst), scan_x);
            }
            break;

        case RByteDataOp:
            if (LONGP(inst)) {
                VAXSHORT(nc, ifP);
            } else
                nc = DATUM(inst);
            ++nc;
            if (debug_f) {
                if (RLE_BIT(*hdrP, channel))
                    pm_message("Pixel data %d (to %d):", nc, scan_x + nc);
                else
                    pm_message("Pixel data %d (to %d)", nc, scan_x + nc);
            }
            if (RLE_BIT(*hdrP, channel)) {
                /* Don't fill past end of scanline! */
                if (scan_x + nc > max_x) {
                    ns = scan_x + nc - max_x - 1;
                    nc -= ns;
                } else
                    ns = 0;
                fread((char *)scanc, 1, nc, ifP);
                while (ns-- > 0)
                    getc(ifP);
                if (nc & 0x1)
                    getc(ifP);   /* throw away odd byte */
            } else {
                if (hdrP->priv.get.is_seek)
                    fseek(ifP, ((nc + 1) / 2) * 2, 1);
                else {
                    int ii;
                    for (ii = ((nc + 1) / 2) * 2; ii > 0; --ii)
                        getc(ifP);  /* discard it */
                }
            }
            scanc += nc;
            scan_x += nc;
            if (debug_f && RLE_BIT(*hdrP, channel)) {
                rle_pixel * cp;
                for (cp = scanc - nc; nc > 0; --nc)
                    fprintf(stderr, "%02x", *cp++);
                putc('\n', stderr);
            }
            break;

        case RRunDataOp:
            if (LONGP(inst)) {
                VAXSHORT(nc, ifP);
            } else
                nc = DATUM(inst);
            ++nc;
            scan_x += nc;

            VAXSHORT(word, ifP);
            if (debug_f)
                pm_message("Run length %d (to %d), data %02x",
                           nc, scan_x, word);
            if (RLE_BIT(*hdrP, channel)) {
                if (scan_x > max_x) {
                    ns = scan_x - max_x - 1;
                    nc -= ns;
                } else
                    ns = 0;
                if (nc >= 10) {    /* break point for 785, anyway */
                    memset((char *)scanc, word, nc);
                    scanc += nc;
                } else {
                    for (nc--; nc >= 0; --nc, ++scanc)
                        *scanc = word;
                }
            }
            break;

        case REOFOp:
            hdrP->priv.get.is_eof = 1;
            if (debug_f)
                pm_message("End of Image");
            break;

        default:
            pm_error("rle_getrow: Unrecognized opcode: %d, reading %s",
                     inst[0], hdrP->file_name);
        }
        if (OPCODE(inst) == RSkipLinesOp || OPCODE(inst) == REOFOp)
            break;          /* <--- the other loop exit */
    }

    /* If at end, skip the rest of a malformed image. */
    if (hdrP->priv.get.scan_y >= hdrP->ymax) {
        int const y = hdrP->priv.get.scan_y;
        while (rle_getskip(hdrP) != 32768 )
            ;
        return y;
    }

    return hdrP->priv.get.scan_y;
}