commit 1dc7909a90d3464ebfb4956da94684680639828e Author: LinlyBoi Date: Sat Mar 4 12:06:25 2023 +0200 IT AINT BROKEN NOW (jar still broken) diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..be377dd --- /dev/null +++ b/.classpath @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5763216 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +build/ +.gradle/ +.idea/ +*.class +jacoco/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..27344b5 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,14 @@ +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.3.0 + hooks: + - id: end-of-file-fixer + - id: trailing-whitespace + - repo: local + hooks: + - id: gradle-test + name: test with this project's gradlew + entry: ./gradlew test + language: system + types: [java] + pass_filenames: false diff --git a/.project b/.project new file mode 100644 index 0000000..0f9150d --- /dev/null +++ b/.project @@ -0,0 +1,34 @@ + + + TrafficLights + Project Traffic-light created by Buildship. + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.buildship.core.gradleprojectbuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.buildship.core.gradleprojectnature + + + + 0 + + 30 + + org.eclipse.core.resources.regexFilterMatcher + node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__ + + + + diff --git a/.settings/org.eclipse.buildship.core.prefs b/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 0000000..f11e4b7 --- /dev/null +++ b/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,13 @@ +arguments=--init-script /home/libkyy/.cache/jdtls/config/org.eclipse.osgi/51/0/.cp/gradle/init/init.gradle +auto.sync=false +build.scans.enabled=false +connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) +connection.project.dir= +eclipse.preferences.version=1 +gradle.user.home= +java.home=/usr/lib64/jvm/java-17-openjdk-17 +jvm.arguments= +offline.mode=false +override.workspace.settings=true +show.console.view=true +show.executions.view=true diff --git a/README.md b/README.md new file mode 100644 index 0000000..8df0e1c --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# template + +problem_statement + +## Prerequisite + +- JDK version 18.0.2 + +## How to build + +TBD + +## How to use + +TBD + +## How to test + +TBD diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..ca8b694 --- /dev/null +++ b/build.gradle @@ -0,0 +1,64 @@ +plugins { + id 'java' + id 'jacoco' + id 'org.barfuin.gradle.jacocolog' version '2.0.0' + id 'com.diffplug.gradle.spotless' version '4.5.1' +} + +group 'libkco' +version '4.2-BROKEN' + +repositories { + mavenCentral() +} + +dependencies { + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' + implementation 'com.google.googlejavaformat:google-java-format:1.9' +} + +jacoco { + toolVersion = "0.8.8" + reportsDirectory = file('jacoco') +} + +test { + useJUnitPlatform() + dependsOn spotlessApply + finalizedBy jacocoTestReport +} + +jar { + dependsOn spotlessApply +} + +jacocoTestReport { + dependsOn test + afterEvaluate { + classDirectories.setFrom(files(classDirectories.files.collect { + fileTree(dir: it, exclude: [ + "**/Main*", + ]) + })) + } +} + +jar { + manifest { + attributes "Main-Class": "org.bootcamp.TrafficLights.Traffic" + } + + from { + configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } + } +} + +spotless { + java { + googleJavaFormat() + trimTrailingWhitespace() + indentWithSpaces(2) + endWithNewline() + } +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..4257286 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,5 @@ +org.gradle.jvmargs=--add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \ + --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \ + --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \ + --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \ + --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..41d9927 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..41dfb87 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..1b6c787 --- /dev/null +++ b/gradlew @@ -0,0 +1,234 @@ +#!/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/master/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 + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +APP_BASE_NAME=${0##*/} + +# 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"' + +# 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 + which java >/dev/null 2>&1 || 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 + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + 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 + +# 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 \ + "$@" + +# 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" "$@" diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..2b92096 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'TrafficLights' diff --git a/src/main/java/org/bootcamp/TrafficLights/Greenlight.java b/src/main/java/org/bootcamp/TrafficLights/Greenlight.java new file mode 100644 index 0000000..b6dff6f --- /dev/null +++ b/src/main/java/org/bootcamp/TrafficLights/Greenlight.java @@ -0,0 +1,10 @@ +package org.bootcamp.TrafficLights; + +import java.awt.Color; + +/** greenlight */ +public class Greenlight extends Light { + Greenlight() { + super(5, Color.GREEN); + } +} diff --git a/src/main/java/org/bootcamp/TrafficLights/Light.java b/src/main/java/org/bootcamp/TrafficLights/Light.java new file mode 100644 index 0000000..e4688ec --- /dev/null +++ b/src/main/java/org/bootcamp/TrafficLights/Light.java @@ -0,0 +1,83 @@ +/** light */ +package org.bootcamp.TrafficLights; + +import java.awt.BasicStroke; +import java.awt.Color; +import java.awt.Dimension; +import java.awt.Graphics; +import java.awt.Graphics2D; +import java.util.concurrent.TimeUnit; +import javax.swing.BorderFactory; +import javax.swing.JPanel; + +public class Light extends JPanel implements Runnable { + + int radius; + int top; + int bottom; + int timeout; + int length = 100; + Color color; + + Light() { + // this.setPreferredSize(new Dimension(250, 250)); + this.setPreferredSize(new Dimension(length, length)); + top = (length - radius) / 2; + bottom = (length - radius) / 2; + radius = length / 2; + setVisible(true); + timeout = 5; + } + + Light(int timeout, Color color) { + this(); + this.timeout = timeout; + this.color = color; + this.setBorder(BorderFactory.createLineBorder(Color.BLACK, 10)); + setVisible(false); + setBackground(Color.BLACK); + } + + public void run() { + setVisible(true); + + try { + TimeUnit.SECONDS.sleep(timeout); + } catch (InterruptedException e) { + e.printStackTrace(); + } + setVisible(false); + // flicker(); + } + + public void flicker() { + for (int i = 0; i < 4; i++) { + + try { + setVisible(false); + TimeUnit.MILLISECONDS.sleep(500); + setVisible(true); + } catch (InterruptedException e) { + e.printStackTrace(); + } + } + setVisible(false); + } + + @Override + public void paint(Graphics g) { + // GOTTA DO THIS + super.paint(g); + setOpaque(true); + setBorder(BorderFactory.createLineBorder(Color.WHITE)); + } + + @Override + public void paintComponent(Graphics g) { + super.paintComponent(g); + Graphics2D g2D = (Graphics2D) g; + g2D.setPaint(color); + g2D.setStroke(new BasicStroke(5)); + g2D.fillOval(top, bottom, radius, radius); + } +} diff --git a/src/main/java/org/bootcamp/TrafficLights/Redlight.java b/src/main/java/org/bootcamp/TrafficLights/Redlight.java new file mode 100644 index 0000000..4bb4224 --- /dev/null +++ b/src/main/java/org/bootcamp/TrafficLights/Redlight.java @@ -0,0 +1,9 @@ +package org.bootcamp.TrafficLights; + +import java.awt.Color; + +public class Redlight extends Light { + Redlight() { + super(5, Color.RED); + } +} diff --git a/src/main/java/org/bootcamp/TrafficLights/Sign.java b/src/main/java/org/bootcamp/TrafficLights/Sign.java new file mode 100644 index 0000000..ce612b5 --- /dev/null +++ b/src/main/java/org/bootcamp/TrafficLights/Sign.java @@ -0,0 +1,21 @@ +package org.bootcamp.TrafficLights; + +import java.awt.Color; +import java.awt.Dimension; +import java.awt.GridLayout; +import javax.swing.JFrame; + +/** Sign */ +public class Sign extends JFrame { + Light TestLight; + + Sign() { + + this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); + this.setLayout(new GridLayout(4, 1)); + this.setPreferredSize(new Dimension(300, 300)); + this.setLocationRelativeTo(null); + this.setVisible(true); + this.setBackground(Color.BLACK); + } +} diff --git a/src/main/java/org/bootcamp/TrafficLights/Traffic.java b/src/main/java/org/bootcamp/TrafficLights/Traffic.java new file mode 100644 index 0000000..6e34e9b --- /dev/null +++ b/src/main/java/org/bootcamp/TrafficLights/Traffic.java @@ -0,0 +1,42 @@ +package org.bootcamp.TrafficLights; + +import javax.swing.JButton; + +public class Traffic { + + public static boolean pressed = false; + + public static void main(String[] args) { + // Lights + Redlight redlight = new Redlight(); + Yellowlight yellowlight = new Yellowlight(); + Greenlight greenlight = new Greenlight(); + + // Container for the lights and button to stop + Sign Traffic_Sign = new Sign(); + Traffic_Sign.add(redlight, 0); + Traffic_Sign.add(yellowlight, 1); + Traffic_Sign.add(greenlight, 2); + + // Threads + Thread red_thread = new Thread(redlight); + Thread yellow_thread = new Thread(yellowlight); + Thread green_thread = new Thread(greenlight); + // Button + JButton StopButton = new JButton("STOP"); + StopButton.addActionListener( + e -> { + pressed = true; + }); + Traffic_Sign.add(StopButton, 3); + + while (true) { + red_thread.run(); + if (pressed) break; + yellow_thread.run(); + if (pressed) break; + green_thread.run(); + if (pressed) break; + } + } +} diff --git a/src/main/java/org/bootcamp/TrafficLights/Yellowlight.java b/src/main/java/org/bootcamp/TrafficLights/Yellowlight.java new file mode 100644 index 0000000..12d8879 --- /dev/null +++ b/src/main/java/org/bootcamp/TrafficLights/Yellowlight.java @@ -0,0 +1,10 @@ +package org.bootcamp.TrafficLights; + +import java.awt.Color; + +public class Yellowlight extends Light { + + Yellowlight() { + super(5, Color.YELLOW); + } +} diff --git a/src/test/java/org/bootcamp/traffic-light/Traffic-lightTest.java b/src/test/java/org/bootcamp/traffic-light/Traffic-lightTest.java new file mode 100644 index 0000000..2e035a8 --- /dev/null +++ b/src/test/java/org/bootcamp/traffic-light/Traffic-lightTest.java @@ -0,0 +1,9 @@ +package org.bootcamp.template; + +import org.junit.jupiter.api.Test; + +class TemplateTest { + + @Test + void firstCase() {} +} diff --git a/test.sh b/test.sh new file mode 100755 index 0000000..93d0004 --- /dev/null +++ b/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +./gradlew build +java -jar build/libs/TrafficLights-4.2-BROKEN.jar