-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleer.c
47 lines (44 loc) · 1.39 KB
/
leer.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
#include "ficheros.h"
#define tambuffer 1500
int main(int argc, char const *argv[])
{
char nombre_dispositivo[1024];
char string[128];
char buffer_texto[tambuffer];
int ninodo, offset, leidos, total_leidos;
struct STAT datos_inodo;
if (argc != 3)
{
fprintf(stderr, "Sintaxis: escribir <nombre_dispositivo> <ninodo>\n");
exit(EXIT_FAILURE);
}
strcpy(nombre_dispositivo, argv[1]);
if (access(nombre_dispositivo, F_OK) == -1)
{
fprintf(stderr, "ERROR: No existe el archivo\n");
exit(EXIT_FAILURE);
}
if (bmount(nombre_dispositivo) == -1)
exit(EXIT_FAILURE);
ninodo = atoi(argv[2]);
offset = 0;
leidos = 0;
total_leidos = 0;
memset(buffer_texto, 0, tambuffer);
while ((leidos = mi_read_f(ninodo, buffer_texto, offset, tambuffer)) > 0)
{
write(1, buffer_texto, leidos);
memset(buffer_texto, 0, tambuffer);
total_leidos += leidos;
offset += tambuffer;
}
sprintf(string, "\ntotal_leidos %d\n", total_leidos);
write(2, string, strlen(string));
if (mi_stat_f(ninodo, &datos_inodo) == -1)
exit(EXIT_FAILURE);
sprintf(string, "tamEnBytesLog %d\n", datos_inodo.tamEnBytesLog);
write(2, string, strlen(string));
if (bumount(nombre_dispositivo) == -1)
exit(EXIT_FAILURE);
return 0;
}