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
|
/* 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)
* ===============================
* >>> Today's Task <<<
* 1. "task one"
* 2. "task two"
*
* >>> Backlogs <<<
* 3. "task three"
* ===============================
* 5. Able to manifest all the tasks in database. (toradora -z)
*
*/
#include <sqlite3.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define VERSION "0.1.0"
#define MAX_PATH_LENGTH 4096
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 -c <id> Mark task <id> as complete\n");
printf(" toradora -e <id> \"new task\" Edit task <id>\n\n");
printf("Examples:\n");
printf(" toradora -a \"write usage function\"\n");
printf(" toradora -c 3\n");
printf(" toradora -e 3 \"write usage function (done)\"\n");
}
static int
callback_manifest(void *data, int argc, char **argv, char **az_col_name)
{
/* fprintf(stderr, "%s: ", (const char *)data); */
printf("%s. %s\n", argv[0], argv[1]);
printf("\n");
return 0;
}
static void
manifest_active_tasks(sqlite3 *DB)
{
int query_status;
char *message_error_1;
char *message_error_2;
printf("----------------------------------------------\n");
printf(">>> Today's Task <<<\n");
char *manifest_query_1 = "SELECT ID, TASK FROM tasks WHERE STATUS = 0 "
"AND created_at = CURRENT_DATE;";
query_status = sqlite3_exec(DB, manifest_query_1, callback_manifest, "Manifest callback", &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;
}
printf(">>> Backlog <<<\n");
char *manifest_query_2 = "SELECT ID, TASK FROM tasks WHERE STATUS = 0 "
"AND created_at != CURRENT_DATE;";
query_status = sqlite3_exec(DB, manifest_query_2, callback_manifest, "Manifest callback", &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;
}
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 FROM tasks;";
query_status = sqlite3_exec(DB, manifest_query, callback_manifest, "Manifest callback", &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)
{
sqlite3_stmt *stmt = NULL;
int query_status;
const char *add_query = "INSERT INTO TASKS (task) 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);
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;
}
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");
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 entered valid task id?\n");
}
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 *complete_query = "UPDATE TASKS SET task = ? 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");
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 entered valid task id?\n");
}
error:
sqlite3_finalize(stmt);
}
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");
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,"
"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;
}
switch (argc) {
case 1:
manifest_active_tasks(DB);
break;
case 2:
if (0 == strcmp(argv[1], "-z")) {
manifest_all_tasks(DB);
} else {
manifest_usage();
return 1;
}
break;
case 3:
if (0 == strcmp(argv[1], "-a")) {
toradora_add_task(DB, argv[2]);
} else if (0 == strcmp(argv[1], "-c")) {
toradora_complete_task(DB, argv[2]);
} else if (0 == strcmp(argv[1], "-h")) {
manifest_usage();
} else {
manifest_usage();
return 1;
}
break;
case 4:
if (0 == strcmp(argv[1], "-e")) {
toradora_edit_task(DB, argv[2], argv[3]);
} else {
manifest_usage();
return 1;
}
break;
default:
manifest_usage();
return 1;
}
sqlite3_close(DB);
return 0;
}
|