aboutsummaryrefslogtreecommitdiffstats
path: root/URPM.xs
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2006-11-15 11:14:11 +0000
committerPascal Rigaux <pixel@mandriva.com>2006-11-15 11:14:11 +0000
commit3b75e23168713d7bd1726297d4fcf8f525547038 (patch)
treecb7e0782f69892caa13e87149a4a1d6f911de1dd /URPM.xs
parent61684e330301974e8ba34638a6fe91705d64ef04 (diff)
downloadperl-URPM-3b75e23168713d7bd1726297d4fcf8f525547038.tar
perl-URPM-3b75e23168713d7bd1726297d4fcf8f525547038.tar.gz
perl-URPM-3b75e23168713d7bd1726297d4fcf8f525547038.tar.bz2
perl-URPM-3b75e23168713d7bd1726297d4fcf8f525547038.tar.xz
perl-URPM-3b75e23168713d7bd1726297d4fcf8f525547038.zip
parse_synthesis, parse_hdlist: handle gzip error status instead of relying on
wether we did read at least one header. This allow "empty" hdlist/synthesis. But it means it is getting stricter, and the headers added to {depslist} would need to be removed if an error occured. Alas i don't know how to do it (a simple splice) in XS. If no better solution, i'll create a wrapper function in perl.
Diffstat (limited to 'URPM.xs')
-rw-r--r--URPM.xs29
1 files changed, 20 insertions, 9 deletions
diff --git a/URPM.xs b/URPM.xs
index b5e3acf..8605c22 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -879,7 +879,7 @@ update_provides_files(URPM__Package pkg, HV *provides) {
}
int
-open_archive(char *filename, pid_t *pid) {
+open_archive(char *filename, pid_t *pid, int *empty_archive) {
int fd;
struct {
char header[4];
@@ -893,10 +893,13 @@ open_archive(char *filename, pid_t *pid) {
fd = open(filename, O_RDONLY);
if (fd >= 0) {
- lseek(fd, -(int)sizeof(buf), SEEK_END);
+ int pos = lseek(fd, -(int)sizeof(buf), SEEK_END);
if (read(fd, &buf, sizeof(buf)) != sizeof(buf) || strncmp(buf.header, "cz[0", 4) || strncmp(buf.trailer, "0]cz", 4)) {
/* this is not an archive, open it without magic, but first rewind at begin of file */
lseek(fd, 0, SEEK_SET);
+ } else if (pos == 0) {
+ *empty_archive = 1;
+ fd = -1;
} else {
/* this is an archive, create a pipe and fork for reading with uncompress defined inside */
int fdno[2];
@@ -3045,9 +3048,9 @@ Urpm_parse_synthesis(urpm, filename, ...)
p = &buff[buff_len-(p-buff)];
}
}
- gzclose(f);
+ int ok = gzclose(f) == 0;
SPAGAIN;
- if (av_len(depslist) >= start_id) {
+ if (ok) {
XPUSHs(sv_2mortal(newSViv(start_id)));
XPUSHs(sv_2mortal(newSViv(av_len(depslist))));
}
@@ -3076,13 +3079,17 @@ Urpm_parse_hdlist(urpm, filename, ...)
if (depslist != NULL) {
pid_t pid;
int d;
+ int empty_archive = 0;
FD_t fd;
- d = open_archive(filename, &pid);
+ d = open_archive(filename, &pid, &empty_archive);
fd = fdDup(d);
close(d);
- if (fdFileno(fd) >= 0) {
+ if (empty_archive) {
+ XPUSHs(sv_2mortal(newSViv(1 + av_len(depslist))));
+ XPUSHs(sv_2mortal(newSViv(av_len(depslist))));
+ } else if (fdFileno(fd) >= 0) {
Header header;
int start_id = 1 + av_len(depslist);
int packing = 0;
@@ -3141,14 +3148,18 @@ Urpm_parse_hdlist(urpm, filename, ...)
}
}
} while (header != NULL);
- fdClose(fd);
+
+ int ok = fdClose(fd) == 0;
+
if (pid) {
kill(pid, SIGTERM);
- waitpid(pid, NULL, 0);
+ int status;
+ int rc = waitpid(pid, &status, 0);
+ ok = rc != -1 && WEXITSTATUS(status) != 1; /* in our standard case, gzip will exit with status code 2, meaning "decompression OK, trailing garbage ignored" */
pid = 0;
}
SPAGAIN;
- if (av_len(depslist) >= start_id) {
+ if (ok) {
XPUSHs(sv_2mortal(newSViv(start_id)));
XPUSHs(sv_2mortal(newSViv(av_len(depslist))));
}