-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulacion.c
187 lines (137 loc) · 3.75 KB
/
simulacion.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
#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/wait.h>
#include <time.h>
#include <string.h>
#include <stdio.h>
#include "ficheros_basico.h"
#include "directorios.h"
#define N_PROCESOS 100
#define N_LOGS 100
#define N_LINEA 50
int acabados = 0;
void reaper() {
while(wait3(NULL, WNOHANG, NULL) > 0) {
acabados++;
}
printf("Han acabado %d / %d\n", acabados, N_PROCESOS);
}
int proceso (int n) {
char nombre[N_LINEA];
memset(nombre, '\0', N_LINEA);
char linea[N_LINEA];
memset(linea, '\0', N_LINEA);
sprintf(nombre,"/proceso-%d.dat",n);
printf("%s\n", nombre);
if (mi_creat(nombre) < 0) {
printf("ERROR (simulacion.c): Error al ejecutar mi_creat(%s).\n", nombre);
return (-1);
}
else {
sprintf(linea, "Inicio log proceso PID %d\n", getpid());
printf("Fichero <<%s>> creado! // %d // %s ", nombre, strlen(linea), linea);
if (mi_write(nombre, linea, 0, strlen(linea)) < 0) {
char buffer[10000];
memset(buffer, '\0', 10000);
mi_dir("/", buffer);
printf("%s", buffer);
printf("ERROR (simulacion.c): Error al ejecutar mi_write(%s, &s, 0, %d).\n", nombre, linea, strlen(linea));
return (-1);
}
/* Para imprir la hora */
struct tm *p_tiempo;
time_t tiempo;
struct STAT estado;
int i;
for (i = 0; i < N_LOGS; i++) {
tiempo = time(NULL);
p_tiempo = localtime(&tiempo);
sprintf(linea, " %d:%d:%d Línea número %d\n", p_tiempo->tm_hour, p_tiempo->tm_min, p_tiempo->tm_sec, i);
if (mi_stat(nombre, &estado) < 0) {
printf("ERROR (simulacion.c): Error al ejecutar mi_stat(%s, &estado) 1.\n", nombre);
return (-1);
}
else {
if (mi_write(nombre, linea, estado.t_bytes, strlen(linea)) < 0) {
printf("ERROR (simulacion.c): Error al ejecutar mi_write(%s, linea, %d, %d) 1.\n", nombre, estado.t_bytes, strlen(linea));
return (-1);
}
}
usleep(100000); /* Cada línea debe esperar 0,1 segundos */
}
sprintf(linea, "Fin log proceso PID %d\n", getpid());
printf("%s\n", linea);
if (mi_stat(nombre, &estado) < 0) {
printf("ERROR (simulacion.c): Error al ejecutar mi_stat(%s, &estado) 2.\n", nombre);
return (-1);
}
else {
if (mi_write(nombre, linea, estado.t_bytes, strlen(linea)) < 0) {
printf("ERROR (simulacion.c): Error al ejecutar mi_write(%s, %s, %d, %d) 2.\n", nombre, linea, estado.t_bytes, strlen(linea));
return (-1);
}
}
}
return (1);
}
int vaciar() {
char nombre[N_LINEA];
memset(nombre, '\0', N_LINEA);
int i;
for(i = 0; i < N_PROCESOS; i++) {
sprintf(nombre,"/proceso-%d.dat",i);
if (mi_unlink(nombre) < 0) {
printf("El proceso %s no existe.\n", nombre);
}
else {
printf("%s eliminado!\n", nombre);
}
}
}
int main (int argc,char **argv) {
if (argc == 2) {
signal(SIGCHLD,reaper);
mount(argv[1]);
struct inodo in;
if (leer_inodo(&in, 0) < 0) {
printf("ERROR (simulacion.c -> mi_stat(/)): Error al leer el estado\n");
}
struct superbloque SB;
if (bread(0, (char *)&SB) < 0) {
printf("ERROR (simulacion.c -> error al leer el superbloque)\n");
}
if (in.t_bytes > 0) {
vaciar();
initSB(SB.n_bloques, argv[1]);
initMB(SB.n_bloques);
initAI(SB.n_bloques);
}
int i;
for (i = 0; i < N_PROCESOS; i++) {
int hilo = fork();
if (hilo == 0) {
if (proceso(i) < 0) {
printf("ERROR (simulacion.c): Error al crear el proceso %d.\n", i);
return (-1);
}
exit(0);
}
else if (hilo < 0) {
i--;
printf("Llamamos al reaper, hilo = %d\n", hilo);
reaper();
}
sleep(1);
}
while (acabados < N_PROCESOS) {
pause();
}
unmount(argv[1]);
}
else {
printf("ERROR (simulacion.c): Error, parámetros != de 2 (%d).\n", argc);
return (-1);
}
return (0);
}