Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Kok Bo Chang] iP #635

Open
wants to merge 91 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 55 commits
Commits
Show all changes
91 commits
Select commit Hold shift + click to select a range
68c58c1
Add Gradle support
May 24, 2020
03523ec
Bump gradle and lib version
Eclipse-Dominator Aug 5, 2023
81a9c53
build.gradle: Prevent generating a second JAR file
aureliony Jul 16, 2024
7e01237
README: Update chatbot name to Lawrence
C5hives Aug 23, 2024
73fe471
Lawrence.java: Implement skeletal chatbot version
C5hives Aug 23, 2024
8feb9bd
Lawrence.java: Add echo feature to chatbot
C5hives Aug 23, 2024
e296f23
Lawrence.java: Add ability to store & display tasks
C5hives Aug 23, 2024
83bec1a
Task.java: Add new class that allows task tracking
C5hives Aug 23, 2024
003c59f
Tasks.java: Add collection to track multiple tasks
C5hives Aug 23, 2024
d4ccf38
Lawrence.java: Modify class to use Tasks class for tracking
C5hives Aug 23, 2024
a5f69a9
Add different task types to be tracked
C5hives Aug 23, 2024
dce9306
Add basic automated text UI testing
C5hives Aug 23, 2024
6e74ca5
Add error messages for user
C5hives Aug 23, 2024
8d61db8
Add ability to delete existing tasks
C5hives Aug 23, 2024
096fb10
Add enums to handle different user commands
C5hives Aug 23, 2024
8b83b68
Add ability to save and read tasks from hard disk
C5hives Sep 3, 2024
f612386
Add overloaded constructors to Task implementation
C5hives Sep 3, 2024
9c8d9cb
Add statement to close scanner after use
C5hives Sep 3, 2024
d455ca6
Separate logic for parsing file and user inputs
C5hives Sep 3, 2024
550c9d7
Add factory class to handle parse method
C5hives Sep 3, 2024
9c20de3
Add option to skip faulty lines when reading file
C5hives Sep 3, 2024
617c7cf
Fix bug from using wrong delimiter to split string
C5hives Sep 3, 2024
3d49f2d
Integrate file saving with bot runtime
C5hives Sep 3, 2024
6e7edcb
Merge branch 'branch-Level-7'
C5hives Sep 3, 2024
c534c0b
Convert stored dates and time in LocalDateTime objects
C5hives Sep 3, 2024
d8af860
Merge branch 'branch-Level-8'
C5hives Sep 3, 2024
8c3a80a
Refactor existing classes to be less coupled
C5hives Sep 3, 2024
161b6d9
Refactor command classes
C5hives Sep 3, 2024
16c1db0
Create command factory to handle command creation
C5hives Sep 4, 2024
d103678
Merge branch 'oop-refactor'
C5hives Sep 4, 2024
316ecc4
Refactor classes into packages
C5hives Sep 4, 2024
aae8857
Rename factory classes into parsers
C5hives Sep 4, 2024
62dd75f
Merge branch 'organise-packages'
C5hives Sep 4, 2024
f9960a6
Merge branch 'add-gradle-support'
C5hives Sep 4, 2024
4b97380
Add gradle support into project
C5hives Sep 4, 2024
fa93129
Add JUnit tests for CommandParser and Deadline
C5hives Sep 4, 2024
45de8a5
Modify build.gradle to generate jar file
C5hives Sep 4, 2024
a2c24f7
Add javadoc comments for Lawrence.java
C5hives Sep 4, 2024
46356d4
Add javadoc for Command.java
C5hives Sep 4, 2024
c5e9f74
Add javadoc for AddTaskCommand.java
C5hives Sep 4, 2024
09c16b1
Add javadoc to CommandType.java
C5hives Sep 4, 2024
0f1242d
Add javadoc for CompleteTaskCommand.java
C5hives Sep 4, 2024
12b18f7
Add javadoc for DeleteTaskCommand.java
C5hives Sep 4, 2024
1e78e4b
Add javadoc for DisplayTasksCommand.java
C5hives Sep 4, 2024
2805de6
Add javadoc to ExitSessionCommand.java
C5hives Sep 4, 2024
0093c6e
Add javadocs for UncompleteTaskCommand.java
C5hives Sep 4, 2024
aae3bdf
Add javadoc for TaskFileManager.java
C5hives Sep 4, 2024
1f0109e
Add javadocs for CommandParser.java
C5hives Sep 4, 2024
9f07503
Add javadocs for classes in the parser package
C5hives Sep 4, 2024
395c3cf
Add javadocs for classes in the task package
C5hives Sep 4, 2024
487dbcd
Add find functionality to list of valid commands
C5hives Sep 4, 2024
8839695
Refactor manager and ui to be mutable
C5hives Sep 4, 2024
916d097
Refactor to meet coding standard
C5hives Sep 4, 2024
213db3b
Merge branch 'branch-Level-9'
C5hives Sep 4, 2024
c66443a
Merge branch 'branch-A-CodingStandard'
C5hives Sep 4, 2024
cbb6582
Refactor to adhere to coding standard
C5hives Sep 7, 2024
6aec2d3
Refactor to adhere to checkstyle guidelines
C5hives Sep 7, 2024
1054af9
Merge branch 'A-CheckStyle'
C5hives Sep 7, 2024
b2e0603
Add javaFX UI to replace console
C5hives Sep 10, 2024
5b0c22e
Add javadocs and ensure code follows checkstyle
C5hives Sep 10, 2024
fcec4f9
Merge branch 'add-gui'
C5hives Sep 10, 2024
7e00c82
Refactor manager and ui to be final
C5hives Sep 11, 2024
317727a
Merge branch 'branch-Level-10'
C5hives Sep 11, 2024
25e6700
Modify javadoc for TaskList::findTasks method
C5hives Sep 15, 2024
04a939e
Add assertions at certain points in program
C5hives Sep 15, 2024
262a452
Change behaviour of fromString method
C5hives Sep 15, 2024
abdb75b
Refactor bot's return values after commands
C5hives Sep 15, 2024
6a16fe5
Refactor comments to use consistent capitalisation
C5hives Sep 15, 2024
50849ba
Merge pull request #2 from C5hives/A-Streams
C5hives Sep 15, 2024
a0f9b78
Revert "Merge pull request #2 from C5hives/A-Streams"
C5hives Sep 15, 2024
d27789e
Rephrase javadocs for TaskList::findTasks
C5hives Sep 15, 2024
d3752c4
Merge branch 'master' into branch-A-Streams
C5hives Sep 15, 2024
6093cde
Merge pull request #3 from C5hives/branch-A-Streams
C5hives Sep 15, 2024
c67b5ca
Merge branch 'master' into branch-A-Assertions
C5hives Sep 15, 2024
3af0d19
Merge branch 'master' into branch-A-CodeQuality
C5hives Sep 15, 2024
adb6db1
Merge pull request #4 from C5hives/branch-A-Assertions
C5hives Sep 15, 2024
95913dd
Merge branch 'master' into branch-A-CodeQuality
C5hives Sep 15, 2024
476b5b3
Merge pull request #5 from C5hives/branch-A-CodeQuality
C5hives Sep 15, 2024
955bc7a
Add github actions for continuous integration
C5hives Sep 15, 2024
c338338
Update workflow.yml for CI
C5hives Sep 15, 2024
f66473e
Change command type parsing to be flexible
C5hives Sep 18, 2024
79d4ec3
Update test case for CommandParser
C5hives Sep 18, 2024
0f27ba5
Merge branch 'branch-BCD-Extension'
C5hives Sep 18, 2024
d31873c
Add window name for chatbot UI
C5hives Sep 18, 2024
d900777
Add welcome message on chatbot startup
C5hives Sep 18, 2024
ea1abaa
Add screenshot of ui
C5hives Sep 18, 2024
71d005b
Update README
C5hives Sep 18, 2024
f7865e6
Add config file for github pages
C5hives Sep 18, 2024
6df19ef
Add more examples to README
C5hives Sep 18, 2024
5c853f4
Rename Lawrence instance variable
C5hives Sep 18, 2024
6a6fd19
Rename boolean variables in TaskFileManager
C5hives Sep 21, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ bin/

/text-ui-test/ACTUAL.TXT
text-ui-test/EXPECTED-UNIX.TXT
/data/
40 changes: 40 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}

repositories {
mavenCentral()
}

dependencies {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.10.0'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.10.0'
}

test {
useJUnitPlatform()

testLogging {
events "passed", "skipped", "failed"

showExceptions true
exceptionFormat "full"
showCauses true
showStackTraces true
showStandardStreams = false
}
}

application {
mainClass.set("lawrence.app.Lawrence")
}

shadowJar {
archiveFileName = "lawrence.jar"
}

run{
standardInput = System.in
}
4 changes: 1 addition & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Duke User Guide

// Update the title above to match the actual product name
# Lawrence User Guide

// Product screenshot goes here

Expand Down
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 7 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
248 changes: 248 additions & 0 deletions gradlew
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
#!/bin/sh

#
# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

##############################################################################
#
# Gradle start up script for POSIX generated by Gradle.
#
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################

# Attempt to set APP_HOME

# Resolve links: $0 may be a link
app_path=$0

# Need this for daisy-chained symlinks.
while
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
[ -h "$app_path" ]
do
ls=$( ls -ld "$app_path" )
link=${ls#*' -> '}
case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done

# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum

warn () {
echo "$*"
} >&2

die () {
echo
echo "$*"
echo
exit 1
} >&2

# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "$( uname )" in #(
CYGWIN* ) cygwin=true ;; #(
Darwin* ) darwin=true ;; #(
MSYS* | MINGW* ) msys=true ;; #(
NONSTOP* ) nonstop=true ;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar


# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD=$JAVA_HOME/jre/sh/java
else
JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD=java
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
fi

# Collect all arguments for the java command, stacking in reverse order:
# * args from the command line
# * the main class name
# * -classpath
# * -D...appname settings
# * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.

# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )

JAVACMD=$( cygpath --unix "$JAVACMD" )

# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi


# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
org.gradle.wrapper.GradleWrapperMain \
"$@"

# Stop when "xargs" is not available.
if ! command -v xargs >/dev/null 2>&1
then
die "xargs is not available"
fi

# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#

eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'

exec "$JAVACMD" "$@"
Loading