aboutsummaryrefslogtreecommitdiff
path: root/src/loadfile.c
blob: e8e0655bda4e2ae8b4b87ec0536b3717b25b080e (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
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
#include "loadfile.h"

#include <stdio.h>
#include <string.h>


void magi_loadfiles_add(magi_loadfiles *table,
                        const char     *name,
                        const char     *path,
                        int             max)
{
    static const int size = sizeof(*table->files);
    if (!table) {
        return;
    }
    if (table->count) {
        table->files = realloc(table->files, size * table->count + size);
    } else {
        table->files = malloc(size);
    }
    table->files[table->count].param_name = name;
    table->files[table->count].location   = path;
    table->files[table->count].maximum    = max;
    table->count++;
}

void magi_loadfiles_destroy(magi_loadfiles *table)
{
    if (!table) {
        return;
    }
    free(table->table);
}

static void loadfiles(magi_file *file,
                      char      *addon,
                      int        addon_len,
                      int        is_addon_last,
                      void      *userdata)
{
    magi_loadfiles *table = userdata;
    int             pos;
    if (!file->file_name || !strcmp(file->file_name, "")) {
        return;
    }
    for (pos = 0; pos != table->count; ++pos) {
        if (!strcmp(table->files[pos].param_name, file->param_name)) {
            static FILE *f = 0;
            static int   unlimited;
            static int   left;
            if (!f) {
                const char * loc = table->files[pos].location;
                f                = fopen(loc, "wb");
                left             = table->files[pos].maximum;
                unlimited        = !left;
            }
            if (unlimited) {
                fwrite(addon, 1, addon_len, f);
            } else {
                int min = left < addon_len ? left : addon_len;
                fwrite(addon, 1, min, f);
                left -= min;
            }
            if (is_addon_last) {
                fclose(f);
                f = 0;
            }
            return;
        }
    }
}

void magi_request_setup_loadfiles(magi_request *request, magi_loadfiles *table)
{
    request->file_callback          = loadfiles;
    request->file_callback_userdata = table;
}