summaryrefslogtreecommitdiffstats
path: root/src/extract.c
blob: 5ba78690f7668ccc59cf688e592d076b1d4782dc (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
#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) {
    int r;
    
    if ((r = access(path, R_OK)) < 0) {
        if (errno == ENOENT)
            return 0;

        fprintf(stderr, "stat(%s) failed: %s\n", path, strerror(errno));
        return -1;
    }

    if (r == 0) {
        fprintf(stderr, "Extracting %s ...\n", name);
        return copy_or_link_file(path, name, 1);
    }

    return 0;
}

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