-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflight.c
263 lines (204 loc) · 5.08 KB
/
flight.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include <sys/types.h>
#include <semaphore.h>
#include <string.h>
void *createplane(void *args);
void startlanding (int pno, int rno);
typedef struct {
int pno;
int arrived;
pthread_t tid;
int fcap;
int emeflag;
int p;
int landflag;
}plane;
typedef struct {
int number;
int occupied;
}runwayst;
sem_t runway;
sem_t runway2;
sem_t runway3;
sem_t planes;
plane allplanes[25];
runwayst runways[3];
int em_count;
int main (int argc, char* argv) {
int tstatus;
srand(time(NULL));
int i;
for( i = 0; i < 3 ; i++) {
runways[i].number = i;
runways[i].occupied = 0;
}
for (i = 0; i < 25; i++) {
allplanes[i].pno = i + 1;
allplanes[i].fcap = (rand() % (150 - 10)) + 10;
allplanes[i].landflag = 0;
allplanes[i].arrived = 0;
allplanes[i].emeflag = 0;
allplanes[i].p = 0;
}
if ( (sem_init (&runway, 0, 1)) != 0) {
printf("\n Error creating semaphore\n");
exit(1);
}
if ((sem_init (&runway2, 0, 1)) != 0) {
printf("\n Error creating semaphore\n");
exit(1);
}
if ((sem_init (&runway3, 0, 1)) != 0) {
printf("\n Error creating semaphore\n");
exit(1);
}
if ((sem_init (&planes, 0, 1)) != 0) {
printf("\n Error creating semaphore\n");
exit(1);
}
for (i = 0 ; i < 25; i ++) {
tstatus = pthread_create (&allplanes[i].tid, NULL, createplane, (void *) &allplanes[i]);
if(tstatus != 0) {
printf("Error while creating a thread\n");
exit(1);
}
sleep((rand()%5));
}
for ( i = 0; i < 25; i++) {
pthread_join(allplanes[i].tid, NULL);
}
sem_destroy(&runway);
sem_destroy(&runway2);
sem_destroy(&runway3);
sem_destroy(&planes);
return 0;
}
void startlanding (int pno, int rno) {
allplanes[pno].landflag = 1;
if(allplanes[pno].emeflag == 1) {
printf("Plane %d with emergency status is starting to land in runway %d with fuel %d left \n", pno, rno, allplanes[pno].fcap);
int ltime = (rand() % 5)+1;
if(ltime> allplanes[pno].fcap) {
printf("Plane %d with emergency status cannot land, hence aborting, run for safety\n", pno);
exit(0);
}
sleep(ltime);
printf("Plane %d with emergency status has landed on the runway %d with fuel %d remaining\n", pno, rno, allplanes[pno].fcap - ltime);
int cltime = (rand() % 5) + 1;
sleep(cltime);
printf("Plane %d with emergency status has cleared the runway %d\n", pno, rno);
sem_wait(&planes);
em_count--;
sem_post(&planes);
}
else {
printf("Plane %d is about to land at runway %d to land with fuel %d\n", pno, rno, allplanes[pno].fcap);
int ltime = rand()%8 + 1;
if(ltime > allplanes[pno].fcap) {
printf("Plane %d cannot land, crashing!!!!! run!!", pno);
exit(0);
}
sleep(ltime);
printf("Plane %d has landed on the runway %d with fuel %d remaining\n", pno, rno, allplanes[pno].fcap - ltime);
int cltime = rand() % 10 + 3;
sleep(cltime);
printf("Plane %d cleared the runway %d\n", pno, rno);
}
if(rno == 0) {
sem_wait(&runway);
runways[rno].occupied = 0;
sem_post(&runway);
}
if(rno == 1) {
sem_wait(&runway2);
runways[rno].occupied = 0;
sem_post(&runway2);
}
if(rno == 2) {
sem_wait(&runway3);
runways[rno].occupied = 0;
sem_post(&runway3);
}
}
void *createplane(void *args) {
long planetid;
int flag = 0;
int pno = ((plane *)args)->pno ;
printf("Plane %d has arrived in the airzone with fuel %d\n", pno, allplanes[pno].fcap);
allplanes[pno].arrived = 1;
int b = 0;
int a = 0;
plane tempplane;
tempplane.emeflag = 0;
tempplane.fcap = 100000;
tempplane.landflag = 0;
tempplane.arrived = 1;
for( a = 0; a < 25; a++ ) {
if( ((tempplane.fcap > allplanes[a].fcap) && (allplanes[a].landflag==0)) && (allplanes[a].arrived==1) ) {
tempplane = allplanes[a];
b = a;
}
}
allplanes[b].p = 1;
int i;
int cflag = 0;
while( allplanes[pno].fcap > 1) {
for(i=0; i < allplanes[pno].fcap; i++) {
//priority will be given to planes with emergency
if((em_count > 0 && allplanes[pno].emeflag == 0) || (allplanes[pno].p!=1)) {
allplanes[pno].fcap--;
sleep(1);
}
else { //can land now
if(runways[0].occupied == 0)
{
sem_wait(&runway);
runways[0].occupied = 1;
sem_post(&runway);
startlanding(pno, 0);
flag = 1;
return;
}
else if(runways[1].occupied == 0) {
sem_wait(&runway2);
runways[1].occupied = 1;
sem_post(&runway2);
startlanding(pno, 1);
flag = 1;
return;
}
else if(runways[2].occupied == 0) {
sem_wait(&runway3);
runways[2].occupied = 1;
sem_post(&runway3);
startlanding(pno, 2);
flag = 1;
return;
}
else {
sleep(1);
allplanes[pno].fcap--;
}
}
if((cflag==0) && (allplanes[pno].fcap < 10)) {
printf("Plane %d has reached its danger zone with less fuel\n", pno);
cflag = 1;
}
if(rand()%22 == 3) {
printf("Plane %d is now in an emergency state \n", pno);
sem_wait(&planes);
em_count++;
sem_post(&planes);
allplanes[pno].p = 1;
allplanes[pno].emeflag = 1;
}
}
}
if(flag == 0) {
printf("Plane %d crashed causing the airport to blast, please run for safety\n", pno);
exit(0);
}
}