aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/include
diff options
context:
space:
mode:
Diffstat (limited to 'c_implementation/include')
-rw-r--r--c_implementation/include/libakfs.h119
-rw-r--r--c_implementation/include/libaklog.h24
-rw-r--r--c_implementation/include/libaklogcatter.h6
-rw-r--r--c_implementation/include/libaksettings.h25
-rw-r--r--c_implementation/include/libakutils.h24
5 files changed, 198 insertions, 0 deletions
diff --git a/c_implementation/include/libakfs.h b/c_implementation/include/libakfs.h
new file mode 100644
index 0000000..bc5703c
--- /dev/null
+++ b/c_implementation/include/libakfs.h
@@ -0,0 +1,119 @@
+#ifndef AKFS
+#define AKFS
+
+#include <stdbool.h>
+
+/**
+ * This struct represents a HEX output of the SHA-512 algorithm.
+ *
+ */
+typedef struct {
+ /**
+ * The array below has size of 8, which can store the 128 characters into
+ * 16 digit length variables.
+ *
+ * While 512bits/8bits=64bytes, into converting to characters, we use 2bytes
+ * per one digit, which gives us the 128 characters.
+ *
+ */
+ long unsigned int sum[8];
+} sha512sum;
+
+/**
+ * This struct describes explicitly the structure of a root_hash. It is the root
+ * of a hash merkle tree. Note, that this structure can be used for roots and
+ * branches. Possibly, the name will change to something more generic in the
+ * future.
+ * Another note is that instead of approaching this as left and right, as seen
+ * in other codebases, we do a head-tail naming. That's because of the BASH
+ * implementation that you can find at lib/_ak_fs.
+ *
+ */
+typedef struct {
+ /**
+ * Hash of the thing
+ */
+ sha512sum root;
+ /**
+ * Hash of head
+ */
+ sha512sum head;
+ /**
+ * Hash of tail
+ */
+ sha512sum tail;
+} root_hash;
+
+/**
+ * This is the current structure of an akfs_map. Due to potential short-comings
+ * of it, akfs_map_v4 was introduced. Versions v1 and v2 won't be appearing in
+ * this header file, since they were long abandoned. Version v0, on the other
+ * hand, is what is called now as a root_hash. Refer to it for more.
+ *
+ */
+typedef struct {
+ /**
+ * Original file's hash
+ *
+ */
+ sha512sum oh;
+ /**
+ * Original file's name
+ *
+ */
+ char* filename;
+ /**
+ * Root hash
+ *
+ */
+ sha512sum rh;
+ /**
+ * Should be "level.1.map" at all times
+ *
+ */
+ char* root_name;
+} akfs_map_v3;
+
+/**
+ * This is a proposed structure for akfs_map. It is called after its version.
+ * Previous versions have been mostly abandoned, except v3 which is where v4
+ * was derived from. See akfs_map_v3 for more.
+ *
+ */
+typedef struct {
+ /**
+ * Original file's hash
+ *
+ */
+ sha512sum oh;
+ /**
+ * Original filename's AKFS maphash
+ *
+ */
+ sha512sum fn;
+ /**
+ * Root hash
+ *
+ */
+ sha512sum rh;
+} akfs_map_v4;
+
+//typedef char[64] sha512sum_as_string;
+
+char* ak_fs_return_hash_path(char*);
+
+char* ak_fs_return_hash_dir(char*);
+
+bool ak_fs_verify_input_is_hash(char*);
+
+int ak_fs_create_dir_for_hash(char*);
+
+sha512sum ak_fs_sha512sum_string_to_struct(char*);
+
+void ak_fs_sha512sum_struct_to_string(sha512sum, char*);
+
+int ak_fs_open_map_v3(char*);
+int ak_fs_from_map_v3_to_file(akfs_map_v3);
+
+#endif // AKFS
+
diff --git a/c_implementation/include/libaklog.h b/c_implementation/include/libaklog.h
new file mode 100644
index 0000000..31478a7
--- /dev/null
+++ b/c_implementation/include/libaklog.h
@@ -0,0 +1,24 @@
+#ifndef AKLOG
+#define AKLOG
+
+typedef enum {
+ INFO,
+ WARNING,
+ ERROR,
+ EXIT,
+ DEBUG
+} LogMessageType;
+
+void ak_log_print_log_line(char* line);
+void ak_log_follow();
+void ak_log_grep(char* string);
+void ak_log_rotate();
+int ak_log_write_to_file(char* message);
+void ak_log_message(const char* program, LogMessageType lmtype, char* message);
+void ak_log_exit(const char* program, char* message);
+void ak_log_warning(const char* program, char* message);
+void ak_log_debug(const char* program, char* message);
+void ak_log_error(const char* program, char* message);
+void ak_log_info(const char* program, char* message);
+
+#endif // AKLOG
diff --git a/c_implementation/include/libaklogcatter.h b/c_implementation/include/libaklogcatter.h
new file mode 100644
index 0000000..650ef7c
--- /dev/null
+++ b/c_implementation/include/libaklogcatter.h
@@ -0,0 +1,6 @@
+#ifndef AK_LOGCATTER_H
+#define AK_LOGCATTER_H
+
+int ak_logcatter();
+
+#endif // AK_LOGCATTER_H
diff --git a/c_implementation/include/libaksettings.h b/c_implementation/include/libaksettings.h
new file mode 100644
index 0000000..e95f37d
--- /dev/null
+++ b/c_implementation/include/libaksettings.h
@@ -0,0 +1,25 @@
+#ifndef AK_SETTINGS_H
+#define AK_SETTINGS_H
+
+#include <stdbool.h>
+
+typedef struct {
+ char *key;
+ char *value;
+} AKSetting;
+
+int ak_settings();
+void ak_settings_print_setting(AKSetting);
+int ak_settings_from_file();
+int ak_setting_to_file(AKSetting);
+
+
+const char *ak_settings_get_setting(const char *key);
+bool ak_settings_set_setting(const char *key, const char *value);
+bool ak_settings_save_settings();
+bool ak_settings_load_settings_binary();
+int ak_settings_find_setting(const char *key);
+void ak_settings_free_settings();
+bool ak_settings_save_settings_binary();
+
+#endif // AK_SETTINGS_H
diff --git a/c_implementation/include/libakutils.h b/c_implementation/include/libakutils.h
new file mode 100644
index 0000000..4243b64
--- /dev/null
+++ b/c_implementation/include/libakutils.h
@@ -0,0 +1,24 @@
+#ifndef AK_UTILS_H
+#define AK_UTILS_H
+
+int ak_utils();
+
+typedef long unsigned int UnixSeconds;
+
+/**
+ *
+ * function _ak_datetime_unix();
+ *
+ * function _ak_datetime_unix_nanosecs();
+ *
+ * function _ak_datetime_human();
+ *
+ * function _ak_datetime_human_date_only();
+ *
+ * function _ak_datetime_human_date_only_yesterday();
+ *
+ * function _ak_datetime_unix_to_human();
+ *
+ */
+
+#endif // AK_UTILS_H