174 lines
3.8 KiB
C
174 lines
3.8 KiB
C
#include "engine/todo.h"
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define MAX_TODOS UINT_MAX
|
|
#define SAVE_FILE "todos.todd"
|
|
#define STB_DS_IMPLEMENTATION
|
|
|
|
#include "3rd-party/stb-ds.h"
|
|
|
|
TodoItem *todos = NULL;
|
|
|
|
enum Command {
|
|
ADD = 'a',
|
|
MARK = 'm',
|
|
PRINT = 'p',
|
|
REMOVE = 'r',
|
|
QUIT = 'q',
|
|
|
|
WRITE_TO_FILE = 'w',
|
|
LOAD_FROM_FILE = 'l',
|
|
};
|
|
|
|
void add_command_handler() {
|
|
char title[TODO_MAX_TITLE_LENGTH];
|
|
printf("Enter todo title: ");
|
|
fgets(title, TODO_MAX_TITLE_LENGTH - 1, stdin);
|
|
// remove the newline character from the buffer
|
|
title[strlen(title) - 1] = '\0';
|
|
|
|
TodoItem item = todo_create_item(title);
|
|
arrput(todos, item);
|
|
}
|
|
|
|
void mark_command_handler() {
|
|
int op_index = -1;
|
|
do {
|
|
printf("Enter todo index: ");
|
|
op_index = getc(stdin) - '0';
|
|
getc(stdin); // remove the newline character from the buffer
|
|
} while (op_index < 0 || op_index >= arrlen(todos));
|
|
|
|
TodoItem item = todos[op_index];
|
|
|
|
todo_mark_item(&item, !item.completed);
|
|
|
|
todos[op_index] = item;
|
|
}
|
|
|
|
void print_command_handler() {
|
|
for (int i = 0; i < arrlen(todos); i++) {
|
|
printf("%d. ", i);
|
|
todo_print_item(&todos[i]);
|
|
}
|
|
}
|
|
|
|
void remove_command_handler() {
|
|
int op_index = -1;
|
|
do {
|
|
printf("Enter todo index: ");
|
|
op_index = getc(stdin) - '0';
|
|
getc(stdin); // remove the newline character from the buffer
|
|
} while (op_index < 0 || op_index >= arrlen(todos));
|
|
|
|
arrdel(todos, op_index);
|
|
}
|
|
|
|
void write_to_file_handler() {
|
|
FILE *file = fopen(SAVE_FILE, "wb");
|
|
int bs = 0;
|
|
int todos_count = arrlen(todos);
|
|
// write a magic value "TODD" to the file
|
|
fwrite("TODD", sizeof(char), 4, file);
|
|
// write the number of todos to the file
|
|
fwrite(&todos_count, sizeof(int), 1, file);
|
|
// write each todo to the file
|
|
for (int i = 0; i < todos_count; i++) {
|
|
char *buffer = todo_item_serialize(&todos[i], &bs);
|
|
fwrite(buffer, sizeof(char), bs, file);
|
|
free(buffer);
|
|
}
|
|
fclose(file);
|
|
}
|
|
|
|
void load_from_file_handler() {
|
|
FILE *file = fopen(SAVE_FILE, "rb");
|
|
char magic[5] = {'\0'};
|
|
int todos_count = 0;
|
|
int bs = 0;
|
|
// check the "TODD" (without the \0) magic value
|
|
fread(magic, sizeof(char), 4, file);
|
|
if (strcmp(magic, "TODD") != 0) {
|
|
printf("Invalid file format\nExpected TODD, got %s\n", magic);
|
|
return;
|
|
}
|
|
|
|
// read the number of todos
|
|
fread(&todos_count, sizeof(int), 1, file);
|
|
|
|
// read each todo
|
|
for (int i = 0; i < todos_count; i++) {
|
|
// read the title length
|
|
unsigned char title_length = 0;
|
|
fread(&title_length, sizeof(unsigned char), 1, file);
|
|
|
|
// read the title
|
|
char *title = malloc(title_length + 1);
|
|
fread(title, sizeof(char), title_length, file);
|
|
title[title_length] = '\0';
|
|
|
|
// read the completed flag
|
|
bool_t completed = false;
|
|
fread(&completed, sizeof(bool_t), 1, file);
|
|
|
|
// create the todo item
|
|
TodoItem item = todo_create_item(title);
|
|
|
|
// mark the item as completed if needed
|
|
if (completed) {
|
|
todo_mark_item(&item, true);
|
|
}
|
|
|
|
// add the item to the list
|
|
arrput(todos, item);
|
|
}
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
char cmd;
|
|
|
|
do {
|
|
printf("Enter command: ");
|
|
cmd = getc(stdin);
|
|
getc(stdin); // remove the newline character from the buffer
|
|
|
|
switch (cmd) {
|
|
case ADD:
|
|
add_command_handler();
|
|
break;
|
|
case MARK:
|
|
mark_command_handler();
|
|
break;
|
|
case PRINT:
|
|
print_command_handler();
|
|
break;
|
|
case REMOVE:
|
|
remove_command_handler();
|
|
break;
|
|
case WRITE_TO_FILE:
|
|
write_to_file_handler();
|
|
break;
|
|
case LOAD_FROM_FILE:
|
|
load_from_file_handler();
|
|
break;
|
|
case QUIT:
|
|
break;
|
|
default:
|
|
printf("Invalid command\n");
|
|
break;
|
|
}
|
|
|
|
} while (cmd != QUIT);
|
|
|
|
for (int i = 0; i < arrlen(todos); i++) {
|
|
todo_free_item(&todos[i]);
|
|
}
|
|
|
|
arrfree(todos);
|
|
|
|
return 0;
|
|
}
|