From 78b0ba12073b0940541d91a7568e8b7ada572848 Mon Sep 17 00:00:00 2001 From: gabrielgio Date: Sat, 17 Feb 2024 17:00:30 +0100 Subject: feat: Finish importer Importer will take care of importing dict.cc's txt into the database. --- dict/main.c | 2 +- importer/main.c | 18 +++++++++++++++--- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/dict/main.c b/dict/main.c index 8240b75..e5573fe 100644 --- a/dict/main.c +++ b/dict/main.c @@ -51,7 +51,7 @@ int run(const char *db, const char *txt) { bootstrap(data); setlocale(LC_ALL, ""); - initscr(); + initscr(); noecho(); cbreak(); keypad(stdscr, TRUE); diff --git a/importer/main.c b/importer/main.c index a1850f8..d037745 100644 --- a/importer/main.c +++ b/importer/main.c @@ -49,6 +49,8 @@ int run(const char *db, const char *txt) { FILE *f; int total; + printf("\33[?25l"); // hide cursor + data = new_data(":memory:"); f = fopen(txt, "r"); @@ -62,10 +64,20 @@ int run(const char *db, const char *txt) { continue; insert(data, line, read-1); + count++; - float t = ((float)count/(float)total)*100; - printf("\rLoading data [%03.0f%%] %d/%d", t, count, total); + if ((count % 321) == 0){ + float t = ((float)count/(float)total)*100; + printf("\rLoading data [%03.0f%%] %d/%d", t, count, total); + } } - return load_or_save_db(data->db, db, 1); + float t = ((float)count/(float)total)*100; + printf("\rLoading data [%03.0f%%] %d/%d", t, count, total); + int r = load_or_save_db(data->db, db, 1); + + printf("\rDONE!"); + printf("\33[?25h"); // reenable cursor + + return r; } -- cgit v1.2.3