aboutsummaryrefslogtreecommitdiff
path: root/include/LibraryLoader.hpp
blob: 16dc5807a9ef07f42b2dfb83ae86ac61a3e11153 (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
#pragma once

#include <dlfcn.h>
#include <stdio.h>

typedef struct {
    void **func;
    const char *name;
} dlsym_assign;

static void* dlsym_print_fail(void *handle, const char *name, bool required) {
    dlerror();
    void *sym = dlsym(handle, name);
    char *err_str = dlerror();

    if(!sym)
        fprintf(stderr, "%s: dlsym(handle, \"%s\") failed, error: %s\n", required ? "error" : "warning", name, err_str ? err_str : "(null)");

    return sym;
}

/* |dlsyms| should be null terminated */
static bool dlsym_load_list(void *handle, const dlsym_assign *dlsyms) {
    bool success = true;
    for(int i = 0; dlsyms[i].func; ++i) {
        *dlsyms[i].func = dlsym_print_fail(handle, dlsyms[i].name, true);
        if(!*dlsyms[i].func)
            success = false;
    }
    return success;
}

/* |dlsyms| should be null terminated */
static void dlsym_load_list_optional(void *handle, const dlsym_assign *dlsyms) {
    for(int i = 0; dlsyms[i].func; ++i) {
        *dlsyms[i].func = dlsym_print_fail(handle, dlsyms[i].name, false);
    }
}