我目前正在使用 FCFS 和循环算法来模拟进程调度程序。
首先,我想让输入的解析尽可能简单......
我有一些结构来保存特定信息。该程序的工作原理如下:
my_project FCFS in.file
OR
my_project RR 2 in.file
in.file 如下所示:
./Job1.txt
./Job2.txt
./Job3.txt
./Job4.txt
所以我想处理这个输入文件并订购作业。
文本文件如下所示。
10
1fi
if i < 3 i=i+1 goto 8
3sdkfj
4ksdkk
5kdkfk
6kdkjf
7dkjkfd
if k < 2 k=k+1 goto 2
9dkkf
10dku
if j < 2 j=j+1 goto 2
除了第一行(表示此作业的开始时间)和以 if 开头的行之外,所有行都是无意义的。即如果 i < 3 i = i+1 goto 4 表示只要 i 小于 3 就跳转到第 4 行。
所以基本上目前我想通过上面的命令行解析输入文件,并按开始时间(第一行)对作业进行排序。我真的很想尽可能高效地完成这一步。到目前为止,我已经编写了以下代码:
/* I/O Files */
static char *inputFile;
static FILE *input;
/*Scheduled jobs indexed by PID*/
struct job list[20];
/* the next job to schedule */
static struct job *job_next = NULL;
/* Time */
time clock;
/*Initialises job list* /
static void initialise_list(void) {
for(int i = 0; i < sizeof(job_list); i++) {
job_list[i].params.pid = -1;
}
}
/** 从输入文件读取并解析输入 */ static void parse_input(void) {
char buffer[BUFSIZ];
unsigned int jobs;
struct job *current;
jobs = 0;
initialise_list();
/** Read input file **/
while( fgets(buffer, sizeof(buffer), input)) {
time start, finish;
pid job;
//if(buffer[0] == '#') {
// continue;
//}
sscanf(buffer, "Job%d%ld", &job, &start);
if(start < 0) {
fprintf(stderr, "Job start time must be greater than or equal to 0, found %ld.\n", start);
exit(EXIT_FAILURE);
}
if(finish <= 0) {
fprintf(stderr, "Job finish time must be greater than 0, found %ld. \n", arrival);
exit(EXIT_FAILURE);
}
current = &list[job];
current->parameters.pid = job;
current->parameters.start = start;
jobs++;
}
int main(int argc, char **argv) {
/* Open input and output files */
for(int i = 0; i < argc; i++) {
if(strcmp(argv[i], "in.file") {
inputFile = argv[i];
input = fopen(inputFile,"r");
}
}
if(!inputFile) {
exit(EXIT_FAILURE);
}
parse_input();
fclose;
return EXIT_SUCCESS;
}
我目前使用的结构。
/**
* Simulation of a process scheduler
*/
#ifndef SCHEDULER_H_
#define SCHEDULER_H_
#include <stddef.h>
/* types */
/** units of time */
typedef long time;
/** process identifier */
typedef int pid;
/** Information about a job of interest to the task scheduler */
struct job_data {
/* pid of this process */
pid pid;
/* time process starts */
time start;
/* time needed to finish */
time finish;
/* time spent processing so far */
time scheduled;
/* size of the process */
size_t size;
};
struct job {
/* Various parameters used by the scheduler */
struct job_data parameters;
/* next job to be scheduled */
struct job *next;
};
最后,我希望能够按开始时间的顺序对作业进行排序,以便它们准备好由特定算法安排。
所以我需要有关如何传递输入文件 in.file 的帮助,读取作业并获取开始时间和顺序,然后通过启动“滴答”时间,即文本文件的第一行。
任何帮助都会很棒!