{"id":24536210,"url":"https://github.com/duaa-a/cpu_schedulers_simulator","last_synced_at":"2025-03-16T01:11:35.366Z","repository":{"id":270725601,"uuid":"897007710","full_name":"DuaA-A/CPU_Schedulers_Simulator","owner":"DuaA-A","description":"A Java-based project implementing various CPU scheduling algorithms.","archived":false,"fork":false,"pushed_at":"2025-01-02T16:45:23.000Z","size":137,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-22T13:52:49.512Z","etag":null,"topics":["cpu-scheduling","cpu-scheduling-algorithms","java"],"latest_commit_sha":null,"homepage":"https://github.com/DuaA-A","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DuaA-A.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-01T20:43:45.000Z","updated_at":"2025-01-02T16:46:26.000Z","dependencies_parsed_at":"2025-01-02T17:42:44.621Z","dependency_job_id":"c555c85c-8220-4450-9f6a-63b22adb8e9b","html_url":"https://github.com/DuaA-A/CPU_Schedulers_Simulator","commit_stats":null,"previous_names":["duaa-a/cpu_schedulers_simulator"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DuaA-A%2FCPU_Schedulers_Simulator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DuaA-A%2FCPU_Schedulers_Simulator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DuaA-A%2FCPU_Schedulers_Simulator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DuaA-A%2FCPU_Schedulers_Simulator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DuaA-A","download_url":"https://codeload.github.com/DuaA-A/CPU_Schedulers_Simulator/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243809889,"owners_count":20351407,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpu-scheduling","cpu-scheduling-algorithms","java"],"created_at":"2025-01-22T13:52:31.965Z","updated_at":"2025-03-16T01:11:35.344Z","avatar_url":"https://github.com/DuaA-A.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \n\u003c/head\u003e\n\u003cbody\u003e\n    \u003cheader\u003e\n        \u003ch1\u003eCPU Scheduler Simulator\u003c/h1\u003e\n        \u003cp\u003eA Java-based project implementing various CPU scheduling algorithms.\u003c/p\u003e\n    \u003c/header\u003e\n    \u003cmain\u003e\n        \u003ch2\u003eOverview\u003c/h2\u003e\n        \u003cp\u003eThis repository contains implementations of various CPU scheduling algorithms, including:\u003c/p\u003e\n        \u003cul\u003e\n            \u003cli\u003eFirst-Come-First-Serve (FCFS)\u003c/li\u003e\n            \u003cli\u003eShortest Job First (SJF)\u003c/li\u003e\n            \u003cli\u003eShortest Remaining Time First (SRTF)\u003c/li\u003e\n            \u003cli\u003ePriority Scheduling\u003c/li\u003e\n        \u003c/ul\u003e\n    \u003ch2\u003eFiles in the Repository\u003c/h2\u003e\n    \u003cul\u003e\n        \u003cli\u003e\u003ccode\u003eFCAI.java\u003c/code\u003e: Handles First-Come-First-Serve scheduling.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eGanttChartFCAI.java\u003c/code\u003e: Generates Gantt chart for FCFS scheduling.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eGanttChartPriority.java\u003c/code\u003e: Generates Gantt chart for Priority Scheduling.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eGanttChartSJF.java\u003c/code\u003e: Generates Gantt chart for SJF scheduling.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eGanttChartSRTF.java\u003c/code\u003e: Generates Gantt chart for SRTF scheduling.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eMain.java\u003c/code\u003e: Entry point of the project.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003ePriorityScheduling.java\u003c/code\u003e: Handles Priority Scheduling logic.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eProcess.java\u003c/code\u003e: Represents a process with attributes like arrival time, burst time, and priority.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eSJF.java\u003c/code\u003e: Implements Shortest Job First scheduling.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003eSRTF.java\u003c/code\u003e: Implements Shortest Remaining Time First scheduling.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003edisplayResults.java\u003c/code\u003e: Displays the results of scheduling algorithms.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003einput.txt\u003c/code\u003e: Input file containing process data for testing.\u003c/li\u003e\n        \u003cli\u003e\u003ccode\u003einputFCAI.txt\u003c/code\u003e: Alternative input file for FCFS scheduling.\u003c/li\u003e\n    \u003c/ul\u003e\n    \u003ch2\u003eHow to Use\u003c/h2\u003e\n    \u003col\u003e\n        \u003cli\u003eCompile the Java files using \u003ccode\u003ejavac\u003c/code\u003e.\u003c/li\u003e\n        \u003cli\u003eRun the \u003ccode\u003eMain.java\u003c/code\u003e file to execute the program.\u003c/li\u003e\n        \u003cli\u003eEdit the \u003ccode\u003einput.txt\u003c/code\u003e file to test with custom process data.\u003c/li\u003e\n    \u003c/ol\u003e\n    \u003ch2\u003eGantt Chart Generation\u003c/h2\u003e\n    \u003cp\u003eThe project includes Gantt chart visualizations for each scheduling algorithm to better understand the process flow.\u003c/p\u003e\n    \u003ch2\u003eDependencies\u003c/h2\u003e\n    \u003cp\u003eNo external libraries are required. The project is built using core Java.\u003c/p\u003e\n    \u003ch2\u003eContributors\u003c/h2\u003e\n    \u003cp\u003eDeveloped by:\u003c/p\u003e\n\u003cul\u003e\n    \u003cli\u003eDuaa \u003c/li\u003e\n    \u003cli\u003eYousif\u003c/li\u003e\n    \u003cli\u003eHelana\u003c/li\u003e\n    \u003cli\u003eAbdelRahman\u003c/li\u003e\n\u003c/ul\u003e\n    \u003ch2\u003eLicense\u003c/h2\u003e\n    \u003cp\u003eThis project is open-source. Feel free to use and modify it as needed.\u003c/p\u003e\n\n\u003cfooter\u003e\n    \u003cp\u003e\u0026copy; 2025 CPU Scheduling Project\u003c/p\u003e\n\u003c/footer\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduaa-a%2Fcpu_schedulers_simulator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fduaa-a%2Fcpu_schedulers_simulator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fduaa-a%2Fcpu_schedulers_simulator/lists"}