-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainProcess.c
124 lines (102 loc) · 3.44 KB
/
MainProcess.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/wait.h>
int main(){
int first_ID = fork();
int second_ID = fork();
if( first_ID == 0 && second_ID == 0 ){
//finder
char *args[]={"./finder",NULL};
execvp(args[0],args);
}else if( first_ID > 0 && second_ID == 0 ){
//placer
char *args[]={"./placer",NULL};
execvp(args[0],args);
}else if( first_ID == 0 && second_ID > 0 ){
//decoder
char *args[]={"./decoder",NULL};
execvp(args[0],args);
//while(wait(NULL) > 0);
}else if( first_ID > 0 && second_ID > 0 ){
//Main Process
//Reading from file
char *filename = "test.txt";
FILE *fp = fopen(filename, "r");
if (fp == NULL)
{
printf("Error: could not open file %s", filename);
return 1;
}
const int Max_File_Size = 10000;
char str[Max_File_Size];
int counter = 0;
char ch;
while ((ch = fgetc(fp)) != EOF && counter < Max_File_Size ){
str[counter] = ch;
counter++;
}
fclose(fp);
//end - Reading from file
// find index of each part's ending
int partCounter = 0;
int partDivider[2];
for(int i = 0; i < counter ; i++){
if(str[i] == '#' && str[i + 1] == '#' && str[i + 2] == '#'){
partDivider[partCounter] = i - 1;
partCounter++;
i = i + 3;
}
}
//part 1;
char str_Part1[partDivider[0] + 1];
memcpy(str_Part1, &str[0], (partDivider[0]+ 1));
str_Part1[partDivider[0] + 1] = '\0';
//part 2;
int part2_size = partDivider[1] - partDivider[0] - 3;
char str_Part2[part2_size + 1];
memcpy(str_Part2, &str[partDivider[0] + 4], part2_size);
str_Part2[part2_size] = '\0';
//part 3;
int part3_size = (counter - 1) - partDivider[1] - 3;
char str_Part3[part3_size + 1];
memcpy(str_Part3, &str[partDivider[1] + 4], part3_size);
str_Part3[part3_size] = '\0';
//send data to decoder
char mainDecoderFifo[] = "Main_Decoder";
mkfifo(mainDecoderFifo, 0666);
int fd_decoder = open(mainDecoderFifo,O_WRONLY);
write(fd_decoder, str_Part1 , strlen(str_Part1)+1);
close(fd_decoder);
//send data to finder
char mainFinderFifo[] = "Main_Finder";
mkfifo(mainFinderFifo, 0666);
int fd_finder = open(mainFinderFifo,O_WRONLY);
write(fd_finder, str_Part2 , strlen(str_Part2)+1);
close(fd_finder);
//send data to placer
char mainPlacerFifo[] = "Main_Placer";
mkfifo(mainPlacerFifo, 0666);
int fd_placer = open(mainPlacerFifo,O_WRONLY);
write(fd_placer, str_Part3 , strlen(str_Part3)+1);
close(fd_placer);
// read placer resualt
char placerDecoderResualt[] = "Placer_Resualt";
int fd = open(placerDecoderResualt, O_RDONLY);
char finalResult[10000];
int h = 0;
read(fd, &finalResult[h], sizeof(char));
while(str[h] != '\0'){
h++;
read(fd, &finalResult[h], sizeof(char));
}
close(fd);
printf("\nfinal Result from MainProcess: %s",finalResult);
while(wait(NULL) > 0);
}
return 0;
}