aboutsummaryrefslogtreecommitdiff
path: root/c_implementation/src/aklog.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_implementation/src/aklog.c')
-rw-r--r--c_implementation/src/aklog.c287
1 files changed, 287 insertions, 0 deletions
diff --git a/c_implementation/src/aklog.c b/c_implementation/src/aklog.c
new file mode 100644
index 0000000..f6b04e8
--- /dev/null
+++ b/c_implementation/src/aklog.c
@@ -0,0 +1,287 @@
+#include <stdlib.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <string.h>
+#include <time.h>
+#include "libaklog.h"
+
+#define AK_DEBUG true
+#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
+
+int ak_log_write_to_file(char* message)
+{
+ FILE *fp;
+ fp = fopen("/home/kaotisk/.arching-kaos/logs/log", "ab");
+ if (!fp)
+ {
+ perror("fopen");
+ return EXIT_FAILURE;
+ }
+ fwrite(message, strlen(message),1,fp);
+ fwrite("\n", strlen("\n"),1,fp);
+ fclose(fp);
+ return 0;
+}
+
+void ak_log_print_log_line(char* line)
+{
+ if ( line )
+ {
+ int i = 0;
+ int spaces_found = 0;
+ int last_space = -1;
+ long int l = 1000000000;
+ long int ts = 0;
+ struct tm *timeInfo;
+ char ts_string[16]; // %Y%Y%Y%Y%m%m%d%d_%H%H%M%M%S%S
+ while ( line[i] != '\0' )
+ {
+ if ( line[i] == ' ' ) // && spaces_found < 4)
+ {
+ spaces_found++;
+ if (true) //( spaces_found < 4 )
+ {
+ for ( int k = last_space+1; k < i; k++ )
+ {
+ switch(spaces_found){
+ case 1:
+ // TS
+ while (true)
+ {
+ if ( line[k] == ' ' )
+ {
+ timeInfo = localtime(&ts);
+ strftime(ts_string, sizeof(ts_string), "%Y%m%d_%H%M%S", timeInfo);
+ printf("%s ", ts_string);
+ break;
+ }
+ else
+ {
+ switch(line[k])
+ {
+ case '0':
+ ts = 0*l + ts;
+ break;
+ case '1':
+ ts = 1*l + ts;
+ break;
+ case '2':
+ ts = 2*l + ts;
+ break;
+ case '3':
+ ts = 3*l + ts;
+ break;
+ case '4':
+ ts = 4*l + ts;
+ break;
+ case '5':
+ ts = 5*l + ts;
+ break;
+ case '6':
+ ts = 6*l + ts;
+ break;
+ case '7':
+ ts = 7*l + ts;
+ break;
+ case '8':
+ ts = 8*l + ts;
+ break;
+ case '9':
+ ts = 9*l + ts;
+ break;
+ }
+ l = l/10;
+ }
+ k++;
+ }
+ break;
+ case 2:
+ // PROGRAM
+ printf("\033[1;32m");
+ while (true)
+ {
+ if ( line[k] == ' ' )
+ {
+ break;
+ }
+ else
+ {
+ printf("%c", line[k]);
+ }
+ k++;
+ }
+ break;
+ case 3:
+ // TYPE
+ printf("\033[0;00m \033[1;31m");
+ while (true)
+ {
+ if ( line[k] == ' ' )
+ {
+ break;
+ }
+ else
+ {
+ printf("%c", line[k]);
+ }
+ k++;
+ }
+ break;
+ case 4:
+ // MESSAGE
+ printf("\033[0;00m ");
+ while (true)
+ {
+ if ( line[k] == '\0' )
+ {
+ printf("\n");
+ break;
+ }
+ else
+ {
+ printf("%c", line[k]);
+ }
+ k++;
+ }
+ break;
+ }
+ }
+ last_space = i;
+ }
+ }
+ i++;
+ }
+ }
+}
+
+void ak_log_follow()
+{
+ // tail -f $AK_LOGSFILE | while read -r p || [ -n "$p" ]
+ // do
+ // ak_log_print_log_line "$p"
+ // done
+}
+
+void ak_log_grep(char* message)
+{
+ printf("ak_log_grep: not implemented\n");
+ return;
+ exit(2);
+ if ( message )
+ {
+ if ( strcmp(message, "-h") || strcmp(message, "--help") )
+ {
+ // description();
+ printf("Launch with no arguments and select from the menu that will appear\n");
+ exit(1);
+ }
+ }
+ printf("The following scripts have entries in the log file.\n");
+ printf("Select one of those by entering the number of it below and hit enter:\n");
+ // select x in $(cat $AK_LOGSFILE | cut -d ' ' -f 2 | sort | uniq)
+ // do
+ // grep $x $AK_LOGSFILE | while read line
+ // do
+ // ak_log_print_log_line "$line"
+ // done
+ // break
+ // done
+}
+
+void ak_log_rotate()
+{
+ // if [ -f $AK_LOGSFILE ]
+ // then
+ // tar cvfz $AK_ARCHIVESDIR/logs_$(date -u +%s).tar.gz $AK_WORKDIR/logs
+ // cat /dev/null > $AK_WORKDIR/logs
+ // fi
+ // if [ -f $AK_WORKDIR/akd.log ]
+ // then
+ // tar cvfz $AK_ARCHIVESDIR/akd-logs_$(date -u +%s).tar.gz $AK_WORKDIR/akd.log
+ // cat /dev/null > $AK_WORKDIR/akd.log
+ // fi
+ printf("ak_log_rotate: not implemented\n");
+ return;
+ exit(2);
+}
+
+void ak_log_message(const char* program, LogMessageType lmtype, char* message)
+{
+ time_t ts = time(NULL);
+ time(&ts);
+ char* some_string = {0};
+ char* type = {0};
+ if ( program != NULL )
+ {
+ switch(lmtype)
+ {
+ case ERROR:
+ type = "ERROR";
+ break;
+ case INFO:
+ type = "INFO";
+ break;
+ case WARNING:
+ type = "WARNING";
+ break;
+ case EXIT:
+ type = "EXIT";
+ break;
+ case DEBUG:
+ type = "DEBUG";
+ break;
+ default:
+ asprintf(&some_string, "%ld <%s> [ERROR] No message type\n", ts, program);
+ ak_log_write_to_file(some_string);
+ if ( AK_DEBUG ) ak_log_print_log_line(some_string);
+ exit(1);
+ }
+ if ( message != NULL )
+ {
+ asprintf(&some_string, "%ld <%s> [%s] %s", ts, program, type, message);
+ ak_log_write_to_file(some_string);
+ if ( AK_DEBUG ) ak_log_print_log_line(some_string);
+ }
+ else
+ {
+ asprintf(&some_string, "%ld <%s> [ERROR] No message\n", ts, program);
+ ak_log_write_to_file(some_string);
+ if ( AK_DEBUG ) ak_log_print_log_line(some_string);
+ exit(1);
+ }
+ }
+ else
+ {
+ // echo "$TS" "<$(basename $0)>" "[ERROR]" "No arguments given" >> $AK_LOGSFILE
+ asprintf(&some_string, "%ld <%s> [ERROR] No arguments given\n", ts, program);
+ ak_log_write_to_file(some_string);
+ if ( AK_DEBUG ) ak_log_print_log_line(some_string);
+ exit(1);
+ }
+}
+
+void ak_log_exit(const char* program, char* message)
+{
+ ak_log_message(program, EXIT, message);
+}
+
+void ak_log_warning(const char* program, char* message)
+{
+ ak_log_message(program, WARNING, message);
+}
+
+void ak_log_debug(const char* program, char* message)
+{
+ ak_log_message(program, DEBUG, message);
+}
+
+void ak_log_error(const char* program, char* message)
+{
+ ak_log_message(program, ERROR, message);
+}
+
+void ak_log_info(const char* program, char* message)
+{
+ ak_log_message(program, INFO, message);
+}
+