-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcli_todo_app.cpp
More file actions
282 lines (251 loc) · 6.03 KB
/
cli_todo_app.cpp
File metadata and controls
282 lines (251 loc) · 6.03 KB
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
/**
* @file CliTodoApp.cpp
*
* @brief This is a todo app that creates a todo list and stores it in a file.
*
* @author Gonzalo Gorgojo
* Contact: gongorgojo@gmail.com
*
*/
#include <iostream>
#include <fstream>
#include <vector>
#include <ctime>
using namespace std;
void add(const string &s) // add
{
ifstream read("todo.txt");
vector<string> v;
string temp;
while (getline(read, temp))
{
v.push_back(temp);
}
read.close();
bool check = false; // task not present
for (const string &task : v)
{
if (s == task)
{
check = true; // task is already added earlier, but needed to refresh it.
break;
}
}
if (!check)
{
ofstream write("todo.txt", ios::app);
write << s << endl;
cout << "Added todo : \"" << s << "\"" << endl;
}
else
{
ofstream write("todo.txt");
for (const string &task : v)
{
if (task != s)
{
write << task << endl;
}
}
write << s << endl;
cout << "Added todo : \"" << s << "\"" << endl;
}
}
void del(int k) // delete
{
ifstream read("todo.txt");
vector<string> v;
string s;
while (getline(read, s))
{
v.push_back(s);
}
read.close();
if (k > v.size() || k < 1)
{
// if the task number entered is greater than the number of task, then it cannot be deleted or it does not exist.
cout << "ERROR...! task #" << k << " does not exist! No task is deleted!" << endl;
}
else
{
ofstream write("todo.txt");
for (size_t i = 0; i < v.size(); i++)
{
if (i != static_cast<size_t>(k - 1))
write << v[i] << endl;
}
cout << "Deleted todo #" << k << endl;
}
}
void done(int k) // complete
{
int year, month, date;
vector<string> v;
string s, x;
time_t ttime = time(0);
tm *local_time = localtime(&ttime);
year = local_time->tm_year + 1900;
month = local_time->tm_mon + 1;
date = local_time->tm_mday;
ifstream read("todo.txt");
while (getline(read, s))
{
v.push_back(s);
}
read.close();
if (k > v.size())
{
cout << "ERROR...! task #" << k << " doesn't exist!" << endl;
}
else
{
ofstream write1("todo.txt");
ofstream write2("done.txt", ios::app);
for (size_t i = 0; i < v.size(); i++)
{
if (i == static_cast<size_t>(k - 1))
{
x = v[i];
cout << "Marked todo #" << k << " as done." << endl;
}
else
{
write1 << v[i] << endl;
}
}
write1.close();
write2 << "x " << year << "-" << month << "-" << date << " " << x << endl;
write2.close();
}
}
void list() // list
{
ifstream read("todo.txt");
vector<string> v;
string s;
while (getline(read, s))
{
v.push_back(s);
}
read.close();
if (v.empty())
{
cout << "There are no pending todos." << endl;
}
else
{
for (int i = v.size() - 1; i >= 0; i--)
{
s = v.back();
v.pop_back();
cout << "[" << (i + 1) << "]"
<< " " << s << endl;
}
}
}
void help() // help
{
cout << "How to use this TODO APP :-" << endl;
cout << "$ ./todoapp add \"todo item\" # Add a new todo item" << endl;
cout << "$ ./todoapp del NUMBER # Delete a todo item" << endl;
cout << "$ ./todoapp done NUMBER # Complete a todo item" << endl;
cout << "$ ./todoapp ls # Show remaining todo items" << endl;
cout << "$ ./todoapp help # Show How to use" << endl;
cout << "$ ./todoapp report # Display Statistics of the app." << endl;
}
void report() // status
{
int pending = 0, done = 0;
string s;
int year, month, date;
ifstream read("todo.txt"); // todo.txt contains the pending tasks;
if (read.is_open())
{
while (getline(read, s))
{
pending++;
}
}
read.close();
ifstream readDone("done.txt"); // done.txt contains the completed tasks
if (readDone.is_open())
{
while (getline(readDone, s))
{
done++;
}
}
readDone.close();
// We will be displaying this with time.
time_t ttime = time(0);
tm *local_time = localtime(&ttime);
year = local_time->tm_year + 1900;
month = local_time->tm_mon + 1;
date = local_time->tm_mday;
cout << year << "-" << month << "-" << date << " "
<< "Pending Tasks: " << pending << " "
<< "Completed Tasks: " << done << endl;
}
int main(int argc, char *argv[])
{
if (argc < 2)
{
cout << "Usage: " << argv[0] << " <command>" << endl;
help();
return 1;
}
string command = argv[1];
if (command == "add")
{
if (argc < 3)
{
cout << "ERROR...! Missing todo string! Nothing added!" << endl;
}
else
{
string todo = argv[2];
add(todo);
}
}
else if (command == "del")
{
if (argc < 3)
{
cout << "ERROR...! Missing task number! No task is deleted!" << endl;
}
else
{
int taskNumber = stoi(argv[2]);
del(taskNumber);
}
}
else if (command == "report")
{
report();
}
else if (command == "done")
{
if (argc < 3)
{
cout << "ERROR...! Missing task number! No task is marked completed!" << endl;
}
else
{
int taskNumber = stoi(argv[2]);
done(taskNumber);
}
}
else if (command == "ls")
{
list();
}
else if (command == "help")
{
help();
}
else
{
cout << "Invalid command. Use './todoapp help' for usage instructions." << endl;
}
return 0;
}