1. Homepage
  2. Programming
  3. JC1503 Object-Oriented Programming

JC1503 Object-Oriented Programming

Engage in a Conversation
UKUniversity of AberdeenJC1503Object-Oriented ProgrammingTask SchedulerPythonPriority Queue

Programming assignment – Individually Assessed ( no teamwork )

Deadline: 22:00, 16th May 2023 (SCNU local time) Title: JC1503 – Object -Oriented Programming
Note: This ass ignment accounts for 30% of your total mark of the course (Code and report will account for 30% and 70% of the whole assessment, re spectively ). CourseNana.COM

Introduction

In this programming assignment, you will design and implement a Task Scheduler in Python, which is a program that helps manage and prioritise tasks for efficient and timely completion. To achieve this, you will use the Priority Queue data structure and Object -Oriented Programming principles. The Priority Queue is an abstract data type that stores and retrieves items based on their priority. Un like a regular queue that follows a first -in-first-out (FIFO) data structure, a priority queue serves items based on their priority. In the Task Scheduler implementation, the Priority Queue will manage tasks by sorting them according to their priorities an d deadlines. Each task will be defined as an object with attributes such as description, priority, and deadline, which can be added to the priority queue and executed based on their priority and deadline order. CourseNana.COM

For instance, let's say you have the followin g tasks that require completion: • Complete project report - Priority 2, Deadline: May 1, 2023 • Buy birthday gift for a friend - Priority 3, Deadline: April 30, 2023 • Attend job interview - Priority 4, Deadline: April 28, 2023 • Renew gym membership - Priori ty 1, No Deadline CourseNana.COM

The Task Scheduler will add the above tasks to the priority queue based on their priority and deadline. The queue will have the highest priority ( greatest priority number) and earliest deadline tasks at the top. The order will be as follo ws: CourseNana.COM

  1. Attend job interview - Priority 4, Deadline: April 28, 2023
  2. Buy birthday gift for a friend - Priority 3, Deadline: April 30, 2023
  3. Complete project report - Priority 2, Deadline: May 1, 2023
  4. Renew gym membership - Priority 1, No Deadline

When executing the tasks, the Task Scheduler will begin with the task that has the highest priority and earliest deadline, which is attending the job interview on April 28, 2023. After completing this task, it will move on to the next task in the queue, which i s to buy the birthday gift for the friend by April 30, 2023. In cases where there are tasks with the same priority, the task scheduler will prioriti se the task with the earliest deadline to ensure that it is completed in a timely manner. To provide flexibi lity in task management, the implementation should also allow the user to modify a task's priority or deadline. This involves removing the task from the queue, making the necessary updates to its priority and/or deadline, and then reinserting it back into the queue in the appropriate position based on its new priority and deadline. CourseNana.COM

Guidance and Requirements

For this assessment, you will be required to complete coding tasks and a final written report that outlines the steps you took. To help you get started, we will provide you with a template code and a template report. It is important that your assessment code and report follow the designated structure and include all required content as outlined in each section. Marks are allocated for each subtask, and your written report should contain all distinct sections/subtasks that provide a comprehensive and reflective account of the processes you undertook. page 3 of 10 To test your implementation, the project template includes four tests. Upon running the test.py file by command python3 test.py , you should expect all four tests to fail initially, in dicating that your implementation is not yet correct. CourseNana.COM

Once you have completed all the steps, after running python3 test.py again , you should see the following , if you have implemented the assignment correctly : CourseNana.COM

Note that not all tasks have tests defined. Make sure you mention in the report which tasks you have completed. In the later stages, you can use the command python3 main.py check the console output . A detailed description of each task is given below . To complete these steps , follow the instructions and ensure you use the provided template. All processes taken to run the final project must be clearly described. For submission instructions refer to the later sections. Please read all the information below carefully CourseNana.COM

Step 1: Design and Implement the Task Class (30 points )

The Task class is a blueprint for creating task objects, each with a description, priority level, and deadline. It provides methods to access and modify these attributes and a string representation of the object. Complete the class implementation following the instructions below. CourseNana.COM

1.1) Implement the init() method in the Task class, which should be invoked when an object of a class is created. The init() method takes three parameters: description, priority, and deadline. Its purpose is to initiali se three instance variables (description, priority, and __deadline) with the values passed as ar guments. CourseNana.COM

1.2) Implement the getter and setter methods for the instance variables description, priority, and __deadline in the Task class. These getter and setter methods allow us to access and modify the instance variables of a Task object from outside the class while also maintaining encapsulation by keeping the variables private and only allowing access through these methods. CourseNana.COM

For instance, t he get_description() method is a getter method that returns the current value of the description insta nce variable. The set_description() method is a setter method that sets the value of the __description instance variable to the value passed as an argument description. Similarly, the get_priority() method returns the current value of the priority instan ce variable, and the set_priority() method sets the value of the priority instance variable to the value passed as an argument priority. The get_deadline() method returns the current value of the __deadline instance variable, and the set_deadline() metho d sets the value of the deadline instance variable to the value passed as an argument deadline. CourseNana.COM

1.3) The str() method is a built -in special method in Python that gets called when we try to print an object , which normally returns a string representati on of the object. Implement the method str() in the Task clas s. The method should return a string that includes the description, priority, and deadline of the task, separated by commas and label led with their corresponding names. CourseNana.COM

Step 2 : Design and Implement the PriorityQueue Class (30 points )

This is a class definition for a priority queue data structure. A priority queue is a collection of tasks where each task is assigned a priority and a deadline. Complete the class implementation following the instructions below. CourseNana.COM

2.1) Implement the init() method in the PriorityQueue class. This method should initiali se an instance variable __tasks as an empty collection using an appropriate data structure underneath. CourseNana.COM

2.2) Implement the functionality of the add_task() in the PriorityQueue class . It should take a Task object as input and adds it to the collection of tasks __tasks. After adding the task, the collection is sorted in decreasing order of priority and increasing order of deadline . CourseNana.COM

Hint: The collection can be sorted by passing a key function to the sort() method. The key function should return a tuple with two values: the negative priority and the deadline of each task. The negative priority is used to sort the tasks in descending order, because the default sorting or der is ascending. You can define the key function inside the add_task() method using a lambda function, or you can define it outside the method as a helper function and pass it as the key parameter to the sort() method. CourseNana.COM

2.3) Implement the remove_task( ) and peek_task() methods in the PriorityQueue class . The remove_task() method removes and returns the task with the highest priority and earliest deadline from the front of the tasks collection , while the peek_task() method returns the task with the highes t priority and earliest deadline from the front of the tasks collection without removing it. Both methods check if the tasks collection is not empty first, and return None if it's empty. 2.4) Implement the get_tasks() methods in the PriorityQueue class , which simply returns the collection of tasks. CourseNana.COM

Step 3: Design and Implement the Scheduler Class ( 30 points)

This is a class definition for a scheduler that uses a priority queue to manage a collection of tasks. 3.1) Implement the init() method in the Scheduler Class. It creates an instance variable named queue. This variable is an object of the PriorityQueue class that is utili sed to store tasks. Initially, self.queue is assigned an empty instance of PriorityQueue, which does not contain any tasks. CourseNana.COM

3.2) Implement the add_task () and remove_task () methods in the Scheduler Class . The add_task() method adds a new task to the priority queue, held in self.queue, by calling the add_task() method of the PriorityQueue class. On the other hand, the remove_task() method removes the highest priority task from the priority queue held in self.queue and returns it. This is accomplished by calling the remove_task() method of the Pr iorityQueue class. Together, these methods provide the fundamental functionality required for managing tasks in the Scheduler class. CourseNana.COM

Now, if you run the test.py file by command python3 test.py . It should result in one successful test out of the four tests (as shown in the screenshot), indicating that the implementation can successfully add and remove tasks. However, there are still three more errors that need to be fixed in the subsequent steps. CourseNana.COM

3.3) Implement the reorder_task() method in the Scheduler Class to modify the priority and deadline of a task . This method takes a task, a new priority, and a new deadline as input. First, it searches for the given task in the priority queue. If the task cannot be found, the method continues execution without changing the queue. If the task is found, it is removed from the queue using the get_tasks() method of the PriorityQueue class. The method then sets the new priority and deadline using the set_priority() and set_deadline() methods of the Task class. Finally, it adds the modified task back to the priority queue using the add_task() method of the PriorityQueue class. Now, if you run the test.py file by using the command python3 test.py , you should expect one more test to pass (refer to the screenshot below). This indicates that your implementation can successfully modify the priority and deadline of a specific task using the 'reorder_task()' method, and then reorder the tasks in the priority queue. However, there are still two more errors that need to be fixed in the later steps. CourseNana.COM

3.4) Implement the execute_task () method in the Scheduler Class , which removes and prints the task with the highest priority and earliest deadline from the front of the priority queue using the remove_task() method of the __queue instance variable. If there are no tasks in the queue, it prints "No tasks to execute". CourseNana.COM

Now, if you run the test.py file by using the command python3 test.py , you should expect one more test to pass (refer to the screenshot below). This indicates that your implementation can successfully execute the task with the highest priority and earliest deadlin e from the front of the priority queue . There are one more error that need to be fixed in the later step. CourseNana.COM

3.5) Implement the display_tasks( ) method in the Scheduler Class, which displays the current tasks in the priority queue. It first gets the collection of tasks using the get_tasks() method of the __queue instance variable. If there are tasks in the queue, it prints "Current tasks:" follow ed by each task using a for loop. If there are no tasks in the queue, it prints "No tasks". Now, if you run the test.py file by using the command python3 test.py , you should expect all the four tests being pass ed successfully (refer to the screenshot below). CourseNana.COM

Step 4: Demonstrate the Functionality by main function (10 points )

Use if name == 'main': and c reate a main function that starts your program . The following functionality should be implemented: 4.1) Create an instance of the Scheduler class 4.2) Create three instances of the Task class, with different descriptions, priorities, and deadlines as below . • task1: Finish project, priority 3 , 1st May 2023 • task2: Exam revision, priority 2, 1st July 2023 • task3: Buy groceries, priority 1 , None 4.3) Call the add_task() method of the Scheduler class to add the three tasks to the priority queue . 4.3) Call the display_task () method to d isplay the current tasks in the priority queue. 4.4) Call the execute_task() method to execute the task with the highest priority and earliest deadline. Then, display the current tasks in the priority queue by calling the display_tasks() method to show th e updated collection of tasks in the priority queue. Check the output to verify the correctness of the implementation. 4.5) Use the reorder_task() method to modify the priority and deadline of a task. For example, to change task3 from priority 1 with no deadline to priority 4 with a deadline of May 10th, 2023, call the reorder_task() method on the scheduler object and pass in task3, the new priority value of 4, and the new deadline of May 10th, 2023. After modifying the task, display the current tasks in the priority queue again using the display_tasks() method to show the updated collection of tasks in the priority queue. 4.6) Continuously execute the task w ith the highest priority and earliest deadline from the front of the priority queue using the execute_task() method of the Scheduler class, until there are no more tasks left in the queue. CourseNana.COM

Step 5: Write the report (100 points )

Your report should be structured according to the template provided below. CourseNana.COM

  1. Introduction (5 points, 100 -150 words) • Explain the purpose of the Task Scheduler (2 points ). This can include what problem it aims to solve and why it is important. • Describe the main features and functionality of the Task Scheduler (3 points ). This can include what it can do, how it works, and any limitations it may have.
  2. Task Class Design ( 20 points, 200 -250 words) • Explain the attributes of the Task class (6 point s). This can include what information is stored for each task. • Describe the methods of the Task class, their purpose, and implementation (10 points ). This can include how each method works and what it is used for. • Discuss encapsulation and how it is achieved in the Task class (4 points ). This can include how information is hidden from other parts of the code and why this is important.
  3. PriorityQueue Class Design ( 25 points, 300 -350 words) • Explain the choice of the priority queue data structure used in the PriorityQueue class (6 points ). This can include why this data structure was chosen and how it works. • Describe the attributes of the PriorityQueue class (4 points ). This can include what information is stored in the priority queue. • Explain the methods implemented for adding, removing, and peeking at tasks, along with their purpose and implementation (10 points ). This can include how each method works and what it is used for. • Discuss how sorting tasks bas ed on deadlines as a secondary criterion is achieved (5 points ). This can include how the priority queue sorts tasks and why sorting by deadline is important.
  4. Scheduler Class Design ( 25 points, 300 -350 words) • Explain how the Scheduler class utili ses the PriorityQueue class (6 points ). This can include how the priority queue is used to manage tasks and prioriti se them. • Describe the attributes of the Scheduler class (4 points ). This can include what information is stored in the scheduler. • Explain the method s implemented for adding, removing, reordering, and executing tasks, along with their purpose and implementation (10 points ). This can include how each method works and what it is used for. • Discuss any design choices made in the Scheduler class and their r easoning (5 points ). This can include why certain methods were implemented and how they contribute to the overall functionality of the Task Scheduler.
  5. Testing and Demonstration ( 20 points, 200 -250 words) • Describe the test program and main function used to demonstrate the Task Scheduler's functionality (8 points ). This can include how users can interact with the Task Scheduler and what they can do with it. • Provide sample input/output to show the Task Scheduler's performance (8 points ). This can incl ude examples of tasks being added, removed, and executed. page 10 of 10 • Discuss any challenges faced during testing and how they were resolved (4 points ). This can include any issues encountered during testing and how they were fixed.
  6. Conclusion (5 points, 100 -150 words ) • Summari se the project and its main features (2 points ). • Reflect on the learning experience and the application of OOP concepts (2 points ). This can include what you learned from building the Task Scheduler and how it helped you understand OOP concepts. • Suggest possible improvements or future enhancements (1 point ). This can include any features or functionalities that could be added to improve the Task Scheduler.

Useful Information

• Please describe and justify each step that is needed to reproduce / run your work by using clear descriptive writing, supporting code -snippets and screenshots . When using screenshots please make sure they are clearly readable . • If you use open source code, you must point out where it was obtained from (even if the sources are online tutorials or blogs) and detail any modifications you have made to it in your tasks. You should mention this in both your code and report. Failure to do so will result in zero marks being awarded on related (sub)tasks CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
UK代写,University of Aberdeen代写,JC1503代写,Object-Oriented Programming代写,Task Scheduler代写,Python代写,Priority Queue代写,UK代编,University of Aberdeen代编,JC1503代编,Object-Oriented Programming代编,Task Scheduler代编,Python代编,Priority Queue代编,UK代考,University of Aberdeen代考,JC1503代考,Object-Oriented Programming代考,Task Scheduler代考,Python代考,Priority Queue代考,UKhelp,University of Aberdeenhelp,JC1503help,Object-Oriented Programminghelp,Task Schedulerhelp,Pythonhelp,Priority Queuehelp,UK作业代写,University of Aberdeen作业代写,JC1503作业代写,Object-Oriented Programming作业代写,Task Scheduler作业代写,Python作业代写,Priority Queue作业代写,UK编程代写,University of Aberdeen编程代写,JC1503编程代写,Object-Oriented Programming编程代写,Task Scheduler编程代写,Python编程代写,Priority Queue编程代写,UKprogramming help,University of Aberdeenprogramming help,JC1503programming help,Object-Oriented Programmingprogramming help,Task Schedulerprogramming help,Pythonprogramming help,Priority Queueprogramming help,UKassignment help,University of Aberdeenassignment help,JC1503assignment help,Object-Oriented Programmingassignment help,Task Schedulerassignment help,Pythonassignment help,Priority Queueassignment help,UKsolution,University of Aberdeensolution,JC1503solution,Object-Oriented Programmingsolution,Task Schedulersolution,Pythonsolution,Priority Queuesolution,