Advertisement
techno-

P1 con list -long -acc -hid y cmdStat2

Oct 15th, 2022
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 14.28 KB | None | 0 0
  1. /*
  2.     Javier Sobrino González
  3.     Javier Loureiro Pérez
  4. */
  5.  
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include <string.h>
  9. #include <unistd.h>
  10. #include <time.h>
  11. #include <sys/types.h>
  12. #include <limits.h>
  13. #include <sys/stat.h>
  14. #include <errno.h>
  15. #include <sys/utsname.h>
  16. #include <pwd.h>
  17. #include <grp.h>
  18. #include <dirent.h>
  19. #include "ListaHistorial.h"
  20.  
  21. #define MaxTrozos 512
  22. #define MaxHist 4096
  23.  
  24. char linea[4096];
  25. char *trozos[MaxTrozos];
  26. int numtrozos;
  27.  
  28. void ejecutarComando(char *linea);
  29.  
  30. int TrocearCadena(char * cadena, char * trozos[]){
  31.     int i=1;
  32.     if ((trozos[0]=strtok(cadena," \n\t"))==NULL)
  33.     return 0;
  34.     while ((trozos[i]=strtok(NULL," \n\t"))!=NULL)
  35.         i++;
  36.     return i;
  37. }
  38.  
  39.  
  40. //Comandos del shell
  41.  
  42. //Comando autores
  43. void cmdAutores(){
  44.    
  45.     char flagLogin= 1, flagNombre=1;
  46.    
  47.     if(numtrozos > 1 && strcmp(trozos[1], "-l") == 0)
  48.         flagNombre= 0;
  49.     if(numtrozos > 1 && strcmp(trozos[1], "-n") == 0)
  50.         flagLogin = 0;
  51.        
  52.     if(flagLogin){
  53.         printf("Login: j.loureirop\n");
  54.         printf("Login: javier.sobrino\n");
  55.     }
  56.     if(flagNombre){
  57.         printf("Nombre: Javier Loureiro\n");
  58.         printf("Nombre: Javier Sobrino\n");
  59.     }
  60. }
  61.  
  62. //Comando Fin (sale del shell)
  63. void cmdFin(){
  64.     exit(0);
  65. }
  66.  
  67. //Comando Pid
  68. void cmdPid(){
  69.    
  70.     if(numtrozos == 1)
  71.         printf("Pid del shell: %d\n", getpid());
  72.     else if (numtrozos > 1)
  73.         printf("Pid del padre del shell: %d\n", getppid());
  74. }
  75.  
  76.  
  77. //Comando Carpeta
  78. void cmdCarpeta(){
  79.     char ruta[PATH_MAX];
  80.    
  81.     if(numtrozos == 1){
  82.         if(getcwd(ruta, PATH_MAX) == NULL){
  83.             perror("getcwd");
  84.             return;
  85.         }
  86.         else{
  87.             printf("%s\n", ruta);
  88.             return;
  89.         }
  90.     }
  91.     else if(numtrozos > 1){
  92.         if (chdir(trozos[1]) == -1) {perror("chdir"); return;}
  93.         else
  94.             chdir(trozos[1]);
  95.     }
  96. }
  97.  
  98. //Comando comandoN
  99. void cmdComandoN(){
  100.     int n;
  101.    
  102.     if(numtrozos == 1) {printf("Falta número de comando \n"); return;}
  103.     n = atoi(trozos[1]);
  104.    
  105.     if(n < 0 || n >= histNumElementos()) {printf("Número de comando fuera de rango \n"); return;}
  106.     else {
  107.         printf(" %s",histElemento(n));
  108.     }
  109. }
  110.  
  111. //Comando fecha
  112. void cmdFecha(){
  113.  
  114.     struct tm *t;
  115.     time_t tiempo;
  116.    
  117.     if(time(&tiempo) == -1) {perror("time"); return;}
  118.     t = localtime(&tiempo);
  119.    
  120.     if(numtrozos > 1 && strcmp(trozos[1], "-d") == 0)
  121.         printf("%d/%d/%d\n", t->tm_mday, t->tm_mon, t->tm_year+1900);
  122.     else if(numtrozos > 1 && strcmp(trozos[1], "-h") == 0)
  123.         printf("%d:%d:%d\n", t->tm_hour, t->tm_min, t->tm_sec);
  124.     else{
  125.         printf("%d:%d:%d\n", t->tm_hour, t->tm_min, t->tm_sec);
  126.         printf("%d/%d/%d\n", t->tm_mday, t->tm_mon, t->tm_year+1900);
  127.     }
  128.    
  129. }
  130.  
  131. //Comando historial
  132. void histImprimeN(){
  133.     int i;
  134.    
  135.     for(i = 0; i <= trozos[1][1] - 48; i++){
  136.         printf("%d->%s", i, histElemento(i));
  137.     }
  138. }
  139.  
  140. void cmdHist(){
  141.     int i;
  142.  
  143.     if(numtrozos == 1){
  144.         for(i = 0; i < histNumElementos() ; i++){
  145.         printf("%d->%s", i, histElemento(i));
  146.         }
  147.     }
  148.     else if(numtrozos > 1 && strcmp(trozos[1], "-c") == 0){
  149.         histBorrar();
  150.         return;
  151.     }
  152.     else if(numtrozos > 1)
  153.         histImprimeN();
  154. }
  155.  
  156. //Comando infosis
  157. void cmdInfosis(){
  158.     struct utsname system;
  159.     uname(&system);
  160.    
  161.     printf("%s (%s), OS: %s %s-%s\n", system.nodename, system.machine, system.sysname,
  162.                                                                 system.release, system.version);
  163. }
  164.  
  165. /*PRACTICA 1*/
  166.  
  167. //Comando create
  168. void cmdCreate(){
  169.     char ruta[PATH_MAX];
  170.     if (numtrozos==1){
  171.         getcwd(ruta, PATH_MAX);
  172.         printf("%s\n", ruta);
  173.         return;
  174.     }else if(numtrozos==2){
  175.         if(strcmp(trozos[1],"-f")==0){
  176.         getcwd(ruta, PATH_MAX);
  177.         printf("%s\n", ruta);
  178.         return;
  179.         }else{
  180.         mkdir(trozos[1],0777);
  181.         if(errno != 0){
  182.         printf("Imposible crear: %s\n",strerror(errno));
  183.         }  
  184.     }
  185.        
  186.     }else if(numtrozos==3){
  187.         if(strcmp(trozos[1], "-f")==0){
  188.         getcwd(ruta, PATH_MAX);
  189.         strcat(ruta,"/");
  190.         strcat(ruta,trozos[2]);
  191.        
  192.         FILE *fp;
  193.         fp = fopen(trozos[2],"w");
  194.         if(fp != NULL){
  195.         fclose(fp);
  196.         }
  197.         if(errno != 0){
  198.         printf("Imposible crear: %s\n",strerror(errno));
  199.         }  
  200.        
  201.       }
  202.     }
  203.    
  204. }
  205. //Comando borrar
  206.  
  207. void cmdDelete(){
  208.     int i;
  209.     for(i=1;i<numtrozos;i++){
  210.        
  211.         if(errno != 0){
  212.         printf("aaa %s\n",strerror(errno));
  213.         }
  214.         remove(trozos[i]);
  215.         if(errno != 0){
  216.         printf("%s\n",strerror(errno));
  217.         }
  218.         }
  219.        
  220.     }
  221.  
  222.  
  223.  
  224. //
  225.  
  226.  
  227. void st_mode_to_str(mode_t st_mode, char *mode){
  228.     mode[0]= ' '; //(S_ISDIR(fileStat.st_mode)) ? 'd' : '-';
  229.     mode[1]= (st_mode & S_IRUSR) ? 'r' : '-';
  230.     mode[2]= (st_mode & S_IWUSR) ? 'w' : '-';
  231.     mode[3]= (st_mode & S_IXUSR) ? 'x' : '-';
  232.     mode[4]= (st_mode & S_IRGRP) ? 'r' : '-';
  233.     mode[5]= (st_mode & S_IWGRP) ? 'w' : '-';
  234.     mode[6]= (st_mode & S_IXGRP) ? 'x' : '-';
  235.     mode[7]= (st_mode & S_IROTH) ? 'r' : '-';
  236.     mode[8]= (st_mode & S_IWOTH) ? 'w' : '-';
  237.     mode[9]= (st_mode & S_IXOTH) ? 'x' : '-';
  238.     mode[10]= 0;
  239.     printf("\n\n");
  240.     }
  241.  
  242. //Comando stat
  243. void cmdStat(){
  244.  
  245.     struct stat *statbuf;
  246.     statbuf = malloc(sizeof(struct stat));
  247.            
  248.    
  249.     char ruta[PATH_MAX];
  250.     int flagLong=0, flagAcc=0, flagLink=0; //flags para detectar las opciones que se pasan
  251.     struct passwd *pws; //Id dispositivo
  252.     struct group *grp; //Id grupo
  253.     struct tm dtc, dta;
  254.    
  255.     //Introducen stat
  256.     if (numtrozos == 1)
  257.         cmdCarpeta();
  258.    
  259.     //Introducen stat (algo)
  260.     if(numtrozos == 2){
  261.    
  262.         getcwd(ruta, PATH_MAX);
  263.         strcat(ruta, "/");
  264.         strcat(ruta, trozos[1]);
  265.        
  266.         if(lstat(ruta, statbuf)== -1){
  267.             printf("Ha habido un error: %s\n", strerror(errno));
  268.         }
  269.         else{
  270.             printf("%ld %s\n", statbuf->st_size, trozos[1]);
  271.         }
  272.     }
  273.    
  274.     if(numtrozos>2){
  275.         //Obtenemos los flags que se pasan
  276.         for(int i = 1; i < numtrozos && trozos[i][0] == '-' ; i++){
  277.             if(strcmp(trozos[i], "-long") == 0) flagLong = 1;
  278.             else if(strcmp(trozos[i],"-link") == 0) flagLink = 1;
  279.             else if(strcmp(trozos[i], "-acc") == 0) flagAcc = 1;
  280.         }
  281.        
  282.         getcwd(ruta, PATH_MAX);
  283.         strcat(ruta, "/");
  284.         strcat(ruta, trozos[numtrozos-1]);
  285.        
  286.         if(lstat(ruta, statbuf)== -1){
  287.             printf("Ha habido un error: %s\n", strerror(errno));
  288.         }
  289.         else{
  290.             pws = getpwuid(statbuf->st_uid);
  291.             grp = getgrgid(statbuf->st_gid);
  292.            
  293.             dtc = *(gmtime(&statbuf->st_ctime));
  294.             dta = *(gmtime(&statbuf->st_atime));
  295.            
  296.            
  297.             if(flagAcc == 1 && flagLong==0){
  298.                 printf("%d/%d/%d-%d:%.2d  ", dta.tm_year + 1900, dta.tm_mon+1, dta.tm_mday,  
  299.                 dta.tm_hour+2, dta.tm_min);
  300.             }
  301.             if(flagLong==1){
  302.                 //strmode(st_mode, statbuf->st_mode);
  303.                 char mode[11];
  304.                 st_mode_to_str(statbuf->st_mode,mode);
  305.                 printf("%d/%d/%d-%d:%.2d %ld, ( %ld)    %s %s %s ", dtc.tm_year + 1900, dtc.tm_mon+1, dtc.tm_mday,  
  306.                 dtc.tm_hour+2, dtc.tm_min,statbuf->st_nlink, statbuf->st_ino, pws->pw_name, grp->gr_name, mode);
  307.             }
  308.             if(flagLink==1){
  309.                 //hacer links
  310.             }
  311.             printf("%ld %s\n", statbuf->st_size, trozos[numtrozos-1]);
  312.         }
  313.     }
  314.  
  315. }
  316.  
  317.  
  318.  
  319. //Stat 2 (para list)
  320.  
  321. void cmdStat2(char d_name[],int flagLong, int flagAcc){
  322.     struct stat *statbuf;
  323.     statbuf = malloc(sizeof(struct stat));
  324.            
  325.    
  326.     char ruta[PATH_MAX];
  327.     struct passwd *pws; //Id dispositivo
  328.     struct group *grp; //Id grupo
  329.     struct tm dtc, dta;
  330.    
  331.    
  332.    
  333.     if(numtrozos>2){
  334.         //Obtenemos los flags que se pasan
  335.        
  336.         getcwd(ruta, PATH_MAX);
  337.         strcat(ruta, "/");
  338.         strcat(ruta, trozos[numtrozos-1]);
  339.        
  340.         if(lstat(d_name, statbuf)== -1){
  341.             printf("Ha habido un error: %s\n", strerror(errno));
  342.         }
  343.         else{
  344.             pws = getpwuid(statbuf->st_uid);
  345.             grp = getgrgid(statbuf->st_gid);
  346.            
  347.             dtc = *(gmtime(&statbuf->st_ctime));
  348.             dta = *(gmtime(&statbuf->st_atime));
  349.            
  350.            
  351.             if(flagAcc == 1 && flagLong==0){
  352.                 printf("%d/%d/%d-%d:%.2d  ", dta.tm_year + 1900, dta.tm_mon+1, dta.tm_mday,  
  353.                 dta.tm_hour+2, dta.tm_min);
  354.             }
  355.            
  356.             if(flagLong==1){
  357.                 //strmode(st_mode, statbuf->st_mode);
  358.                 char mode[11];
  359.                 st_mode_to_str(statbuf->st_mode,mode);
  360.                 printf("%d/%d/%d-%d:%.2d %ld, ( %ld)    %s %s %s ", dtc.tm_year + 1900, dtc.tm_mon+1, dtc.tm_mday,  
  361.                 dtc.tm_hour+2, dtc.tm_min,statbuf->st_nlink, statbuf->st_ino, pws->pw_name, grp->gr_name, mode);
  362.             }
  363.             printf("%ld %s\n", statbuf->st_size, d_name);
  364.         }
  365.     }
  366.  
  367. }
  368.  
  369. //Comando list
  370. void cmdList(){
  371.            
  372.    
  373.     char ruta[PATH_MAX];
  374.     int flagHid=0,flagLong=0, flagAcc=0, flagLink=0; //flags para detectar las opciones que se pasan
  375.    
  376.    
  377.     DIR *d;
  378.     struct dirent *dirent;
  379.    
  380.     getcwd(ruta, PATH_MAX);
  381.     strcat(ruta, "/");
  382.     strcat(ruta, trozos[numtrozos-1]);
  383.    
  384.     if(numtrozos==1)
  385.         cmdCarpeta();
  386.    
  387.     if(numtrozos==2){
  388.        
  389.    
  390.         if((d=opendir(ruta)) == NULL){perror("opendir"); return;}
  391.        
  392.         printf("************.\n");
  393.         while((dirent = readdir(d))!= NULL){
  394.             if(dirent->d_name[0] != '.'){
  395.             printf("%s\n", dirent->d_name);
  396.         }
  397.        }
  398.     }
  399.    
  400.    
  401.     if(numtrozos>2){
  402.  
  403.        
  404.        
  405.         //Obtenemos los flags que se pasan
  406.         for(int i = 1; i < numtrozos && trozos[i][0] == '-' ; i++){
  407.             if(strcmp(trozos[i],"-hid")==0) flagHid = 1;
  408.             else if(strcmp(trozos[i], "-long") == 0) flagLong = 1;
  409.             else if(strcmp(trozos[i], "-acc") == 0) flagAcc = 1;
  410.         }
  411.    
  412.    
  413.     if((d=opendir(ruta)) == NULL){perror("opendir"); return;}
  414.    
  415.    
  416.    
  417.         if(flagAcc==1 && flagLong==0 && flagHid==0){
  418.             printf("************.\n");
  419.             while((dirent = readdir(d))!= NULL){
  420.             if(dirent->d_name[0] != '.'){
  421.             cmdStat2(dirent->d_name,0,1);
  422.         }
  423.        }   
  424.     }
  425.    
  426.         if(flagAcc==1 && flagLong==0 && flagHid==1){
  427.             printf("************.\n");
  428.             while((dirent = readdir(d))!= NULL){
  429.             cmdStat2(dirent->d_name,0,1);
  430.        }   
  431.     }
  432.        
  433.         if(flagHid==1 && flagLong==0 && flagAcc==0){
  434.             printf("************.\n");
  435.             while((dirent = readdir(d))!= NULL){
  436.             printf("%s\n", dirent->d_name);
  437.         }
  438.       }
  439.      
  440.       if(flagLong==1 && flagHid == 0){   
  441.          
  442.          
  443.           printf("************.\n");
  444.             while((dirent = readdir(d))!= NULL){
  445.             if(dirent->d_name[0] != '.'){
  446.             cmdStat2(dirent->d_name,1,0);
  447.         }
  448.        }
  449.       }
  450.      
  451.      
  452.       if(flagLong==1 && flagHid == 1){   
  453.           printf("************.\n");
  454.             while((dirent = readdir(d))!= NULL){
  455.             cmdStat2(dirent->d_name,1,0);
  456.        }
  457.        printf("\n");
  458.       }
  459.        
  460.     }
  461. }
  462.  
  463. //Comando ayuda
  464. void cmdAyuda() {
  465.     if (numtrozos == 1) {
  466.         printf("'ayuda cmd' donde cmd es uno de los siguientes comandos:\n"
  467.                "fin salir bye fecha pid autores hist comando carpeta infosis ayuda\n");
  468.     } else if (numtrozos > 1 && strcmp(trozos[1], "fin") == 0) {
  469.         printf("fin \tTermina la ejecucion del shell\n");
  470.     } else if (numtrozos > 1 && strcmp(trozos[1], "salir") == 0) {
  471.         printf("salir \tTermina la ejecucion del shell\n");
  472.     } else if (numtrozos > 1 && strcmp(trozos[1], "bye") == 0) {
  473.         printf("bye \tTermina la ejecucion del shell\n");
  474.     } else if (numtrozos > 1 && strcmp(trozos[1], "fecha") == 0) {
  475.         printf("fecha [-d|.h\tMuestra la fecha y o la hora actual\n");
  476.     } else if (numtrozos > 1 && strcmp(trozos[1], "pid") == 0) {
  477.         printf("pid [-p]\tMuestra el pid del shell o de su proceso padre\n");
  478.     }else if (numtrozos > 1 && strcmp(trozos[1], "autores") == 0) {
  479.         printf("autores [-n|-l]\tMuestra los nombres y logins de los autores\n");
  480.     }else if (numtrozos > 1 && strcmp(trozos[1], "hist") == 0) {
  481.         printf("hist [-c|-N]\tMuestra el historico de comandos, con -c lo borra\n");
  482.     }else if (numtrozos > 1 && strcmp(trozos[1], "comando") == 0) {
  483.         printf("comando [-N]\tRepite el comando N (del historico)\n");
  484.     }else if (numtrozos > 1 && strcmp(trozos[1], "carpeta") == 0) {
  485.         printf("carpeta [dir]\tCambia (o muestra) el directorio actual del shell\n");
  486.     }else if (numtrozos > 1 && strcmp(trozos[1], "carpeta") == 0) {
  487.         printf("infosis \tMuestra informacion de la maquina donde corre el shell\n");
  488.     }else if (numtrozos > 1 && strcmp(trozos[1], "ayuda") == 0) {
  489.         printf("ayuda [cmd]\tMuestra ayuda sobre los comandos\n");
  490.     }
  491. }
  492.  
  493. struct cm_entrada{
  494.     char *cm_nombre;
  495.     void (*cm_fun)();
  496. };
  497.  
  498. struct cm_entrada cm_tabla[] = {
  499.     {"autores", cmdAutores},
  500.     {"ayuda", cmdAyuda},
  501.     {"bye", cmdFin},
  502.     {"carpeta", cmdCarpeta},
  503.     {"comando", cmdComandoN},
  504.     {"create", cmdCreate},
  505.     {"delete", cmdDelete},
  506.     {"fecha", cmdFecha},
  507.     {"fin", cmdFin},
  508.     {"hist", cmdHist},
  509.     {"infosis", cmdInfosis},
  510.     {"pid", cmdPid},
  511.     {"salir", cmdFin},
  512.     {"stat", cmdStat},
  513.     {"list", cmdList},
  514. };
  515.  
  516.  
  517. void ejecutarComando(char *linea){
  518.     int i;
  519.     char *copialinea = strdup(linea);
  520.     numtrozos = TrocearCadena(copialinea, trozos);
  521.    
  522.     if(numtrozos == 0) {free(copialinea); return;}
  523.     for( i=0; ; i++){
  524.         if(cm_tabla[i].cm_nombre == NULL){
  525.             printf("%s: comando no reconocido\n", trozos[0]);
  526.             free(copialinea);
  527.             break;
  528.         }
  529.         if(strcmp(cm_tabla[i].cm_nombre, trozos[0]) == 0){
  530.             cm_tabla[i].cm_fun();
  531.             free(copialinea);
  532.             break;
  533.         }
  534.     }
  535. }
  536.  
  537. int main(){
  538.  
  539.     while(1){
  540.         printf("@>");       //Prompt
  541.         if( fgets(linea, 4096, stdin) == NULL ){
  542.             exit(0);
  543.         }
  544.         ejecutarComando(linea);
  545.         histInsert(linea);
  546.     }
  547.     for(int i=0; i <= nhist; i++){
  548.         free(Hist[i]);
  549.     }
  550. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement