Categorygithub.com/huyrun/Project1
repositorypackage
0.0.0-20230205073446-846dc13a8d3b
Repository: https://github.com/huyrun/project1.git
Documentation: pkg.go.dev

# README

Project 1: Process Scheduler

Description

For this project we'll be building a simple process scheduler that takes in a file containing example processes, and outputs a schedule based on the three different schedule types:

  • First Come First Serve (FCFS) [already done]
  • Shortest Job First (SJF)
  • SJF Priority
  • Round-robin (RR)
  • Assume that all processes are CPU bound (they do not block for I/O).

The scheduler will be written in Go (a skeleton main.go is included in the project repo).

Steps

  1. Clone down the example input/output and skeleton main.go:

    1. git clone https://github.com/jh125486/CSCE4600
  2. Copy the Project1 files to your own git project.

  3. The processes for your scheduling algorithms is read from a file as the first argument to your program.

    1. Every line in this file includes a record with comma separated fields.

      1. The format for this record is the following: <ProcessID>,<Arrival Time>,<Burst Duration>,<Priority>.
    2. Not all fields are used by all scheduling algorithms. For example, for FCFS you only need the process IDs, arrival times, and burst durations.

    3. All processes in your input files will be provided a unique process ID. The arrival times and burst durations are integers. Process priorities have a range of [1-50]; the lower this number, the higher the priority i.e. a process with priority=1 has a higher priority than a process with priority=2.

  4. Start editing the main.go and add the scheduling algorithms:

    1. Implement SJF (preemptive) and report average turnaround time, average waiting time, and average throughput.

    2. Implement SJF priority scheduling (preemptive) and report average turnaround time, average waiting time, and average throughput.

    3. Round-round (preemptive) and report average turnaround time, average waiting time, and average throughput.

Grading

Code must compile and run.

Each type is worth different points:

  • 30 points for implementing FCFS (already done, so you get 30 points for just submitting)
  • 25 points for implementing SJF [preemptive]
  • 25 points for implementing SJF Priority scheduling [preemptive]
  • 20 points for implementing RR [always preemptive]

Deliverables

A GitHub link to your project which includes:

  • README.md <- describes anything needed to build (optional)
  • main.go <- your scheduler