tp

RecipEditor

Developer Guide

The aim of this guide is to help readers understand how the system and components of RecipEditor is designed, implemented and tested. This developer guide also serves to help developers to understand the architecture of RecipEditor and some design considerations. Click to view the latest release of RecipEditor.

Content page

Acknowledgements

External Library

Design

Architecture

Storage Class Diagram

Components (as packages)

main or RecipEditor (in some part of the DG) is the main running program, acting as the intermediary between the Ui and the Parser

General interaction between the components

Storage Class Diagram

⏫ Back to content page

Ui Component

The UI component is responsible for all user interfaces of the application.

Ui Class Diagram

Class: Ui.java,

Class: GuiWorkFlow.java, Editor.java

⏫ Back to content page

GUI Component

GUI Component

The GUI component consists of 2 main classes: Editor and GuiWorkFlow

⏫ Back to content page

Recipe Component

The recipe module encapsulates the array, recipe and ingredient objects.

Recipe Component

API: Ingredient.java

Stores the name, amount and unit of recipes. Smallest class in the module.

API: Recipe.java

Recipe calls Ingredient to add, edit or delete ingredients. It contains methods to parse a recipe, convert a recipe into printable or saveable format and perform operations on ingredient and step ArrayList objects which are instantiated whenever a Recipe object is created.

API: RecipeList.java

RecipeList calls Recipe to add, edit or delete recipes. It consists of two ArrayList objects (recipes to store recipes and recipeTitles to store titles). It contains methods to count the number of existing recipes, search for recipes based on the given parameter and save edited recipe into Storage.

⏫ Back to content page

Storage Component

Storage Class Diagram

The storage component allows data to be read from and saved to a storage file.

Class: Storage.java

  1. Storage calls Recipe when saving data from RecipeList to an external storage file.
  2. Storage calls RecipeList when loading recipe data from external storage file to.
  3. Storage calls ParserFileException when there is an error in parsing recipe file content.
  4. Storage uses a method in RecipeFileParser to parse the content in the recipe file content.
  5. Storage uses a method in TitleFileParser to parse AllRecipes.txt.

⏫ Back to content page

Parser Component

Parser Class Diagram

Class: Parser.java

Class: TitleFileParser.java

Class: RecipeFileParser.java

⏫ Back to content page

Command Component

Command Class Diagram

Exception Component

⏫ Back to content page

Implementation

Data on Startup and Exit

Startup

Startup storage

When the program starts, it will

Exit

Exit storage

Before exiting, the program will

This is to prevent manual tampering of the data that might affect the data in the next run

⏫ Back to content page

Parsing of Commands

Parser Diagram

Add Command

Edit Command

List Command

Exit Command

View Command

Delete Command

Find Command

Help Command

Invalid Command

⏫ Back to content page

Add Recipe

Add Editor Diagram

⏫ Back to content page

GUI Workflow

GUI Sequence Diagram

  1. GUI is only triggered by Add and Edit command

    • Add command will pass the path of the Template.txt file
    • Edit command will pass the path of the recipe the user wants to edit
  2. From the path, GuiWorkFlow class can detect whether it is Mode.ADD or Mode.EDIT

    • Mode.ADD throws an exception when the recipe title already exist in the RecipeList.recipes
    • Mode.EDIT overwrite the recipe title that already exist RecipeList.recipes
  3. There are an initial entry to Editor and a loop for subsequent entry to Editor if the user choose to fix the content of the recipe
  4. When exiting the Editor, the user can choose to SAVE or EXIT

    • SAVE will return saveToTemp = True and save the content in the Editor to TemporaryFile.txt
    • EXIT will return saveToTemp = False
    • if saveToTemp = False, program flow will exit the loop
    • if saveToTemp = False, program flow will exit the loop
  5. The loop is a PARSE and RE-ENTRY

⏫ Back to content page

Parse Text to Recipe

  1. Go through the text line by line
  2. Detect whether the line is a Heading (denoted by #) and assign the lineType for that line
    • if lineType is a heading, assign stage appropriately, and increment stageCounter
    • else, the lineType is NORMAL
  3. Parsing of line with NORMAL type is dependent on the stage
    • If the line is blank, it does not affect the parsing
  4. Different stage
    • For TITLE:
      • Perform validity check as the recipe title is a text file
        • Alphanumerical
        • less than 255 character
    • For DESCRIPTION:
      • Allow all characters, including blank lines
      • Blank lines will be recorded to give the user some freedom in describing the recipe
    • For INGREDIENT:
      • Check for the appropriate format INDEX. INGREDIENT_NAME / AMOUNT / UNIT
        • Positive integer index
        • Positive double amount
      • Check for the correct index increment based on ingredientIndex
    • For STEP
      • Check for the appropriate format INDEX. STEP_DESCRIPTION
        • Positive integer index
      • Check for the correct index increment based on stepIndex
  5. Check if the correct number of Heading occurrence is correct
  6. Because of the stage, Headings are parseable in different order (but highly discouraged)
  7. Check if the recipe has empty fields
    • Because the blank lines are disregarded but considered valid

⏫ Back to content page

Edit an Existing Recipe

GUI

CLI

Edit Component Diagram

Parser
EditModeCommand
EditCommand
Sequence Diagram

Edit Sequence Diagram

The user first call the edit command from the Main class which will then be passed to the Parser class. It decides whether the GUI or CLI should be called through the number of arguments passed by the user.

⏫ Back to content page

Find Recipe

Find Sequence Diagram

⏫ Back to content page

View Recipe

Find Sequence Diagram

⏫ Back to content page

Delete Recipe

Find Sequence Diagram

⏫ Back to content page

Other

⏫ Back to content page

Product scope

Target user profile

Avid cook who wants to organize their recipe list for ease of reference and search. The user is also a fast typer who can quickly type out all the part of the recipe

Value proposition

Helps people who cook often to keep track of the many recipes that they have so that they don’t have to go about memorising all the recipe details. RecipEditor helps to manage all these recipes where users can add, edit and delete recipes of their choice. Furthermore, they can find relevant recipes quickly using RecipEditor. For example, if the user wants to make a dish with tomato, he/she can use RecipEditor to find recipes that uses tomato as ingredient quickly.

User Stories

Version As a … I want to … So that I can …
v1.0 new user see usage instructions refer to them when I forget how to use the application
v1.0 user add new recipes store recipes that I need without having to remember everything
v1.0 user delete existing recipes remove recipes that I no longer use so that the list will not be cluttered
v1.0 user show all recipes in my list see the overview of what recipes I have added beforehand
v1.0 user exit the application close the entire application
v2.0 user edit a previously saved recipe update the recipe without having go through the trouble to delete and add the updated version of the recipe
v2.0 user find recipe by recipe name or ingredient name locate a recipe without having to go through the entire list
v2.0 user show detailed recipe that I specified view detailed recipe (name, description, ingredients and steps) of the one that I am interested
v2.0 new user view the list of available commands use the appropriate command according to my needs

⏫ Back to content page

Non-functional Requirements

  1. Should work on any OS as long as it has Java 11 or above installed on their PC.
  2. Should be able to hold up to 1000 recipes without a slowdown of performance.
  3. Any user who can type >55 words per minute would be able to accomplish these tasks faster than if they used a mouse to navigate.

Glossary

⏫ Back to content page

Instructions for manual testing

Setup

  1. Follow the instruction in the User Guide to setup the program
  2. For sample recipes, download and unzip ManualTestData.rar from Release. There are
    • Recipes folder
    • AllRecipes.txt file
  3. Copy the folder and file in 2. to RecipeData folder, overwriting existing files
  4. This gives you 3 sample recipes so you don’t have to manually add recipes all the time
  5. Run the program, it should load and recognize the 3 recipes

Parsing from Text to Recipe using Add or Edit GUI

General errors

Title errors

Description errors

Ingredients errors

Steps errors

⏫ Back to content page

Storage: Tampering the data

During the running of the program

Before the running of the program

⏫ Back to content page