aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/src/aksettings.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_implementation/src/aksettings.c')
-rw-r--r--c_implementation/src/aksettings.c113
1 files changed, 113 insertions, 0 deletions
diff --git a/c_implementation/src/aksettings.c b/c_implementation/src/aksettings.c
new file mode 100644
index 0000000..470330f
--- /dev/null
+++ b/c_implementation/src/aksettings.c
@@ -0,0 +1,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;
+}