-
Notifications
You must be signed in to change notification settings - Fork 0
/
execution.c
588 lines (504 loc) · 12.5 KB
/
execution.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
#include <string.h>
#include <assert.h>
#include <dirent.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>
#include <fcntl.h>
#include <errno.h>
#include "execution.h"
//FUNCION QUE IMPRIME LA INFORMACION DE UN ARCHIVO
//ACCEDIENDO AL I-NODO DE UN ARCHIVO/DIRECTORIO
void ls(char*Nombre){
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//printf("soy el hijo con pid %Id, y mi padre tiene pid %Id",getpid(),getppid());
if (Nombre!=NULL){
printf("uso: %s <nombre_archivo>\n",Nombre);
//exit(0);
}
struct stat inodo;
int x = stat(Nombre,&inodo);
if (x!= 0 ){
perror("NO SE PUDO OBTENER EL ARCHIVO");
exit(1);
}
printf("Numero de dispositivos: %d\n",inodo.st_dev);
printf("Numero de inodo: %d\n",inodo.st_ino );
printf("Modo: 0x%X\n",inodo.st_nlink);
printf("Pertenece a: %s\n", getpwuid(inodo.st_uid)->pw_name);
printf("Del grupo: %s\n",getgrgid(inodo.st_gid)->gr_name );
printf("EL archivo ocupa: %d bytes\n",inodo.st_size);
printf("Accedido el: %s\n",asctime(localtime(&inodo.st_atime)) );
}
wait(&status); //EVITAR CONCURRENCIA
}
/////////////////////////////////////////////////////////////////////////
//FUNCION QUE VERIFICA SI EL ARCHIVO INGRESADO ES REGULAR O ES DIRECTORIO
// DEVUELVE 0 SI ES DIRECTORIO
// DEVUELVE 1 SI ES UN ARCHIVO REGULAR
int FileType(char*File){
struct stat path_stat;
int x = stat(File,&path_stat);
if (x!=0)
{
perror("NO SE PUDO OBTENER EL ARCHIVO");
exit(1);
}
int TipoArchivo = S_ISREG(path_stat.st_mode);
return TipoArchivo;
//printf("NUMERO QUE DEVUELVE %d",tipoArchivo);
}
////////////////////////////////////////////////////////////////////////////
void cat(char*File){
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0){
int TipoArchivo = FileType(File);
//SI EL ARCHIVO ES UN DIRECTORIO
if(TipoArchivo==1)
{
char Contenido[10024],c;
FILE*Archivo;
//ABRIMOS EL ARCHIVO
Archivo = fopen(File,"r");
if(Archivo!=NULL){
//LEEMOS EL CONTENIDO DEL ARCHIVO
c = fgetc(Archivo);
while (c!=EOF){
printf("%c",c);
c = fgetc(Archivo);
}
// CERRAMOS EL ARCHIVO
fclose(Archivo);
}
else{
perror("ERROR AL ABRIR EL ARCHIVO");
exit(1);
}
}
else{
perror("NO SE PUDO ABRIR EL ARCHIVO/ EL ARCHIVO ES UN DIRECTORIO");
exit(1);
}
}
wait(&status); //EVITAR CONCURRENCIA
}
/////////////////////////////////////////////////////////////////////////////////////
void conca(char*File,char*Directory,char*Res){
int count=0;
for (int k = 0; Res[k]!= '\0'; ++k)
{
Res[k]='\0';
}
//calculamos el largo del directorio y lo guardamos
for (int i = 0; Directory[i] != '\0'; ++i){
Res[i]=Directory[i];
count=count+1;
}
for (int j = 0; File[j] != '\0'; ++j,count++)
{
Res[count]=File[j];
}
Res[count]='\0';
//return NOTHING
}
//////////////////////////////////////////////////////////////////////////
void cp(char*File1,char*File2){
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//printf("soy el hijo con pid %Id, y mi padre tiene pid %Id",getpid(),getppid());
if (File1!=NULL && File2!=NULL)
{
//VERIFICAMOS QUE EL ARCHIVO1 NO SEA UN DIRECTORIO
int TipoArchivo;
TipoArchivo = FileType(File1);
if (TipoArchivo==0)
{
perror("EL PRIMER ARCHIVO NO PUEDE SER UN DIRECTORIO");
exit(1);
}
////////////////////////////////////////////
FILE *Archivo1,*Archivo2;
char c;
//ABRIMOS EL ARCHIVO1 PARA LEERLO
Archivo1 = fopen(File1,"r");
if (Archivo1 == NULL )
{
perror("No se puede abrir el primer archivo");
exit(1);
}
else{
//VERIFICAMOS SI EL ARCHIVO2 ES DE TIPO REGULAR O DIRECTORIO
int TipoArchivo2 ;
TipoArchivo2 = FileType(File2);
//SI EL ARCHIVO2 ES UN DIRECTORIO CREAMOS UN ARCHIVO DENTRO DE ESE DIRECTORIO
//CON EL MISMO NOMBRE QUE ARCHIVO1.
if(TipoArchivo2 == 0){
perror("ERROR ABRIR ARCHIVO");
exit(1);
}
else{
//ABRIMOS EL ARCHIVO2 PARA ESCRIBIR
Archivo2= fopen(File2,"w");
}
if(Archivo2==NULL){
//creamos el archivo 2 en el directorio
//char Path[10024];
int filedescriptor1 = open(File2,O_CREAT);
if (filedescriptor1 < 0)
{
perror("NO SE PUDO CREAR EL NUEVO ARCHIVO");
exit(1);
}
Archivo2 = fopen(File2,"w");
}
// LEEMOS EL CONTENIDO DEL PRIMER ARCHIVO Y LO COPIAMOS EN EL SEGUNDO ARCHIVO //
//LEEMOS CARACTER
c = fgetc(Archivo1);
while(c!=EOF){
//COPIAMOS CARACTER LEIDO EN EL ARCHIVO 2
fputc(c,Archivo2);
c = fgetc(Archivo1);
}
printf("El contenido del archivo %s se ha copiado al archivo %s",File1,File2 );
//CERRAMOS LOS ARCHIVOS
fclose(Archivo1);
fclose(Archivo2);
}
}
else{
perror("ERROR: INTRODUZCA LOS ARCHIVOS");
exit(1);
}
}
wait(&status); //EVITAR CONCURRENCIA
}
//////////////////////////////////////////////////////////////////////////////////////////
void cp2(char*File1,char*File2,char*parameter1){
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//printf("soy el hijo con pid %Id, y mi padre tiene pid %Id",getpid(),getppid());
if (File1!=NULL && File2!=NULL)
{
//VERIFICAMOS QUE EL ARCHIVO1 NO SEA UN DIRECTORIO
int TipoArchivo;
TipoArchivo = FileType(File1);
if (TipoArchivo==0)
{
perror("EL PRIMER ARCHIVO NO PUEDE SER UN DIRECTORIO");
exit(1);
}
////////////////////////////////////////////
FILE *Archivo1,*Archivo2;
char c;
//ABRIMOS EL ARCHIVO1 PARA LEERLO
Archivo1 = fopen(File1,"r");
if (Archivo1 == NULL )
{
perror("No se puede abrir el primer archivo");
exit(1);
}
else{
char Path[10024];
conca(parameter1,File2,Path);
int filedescriptor2 = open(Path,O_RDWR | O_CREAT | O_TRUNC,0777);
if (filedescriptor2 < 0)
{
perror("NO SE PUDO CREAR EL NUEVO ARCHIVO");
exit(1);
}
Archivo2 = fopen(Path,"w");
// LEEMOS EL CONTENIDO DEL PRIMER ARCHIVO Y LO COPIAMOS EN EL SEGUNDO ARCHIVO //
//LEEMOS CARACTER
c = fgetc(Archivo1);
while(c!=EOF){
//COPIAMOS CARACTER LEIDO EN EL ARCHIVO 2
fputc(c,Archivo2);
c = fgetc(Archivo1);
}
printf("El contenido del archivo %s se ha copiado al archivo %s",File1,File2 );
//CERRAMOS LOS ARCHIVOS
fclose(Archivo1);
fclose(Archivo2);
}
}
else{
perror("ERROR: INTRODUZCA LOS ARCHIVOS");
exit(1);
}
}
wait(&status); //EVITAR CONCURRENCIA
}
//////////////////////////////////////////////////////////////////////////////////////////
void mv(char*File1,char*File2){
//CREAMOS PROCESO HIJO CORRESPONDIENTE//
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//printf("soy el hijo con pid %Id, y mi padre tiene pid %Id",getpid(),getppid());
if (File1!=NULL && File2!=NULL)
{
//VERIFICAMOS QUE EL ARCHIVO1 NO SEA UN DIRECTORIO
int TipoArchivo;
TipoArchivo = FileType(File1);
if (TipoArchivo==0)
{
perror("EL PRIMER ARCHIVO NO PUEDE SER UN DIRECTORIO");
exit(1);
}
////////////////////////////////////////////
//VERIFICAMOS SI EL ARCHIVO2 ES DE TIPO REGULAR O DIRECTORIO
int TipoArchivo2 ;
TipoArchivo2 = FileType(File2);
//SI EL ARCHIVO2 ES UN DIRECTORIO MOVEMOS EL ARCHIVO1 A ESE DIRECTORIO
if(TipoArchivo2 == 0){
char Path[10024];
sprintf(Path,File1,File2);
int filedescriptor = open(Path,O_APPEND);
if (filedescriptor < 0)
{
perror("NO SE PUDO MOVER EL ARCHIVO");
exit(1);
}
int renombrar = rename(File1,Path);
if (renombrar<0)
{
perror("NO SE PUDO MOVER EL ARCHIVO");
exit(1);
}
}
else{
int renombrar2 = rename(File1,File2);
if (renombrar2 < 0)
{
perror("NO SE PUDO MOVER EL ARCHIVO");
exit(1);
}
}
}
else{
perror("ERROR: INTRODUZCA LOS ARCHIVOS CORRECTAMENTE");
exit(1);
}
}
wait(&status); //EVITAR CONCURRENCIA
}
///////////////////////////////////////////////////////////////////////////////////////////
void rm(char*File){
//CREAMOS PROCESO
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//printf("soy el hijo con pid %Id, y mi padre tiene pid %Id\n",getpid(),getppid());
if (File!=NULL)
{
//VERIFICAMOS SI EL ARCHIVO ES REGULAR O DIRECTORIO
int TipoArchivo = FileType(File);
//SI EL ARCHIVO ES UN DIRECTORIO EL PROGRAMA DA ERROR
if (TipoArchivo == 0)
{
perror("El Archivo no puede ser un Directorio");
exit(1);
}
else
{
//SI EL ARCHIVO ES REGULAR REMOVEMOS EL ARCHIVO
int eliminar = remove(File);
if (eliminar < 0)
{
perror("ERROR AL INTENTAR ELIMINAR EL ARCHIVO");
exit(1);
}
else{
printf("EL archivo %s ha sido removido exitosamente del directorio\n",File);
}
}
}
else
{
perror("ERROR AL INTENTAR ABRIR EL ARCHIVO");
exit(1);
}
}
wait(&status); //EVITAR CONCURRENCIA
}
/////////////////////////////////////////////////////////////////////////
void mkDir(char*File){
//CREAMOS PROCESO//
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//printf("soy el hijo con pid %Id, y mi padre tiene pid %Id",getpid(),getppid());
//VERIFICAMOS PRIMERO SI EL PATH PASADO COMO PARAMETRO ES UN DIRECTORIO EXISTENTE
int r=chdir(File);
//SI EL DIRECTORIO YA EXISTE, ENTONCES ES UN ERROR
if (r==0){
perror("EL DIRECTORIO QUE INTENTA CREAR YA EXISTE");
}
//SI EL DIRECTORIO NO EXISTE SE CREA
else if (errno==ENOENT){
mkdir(File,S_IRWXU);
printf("El directorio %s ha sido creado exitosamente \n",File );
}
}
wait(&status); //EVITAR CONCURRENCIA
}
///////////////////////////////////////////////////////////////////////////////
void rmDir(char*File){
//CREAMOS PROCESO HIJO CORRESPONDIENTE
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//VERIFICAMOS SI EL ARCHIVO INGRESADO ES DE TIPO REGULAR O DIRECTORIO
int TipoArchivo = FileType(File);
//SI EL ARCHIVO INGRESADO ES DE TIPO REGULAR ENTONCES DA ERROR//
if (TipoArchivo != 0)
{
perror("EL ARCHIVO INGRESADO NO PUEDE SER REGULAR");
exit(1);
}
DIR *directory;
struct dirent *file;
int count = 0;
if ((directory = opendir(File))!=NULL)
{
//Verificamos que no exista ningun archivo en el directorio
//if ((file = readdir(directory)) != NULL)
while ((file = readdir(directory))!=NULL)
{
if (++count > 2)
{
break;
}
}
//SI EXISTE AL MENOS UN ARCHIVO EN EL DIRECTORIO ENTONCES ES ERROR
if (count>2)
{
perror("EL DIRECTORIO QUE DESEA ELIMINAR POSEE AL MENOS UN ARCHIVO");
exit(1);
}
//SI NO EXISTE ARCHIVO EN EL DIRECTORIO ENTONCES ES ELIMINADO //
else
{
int eliminarDir = rmdir(File);
if (eliminarDir < 0)
{
perror("ERROR AL ELIMINAR DIRECTORIO");
exit(1);
}
printf("El directorio %s ha sido eliminado exitosamente \n",File );
}
}
else
{
perror("ERROR OPENING DIRECTORY");
exit(1);
}
}
wait(&status); //EVITAR CONCURRENCIA
}
///////////////////////////////////////////////////////////////////////////////////
void find(char*Cadena,char*Path){
int status;
int childpid;
childpid = fork();
if (childpid <0)
{
perror("ERROR AL EJECUTAR FORK");
exit(1);
}
else if (childpid == 0)
{
//printf("soy el hijo con pid %Id, y mi padre tiene pid %Id",getpid(),getppid());
DIR *directory;
struct dirent *actual;
if ((directory=opendir(Path))!=NULL)
{
//IMPRIMIMOS TODOS LOS ARCHIVOS EN EL DIRECTORIO
while((actual = readdir(directory))!=NULL){
//if (strstr(actual->d_name,Cadena)!=NULL)
//{
// printf("%s\n",actual->d_name);
//}
/*if ((strcmp(actual->d_name,".")) != 0 )
{
printf("SON DIFERENTES\n");
}
else{
printf("SON IGUALES\n");
}
*/
printf("%s\n",actual->d_name);
}
}
else{
perror("ERROR OPENING DIRECTORY");
exit(1);
}
}
wait(&status); //EVITAR CONCURRENCIA
}