- This is a CLI (Command Line Interface) Address Book application written in procedural fashion.
- It is a Java sample application intended for students learning Software Engineering while using Java as the main programming language.
- It provides a reasonably well-written code example that is significantly bigger than what students usually write in data structure modules.
- It can be used to achieve a number of beginner-level learning outcomes without running into the complications of OOP or GUI programmings.
Table of Contents
This product is not meant for end-users and therefore there is no user-friendly installer. Please refer to the Setting up section to learn how to set up the project.
Using Eclipse
- Find the project in the
Project Explorer
orPackage Explorer
(usually located at the left side) - Right click on the project
- Click
Run As
>Java Application
- The program now should run on the
Console
(usually located at the bottom side) - Now you can interact with the program through the
Console
Using Command Line
- 'Build' the project using Eclipse
- Open the
Terminal
/Command Prompt
cd
into the project'sbin
directory- Type
java seedu.addressbook.AddressBook
, then Enter to execute - Now you can interact with the program through the CLI
Format: help
Help is also shown if you enter an incorrect command e.g.
abcd
Adds a person to the address book
Format: add NAME p/PHONE_NUMBER e/EMAIL
Words in
UPPER_CASE
are the parameters
Phone number and email can be in any order but the name must come first.
Examples:
add John Doe p/98765432 e/[email protected]
add Betsy Crowe e/[email protected] p/1234567
Shows a list of persons, as an indexed list, in the order they were added to the address book, oldest first.
Format: list
Finds persons that match given keywords
Format: find KEYWORD [MORE_KEYWORDS]
The search is case sensitive, the order of the keywords does not matter, only the name is searched, and persons matching at least one keyword will be returned (i.e.
OR
search).
Examples:
-
find John
Returns
John Doe
but notjohn
-
find Betsy Tim John
Returns Any person having names
Betsy
,Tim
, orJohn
Format: delete INDEX
Deletes the person at the specified
INDEX
. The index refers to the index numbers shown in the most recent listing.
Examples:
-
list
delete 2
Deletes the 2nd person in the address book.
-
find Betsy
delete 1
Deletes the 1st person in the results of the
find
command.
Clears all entries from the address book.
Format:clear
Format: exit
Address book data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
Address book data are saved in a file called addressbook.txt
in the project root folder.
You can change the location by specifying the file path as a program argument.
Example:
java seedu.addressbook.AddressBook mydata.txt
The file name must end in
.txt
for it to be acceptable to the program.
When running the program inside Eclipse, there is a way to set command line parameters before running the program.
Prerequisites
- JDK 8 or later
- Eclipse IDE
Importing the project into Eclipse
- Open Eclipse
- Click
File
>Import
- Click
General
>Existing Projects into Workspace
>Next
- Click
Browse
, then locate the project's directory - Click
Finish
Windows
- Open a DOS window in the
test
folder - Run the
runtests.bat
script - If the script reports that there is no difference between
actual.txt
andexpected.txt
, the test has passed.
Mac/Unix/Linux
- Open a terminal window in the
test
folder - Run the
runtests.sh
script - If the script reports that there is no difference between
actual.txt
andexpected.txt
, the test has passed.
Troubleshooting test failures
- Problem: How do I examine the exact differences between
actual.txt
andexpected.txt
?
Solution: You can use a diff/merge tool with a GUI e.g. WinMerge (on Windows) - Problem: The two files look exactly the same, but the test script reports they are different.
Solution: This can happen because the line endings used by Windows is different from Unix-based OSes. Convert the actual.txt to the format used by your OS using some utility. - Problem: Test fails during the very first time.
Solution: The output of the very first test run could be slightly different because the program creates a new storage file. Tests should pass from the 2nd run onwards.
Here are the things you should be able to do after studying this code and completing the corresponding exercises.
- Learn [how to set up a new project in Eclipse]
(https://se-edu.github.io/addressbook-level1/doc/Getting started with Eclipse.pptx).
Create a new project in Eclipse and write a small HelloWorld program. - Download the source code for this project, using one of the following options:
- Go to the 'Releases' tab, download the
src.zip
from the latest release, and unzip content. - Clone this repo (if you know how to use Git) to your Computer.
- Go to the 'Releases' tab, download the
- Set up the project in Eclipse.
- Run the program from within Eclipse, and try the features described in the User guide section
The AddressBook.java
code is rather, which makes it cumbersome to navigate by scrolling alone.
Navigating code using IDE shortcuts is a more efficient option.
For example, F3 will navigate to the definition of the method/field at the cursor.
Learn some Eclipse code navigation shortcuts (you can use Web resources like this one). For example, learn the shortcuts to,
- go to the definition of a method
- go back to the previous location
- view the documentation of a method from where the method is being used, without navigating to the method itself
- find where a method/field is being used
- ...
Prerequisite: [LO-IdeSetup]
Learn Eclipse debugging features from [these slides](https://se-edu.github.io/addressbook-level1/doc/Debugging with Eclipse.pptx)
or other online resources.
Demonstrate your debugging skills using the AddressBook code.
Here are some things you can do in your demonstration.
- Set a 'break point'
- Run the program in debug mode
- 'Step through' a few lines of code while examining variable values
- 'Step into', and 'step out of', methods as you step through the code
- ...
- Run the tests as explained in the Testing section.
- Examine the test script to understand how the script works.
- Add a few more tests to the
input.txt
. Run the tests. It should fail.
Modifyexpected.txt
to make the tests pass again. - Edit the
AddressBook.java
to modify the behavior slightly and modify tests to match.
Note how the AddressBook
class uses ArrayList<>
class (from the Java Collections
library)
to store a list of String
or String[]
objects.
Resources: ArrayList class tutorial (from javaTpoint.com)
Currently, a person's details are stored as a String[]
. Modify the code to use a HashMap<String, String>
instead.
A sample code snippet is given below.
private static final String PERSON_PROPERTY_NAME = "name";
private static final String PERSON_PROPERTY_EMAIL = "email";
...
HashMap<String,String> john = new HashMap<>();
john.put(PERSON_PROPERTY_NAME, "John Doe");
john.put(PERSON_PROPERTY_EMAIL, "[email protected]");
//etc.
Resources: HashMap tutorial (from beginnersbook.com)
Similar to the exercise in the LO-Collections
section, but also bring in Java enum
feature.
private enum PersonProperty {NAME, EMAIL, PHONE};
...
HashMap<PersonProperty,String> john = new HashMap<>();
john.put(PersonProperty.NAME, "John Doe");
john.put(PersonProperty.EMAIL, "[email protected]");
//etc.
Note how the showToUser
method uses
Java Varargs feature .
Modify the code to remove the use of the Varargs feature. Compare the code with and without the varargs feature.
The given code follows the coding standard for the most part.
This learning outcome is covered by the exercise in [LO-Refactor]
.
Most of the given code follows the best practices mentioned in this document.
This learning outcome is covered by the exercise in [LO-Refactor]
Resources:
- A catalog of common refactorings - from http://refactoring.com/catalog
- [Screencast] A short refactoring demo using Eclipse
Note: this exercise covers two other Learning Outcomes: [LO-CodingStandard]
, [LO-CodingBestPractices]
- Improve the code in the following ways,
- Fix coding standard violations.
- Fix violations of the best practices given in in this document
- Any other change that you think will improve the quality of the code.
- Try to do the modification as a combination of standard refactorings given in this catalog
- As far as possible, use automated refactoring features in Eclipse.
- If you know how to use Git, commit code after each refactoring.
In the commit message, mention which refactoring you applied.
Example commit messages:Extract variable isValidPerson
,Inline method isValidPerson()
- Remember to run the test script after each refactoring to prevent regressions.
Notice how most of the methods in AddressBook
are short, focused, and written at a single
level of abstraction (cf SLAP)
Here is an example.
public static void main(String[] args) {
showWelcomeMessage();
processProgramArgs(args);
loadDataFromStorage();
while (true) {
userCommand = getUserInput();
echoUserCommand(userCommand);
String feedback = executeCommand(userCommand);
showResultToUser(feedback);
}
}
In the main
method, replace the processProgramArgs(args)
call with the actual code of that method.
The main
method no longer has SLAP. Notice how mixing low level code with high level code reduces
readability.
Sometimes, going in the wrong direction can be a good learning experience too. In this exercise, we explore how low code qualities can go.
- Refactor the code to make the code as bad as possible.
i.e. How bad can you make it without breaking the functionality while still making it look like it was written by a programmer (but a very bad programmer :-)). - In particular, inlining methods can worsen the code quality fast.
Enhance the AddressBook to prove that you can work in a codebase of 1KLoC.
Remember to change code in small steps, update/run tests after each change, and commit after each significant change.
Some suggested enhancements:
- Make the
find
command case insensitive e.g.find john
should matchJohn
- Add a
sort
command that can list the persons in alphabetical order - Add an
edit
command that can edit properties of a specific person
- Jeffry Hartanto : Created a ToDo app that was used as the basis for this code.
- Leow Yijin : Main developer for the first version of the AddressBook-level1
- Damith C. Rajapakse : Project Advisor
- Bug reports, Suggestions : Post in our issue tracker if you noticed bugs or have suggestions on how to improve.
- Contributing : We welcome pull requests. Follow the process described here