working on parser
[taskasaur.git] / taskasaur.c
index 28c25a8..8b6c182 100644 (file)
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <signal.h>
-#include <unistd.h>
-#include <ncurses.h>
-#include <menu.h>
+#include "headers/parser.h"
 
-#define SELECTED_COLOR 1
-#define NON_SELECTED_COLOR 2
-
-struct todo_item {
-    char* name;
-    char* description;
-    char** items;
-};
-
-void winch_handler(int sig); 
-
-char** read_todo(FILE* file, int* length);
-
-WINDOW* create_win(int height, int width, int y, int x);
-MENU* create_todo_menu(WINDOW* win, char** todo_list, int todo_length);
-
-void on_select(char *item);
-
-void free_todo(char** todo_list, int todo_length);
-
-#include "config.h"
-
-int 
-main(int argc, char** argv) 
+int
+main(int argc, char** argv)
 {
-    int flag;
-    FILE* board_file;
-    char** todos;
-    int todo_length;
-
-    int height, width;
-    int ch;
-
-    WINDOW* todo_win;
-    MENU* todo_menu;
-
-    signal(SIGWINCH, winch_handler);
-
-    // read command line args
-    flag = getopt(argc, argv, "o:n:");
-    switch (flag) {
-        case 'o':
-
-            // read from task file (might need to check for read and write permissions)
-            board_file = fopen(optarg, "r");
-            if (!board_file) {
-                printf("%s does not exist\n", optarg);
-                return 1;
-            }   
-            
-            todos = read_todo(board_file, &todo_length);
-            fclose(board_file);
+    Board* board;
 
-            break;
+    board = begin_parse("test_board.md");
 
-        case 'n':
-
-            // make sure file does not exist
-            // however, it maybe be possible that an different error has occured (besides the file not existing)
-            if (access(optarg, F_OK) == 0) { 
-                printf("%s already exists\n", optarg);
-                return 1;
-            }
-            // create a file here
-            board_file = fopen(optarg, "w");
-            // write init stuff here
-            fclose(board_file);
-            printf("Successfully created %s\n", optarg);
-
-            todos = malloc(0);
-            todo_length = 0;
-
-            break;
-
-        case -1:
-        case '?':
-            printf("Help string\n");
-            return 2;
-    }
-
-    // start ncurses 
-    initscr();
-    cbreak();
-    noecho();
-    curs_set(0);
-    keypad(stdscr, TRUE);
-    start_color();
-
-    /* colors */
-    init_pair(SELECTED_COLOR, selected_color, COLOR_BLACK);
-    init_pair(NON_SELECTED_COLOR, non_selected_color, COLOR_BLACK);
-
-    getmaxyx(stdscr, height, width);
-
-    todo_win = create_win(20, 40, 5, 5);
-    todo_menu = create_todo_menu(todo_win, todos, todo_length);
-    post_menu(todo_menu);
-    refresh();
-    wrefresh(todo_win);
-    
-    while ((ch = getch()) != BINDING_QUIT) {
-        
-        switch (ch) {
-            case BINDING_SCROLL_UP:
-                menu_driver(todo_menu, REQ_UP_ITEM);
-                break;
-            case BINDING_SCROLL_DOWN:
-                menu_driver(todo_menu, REQ_DOWN_ITEM);
-                break;
-            case BINDING_JUMP_TOP:
-                menu_driver(todo_menu, REQ_FIRST_ITEM);
-                break;
-            case BINDING_JUMP_BOTTOM:
-                menu_driver(todo_menu, REQ_LAST_ITEM);
-                break;
-            case BINDING_SELECT:
-                break;
-        } 
-        wrefresh(todo_win);
-
-    }
-
-    endwin();
-
-    /* Free mem */
-    unpost_menu(todo_menu);
-    free_todo(todos, todo_length);
-
-    return 0;
-}
-
-void 
-winch_handler(int sig) 
-{
-    endwin();
-    refresh();
-}
-
-char**
-read_todo(FILE* file, int* length) 
-{ // apparently getline isn't rly that portable, so consider other options
-    char** out_arr;
-    int out_len;
-    char* lineptr;
-    size_t len;
-    ssize_t nread;
-
-    out_arr = NULL;
-    out_len = 0;
-    lineptr = NULL;
-    len = 0;
-
-    while ((nread = getline(&lineptr, &len, file)) != -1) {
-        out_len++;
-        out_arr = realloc(out_arr, (sizeof(char*))*out_len); // bad to keep resizing?
-
-        lineptr[strcspn(lineptr, "\n")] = 0; // remove newline
-        out_arr[out_len-1] = lineptr;
-
-        lineptr = NULL;
-    }
-    
-    *length = out_len;
-    return out_arr;
-}
-
-WINDOW* 
-create_win(int height, int width, int y, int x)
-{
-    WINDOW* new_win = newwin(height, width, y, x);
-    wrefresh(new_win);
-    return new_win;
-}
-
-MENU*
-create_todo_menu(WINDOW* win, char** todo_list, int todo_length)
-{
-    MENU* todo_menu;
-    ITEM** item_list;
-    ITEM* cur_item;
-    int wheight, wwidth;
-
-    item_list = malloc((todo_length+1)*sizeof(ITEM*));
-    for (int i = 0; i < todo_length; i++) {
-        item_list[i] = new_item(todo_list[i], "");
-        set_item_userptr(item_list[i], on_select);
-    }
-    item_list[todo_length] = NULL; // last item needs to be a null pointer for some reason?
-
-    todo_menu = new_menu(item_list);
-
-    getmaxyx(win, wheight, wwidth);
-    set_menu_win(todo_menu, win);
-    set_menu_sub(todo_menu, derwin(win, wheight-2, wwidth-2, 1, 2));
-    set_menu_mark(todo_menu, "");
-    set_menu_spacing(todo_menu, 1, 2, 1);
-    set_menu_fore(todo_menu, COLOR_PAIR(SELECTED_COLOR));
-    set_menu_back(todo_menu, COLOR_PAIR(NON_SELECTED_COLOR));
-
-    box(win, 0, 0); //temp
-
-    return todo_menu;
-}
-
-void
-on_select(char *item)
-{
-    printf("lol");
-}
-
-void
-free_todo(char** todo_list, int todo_length)
-{
-    // probably check if list is too short or too long
-    for (int i = 0; i < todo_length; i++) {
-        free(todo_list[i]); 
-    }
-    free(todo_list);
+    return 0;    
 }