1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
|
/* toradora.c - A terminal based todo list */
/* Using a sqlite database at ~/.toradora.db we will keep track of all the
* entries */
/** FEATURES **/
/*
* 1. Able to add tasks. (toradora -a "The task I want to add")
* 2. Able to complete those tasks. (toradora -c 1 )
* 3. Able to edit those tasks. (toradora -e 1 "The previous task edited")
* 4. Able to manifest those tasks. (toradora)
* ===============================
* >>> Daily <<<
* [!] 1. "daily habit"
*
* >>> Today's Task <<<
* [!] 2. "high priority task"
* [~] 3. "normal task"
*
* >>> Backlog <<<
* [ ] 4. "old task"
* ===============================
* 5. Able to manifest all the tasks in database. (toradora -z)
* 6. Able to add a daily task. (toradora -d "daily habit")
* 7. Able to add a task with priority. (toradora -a "task" -p <1|2|3>)
* Priority: 1 = high [!], 2 = medium [~], 3 = low [ ]
*
*/
#include <sqlite3.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define VERSION "0.2.0"
#define MAX_PATH_LENGTH 4096
/* Priority levels */
#define PRIORITY_HIGH 1
#define PRIORITY_MEDIUM 2
#define PRIORITY_LOW 3
static const char *
priority_label(int priority)
{
switch (priority) {
case PRIORITY_HIGH: return "[!]";
case PRIORITY_MEDIUM: return "[~]";
case PRIORITY_LOW: return "[ ]";
default: return "[~]";
}
}
static void
manifest_usage()
{
printf("toradora - a terminal based todo list\n\n");
printf("Usage:\n");
printf(" toradora Show today's tasks and backlog\n");
printf(" toradora -z Show all tasks ever recorded\n");
printf(" toradora -a \"task\" Add a new task\n");
printf(" toradora -a \"task\" -p <1|2|3> Add a task with priority (1=high, 2=medium, 3=low)\n");
printf(" toradora -d \"task\" Add a daily task (always shown)\n");
printf(" toradora -c <id> Mark task <id> as complete\n");
printf(" toradora -e <id> \"new task\" Edit task <id>\n\n");
printf("Priority levels:\n");
printf(" 1 = [!] High\n");
printf(" 2 = [~] Medium (default)\n");
printf(" 3 = [ ] Low\n\n");
printf("Examples:\n");
printf(" toradora -a \"write usage function\"\n");
printf(" toradora -a \"urgent fix\" -p 1\n");
printf(" toradora -d \"morning run\"\n");
printf(" toradora -c 3\n");
printf(" toradora -e 3 \"write usage function (done)\"\n");
}
/* Callback for displaying tasks with priority label */
static int
callback_manifest(void *data, int argc, char **argv, char **az_col_name)
{
(void)data;
(void)az_col_name;
/* argv[0] = id, argv[1] = task, argv[2] = priority */
int priority = PRIORITY_MEDIUM;
if (argc >= 3 && argv[2] != NULL) {
priority = atoi(argv[2]);
}
printf(" %s %s. %s\n", priority_label(priority), argv[0], argv[1]);
return 0;
}
static void
manifest_active_tasks(sqlite3 *DB)
{
int query_status;
char *message_error_1;
char *message_error_2;
char *message_error_3;
printf("----------------------------------------------\n");
/* Daily tasks */
printf(">>> Daily <<<\n");
char *manifest_query_daily = "SELECT id, task, priority FROM tasks "
"WHERE status = 0 AND daily = 1 ORDER BY priority ASC;";
query_status = sqlite3_exec(DB, manifest_query_daily, callback_manifest, NULL, &message_error_1);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("%s\n", message_error_1);
printf("[Help]: Check database sanity\n");
return;
}
/* Today's tasks (non-daily, created today) */
printf("\n>>> Today's Tasks <<<\n");
char *manifest_query_today = "SELECT id, task, priority FROM tasks "
"WHERE status = 0 AND daily = 0 AND created_at = CURRENT_DATE "
"ORDER BY priority ASC;";
query_status = sqlite3_exec(DB, manifest_query_today, callback_manifest, NULL, &message_error_2);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("%s\n", message_error_2);
printf("[Help]: Check database sanity\n");
return;
}
/* Backlog (non-daily, created before today) */
printf("\n>>> Backlog <<<\n");
char *manifest_query_backlog = "SELECT id, task, priority FROM tasks "
"WHERE status = 0 AND daily = 0 AND created_at != CURRENT_DATE "
"ORDER BY priority ASC;";
query_status = sqlite3_exec(DB, manifest_query_backlog, callback_manifest, NULL, &message_error_3);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("%s\n", message_error_3);
printf("[Help]: Check database sanity\n");
return;
}
printf("----------------------------------------------\n");
}
static void
manifest_all_tasks(sqlite3 *DB)
{
int query_status;
char *message_error;
printf("----------------------------------------------\n");
printf(">>> All tasks ever recorded <<<\n");
char *manifest_query = "SELECT id, task, priority FROM tasks ORDER BY priority ASC;";
query_status = sqlite3_exec(DB, manifest_query, callback_manifest, NULL, &message_error);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("%s\n", message_error);
printf("[Help]: Check database sanity\n");
return;
}
printf("----------------------------------------------\n");
}
static void
toradora_add_task(sqlite3 *DB, const char *todo, int priority)
{
sqlite3_stmt *stmt = NULL;
int query_status;
const char *add_query = "INSERT INTO tasks (task, priority) VALUES (?, ?);";
query_status = sqlite3_prepare_v2(DB, add_query, -1, &stmt, NULL);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
sqlite3_bind_text(stmt, 1, todo, -1, SQLITE_STATIC);
sqlite3_bind_int(stmt, 2, priority);
query_status = sqlite3_step(stmt);
if (query_status != SQLITE_DONE) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
printf("[Info]: Task added with priority %s\n", priority_label(priority));
error:
sqlite3_finalize(stmt);
}
static void
toradora_add_daily_task(sqlite3 *DB, const char *todo, int priority)
{
sqlite3_stmt *stmt = NULL;
int query_status;
const char *add_query = "INSERT INTO tasks (task, priority, daily) VALUES (?, ?, 1);";
query_status = sqlite3_prepare_v2(DB, add_query, -1, &stmt, NULL);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
sqlite3_bind_text(stmt, 1, todo, -1, SQLITE_STATIC);
sqlite3_bind_int(stmt, 2, priority);
query_status = sqlite3_step(stmt);
if (query_status != SQLITE_DONE) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
printf("[Info]: Daily task added with priority %s\n", priority_label(priority));
error:
sqlite3_finalize(stmt);
}
static void
toradora_complete_task(sqlite3 *DB, const char *id)
{
sqlite3_stmt *stmt = NULL;
int query_status;
int curr;
char *end_ptr;
int row_affected;
const char *complete_query = "UPDATE tasks SET status = 1 WHERE id = ?;";
query_status = sqlite3_prepare_v2(DB, complete_query, -1, &stmt, NULL);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
curr = (int)strtol(id, &end_ptr, 10);
if (*end_ptr != '\0') {
printf("[Error]: Invalid argument\n");
manifest_usage();
goto error;
}
sqlite3_bind_int(stmt, 1, curr);
query_status = sqlite3_step(stmt);
if (query_status != SQLITE_DONE) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
row_affected = sqlite3_changes(DB);
if (row_affected == 0) {
printf("[Info]: No rows were affected\n");
printf("[Help]: Did you enter a valid task id?\n");
} else {
printf("[Info]: Task %d marked as complete\n", curr);
}
error:
sqlite3_finalize(stmt);
}
static void
toradora_edit_task(sqlite3 *DB, const char *id, const char *new_task)
{
sqlite3_stmt *stmt = NULL;
int query_status;
int curr;
char *end_ptr;
int row_affected;
const char *edit_query = "UPDATE tasks SET task = ? WHERE id = ?;";
query_status = sqlite3_prepare_v2(DB, edit_query, -1, &stmt, NULL);
if (query_status != SQLITE_OK) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
curr = (int)strtol(id, &end_ptr, 10);
if (*end_ptr != '\0') {
printf("[Error]: Invalid argument\n");
manifest_usage();
goto error;
}
sqlite3_bind_text(stmt, 1, new_task, -1, SQLITE_STATIC);
sqlite3_bind_int(stmt, 2, curr);
query_status = sqlite3_step(stmt);
if (query_status != SQLITE_DONE) {
printf("[Error]: Unexpected error during execution of query\n");
printf("[Help]: Check database sanity\n");
goto error;
}
row_affected = sqlite3_changes(DB);
if (row_affected == 0) {
printf("[Info]: No rows were affected\n");
printf("[Help]: Did you enter a valid task id?\n");
} else {
printf("[Info]: Task %d updated\n", curr);
}
error:
sqlite3_finalize(stmt);
}
/* Ensure new columns exist on older databases (migration) */
static void
toradora_migrate_db(sqlite3 *DB)
{
char *err = NULL;
/* Ignore errors - columns may already exist */
sqlite3_exec(DB, "ALTER TABLE tasks ADD COLUMN priority INTEGER NOT NULL DEFAULT 2;", NULL, 0, &err);
if (err) sqlite3_free(err);
err = NULL;
sqlite3_exec(DB, "ALTER TABLE tasks ADD COLUMN daily INTEGER NOT NULL DEFAULT 0;", NULL, 0, &err);
if (err) sqlite3_free(err);
}
int
main(int argc, char *argv[])
{
char *home_path = getenv("HOME");
char *file_path = "/.toradora.db";
char database_path[MAX_PATH_LENGTH];
sqlite3 *DB;
int db_exit = 0;
int tab_exit = 0;
char *message_error;
if (home_path == NULL) {
printf("[Error]: HOME environment variable not set.\n");
return -1;
}
snprintf(database_path, sizeof(database_path), "%s%s", home_path, file_path);
db_exit = sqlite3_open(database_path, &DB);
if (db_exit) {
printf("[Error]: Database corrupted\n");
printf("[Help]: Delete database file and rerun the application\n");
return -1;
}
char *create_table = "CREATE TABLE IF NOT EXISTS tasks ("
"id INTEGER PRIMARY KEY NOT NULL,"
"task TEXT NOT NULL,"
"status INTEGER NOT NULL DEFAULT 0,"
"priority INTEGER NOT NULL DEFAULT 2,"
"daily INTEGER NOT NULL DEFAULT 0,"
"created_at TEXT NOT NULL DEFAULT CURRENT_DATE"
");";
tab_exit = sqlite3_exec(DB, create_table, NULL, 0, &message_error);
if (tab_exit != SQLITE_OK) {
printf("[Error]: Table creation failed\n");
printf("%s\n", message_error);
return -1;
}
/* Migrate existing databases to add new columns if missing */
toradora_migrate_db(DB);
/*
* Argument parsing:
* toradora -> show active tasks
* toradora -z -> show all tasks
* toradora -h -> show usage
* toradora -a "task" -> add task (medium priority)
* toradora -a "task" -p <1|2|3> -> add task with priority
* toradora -d "task" -> add daily task (medium priority)
* toradora -d "task" -p <1|2|3> -> add daily task with priority
* toradora -c <id> -> complete task
* toradora -e <id> "new task" -> edit task
*/
if (argc == 1) {
manifest_active_tasks(DB);
} else if (argc == 2) {
if (0 == strcmp(argv[1], "-z")) {
manifest_all_tasks(DB);
} else if (0 == strcmp(argv[1], "-h")) {
manifest_usage();
} else {
manifest_usage();
sqlite3_close(DB);
return 1;
}
} else if (argc == 3) {
if (0 == strcmp(argv[1], "-a")) {
toradora_add_task(DB, argv[2], PRIORITY_MEDIUM);
} else if (0 == strcmp(argv[1], "-d")) {
toradora_add_daily_task(DB, argv[2], PRIORITY_MEDIUM);
} else if (0 == strcmp(argv[1], "-c")) {
toradora_complete_task(DB, argv[2]);
} else {
manifest_usage();
sqlite3_close(DB);
return 1;
}
} else if (argc == 4) {
if (0 == strcmp(argv[1], "-e")) {
toradora_edit_task(DB, argv[2], argv[3]);
} else {
manifest_usage();
sqlite3_close(DB);
return 1;
}
} else if (argc == 5) {
/* toradora -a "task" -p <1|2|3> */
/* toradora -d "task" -p <1|2|3> */
if ((0 == strcmp(argv[1], "-a") || 0 == strcmp(argv[1], "-d"))
&& 0 == strcmp(argv[3], "-p")) {
char *end_ptr;
int priority = (int)strtol(argv[4], &end_ptr, 10);
if (*end_ptr != '\0' || priority < 1 || priority > 3) {
printf("[Error]: Priority must be 1, 2, or 3\n");
manifest_usage();
sqlite3_close(DB);
return 1;
}
if (0 == strcmp(argv[1], "-a")) {
toradora_add_task(DB, argv[2], priority);
} else {
toradora_add_daily_task(DB, argv[2], priority);
}
} else {
manifest_usage();
sqlite3_close(DB);
return 1;
}
} else {
manifest_usage();
sqlite3_close(DB);
return 1;
}
sqlite3_close(DB);
return 0;
}
|