-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTaskList.cs
379 lines (322 loc) · 7.95 KB
/
TaskList.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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
namespace todotxtlib.net
{
public class TaskList : ObservableCollection<Task>
{
public static TaskList Merge(TaskList original, TaskList new1, TaskList new2)
{
var diff = new DiffMatchPatch.diff_match_patch();
var diffs = diff.diff_main(original.ToString(), new1.ToString());
var patches = diff.patch_make(original.ToString(), diffs);
var text = diff.patch_apply(patches, new2.ToString());
var result = new TaskList();
result.LoadTasksFromString((String)text[0]);
return result;
}
private String _numberFormat;
public TaskList()
{
}
public TaskList(string filePath)
{
LoadTasks(filePath);
}
public TaskList(IEnumerable<Task> todos, int parentListItemCount)
{
_numberFormat = new String('0', parentListItemCount.ToString().Length);
foreach (var todo in todos)
{
Add(todo);
}
}
public override string ToString()
{
return this.Aggregate(String.Empty, (s, task) => s + (s.Length == 0 ? String.Empty : Environment.NewLine) + task.ToString());
}
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 TaskList ListCompleted()
{
return new TaskList(from todo in this
where todo.Completed
select todo, Count);
}
public TaskList Search(String term)
{
bool include = true;
if (term.StartsWith("-"))
{
include = false;
term = term.Substring(1);
}
return new TaskList(from task in this
where !(include ^ task.ToString().Contains(term, StringComparison.OrdinalIgnoreCase))
select task, Count);
}
public TaskList GetPriority(String priority)
{
if (!String.IsNullOrEmpty(priority))
{
return new TaskList(from todo in this
where todo.Priority == priority
select todo, Count);
}
return new TaskList(from todo in this
where todo.IsPriority
orderby todo.Priority
select todo, Count);
}
public void SetItemPriority(int item, string priority)
{
var target = GetTask(item);
if (target != null)
{
target.Priority = priority;
}
}
private bool ReplaceItemText(int item, string oldText, string newText)
{
var target = GetTask(item);
if (target != null)
{
return target.ReplaceItemText(oldText, newText);
}
return false;
}
public Task GetTask(int itemNumber)
{
return (from todo in this
where todo.ItemNumber == itemNumber
select todo).FirstOrDefault();
}
public void ReplaceInTask(int item, string newText)
{
GetTask(item)?.Replace(newText);
}
public void AppendToTask(int item, string newText)
{
GetTask(item)?.Append(newText);
}
public void PrependToTask(int item, string newText)
{
GetTask(item)?.Prepend(newText);
}
public bool RemoveFromTask(int item, string term)
{
return ReplaceItemText(item, term, String.Empty);
}
public TaskList RemoveCompletedTasks(bool preserveLineNumbers)
{
TaskList completed = ListCompleted();
for (int n = Count - 1; n >= 0; n--)
{
if (this[n].Completed)
{
if (preserveLineNumbers)
{
this[n].Empty();
}
else
{
Remove(this[n]);
}
}
}
return completed;
}
public void RemoveTask(int item, bool preserveLineNumbers)
{
Task target = (from todo in this
where todo.ItemNumber == item
select todo).FirstOrDefault();
if (target != null)
{
if (preserveLineNumbers)
{
target.Empty();
}
else
{
Remove(target);
int itemNumber = 1;
foreach (var todo in this)
{
todo.ItemNumber = itemNumber;
itemNumber += 1;
}
}
}
}
public void LoadTasksFromString(String text)
{
using(var sr = new StringReader(text))
{
var line = sr.ReadLine();
while(line != null)
{
Add(new Task(line));
line = sr.ReadLine();
}
}
}
public void LoadTasks(Stream fileStream)
{
try
{
Clear();
var lines = new List<string>();
using(var sr = new StreamReader(fileStream))
{
while (!sr.EndOfStream)
{
lines.Add(sr.ReadLine());
}
}
foreach (string line in lines)
{
Add(new Task(line));
}
}
catch (IOException ex)
{
throw new TaskException("There was a problem trying to read from your file", ex);
}
}
public void LoadTasks(String filePath)
{
try
{
Clear();
string[] lines = ReadAllLines(filePath);
foreach (string line in lines)
{
Add(new Task(line));
}
}
catch (IOException ex)
{
throw new TaskException("There was a problem trying to read from your file", ex);
}
}
public void WriteTasks(Stream stream)
{
try
{
using (var sw = new StreamWriter(stream))
{
foreach (var item in Items)
{
sw.WriteLine(item.ToString());
}
sw.Flush();
}
}
catch (IOException ex)
{
throw new TaskException("There was a problem trying to write your tasks to the stream", ex);
}
}
public void SaveTasks(FileStream fileStream)
{
try
{
using (var sw = new StreamWriter(fileStream))
{
foreach (var item in Items)
{
sw.WriteLine(item.ToString());
}
sw.Flush();
}
}
catch (IOException ex)
{
throw new TaskException("There was a problem trying to save your file", ex);
}
}
public void SaveTasks(String filePath)
{
try
{
WriteAllLines(filePath, this.Select(t => t.ToString()).ToArray());
}
catch (IOException ex)
{
throw new TaskException("There was a problem trying to save your file", ex);
}
}
/// <summary>
/// Deletes a task from this list
/// </summary>
/// <param name="task">The task to delete from the list</param>
/// <returns>True if the task was in the list; false otherwise</returns>
public bool Delete(Task task)
{
try
{
return (Remove(this.First(t => t.Raw == task.Raw)));
}
catch (Exception ex)
{
throw new TaskException("An error occurred while trying to remove your task from the task list file", ex);
}
}
public void Update(Task currentTask, Task newTask)
{
try
{
int currentIndex = IndexOf(this.First(t => t.Raw == currentTask.Raw));
this[currentIndex] = newTask;
}
catch (Exception ex)
{
throw new TaskException("An error occurred while trying to update your task in the task list file", ex);
}
}
// WriteAllLines and ReadAllLines are included here to support Windows Phone
// They're available by default in other versions of the .NET framework
public static void WriteAllLines(string path, string[] lines)
{
using (var fs = File.Open(path, FileMode.Create, FileAccess.Write))
{
using (var sw = new StreamWriter(fs))
{
foreach (string line in lines)
{
sw.WriteLine(line);
}
sw.Flush();
}
}
}
public static string[] ReadAllLines(string path)
{
var lines = new List<string>();
using (var fs = File.OpenRead(path))
{
using (var sr = new StreamReader(fs))
{
while(!sr.EndOfStream)
{
lines.Add(sr.ReadLine());
}
}
}
return lines.ToArray();
}
}
}