Files
challenges/Week9.java
T

191 lines
5.1 KiB
Java

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import javax.swing.JOptionPane;
public class Week9 {
private static ArrayList<Task> tasks;
private static String filepath;
private static Week9Gui gui;
// NOTE: For sorts, the Task class needs something implemented.
private static void sortByTitle() {
System.out.println("Sort By Title clicked!");
Collections.sort(tasks, Task.BY_TITLE);
gui.update(tasks);
}
// NOTE: For sorts, the Task class needs something implemented.
private static void sortByDueDate() {
System.out.println("Sort By Due Date clicked!");
// TODO
gui.update(tasks);
}
// NOTE: For sorts, the Task class needs something implemented.
private static void filterByComplete() {
System.out.println("Filter By Complete clicked!");
// TODO
gui.update(tasks);
}
// addBtn Method
private static void addBtn() {
String[] strs = new String[3];
strs[0] = JOptionPane.showInputDialog("Please Enter A Title:");
strs[1] = JOptionPane.showInputDialog("Please Enter A Discription:");
strs[2] = JOptionPane.showInputDialog("Please Enter A Due Date:");
}
private void parse(File f) {
try (BufferedReader myReader = new BufferedReader(new FileReader(f))) {
String line;
String[] data;
String title, desc, date;
boolean completed;
Task task;
while ((line = myReader.readLine()) != null) {
data = line.split(",");
title = data[0];
desc = data[1];
date = data[2];
completed = "true".contentEquals(data[3]);
task = new Task(title, desc, date);
if (completed)
task.toggleComplete();
tasks.add(task);
}
} catch (FileNotFoundException e) {
System.out.println("File error! File not found.");
e.printStackTrace();
} catch (IOException e1) {
System.out.println("IOException apparently");
e1.printStackTrace();
}
}
// Writes each task to the file after a change.
private static void saveTasks() {
System.out.println("writing tasks to " + filepath);
try (BufferedWriter myWriter = new BufferedWriter(new FileWriter(filepath))) {
myWriter.flush();
String line;
String title, desc, date;
boolean completed;
for (Task task : tasks) {
title = task.getTitle();
desc = task.getDescription();
date = task.getDueDate();
completed = task.isCompleted();
line = String.format("%s,%s,%s,%b", title, desc, date, completed);
myWriter.append(line);
myWriter.newLine();
}
} catch (FileNotFoundException e) {
System.out.println("File error! File not found.");
e.printStackTrace();
} catch (IOException e1) {
System.out.println("IOException apparently");
e1.printStackTrace();
}
}
///////////////////////// END OF TODO ////////////////////////////
// Initialize tasks and GUI, populate with test data (if applicable).
private void init() {
filepath = getNotesDirectoryPath();
initTasks();
testData();
}
// Identify the operating system of the user, and obtain the path to the "tasks"
// directory.
private String getNotesDirectoryPath() {
String os = System.getProperty("os.name").toLowerCase();
String userHome = System.getProperty("user.home");
String tasksDir = "tasks";
if (os.contains("win")) // Windows
return userHome + "\\" + tasksDir;
else if (os.contains("mac")) // MacOS
return userHome + "/Library/Application Support/" + tasksDir;
else // Linux/other
return userHome + "/" + tasksDir;
}
// Create the tasks file if it does not already exist. Load tasks from the
// existing file otherwise.
private void initTasks() {
File f = new File(filepath);
tasks = new ArrayList<Task>();
if (f.isFile()) {
System.out.println("loading tasks from " + filepath);
parse(f);
} else {
try {
f.createNewFile();
System.out.println(filepath + " has been created.");
} catch (Exception e) {
System.out.println(e);
}
}
}
// Test tasks, not read from a file and are not intended to be saved to a file.
private void testData() {
tasks.add(new Task("Title 1000", "Description ", "Due Date "));
tasks.add(new Task("100 Title", "Description ", "Due Date "));
for (int i = 20; i > 0; i--)
tasks.add(new Task("Title " + i, "Description " + i, "Due Date " + i));
}
public static void main(String[] args) {
new Week9().init();
ActionListener sortByTitle = new ActionListener() {
public void actionPerformed(ActionEvent e) {
sortByTitle();
}
};
ActionListener sortByDueDate = new ActionListener() {
public void actionPerformed(ActionEvent e) {
sortByDueDate();
}
};
ActionListener filterByCompleted = new ActionListener() {
public void actionPerformed(ActionEvent e) {
filterByComplete();
}
};
ActionListener addBtn = new ActionListener() {
public void actionPerformed(ActionEvent e) {
addBtn();
}
};
gui = new Week9Gui(tasks, sortByTitle, sortByDueDate, filterByCompleted, addBtn);
}
}