- Setting Up
- Design
- Implementation
- Testing
- Continuous Integration
- Making a Release
- Managing Dependencies
- Appendix A: User Stories
- Appendix B: Use Cases
- Appendix C: Non Functional Requirements
- Appendix D: Glossary
- Appendix E : Product Survey
-
JDK
1.8.0_60
or laterHaving any Java 8 version is not enough.
This app will not work with earlier versions of Java 8. -
Eclipse IDE
-
e(fx)clipse plugin for Eclipse (Do the steps 2 onwards given in this page)
-
Buildship Gradle Integration plugin from the Eclipse Marketplace
- Fork this repo, and clone the fork to your computer
- Open Eclipse (Note: Ensure you have installed the e(fx)clipse and buildship plugins as given in the prerequisites above)
- Click
File
>Import
- Click
Gradle
>Gradle Project
>Next
>Next
- Click
Browse
, then locate the project's directory - Click
Finish
- If you are asked whether to 'keep' or 'overwrite' config files, choose to 'keep'.
- Depending on your connection speed and server load, it can even take up to 30 minutes for the set up to finish (This is because Gradle downloads library files from servers during the project set up process)
The Architecture Diagram given above explains the high-level design of the App.
Given below is a quick overview of each component.
Main
has only one class called MainApp
. It is responsible for,
- At app launch: Initializes the components in the correct sequence, and connect them up with each other.
- At shut down: Shuts down the components and invoke clean up method where necessary.
Commons
represents a collection of classes used by multiple other components.
Two of those classes play an important role at the architecture level.
EventsCentre
: This class (written using Google's Event Bus library) is used to by componnents to communicate with other components using events (i.e. a form of Event Driven design)LogsCenter
: Used by many classes to write log messages to the App's log files.
The rest of the App consists four components.
UI
: The UI of tha App.Logic
: The command executor.Model
: Holds the data of the App in-memory.Storage
: Reads data from, and writes data to, the hard disk.
Each of the four components
- Defines its API an interface with the same name as the Component.
Logic.java
- Exposes its functionality using a
{Component Name}Manager
class e.g.LogicManager.java
The Sequence Diagram below shows how the components interact for the scenario where the user issues the
command delete 3
.
Note how the
Model
simply raises aModelChangedEvent
when the model is changed, instead of asking theStorage
to save the updates to the hard disk.
The diagram below shows how the EventsCenter
reacts to that event, which eventually results in the updates
being saved to the hard disk and the status bar of the UI being updated to reflect the 'Last Updated' time.
Note how the event is propagated through the
EventsCenter
to theStorage
andUI
withoutModel
having to be coupled to either of them. This is an example of how this Event Driven approach helps us reduce direct coupling between components.
The sections below give more details of each component.
API : Ui.java
The UI consists of a MainWindow
that is made up of parts e.g.CommandBox
, ResultDisplay
, PersonListPanel
,
StatusBarFooter
, BrowserPanel
etc. All these, including the MainWindow
inherits from the abstract UiPart
class
and they can be loaded using the UiPartLoader
.
The UI
component uses JavaFx UI framework. The layout of these UI parts are defined in matching .fxml
files
that are in the src/main/resources/view
folder.
For example, the layout of the MainWindow
is specified in
MainWindow.fxml
The UI
component,
- Executes user commands using the
Logic
component. - Binds itself to some data in the
Model
so that the UI can auto-update when data in theModel
change. - Responds to events raises from various parts of the App and updates the UI accordingly.
API : Logic.java
Logic
uses theMainParser
class to parse the user command.MainParser
relies onParser
of Natty by Joe Stelmach for natural language processing.- This results in a
Command
object which is executed by theLogicManager
. - The command execution can affect the
Model
(e.g. adding a person) and/or raise events. - The result of the command execution is encapsulated as a
CommandResult
object which is passed back to theUi
API : Model.java
The Model
,
- Stores a
UserPref
object that represents the user's preferences - Stores CMDo data
- Exposes a
UnmodifiableObservableList<ReadOnlyTask
that can be 'observed' e.g. the UI can be bound to this list so that the UI automatically updates when the data in the list change. - Does not depend on any of the other three components.
API : Storage.java
The Storage
component,
- can save
UserPref
objects in json format and read it back. - can save CMDo data in xml format and read it back.
Classes used by multiple components are in the seedu.cmdo.commands
package.
We are using java.util.logging.Logger
as our logger, and LogsCenter
is used to manage the logging levels
of loggers and handlers (for output of log messages)
-
The logging level can be controlled using the
logLevel
setting in the configuration file (See Configuration) -
The
Logger
for a class can be obtained usingLogsCenter.getLogger(Class)
which will log messages according to the specified logging level -
Currently log messages are output through:
Console
and.log
Logging Levels
-
SEVERE
- Critical use case affected, which may possibly cause the termination of the application
-
WARNING
- Can continue, but with caution
-
INFO
- Information important for the application's purpose
- e.g. update to local model/request sent to cloud
- Information that the layman user can understand
- Information important for the application's purpose
-
FINE
- Used for superficial debugging purposes to pinpoint components that the fault/bug is likely to arise from
- Should include more detailed information as compared to
INFO
i.e. log useful information!- e.g. print the actual list instead of just its size
Certain properties of the application can be controlled (e.g App name, logging level) through the configuration file
(default: config.json
):
In Eclipse:
If you are not using a recent Eclipse version (i.e. Neon or later), enable assertions in JUnit tests as described here.
- To run all tests, right-click on the
src/test/java
folder and chooseRun as
>JUnit Test
- To run a subset of tests, you can right-click on a test package, test class, or a test and choose to run as a JUnit test.
Using Gradle:
- See UsingGradle.md for how to run tests using Gradle.
Tests can be found in the ./src/test/java
folder.
-
GUI Tests - These are System Tests that test the entire App by simulating user actions on the GUI. These are in the
guitests
package. -
Non-GUI Tests - These are tests not involving the GUI. They include,
- Unit tests targeting the lowest level methods/classes.
e.g.seedu.cmdo.commons.UrlUtilTest
- Integration tests that are checking the integration of multiple code units
(those code units are assumed to be working).
e.g.seedu.cmdo.storage.StorageManagerTest
- Hybrids of unit and integration tests. These test are checking multiple code units as well as
how the are connected together.
e.g.seedu.cmdo.logic.LogicManagerTest
- Unit tests targeting the lowest level methods/classes.
Headless GUI Testing :
Thanks to the (TestFX) library we use,
our GUI tests can be run in the headless mode.
In the headless mode, GUI tests do not show up on the screen.
That means the developer can do other things on the Computer while the tests are running.
See UsingGradle.md to learn how to run tests in headless mode.
We use Travis CI to perform Continuous Integration on our projects. See UsingTravis.md for more details.
Here are the steps to create a new release.
- Generate a JAR file using Gradle.
- Tag the repo with the version number. e.g.
v0.1
- Crete a new release using GitHub and upload the JAR file your created.
A project often depends on third party libraries. For example, CMDo depends on the
Natty for date/time natural language parsing. Managing these dependencies
can be automated using Gradle or Maven. For example, Gradle can download the dependencies automatically, which is better than these alternatives.
a. Include those libraries in the repo (this bloats the repo size)
b. Require developers to download those libraries manually (this creates extra work for developers)
Priorities: High (must have) - * * *
, Medium (nice to have) - * *
, Low (unlikely to have) - *
Priority | As a ... | I want to ... | So that I can... |
---|---|---|---|
* * * |
new user | see usage instructions | refer to instructions when I forget how to use the App |
* * * |
user | add a new task using natural language | add a task to CMDo |
* * * |
user | delete a task | remove entries that I no longer need |
* * * |
user | edit a task | edit the task by accessing the task and typing the changes |
* * * |
user | find a task by loose keywords | access details of tasks quickly without having to go through the entire list |
* * * |
user | only view uncompleted task in CMDo | avoid being confused by completed task that are overd |
* * * |
user | my tasks sorted by due date and due time | locate urgent tasks easily |
* * * |
user | remove my completed tasks | see only uncompleted tasks |
* * * |
user | undo my previous action | make mistakes |
* * * |
user | redo my previous action upon undo | make mistakes |
* * * |
user | set priority to my task | know which task is more important |
* * |
user | simply assign a date due to my todo by typing in the due date | to enter due dates easily |
* * |
user | block out time slots of unconfirmed tasks | avoid scheduling tasks that clash |
* |
user | have a in-built calander | plan my schedule |
* |
user | have a nice interface | have more motivation to complete tasks |
(For all use cases below, the System is CMDo
and the Actor is the user
, unless specified otherwise)
MSS
- User requests to add a task
- CMDo converts the natural language into input
- CMD0 adds the task
Use case ends.
Extensions
1a. The given input is invalid such as invalid encapsulation for details and / for priority and - for tags
1a1. CMDo shows help message
Use case resumes at step 1
2a. Date is not specified
CMDo stores the task as a floating one, with time as
LocalTime.MAX
and date asLocalDate.MAX
. Use case resumes at step 3
2b. Date is specified but time is not
CMDo stores the task with the input date and the time would be
LocalTime.MAX
for that date. Use case resumes at step 3
2c. Priority is not specified
CMDo stores it as low priority Use case resumes at step 3
3a.
message "New task added:
task details
" will be displayed Use case ends.
MSS
- User requests to search a task
- CMDo shows a list of tasks
- User requests to delete a specific task in the list by entering the index of the task
- CMD0 deletes the task
Use case ends.
Extensions
2a. The list is empty
Use case ends
3a. The given index is invalid
3a1. CMDo shows help message
Use case ends
4a.
message "Deleted task:
task details
" will be displayed Use case ends.
MSS
- User requests to find a task or list all tasks
- CMDo shows a list of tasks
- User requests to edit a specific task in the list by index
- User keys in the changes
- CMD0 edits the task
Use case ends.
Extensions
2a. The list is empty
Use case ends
3a. The given index is invalid
3a1. CMDo shows help message
Use case ends
4a. Only differences between the entry and original task will be applied to the task
5a.
Message "Edited task!" will be displayed Use case ends.
MSS
- User requests to find a task
- CMDo shows a list of tasks
Use case ends.
Extensions
2a.
Message "You entered:
your input into the command line
Listing all tasks which are 60 percent similar to your input." is shown
MSS
- User requests to list all tasks
- CMDo shows a list of tasks
Use case ends.
Extensions
2a.
Message "Listed all tasks" will be shown
MSS
- User requests to list done tasks
- CMDo shows a list of done tasks
Use case ends.
Extensions
2a.
Message "
number of done tasks
done tasks listed" will be shown
MSS
- User requests to list all blocked timeslots
- CMDo shows a list of blocked timeslots
Use case ends.
Extensions
2a.
Message "Listed all tasks" will be shown
MSS
- User requests to find a task or list all tasks
- CMDo shows a list of tasks
- Mark the task done by index
- The task is marked as done and moved to storage
- User does not see the task in CMDo anymore
Use case ends.
Extensions
1a. The list is empty
Use case ends
3a. The given index is invalid
3a1. CMDo shows help message
Use case ends
3b. The task to be marked done is a blocked time slot
3b1. CMDo shows message "You can't do a blocked timeslot... Right?"
Use case ends
4a. The task will not show up on list or find.
4a1. CMDo shows message "Done task:
task details
"
Use case resumes at step 5
MSS
- User requests to undo previous action
- CMDo undos the previous action
Use case ends.
Extensions
1a. There are no more previous actions
Message "nothing to undo" will be shown Use case ends
2a.
message "Undone!" will be displayed Use case ends.
MSS
- User requests to redo previous action
- CMDo undos the previous action
Use case ends.
Extensions
1a. There are no more previous actions
Message "nothing to undo" will be shown Use case ends
2a.
Message "Redone!" will be displayed Use case ends.
MSS
- User requests to scroll up the the list
- List scrolls up
Use case ends.
1a. User is at the top of the list already
Message "You can't go up no more." will be displayed Use case ends.
2a.
Message "Up!" will be displayed Use case ends.
MSS
- User requests to scroll down the the list
- List scrolls down
Use case ends.
Extensions
1a. User is at the bottom of the list already
Message "You can't go down no more." will be displayed Use case ends.
2a.
Message "Down!" will be displayed Use case ends.
MSS
- User requests to go to the top of the list of CMDo
- User sees the top of the list
Use case ends.
Extensions
1a. User is at the top of the list already
message "You can't go up no more." will be displayed Use case ends.
2a.
Message "I can see my house from here" will be displayed Use case ends.
MSS
- User requests to go to the bottom of the list of CMDo
- User sees the bottom of the list
Use case ends.
Extensions
1a. User is at the bottom of the list already
Message "You can't go down no more." will be displayed Use case ends.
2a.
Message "Right at the bottom" will be displayed Use case ends.
MSS
- User requests to Exit CMDo
- CMDo is exited
Use case ends.
- Should work on any mainstream OS as long as it has Java
1.8.0_60
or higher installed. - Should be able to hold up to 1000 tasks.
- Should come with automated unit tests and open source code.
- Should favor DOS style commands over Unix-style commands.
- Customize commands to suit user preference
- Issue reminders for upcoming tasks
Windows, Linux, Unix, OS-X
Refers to a search which is gives leeway in keyword matching but allows for flexibility in parameter input.
PROS
- A true keyboard-only program, able to add new tasks with completion date using only keyboard. It also understands today, tomorrow, next Sunday, etc.
- Has option to sort by date created, date due, alphabetical order, etc.
- Shows history of completed tasks
- Categories
CONS
- Not keyboard-language enough. I would like to enter something like ‘Finish assignment by Tuesday' 'Remind Monday in NOC'.
PROS
- Functions as To-Do List and note taking and has reminders.
- Can archive notes and list
- Have trash to recover past to-dos
- Can share with another person via email.
CONS
- Messy UI, task cards are all over the place.
- Not enough users on the platform, hard to collaborate.
PROS
- Quick glance at tasks on a persisting interface.
- No need to learn complicated commands because all items are written by themself.
CONS
- Disorganized, no ability to sort by timing, name or done status.
- Just another note pad.
PROS
- Intuitive, beautiful interface with use of color headings.
- Adding a task is as simple as clicking on an empty line in the 'notepad' and typing a name.
- Syncing with iCloud so that tasks persist on all iDevices.
- Built in reminders and alarm system.
- Configurable categories, shown on the leftside toolbar for easy switching.
CONS
- No natural language parsing for dates, due dates must be set manually by double-clicking on the created task. This adds an additional layer of complexity.
Last updated 7 Nov 2016