-
Notifications
You must be signed in to change notification settings - Fork 0
/
driver.c
83 lines (56 loc) · 1.56 KB
/
driver.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/**
* Driver.c
*
* Schedule is in the format
*
* [name] [priority] [CPU burst]
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "task.h"
#include "list.h"
#include "schedulers.h"
#define SIZE 100
struct node* taskListHead = NULL;
void add(char* name, int priority, int burst)
{
//Creating task and assigning attributes of said task//
//--------------------------------------------------//
Task* currentTask = ( Task * ) malloc( sizeof( Task ) );
currentTask -> name = name;
char* nameNum = name + 1;
currentTask -> tid = atoi(nameNum);
currentTask -> priority = priority;
currentTask -> burst = burst;
currentTask -> burstInitial = burst;
currentTask -> arrivalTime = 0;
//--------------------------------------------------//
//Insert current task into list//
//--------------------------------------------------//
insert(&taskListHead, currentTask);
//--------------------------------------------------//
}
int main(int argc, char* argv[])
{
FILE* in;
char* temp;
char task[SIZE];
char* name;
int priority;
int burst;
in = fopen(argv[1],"r");
while (fgets(task,SIZE,in) != NULL) {
temp = strdup(task);
name = strsep(&temp,",");
priority = atoi(strsep(&temp,","));
burst = atoi(strsep(&temp,","));
// add the task to the scheduler's list of tasks
add(name,priority,burst);
free(temp);
}
fclose(in);
// invoke the scheduler
schedule( taskListHead );
return 0;
}