-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtodo.cs
361 lines (298 loc) · 6.9 KB
/
todo.cs
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
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using System.Linq;
public class ToDo
{
public int ItemNumber = 0;
public String Priority = String.Empty;
public DateTime? Date = null;
public String Text;
public List<String> Contexts = new List<String>();
public List<String> Projects = new List<String>();
private bool _completed = false;
public bool Completed
{
get{return _completed;}
}
public void MarkCompleted()
{
_completed = true;
if(IsPriority)
{
Priority = String.Empty;
}
Date = DateTime.Now;
}
public void Empty()
{
Text = String.Empty;
Date = null;
Priority = String.Empty;
Contexts = new List<String>();
Projects = new List<String>();
}
private String ParseProjects(String todo)
{
Projects.Clear();
MatchCollection projects = Regex.Matches(todo, @"\s(\+\w+)");
foreach(Match match in projects)
{
String project = match.Groups[1].Captures[0].Value;
Projects.Add(project);
todo = todo.Replace(project, String.Empty);
}
return todo;
}
private String ParseContexts(String todo)
{
Contexts.Clear();
MatchCollection contexts = Regex.Matches(todo, @"\s(@\w+)");
foreach(Match match in contexts)
{
String context = match.Groups[1].Captures[0].Value;
Contexts.Add(context);
todo = todo.Replace(context, String.Empty);
}
return todo;
}
private void ParseEverythingElse(String todo)
{
Match everythingElse = Regex.Match(todo, @"(?:(?<done>[x]) )?(?:\((?<priority>[A-Z])\) )?(?:(?<date>[0-9]{4}-[0-9]{2}-[0-9]{2}) )?(?<todo>.+)$");
if(everythingElse != Match.Empty)
{
if(everythingElse.Groups["date"].Success)
{
Date = DateTime.Parse(everythingElse.Groups["date"].Value);
}
if(everythingElse.Groups["priority"].Success)
{
Priority = everythingElse.Groups["priority"].Value;
}
if(everythingElse.Groups["todo"].Success)
{
Text = everythingElse.Groups["todo"].Value;
}
if(everythingElse.Groups["done"].Success)
{
_completed = true;
}
}
}
public ToDo(String todo, int itemNumber)
{
ItemNumber = itemNumber;
ParseFields(todo);
}
private void ParseFields(String todo)
{
todo = ParseContexts(todo);
todo = ParseProjects(todo);
todo = todo.Trim();
ParseEverythingElse(todo);
}
public void Replace(String newTodo)
{
ParseFields(newTodo);
}
public void Append(String toAppend)
{
ParseFields(ToDoProjectContext + toAppend);
}
public void Prepend(String toPrepend)
{
ParseFields(toPrepend + ToDoProjectContext);
}
public bool ReplaceItemText(string oldText, string newText)
{
String replaceableText = ToDoProjectContext;
if(replaceableText.Contains(oldText))
{
replaceableText = replaceableText.Replace(oldText, newText);
ParseFields(replaceableText);
return true;
}
return false;
}
public bool IsPriority
{
get{ return !String.IsNullOrEmpty(Priority); }
}
private String ToDoProjectContext
{
get
{
return Text
+ (Projects.Count() > 0 ? " " : String.Empty)
+ String.Join(" ", Projects.ToArray())
+ (Contexts.Count() > 0 ? " " : String.Empty)
+ String.Join(" ", Contexts.ToArray());
}
}
public String ToString(String numberFormat)
{
return ItemNumber.ToString(numberFormat) + " " + ToString();
}
public override String ToString()
{
return
(_completed ? "x " : String.Empty)
+ (!String.IsNullOrEmpty(Priority) ? "(" + Priority + ") " : String.Empty)
+ (Date.HasValue ? (Date.Value.ToString("yyyy-MM-dd") + " ") : String.Empty)
+ ToDoProjectContext;
}
}
public class ToDoList : List<ToDo>
{
private String _numberFormat;
public ToDoList() : base()
{}
public ToDoList(IEnumerable<ToDo> todos, int parentListItemCount)
: base(todos)
{
_numberFormat = new String('0', parentListItemCount.ToString().Length);
}
public IEnumerable<String> ToOutput()
{
return this.Select(x => x.ToString());
}
public IEnumerable<String> ToNumberedOutput()
{
if(String.IsNullOrEmpty(_numberFormat))
{
_numberFormat = new String('0', Count.ToString().Length);
}
return this.Select(x => x.ToString(_numberFormat));
}
public ToDoList ListCompleted()
{
return new ToDoList(from todo in this
where todo.Completed
select todo, Count);
}
public ToDoList Search(String term)
{
bool include = true;
if(term.StartsWith("-"))
{
include = false;
term = term.Substring(1);
}
return new ToDoList(from todo in this
where !(include ^ todo.ToString().Contains(term))
select todo, Count);
}
public ToDoList GetPriority(String priority)
{
if(!String.IsNullOrEmpty(priority))
{
return new ToDoList(from todo in this
where todo.Priority == priority
select todo, Count);
}
else
{
return new ToDoList(from todo in this
where todo.IsPriority
orderby todo.Priority
select todo, Count);
}
}
public void SetItemPriority(int item, string priority)
{
ToDo target = (from todo in this
where todo.ItemNumber == item
select todo).FirstOrDefault();
if(target != null)
{
target.Priority = priority;
}
}
private bool ReplaceItemText(int item, string oldText, string newText)
{
ToDo target = (from todo in this
where todo.ItemNumber == item
select todo).FirstOrDefault();
if(target != null)
{
return target.ReplaceItemText(oldText, newText);
}
return false;
}
public void ReplaceToDo(int item, string newText)
{
ToDo target = (from todo in this
where todo.ItemNumber == item
select todo).FirstOrDefault();
if(target != null)
{
target.Replace(newText);
}
}
public void AppendToDo(int item, string newText)
{
ToDo target = (from todo in this
where todo.ItemNumber == item
select todo).FirstOrDefault();
if(target != null)
{
target.Append(newText);
}
}
public void PrependToDo(int item, string newText)
{
ToDo target = (from todo in this
where todo.ItemNumber == item
select todo).FirstOrDefault();
if(target != null)
{
target.Prepend(newText);
}
}
public bool RemoveFromItem(int item, string term)
{
return ReplaceItemText(item, term, String.Empty);
}
public ToDoList RemoveCompletedItems(bool preserveLineNumbers)
{
ToDoList completed = ListCompleted();
for(int n = this.Count - 1; n >= 0; n--)
{
if(this[n].Completed)
{
if(preserveLineNumbers)
{
this[n].Empty();
}
else
{
Remove(this[n]);
}
}
}
return completed;
}
public void RemoveItem(int item, bool preserveLineNumbers)
{
ToDo target = (from todo in this
where todo.ItemNumber == item
select todo).FirstOrDefault();
if(target != null)
{
if(preserveLineNumbers)
{
target.Empty();
}
else
{
this.Remove(target);
int itemNumber = 1;
foreach(ToDo todo in this)
{
todo.ItemNumber = itemNumber;
itemNumber += 1;
}
}
}
}
}