aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/src/aksettings.c
blob: 470330f82b31b116cddf4ae4f99fc3462a3f4062 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <libaksettings.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>

#define MAX_SETTINGS 100

AKSetting settings[MAX_SETTINGS];
int settings_count = 0;

bool ak_settings_write_string(FILE *file, const char *str) {
    size_t len = strlen(str) + 1; // Include null terminator
    if (fwrite(&len, sizeof(size_t), 1, file) != 1) return false;
    if (fwrite(str, sizeof(char), len, file) != len) return false;
    return true;
}

char *ak_settings_read_string(FILE *file) {
    size_t len;
    if (fread(&len, sizeof(size_t), 1, file) != 1) return NULL;
    char *str = malloc(len);
    if (!str) return NULL;
    if (fread(str, sizeof(char), len, file) != len) {
        free(str);
        return NULL;
    }
    return str;
}

void ak_settings_free_settings() {
    for (int i = 0; i < settings_count; i++) {
        free(settings[i].key);
        free(settings[i].value);
    }
    settings_count = 0;
}

int ak_settings_find_setting(const char *key) {
    for (int i = 0; i < settings_count; i++) {
        if (strcmp(settings[i].key, key) == 0) {
            return i;
        }
    }
    return -1;
}

bool ak_settings_load_settings_binary() {
    FILE *file = fopen("settings.bin", "rb");
    if (!file) return false;
    if (fread(&settings_count, sizeof(int), 1, file) != 1) {
        fclose(file);
        return false;
    }
    for (int i = 0; i < settings_count; i++) {
        settings[i].key = ak_settings_read_string(file);
        settings[i].value = ak_settings_read_string(file);
        if (!settings[i].key || !settings[i].value) {
            ak_settings_free_settings();
            fclose(file);
            return false;
        }
    }
    fclose(file);
    return true;
}

bool ak_settings_save_settings_binary() {
    FILE *file = fopen("settings.bin", "wb");
    if (!file) return false;
    if (fwrite(&settings_count, sizeof(int), 1, file) != 1) {
        fclose(file);
        return false;
    }
    for (int i = 0; i < settings_count; i++) {
        if (!ak_settings_write_string(file, settings[i].key)) {
            fclose(file);
            return false;
        }
        if (!ak_settings_write_string(file, settings[i].value)) {
            fclose(file);
            return false;
        }
    }
    fclose(file);
    return true;
}

bool ak_settings_set_setting(const char *key, const char *value) {
    int index = ak_settings_find_setting(key);
    if (index == -1) {
        if (settings_count >= MAX_SETTINGS) return false;
        settings[settings_count].key = strdup(key);
        settings[settings_count].value = strdup(value);
        if (!settings[settings_count].key || !settings[settings_count].value) {
            free(settings[settings_count].key);
            free(settings[settings_count].value);
            return false;
        }
        settings_count++;
    } else {
        char *new_value = strdup(value);
        if (!new_value) return false;
        free(settings[index].value);
        settings[index].value = new_value;
    }
    return true;
}

const char *ak_settings_get_setting(const char *key) {
    int index = ak_settings_find_setting(key);
    return (index == -1) ? NULL : settings[index].value;
}