Skip to content

Latest commit

 

History

History
363 lines (296 loc) · 9.31 KB

vcdiff.c

File metadata and controls

363 lines (296 loc) · 9.31 KB
 
Apr 14, 2008
Apr 14, 2008
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
* MojoPatch; a tool for updating data in the field.
*
* Please see the file LICENSE.txt in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
/*
* (How is there no vcdiff implementation under the zlib license?!)
* Written based on the RFC: http://www.faqs.org/rfcs/rfc3284.html
*/
#include <stdlib.h>
Jan 24, 2009
Jan 24, 2009
15
16
#include <string.h>
//#include <sys/types.h>
Apr 14, 2008
Apr 14, 2008
17
Jan 24, 2009
Jan 24, 2009
18
#include "vcdiff.h"
Apr 14, 2008
Apr 14, 2008
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
static inline uint32 swapui32(uint32 x)
{
#if PLATFORM_BIGENDIAN
return (((x)>>24) + (((x)>>8)&0xff00) + (((x)<<8)&0xff0000) + ((x)<<24));
#else
return (x);
#endif
}
static void *internal_malloc(int bytes, void *d) { return malloc(bytes); }
static void internal_free(void *ptr, void *d) { free(ptr); }
static int64 stdio_read(void *ctx, void *buf, uint32 n)
{
FILE *io = (FILE *) ctx;
const int64 rc = (int64) fread(buf, 1, (size_t) n, io);
if ( (rc == 0) && (ferror(io)) )
return -1;
return rc;
} /* stdio_read */
static int64 stdio_write(void *ctx, void *buf, uint32 n)
{
FILE *io = (FILE *) ctx;
const int64 rc = (int64) fwrite(buf, 1, (size_t) n, io);
if ( (rc == 0) && (ferror(io)) )
return -1;
return rc;
} /* stdio_write */
static int64 stdio_seek(void *ctx, uint64 n)
{
FILE *io = (FILE *) ctx;
if (fseeko(io, (off_t) n, SEEK_SET) == -1)
return -1;
return (int64) ftello(io);
} /* stdio_seek */
/* More compact when you need: "this operation must not 'sort of' work". */
static inline int Read(vcdiff_io *io, void *buf, uint32 n)
{
return ( io->read(io->ctx, buf, n) == ((int64) n) );
} /* Read */
/* More compact when you need: "this operation must not 'sort of' work". */
static inline int Write(vcdiff_io *io, void *buf, uint32 n)
{
return ( io->write(io->ctx, buf, n) == ((int64) n) );
} /* Write */
/* More compact when you need: "this operation must not 'sort of' work". */
static inline int Seek(vcdiff_io *io, uint64 pos)
{
return ( io->seek(io->ctx, pos) == ((int64) pos) );
} /* Seek */
static int Read_ui32(vcdiff_io *io, uint32 *ui32)
{
if (!Read(io, ui32, sizeof (*ui32)))
return 0;
*ui32 = swapui32(*ui32);
return 1;
} /* Read_ui32 */
Jan 24, 2009
Jan 24, 2009
88
89
90
91
92
93
94
static inline int Read_ui8(vcdiff_io *io, uint8 *ui8)
{
return Read(io, ui8, sizeof (*ui8));
} /* Read_ui8 */
Apr 14, 2008
Apr 14, 2008
95
96
typedef struct
{
Jan 24, 2009
Jan 24, 2009
97
/* allocator. */
Apr 14, 2008
Apr 14, 2008
98
99
100
vcdiff_malloc malloc;
vcdiff_free free;
void *malloc_data;
Jan 24, 2009
Jan 24, 2009
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* i/o streams. */
vcdiff_io *iosrc;
vcdiff_io *iodelta;
vcdiff_io *iodst;
/* Data from header. */
uint8 compressor;
uint32 tablelen;
uint8 *codetable;
/* Data from current target window. */
uint8 deltaindicator;
uint32 srcdatalen;
uint32 encodinglen;
uint32 targetwinlen;
uint32 addrunlen;
uint32 instlen;
uint32 copylen;
uint8 *srcdata;
uint8 *copys;
uint8 *insts;
uint8 *addruns;
Apr 14, 2008
Apr 14, 2008
124
125
126
127
128
129
130
131
132
133
134
} vcdiff_ctx;
/* Convenience functions for allocators... */
static inline void *Malloc(const vcdiff_ctx *ctx, const int len)
{
return ctx->malloc(len, ctx->malloc_data);
} /* Malloc */
Jan 24, 2009
Jan 24, 2009
135
static inline void Free(const vcdiff_ctx *ctx, void *ptr)
Apr 14, 2008
Apr 14, 2008
136
137
138
139
140
141
{
if (ptr != NULL) /* check for NULL in case of dumb free() impl. */
ctx->free(ptr, ctx->malloc_data);
} /* Free */
Jan 24, 2009
Jan 24, 2009
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
static void free_delta_window_data(vcdiff_ctx *ctx)
{
Free(ctx, ctx->copys);
Free(ctx, ctx->insts);
Free(ctx, ctx->addruns);
Free(ctx, ctx->srcdata);
ctx->copys = NULL;
ctx->insts = NULL;
ctx->addruns = NULL;
ctx->srcdata = NULL;
ctx->deltaindicator = 0;
ctx->srcdatalen = 0;
ctx->encodinglen = 0;
ctx->targetwinlen = 0;
ctx->addrunlen = 0;
ctx->instlen = 0;
ctx->copylen = 0;
} /* free_delta_window_data */
static int process_delta_window(vcdiff_ctx *ctx)
{
/* !!! FIXME: write me. */
return 0;
} /* process_delta_window */
Apr 14, 2008
Apr 14, 2008
169
170
static int read_delta_header(vcdiff_ctx *ctx)
{
Jan 24, 2009
Jan 24, 2009
171
vcdiff_io *io = ctx->iodelta;
Apr 14, 2008
Apr 14, 2008
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
uint8 sig[5];
if (!Read(io, sig, sizeof (sig)))
return 0;
/* magic signature. */
if ((sig[0]!=0xD6) || (sig[1]!=0xC3) || (sig[2]!=0xC4) || (sig[3]!=0x00))
return 0; /* not a delta file. */
else
{
const uint8 indicator = sig[4];
const int has_compressor = (indicator & (1 << 0)) ? 1 : 0;
const int has_codetable = (indicator & (1 << 1)) ? 1 : 0;
if ((indicator & 0xFC) != 0)
return 0; /* bits we weren't expecting are set. */
if (has_compressor)
{
Jan 24, 2009
Jan 24, 2009
190
if (!Read(io, &ctx->compressor, sizeof (ctx->compressor)))
Apr 14, 2008
Apr 14, 2008
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
return 0;
return 0; /* !!! FIXME: unsupported at the moment. */
} /* if */
if (has_codetable)
{
if (!Read_ui32(io, &ctx->tablelen))
return 0;
ctx->codetable = (uint8 *) Malloc(ctx, (size_t) ctx->tablelen);
if (ctx->codetable == NULL)
return 0;
if (!Read(io, ctx->codetable, ctx->tablelen))
return 0;
return 0; /* !!! FIXME: unsupported at the moment. */
} /* if */
} /* else */
return 1;
} /* read_delta_header */
Jan 24, 2009
Jan 24, 2009
211
Apr 14, 2008
Apr 14, 2008
212
213
static int _read_delta_window(vcdiff_ctx *ctx, const uint8 indicator)
{
Jan 24, 2009
Jan 24, 2009
214
vcdiff_io *io = ctx->iodelta;
Apr 14, 2008
Apr 14, 2008
215
216
217
218
219
220
221
222
223
const int source = (indicator & (1 << 0)) ? 1 : 0;
const int target = (indicator & (1 << 1)) ? 1 : 0;
if ((indicator & 0xFC) != 0)
return 0; /* bits we weren't expecting are set. */
else if ((source) && (target))
return 0; /* can't have both! */
else if ((source) || (target))
{
Jan 24, 2009
Jan 24, 2009
224
225
uint32 pos = 0;
if (!Read_ui32(io, &ctx->srcdatalen))
Apr 14, 2008
Apr 14, 2008
226
227
228
return 0;
else if (!Read_ui32(io, &pos))
return 0;
Jan 24, 2009
Jan 24, 2009
229
else
Apr 14, 2008
Apr 14, 2008
230
{
Jan 24, 2009
Jan 24, 2009
231
232
233
234
235
236
237
238
239
vcdiff_io *srcio = (source) ? ctx->iosrc : ctx->iodst;
ctx->srcdata = (uint8 *) Malloc(ctx, ctx->srcdatalen);
if (ctx->srcdata == NULL)
return 0;
else if (!Seek(srcio, pos))
return 0;
else if (!Read(srcio, ctx->srcdata, ctx->srcdatalen))
return 0;
} /* else */
Apr 14, 2008
Apr 14, 2008
240
241
} /* else if */
Jan 24, 2009
Jan 24, 2009
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
if (!Read_ui32(io, &ctx->encodinglen))
return 0;
else if (!Read_ui32(io, &ctx->targetwinlen))
return 0;
else if (!Read_ui8(io, &ctx->deltaindicator))
return 0;
else if (!Read_ui32(io, &ctx->addrunlen))
return 0;
else if (!Read_ui32(io, &ctx->instlen))
return 0;
else if (!Read_ui32(io, &ctx->copylen))
return 0;
if (ctx->deltaindicator != 0x00) /* !!! FIXME: decompression bits. */
return 0;
if ((ctx->addruns = (uint8 *) Malloc(ctx, ctx->addrunlen)) == NULL)
return 0;
else if (!Read(io, ctx->addruns, ctx->addrunlen))
return 0;
else if ((ctx->insts = (uint8 *) Malloc(ctx, ctx->instlen)) == NULL)
return 0;
else if (!Read(io, ctx->insts, ctx->instlen))
return 0;
else if ((ctx->copys = (uint8 *) Malloc(ctx, ctx->copylen)) == NULL)
return 0;
else if (!Read(io, ctx->copys, ctx->copylen))
return 0;
Apr 14, 2008
Apr 14, 2008
272
Jan 24, 2009
Jan 24, 2009
273
return 1; /* success. */
Apr 14, 2008
Apr 14, 2008
274
275
} /* _read_delta_window */
Jan 24, 2009
Jan 24, 2009
276
Apr 14, 2008
Apr 14, 2008
277
278
static int read_delta_window(vcdiff_ctx *ctx)
{
Jan 24, 2009
Jan 24, 2009
279
vcdiff_io *io = ctx->iodelta;
Apr 14, 2008
Apr 14, 2008
280
uint8 indicator;
Jan 24, 2009
Jan 24, 2009
281
282
283
284
285
int64 br = 0;
free_delta_window_data(ctx);
br = io->read(io->ctx, &indicator, sizeof (indicator));
Apr 14, 2008
Apr 14, 2008
286
287
288
289
if (br == 0)
return 0; /* EOF. We're done! */
else if (br == -1)
return -1; /* Error. We're also done. */
Jan 24, 2009
Jan 24, 2009
290
return (_read_delta_window(ctx, indicator) ? 1 : -1);
Apr 14, 2008
Apr 14, 2008
291
292
293
294
295
296
297
298
299
300
301
} /* read_delta_window */
/* so all logic uses ctx, instead of the mainline using &ctx ... */
static int _vcdiff(vcdiff_ctx *ctx)
{
if (!read_delta_header(ctx))
return 0;
else
{
int rc;
Jan 24, 2009
Jan 24, 2009
302
303
while ((rc = read_delta_window(ctx)) == 1)
rc = process_delta_window(ctx);
Apr 14, 2008
Apr 14, 2008
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
if (rc == -1)
return 0; /* error, not successful EOF. */
} /* else */
return 1; /* success. */
} /* _vcdiff */
int vcdiff(vcdiff_io *iosrc, vcdiff_io *iodelta, vcdiff_io *iodst,
vcdiff_malloc m, vcdiff_free f, void *d)
{
int retval = 0;
vcdiff_ctx ctx;
memset(&ctx, '\0', sizeof (ctx));
ctx.iosrc = iosrc;
ctx.iodelta = iodelta;
ctx.iodst = iodst;
ctx.malloc = (m != NULL) ? m : internal_malloc;
ctx.free = (f != NULL) ? f : internal_free;
ctx.malloc_data = d;
retval = _vcdiff(&ctx);
Jan 24, 2009
Jan 24, 2009
325
free_delta_window_data(&ctx);
Apr 14, 2008
Apr 14, 2008
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
Free(&ctx, ctx.codetable);
return retval;
} /* vcdiff */
/* Please make sure all are seekable! */
int vcdiff_stdio(FILE *fiosrc, FILE *fiodelta, FILE *fiodst,
vcdiff_malloc m, vcdiff_free f, void *d)
{
vcdiff_io iosrc = { stdio_read, stdio_write, stdio_seek, fiosrc };
vcdiff_io iodelta = { stdio_read, stdio_write, stdio_seek, fiodelta };
vcdiff_io iodst = { stdio_read, stdio_write, stdio_seek, fiodst };
return vcdiff(&iosrc, &iodelta, &iodst, m, f, d);
} /* vcdiff_stdio */
/* All three of these are filenames. */
int vcdiff_fname(const char *src, const char *delta, const char *dst,
vcdiff_malloc m, vcdiff_free f, void *d)
{
FILE *iosrc = fopen(src, "rb");
FILE *iodelta = fopen(delta, "rb");
FILE *iodst = fopen(dst, "r+b");
const int rc = vcdiff_stdio(iosrc, iodelta, iodst, m, f, d);
fclose(iosrc);
fclose(iodelta);
fclose(iodst);
if (!rc)
Jan 24, 2009
Jan 24, 2009
357
remove(dst);
Apr 14, 2008
Apr 14, 2008
358
359
360
361
362
return rc;
} /* vcdiff_fname */
/* end of vcdiff.c ... */