#world #cup #live #scoreboard #score #board #following

scoreboard_world_cup

Simple score board for following the results of the currently played games in a World Cup

2 releases

0.1.1 Nov 8, 2023
0.1.0 Nov 8, 2023

#2 in #scoreboard

Download history 4/week @ 2024-02-16 13/week @ 2024-02-23 6/week @ 2024-03-01 48/week @ 2024-03-08 8/week @ 2024-03-15 16/week @ 2024-03-29

72 downloads per month

MIT license

1MB
637 lines

Scoreboard

Coding exercise

Develop a new live World Cup scorebard library that shows all the ongoing matches and their scores

Requirements

  1. Must be a library implementation
  2. Use in-memory store solution
  3. Use TDD, pay attention to OO design, Clean Code and SOLID
  4. Implement basic API:
    • Start a match. Assuming initial score "0-0", should capture two parameters: home team and away team
    • Update score. Should receive a pair of absolute scores: home team score and away team score
    • Finish match. Remove a match currently in progress from the scoreboard
    • Get a summary. Returns all the current matches ordered by total score, even total scores are ordered by most recent start

Assumptions

  1. No specific programming language is expected. For learning purposes, this project will use Rust
  2. There is no mention of thread safety. It's assumed to be a "nice to have" feature
  3. A team can be playing a single match only at a given time. For example, if there is a currently an ongoing match between Honduras and Costarica, neither of those two teams can be present in a newly created match
  4. In all the API calls, "home" team always comes before "away" team. If the order of the teams is wrong for an operation, it returns an error
  5. Getting a summary of the current results will be much more frequently used than all the other API functions combined. This will impact optimization choices

Progress

Base requirements

Requirement Status Comments
1. Library Devloped as an independant Rust library crate
2. Storage Using standard Vec vector collection. See "Possible additional features -> Optimization" below for more comments on this
3. TDD TDD followed to a degree. Most functions are so small it was possible to write the final correct version for the first test and then add the other corner cases
4. API Public ScoreBoard struct and its methods
4.1. Start ScoreBoard.start_game(home_team_name, away_team_name)
4.2. Update ScoreBoard.update_score(home_team_name, home_score, away_team_name, away_score)
4.3. Finish ScoreBoard.finish_game(home_team_name, away_team_name)
4.4. Summary ScoreBoard.get_summary()

Extra features

Features Status Comments
Team uniqueness start_game(team1, team2) rejects the request if any of the teams is already playing a match
Thread safety Rust compiler provides thread safety, unless serious hacks get involved. There is no unsafe code in this repository

Documentation

The project is documented with code annotations

Manually generated

Run this command to generate documentation and open it:

cargo doc --open

Online

The generated documentation is available on GitHub Pages under daydreamest.github.io or on crates.io

Installation and usage

Installation

  1. Install Rust work environment. Use the standard Rust installation guide with all the default options
  2. This should also install Cargo, Rust default package manager
  3. Clone this repository

Compilation

Move to the "scoreboard" directory and run:

> cargo build --release

On the first execution Cargo will download dependencies (ex. the logging crate). After that, the library will be compiled to a binary:

scoreboard/target/release/libscoreboard.rlib

Usage

As Rust source code

Copy the scoreboard.rs file to your project and include the module anywhere you need it with:

use scoreboard::*;

As compiled Rust library with rustc compiler

Copy compiled libscoreboard.rlib file to your project and add a flag to your compilation options:

rustc main.rs --extern scoreboard=libscoreboard.rlib

As cargo library

Add the following line in Cargo.toml file under [dependencies]:

scoreboard_world_cup = "0.1.1"

Testing

To run tests move to the "scoreboard" directory and run:

> cargo test

Possible additional features

API

  1. Team names are kept internally as UTF-8 strings and not verified extensively. This allows for matches like "AAAA - jskdfhgidsf", "USA - U.S.A." or any other two distinct string names. A good improvement would be to create an enum or a dictionary that keeps a list of all available names and verify against it
  2. update_score() is very unwieldy and allows to change the score arbitrarily. In footbal the score changes come in quanta (commonly known as "goals"), so there should be a method add_goal(team_name) that adds 1 to the score of the mentioned team

Optimization

  1. Time stamps are used to verify which match started first. This may be an overkill, but it's cleaner and easier than implementing internal counters, at the cost of being less efficient on the CPU
  2. Vec is used as a data container. There are others collections available, but even the Rust guide suggests sticking to the good, reliable vector. Alternatives could be considered to improve efficiency, but they would need profiling and real world usage of the library
  3. Data is sorted after each addition, score change and removal. The sorting could be moved to the summary display method, so it would "happen" only once in the code, but this has disadvantages:
    • get_summary() method would have to be mutable and change the state of the score board, which is a bad design
    • alternativlety, get_summary() could make a copy of the data an sort it locally before returning, but this adds unnecessary memory usage
    • get_summary() is expected to be called much more often than all the other API functions combined, so it has to be quick and simple. Adding sorting to it can have serious time impact for a large number of concurrent matches
    • Current implementation of sort() does extremely well with collections that are partly sorted or have stretches of sorted elements (source). As such, it should have little impact on the functions that use it now, as their changes apply to single matches and leave the rest of the collection sorted
  4. Alternatives to Vec and push() could be considered that might allow to skip sorting in some cases. A newly created match has the lowes possible total score and the freshest timestamp, so sorting on start_game() could be probably omitted, but this requires more analysis

Issues

  1. "match" is a keyword in Rust, so the word "game" is used throughout the code in the meaning of "a match between two teams"

Dependencies