GithubHelp home page GithubHelp logo

cs-665-assignment-4's Introduction

Fully Automatic Beverage Vending Machine

Compile and Execute the code

CS-665 Software Design & Patterns
Name Yulong Liu
Date 03/16/2024
Course Spring
Assignment # 4

Assignment Overview

Develop a software system that facilitates the integration of the old system's interface with the new system's interface, which are USB interface and Https interface.

GitHub Repository Link:

https://github.com/nioliu/cs-665-assignment-4

Implementation Description

  • Adapter Pattern: Use adapter mode to integrate legacy USB systems with new HTTPS systems without modifying existing interfaces. This pattern enhances flexibility because if a new system comes in the future, a new adapter can be created to convert between the common interface and the new system without changing the existing client code or the system itself.

  • Common Interface Use: Implementing a common interface for adapters enables reuse of the adapter with different systems following the same interface, thus avoiding code duplication.

  • The adapter solution maintains a balance between flexibility, simplicity, and avoidance of duplicated code while facilitating future expansions or modifications. It is easy to understand, maintain.

UML

classDiagram

class CustomerData_HTTPS{
 <<interface>>
 ~printCustomer(int customerId)
 ~getCustomer_HTTPS(int customerId)
}

class CustomerData_USB{
 <<interface>>
 ~printCustomer(int customerId)
 ~getCustomer_USB(int customerId)
}

class CustomerData_HTTPSImpl{
 ~printCustomer(int customerId)
 ~getCustomer_HTTPS(int customerId)
}

class CustomerData_USBImpl{
 ~printCustomer (int customerId)
 ~getCustomer_USB (int customerId)
}

class CustomerDataAdapter{
-CustomerData_USB:usbSystem
+CustomerDataAdapter(CustomerData_USB usbSystem)
+printCustomer(int customerId)
+getCustomer_HTTPS(int customerId)
}

CustomerDataAdapter --|> CustomerData_HTTPS
CustomerDataAdapter ..> CustomerData_USB
CustomerData_USBImpl --|> CustomerData_USB
CustomerData_HTTPSImpl --|> CustomerData_HTTPS

Loading

How to use?

public void testBasic() {
    CustomerData_HTTPSImpl customerDataHttps = new CustomerData_HTTPSImpl();
    customerDataHttps.getCustomer_HTTPS(111);
    customerDataHttps.printCustomer(222);

    CustomerData_USBImpl customerDataUsb = new CustomerData_USBImpl();
    // use adapter to make usb system compatible with the new http system
    CustomerData_HTTPS customerDataAdapter = new CustomerDataAdapter(customerDataUsb);
    customerDataAdapter.getCustomer_HTTPS(1233);
    customerDataAdapter.printCustomer(1233);
}

Maven Commands

We'll use Apache Maven to compile and run this project. You'll need to install Apache Maven (https://maven.apache.org/) on your system.

Apache Maven is a build automation tool and a project management tool for Java-based projects. Maven provides a standardized way to build, package, and deploy Java applications.

Maven uses a Project Object Model (POM) file to manage the build process and its dependencies. The POM file contains information about the project, such as its dependencies, the build configuration, and the plugins used for building and packaging the project.

Maven provides a centralized repository for storing and accessing dependencies, which makes it easier to manage the dependencies of a project. It also provides a standardized way to build and deploy projects, which helps to ensure that builds are consistent and repeatable.

Maven also integrates with other development tools, such as IDEs and continuous integration systems, making it easier to use as part of a development workflow.

Maven provides a large number of plugins for various tasks, such as compiling code, running tests, generating reports, and creating JAR files. This makes it a versatile tool that can be used for many different types of Java projects.

Compile

Type on the command line:

mvn clean compile

JUnit Tests

JUnit is a popular testing framework for Java. JUnit tests are automated tests that are written to verify that the behavior of a piece of code is as expected.

In JUnit, tests are written as methods within a test class. Each test method tests a specific aspect of the code and is annotated with the @Test annotation. JUnit provides a range of assertions that can be used to verify the behavior of the code being tested.

JUnit tests are executed automatically and the results of the tests are reported. This allows developers to quickly and easily check if their code is working as expected, and make any necessary changes to fix any issues that are found.

The use of JUnit tests is an important part of Test-Driven Development (TDD), where tests are written before the code they are testing is written. This helps to ensure that the code is written in a way that is easily testable and that all required functionality is covered by tests.

JUnit tests can be run as part of a continuous integration pipeline, where tests are automatically run every time changes are made to the code. This helps to catch any issues as soon as they are introduced, reducing the need for manual testing and making it easier to ensure that the code is always in a releasable state.

To run, use the following command:

mvn clean test

Spotbugs

SpotBugs is a static code analysis tool for Java that detects potential bugs in your code. It is an open-source tool that can be used as a standalone application or integrated into development tools such as Eclipse, IntelliJ, and Gradle.

SpotBugs performs an analysis of the bytecode generated from your Java source code and reports on any potential problems or issues that it finds. This includes things like null pointer exceptions, resource leaks, misused collections, and other common bugs.

The tool uses data flow analysis to examine the behavior of the code and detect issues that might not be immediately obvious from just reading the source code. SpotBugs is able to identify a wide range of issues and can be customized to meet the needs of your specific project.

Using SpotBugs can help to improve the quality and reliability of your code by catching potential bugs early in the development process. This can save time and effort in the long run by reducing the need for debugging and fixing issues later in the development cycle. SpotBugs can also help to ensure that your code is secure by identifying potential security vulnerabilities.

Use the following command:

mvn spotbugs:gui 

For more info see https://spotbugs.readthedocs.io/en/latest/maven.html

SpotBugs https://spotbugs.github.io/ is the spiritual successor of FindBugs.

Checkstyle

Checkstyle is a development tool for checking Java source code against a set of coding standards. It is an open-source tool that can be integrated into various integrated development environments (IDEs), such as Eclipse and IntelliJ, as well as build tools like Maven and Gradle.

Checkstyle performs static code analysis, which means it examines the source code without executing it, and reports on any issues or violations of the coding standards defined in its configuration. This includes issues like code style, code indentation, naming conventions, code structure, and many others.

By using Checkstyle, developers can ensure that their code adheres to a consistent style and follows best practices, making it easier for other developers to read and maintain. It can also help to identify potential issues before the code is actually run, reducing the risk of runtime errors or unexpected behavior.

Checkstyle is highly configurable and can be customized to fit the needs of your team or organization. It supports a wide range of coding standards and can be integrated with other tools, such as code coverage and automated testing tools, to create a comprehensive and automated software development process.

The following command will generate a report in HTML format that you can open in a web browser.

mvn checkstyle:checkstyle

The HTML page will be found at the following location: target/site/checkstyle.html

cs-665-assignment-4's People

Contributors

nioliu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.