summaryrefslogtreecommitdiff
path: root/buffer-diff.c
blob: f0d2d18c311a0fe2fa6f71e6087c778bf3c5ab16 (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
/* imagediff - Compare two images
 *
 * Copyright © 2004 Richard D. Worth
 *
 * 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, and that the name of Richard Worth
 * not be used in advertising or publicity pertaining to distribution
 * of the software without specific, written prior permission.
 * Richard Worth makes no representations about the suitability of this
 * software for any purpose.  It is provided "as is" without express
 * or implied warranty.
 * 
 * RICHARD WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
 * NO EVENT SHALL RICHARD WORTH BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 * Author: Richard D. Worth <richard@theworths.org> */

#include <stdio.h>
#include <stdint.h>

#include "buffer-diff.h"
#include "read-png.h"
#include "write-png.h"
#include "util.h"
#include "read-cache.h"

struct diff_results
buffer_diff (unsigned char *buf_a,
	     unsigned char *buf_b,
	     unsigned char *buf_diff,
	     int	    width,
	     int	    height,
	     int	    stride)
{
    int x, y;
    unsigned char *row_a, *row_b, *row;
    struct diff_results results  = { .pixels_changed = 0, .max_difference = 0 };

    for (y = 0; y < height; y++)
    {
	row_a = buf_a + y * stride;
	row_b = buf_b + y * stride;
	row = buf_diff + y * stride;
	for (x = 0; x < width; x++)
	{
	    int channel;
	    uint32_t value_a, value_b;
	    int pixel_differs = 0;
	    //XXX: it looks like this might overread...
	    value_a = *(uint32_t*)(&(row_a[x*4]));
	    value_b = *(uint32_t*)(&(row_b[x*4]));
	    if (value_a != value_b) {
	        for (channel = 0; channel < 4; channel++)
		{
		    double diff;
		    unsigned char channel_value_a, channel_value_b;
		    channel_value_a = row_a[x * 4 + channel];
		    channel_value_b = row_b[x * 4 + channel];
		    if (channel_value_a != channel_value_b) {
			pixel_differs = 1;
			diff = channel_value_a - channel_value_b;
			if (diff > results.max_difference)
			    results.max_difference = diff;
			row[x * 4 + channel] = 128 + diff / 3.0;
		    }
		}
	    }
	    if (pixel_differs) {
		results.pixels_changed++;
		*(uint32_t*)(&(row[x*4])) |= 0xff000000; /* Set ALPHA to 100% (opaque) */
	    } else {
		*(uint32_t*)(&(row[x*4])) = 0xff000000; /* Set ALPHA to 100% (opaque) */
	    }
	}
    }
    return results;
}

static int copy_file(const char *filename_a, const char *filename_b)
{
  char buf[4096];
  FILE *filea = fopen(filename_a, "r");	
  FILE *fileb = fopen (filename_b, "wb");
  if (!filea || !fileb)
    return -1;
  int count = sizeof(buf);
  while (count == sizeof(buf)) {
    count = fread(buf, 1, sizeof(buf), filea);
    fwrite(buf, 1, count, fileb);
  }
  fclose(filea);
  fclose(fileb);
  return 0;
}

struct diff_results
image_buf_diff (void *buf, int width_a, int height_a, int stride_a,
	    const char *filename_a,
	    const char *filename_b,
	    const char *filename_diff)
{
    struct diff_results results = { .pixels_changed = 0 };
    unsigned int width_b, height_b, stride_b;
    unsigned char *buf_b, *buf_diff;
    unsigned char *buf_a = buf;
    read_png_status_t status;

    if (cache_compare(filename_b, buf_a, height_a * stride_a)) {
      if (copy_file(filename_b, filename_a) == 0) {
	xunlink (filename_diff);
	return results;
      }
    }

    status = read_png_argb32 (filename_b, &buf_b, &width_b, &height_b, &stride_b);
    if (status) {
	goto fail;
    }

    if (width_a  != width_b  ||
	height_a != height_b ||
	stride_a != stride_b)
    {
	fprintf (stderr,
		 "Error: Image size mismatch: (%dx%d@%d) vs. (%dx%d@%d)\n"
		 "       for %s vs. %s\n",
		 width_a, height_a, stride_a,
		 width_b, height_b, stride_b,
		 filename_a, filename_b);
	free (buf_b);
	goto fail;
    }

    buf_diff = xcalloc (stride_a * height_a, 1);

    results = buffer_diff (buf_a, buf_b, buf_diff,
				  width_a, height_a, stride_a);

    if (results.pixels_changed) {
	FILE *png_file = fopen (filename_diff, "wb");
	write_png_argb32 (buf_diff, png_file, width_a, height_a, stride_a);
	fclose (png_file);
	png_file = fopen (filename_a, "wb");
	write_png_argb32 (buf_a, png_file, width_a, height_a, stride_a);
	fclose (png_file);
    } else {
        copy_file(filename_b, filename_a);
	xunlink (filename_diff);
    }

    free (buf_b);
    free (buf_diff);

    return results;

fail:
    {
	// write out the buffer on failure
	FILE *png_file = fopen (filename_a, "wb");
	write_png_argb32 (buf_a, png_file, width_a, height_a, stride_a);
	fclose (png_file);
	results.pixels_changed = -1;
	return results;
    }
}
#if 0
/* Image comparison code courtesy of Richard Worth <richard@theworths.org>
 * Returns number of pixels changed, (or -1 on error).
 * Also saves a "diff" image intended to visually show where the
 * images differ.
 */
int
image_diff (const char *filename_a,
	    const char *filename_b,
	    const char *filename_diff)
{
    int pixels_changed;
    unsigned int width_a, height_a, stride_a;
    unsigned int width_b, height_b, stride_b;
    unsigned char *buf_a, *buf_b, *buf_diff;
    read_png_status_t status;

    status = read_png_argb32 (filename_a, &buf_a, &width_a, &height_a, &stride_a);
    if (status)
	return -1;

    status = read_png_argb32 (filename_b, &buf_b, &width_b, &height_b, &stride_b);
    if (status) {
	free (buf_a);
	return -1;
    }

    if (width_a  != width_b  ||
	height_a != height_b ||
	stride_a != stride_b)
    {
	fprintf (stderr,
		 "Error: Image size mismatch: (%dx%d@%d) vs. (%dx%d@%d)\n"
		 "       for %s vs. %s\n",
		 width_a, height_a, stride_a,
		 width_b, height_b, stride_b,
		 filename_a, filename_b);
	free (buf_a);
	free (buf_b);
	return -1;
    }

    buf_diff = xcalloc (stride_a * height_a, 1);

    pixels_changed = buffer_diff (buf_a, buf_b, buf_diff,
				  width_a, height_a, stride_a);

    if (pixels_changed) {
	FILE *png_file = fopen (filename_diff, "wb");
	write_png_argb32 (buf_diff, png_file, width_a, height_a, stride_a);
	fclose (png_file);
    } else {
	xunlink (filename_diff);
    }

    free (buf_a);
    free (buf_b);
    free (buf_diff);

    return pixels_changed;
}
#endif