summaryrefslogtreecommitdiffstats
path: root/src/extract.c
blob: 616b8d10f2b8324d19fbc6aa52d8847125229fc0 (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
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
#include <stdint.h>
#include <stdio.h>

#include "package.h"
#include "extract.h"
#include "util.h"

static int cb(struct package *p, const char *name, const char *path, void *u) {
    struct stat st;
    uint32_t size;

    if (stat(path, &st) < 0) {
        if (errno == ENOENT)
            size = 0;
        else {
            fprintf(stderr, "stat(%s) failed: %s\n", path, strerror(errno));
            return -1;
        }
    } else
        size = (uint32_t) st.st_size;

    if (size) {
        fprintf(stderr, "Extracting %s ...\n", name);
        return copy_file(path, name);
    }

    return 0;
}

int extract(struct syrep_db_context *context) {
    return package_foreach(context->package, cb, NULL);
}