blob: 68406fdfa4c447ef455dcf459d6fbb71510d2d1d [file] [log] [blame]
#include <stdlib.h>
#include "zip.h"
#include "zipint.h"
struct read_file {
FILE *f;
int off, len;
};
static int read_file(void *state, void *data, int len, enum zip_cmd cmd);
int
zip_replace_file(struct zip *zf, int idx, char *name, struct zip_meta *meta,
FILE *file, int start, int len)
{
struct read_file *f;
if (idx < -1 || idx >= zf->nentry) {
zip_err = ZERR_NOENT;
return -1;
}
if ((f=(struct read_file *)malloc(sizeof(struct read_file))) == NULL) {
zip_err = ZERR_MEMORY;
return -1;
}
f->f = file;
f->off = start;
f->len = len;
return zip_replace(zf, idx, name, meta, read_file, f, 0);
}
static int
read_file(void *state, void *data, int len, enum zip_cmd cmd)
{
struct read_file *z;
char *buf;
int i, n;
z = (struct read_file *)state;
buf = (char *)data;
switch (cmd) {
case ZIP_CMD_INIT:
if (fseek(z->f, z->off, SEEK_SET) < 0) {
zip_err = ZERR_SEEK;
return -1;
}
return 0;
case ZIP_CMD_READ:
if (z->len != -1)
n = len > z->len ? z->len : len;
else
n = len;
if ((i=fread(buf, 1, n, z->f)) < 0) {
zip_err = ZERR_READ;
return -1;
}
if (z->len != -1)
z->len -= i;
return i;
case ZIP_CMD_META:
return 0;
case ZIP_CMD_CLOSE:
if (z->f) {
fclose(z->f);
z->f = NULL;
}
return 0;
}
return -1;
}