- 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
- User Guide
- Developer Guide
- Learning Outcomes
- Set up a project in an IDE [
LO-IdeSetup
] - Navigate code efficiently [
LO-CodeNavigation
] - Use a debugger [
LO-Debugging
] - Automate CLI testing [
LO-AutomatedCliTesting
] - Use Collections [
LO-Collections
] - Use Enums [
LO-Enums
] - Use Varargs [
LO-Varargs
] - Follow a coding standard [
LO-CodingStandard
] - Apply coding best practices [
LO-CodingBestPractices
] - Refactor code [
LO-Refactor
] - Abstract methods well [
LO-MethodAbstraction
] - Follow SLAP [
LO-SLAP
] - Work in a 1kLoC code base [
LO-1KLoC
]
- Set up a project in an IDE [
- Contributors
- Contact Us
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
java seedu.addressbook.AddressBook myFolder/mydata.txt
The file path must contain a valid file name and a valid parent directory.
File name is valid if it has an extension and no reserved characters (OS-dependent).
Parent directory is valid if it exists.
Note for non-Windows users: if the file already exists, it must be a 'regular' file.
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
AddressBook saves data in a plain text file, one line for each person, in the format NAME p/PHONE e/EMAIL
.
Here is an example:
John Doe p/98765432 e/[email protected]
Jane Doe p/12346758 e/[email protected]
All person data are loaded to memory at start up and written to the file after any command that mutates data.
In-memory data are held in a ArrayList<String[]>
where each String[]
object represents a person.
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 theactual.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.
Learning Outcomes 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: Click on the
clone or download
link above and either,- download as a zip file and unzip content.
- clone the repo (if you know how to use Git) to your Computer.
- 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 long, 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 modifications 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 and focused (does only one thing and does it well).
Case 1. Consider the following three lines in the main
method.
String userCommand = getUserInput();
echoUserCommand(userCommand);
String feedback = executeCommand(userCommand);
If we include the code of echoUserCommand(String)
method inside the getUserInput()
(resulting in the code given below), the behavior of AddressBook remains as before.
However, that is a not a good approach because now the getUserInput()
is doing two distinct things.
A well-abstracted method should do only one thing.
String userCommand = getUserInput(); //also echos the command back to the user
String feedback = executeCommand(userCommand);
Case 2. Consider the method removePrefixSign(String s, String sign)
.
While it is short, there are some problems with how it has been abstracted.
-
It contains the term
sign
which is not a term used by the AddressBook vocabulary.A method adds a new term to the vocabulary used to express the solution. Therefore, it is not good when a method name contains terms that are not strictly necessary to express the solution (e.g. there is another term already used to express the same thing) or not in tune with the solution (e.g. it does not go well with the other terms already used).
-
Its implementation is not doing exactly what is advertised by the method name and the header comment. For example, the code does not remove only prefixes; it removes
sign
from anywhere in thes
. -
The method can be more general and more independent from the rest of the code. For example, the method below can do the same job, but is more general (works for any string, not just parameters) and is more independent from the rest of the code (not specific to AddressBook)
/** * Removes prefix from the given fullString if prefix occurs at the start of the string. */ private static String removePrefix(String fullString, String prefix) { ... }
If needed, a more AddressBook-specific method that works on parameter strings only can be defined. In that case, that method can make use of the more general method suggested above.
Refactor the method removePrefixSign
as suggested above.
Notice how most of the methods in AddressBook
are 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 - Add an additional field (like date of birth) to the person record
- 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