Advertisement
techno-

p1 so final

Oct 19th, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 18.26 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.     }
  240.  
  241. //Comando stat
  242. void cmdStat(){
  243.  
  244.     struct stat *statbuf;
  245.     statbuf = malloc(sizeof(struct stat));
  246.            
  247.    
  248.     char ruta[PATH_MAX];
  249.     int flagLong=0, flagAcc=0, flagLink=0; //flags para detectar las opciones que se pasan
  250.     struct passwd *pws; //Id dispositivo
  251.     struct group *grp; //Id grupo
  252.     struct tm dtc, dta;
  253.    
  254.     //Introducen stat
  255.     if (numtrozos == 1)
  256.         cmdCarpeta();
  257.    
  258.     //Introducen stat (algo)
  259.     if(numtrozos == 2){
  260.    
  261.         getcwd(ruta, PATH_MAX);
  262.         strcat(ruta, "/");
  263.         strcat(ruta, trozos[1]);
  264.        
  265.         if(lstat(ruta, statbuf)== -1){
  266.             printf("Ha habido un error: %s\n", strerror(errno));
  267.         }
  268.         else{
  269.             printf("%ld %s\n", statbuf->st_size, trozos[1]);
  270.         }
  271.     }
  272.    
  273.     if(numtrozos>2){
  274.         //Obtenemos los flags que se pasan
  275.         for(int i = 1; i < numtrozos && trozos[i][0] == '-' ; i++){
  276.             if(strcmp(trozos[i], "-long") == 0) flagLong = 1;
  277.             else if(strcmp(trozos[i],"-link") == 0) flagLink = 1;
  278.             else if(strcmp(trozos[i], "-acc") == 0) flagAcc = 1;
  279.         }
  280.        
  281.         getcwd(ruta, PATH_MAX);
  282.         strcat(ruta, "/");
  283.         strcat(ruta, trozos[numtrozos-1]);
  284.        
  285.         if(lstat(ruta, statbuf)== -1){
  286.             printf("Ha habido un error: %s\n", strerror(errno));
  287.         }
  288.         else{
  289.             pws = getpwuid(statbuf->st_uid);
  290.             grp = getgrgid(statbuf->st_gid);
  291.            
  292.             dtc = *(gmtime(&statbuf->st_ctime));
  293.             dta = *(gmtime(&statbuf->st_atime));
  294.            
  295.            
  296.             if(flagAcc == 1 && flagLong==0){
  297.                 printf("%d/%d/%d-%d:%.2d  ", dta.tm_year + 1900, dta.tm_mon+1, dta.tm_mday,  
  298.                 dta.tm_hour+2, dta.tm_min);
  299.             }
  300.             if(flagLong==1){
  301.                 //strmode(st_mode, statbuf->st_mode);
  302.                 char mode[11];
  303.                 st_mode_to_str(statbuf->st_mode,mode);
  304.                 printf("%d/%d/%d-%d:%.2d %ld, ( %ld)    %s %s %s ", dtc.tm_year + 1900, dtc.tm_mon+1, dtc.tm_mday,  
  305.                 dtc.tm_hour+2, dtc.tm_min,statbuf->st_nlink, statbuf->st_ino, pws->pw_name, grp->gr_name, mode);
  306.             }
  307.             if(flagLink==1){
  308.                 //hacer links
  309.             }
  310.             printf("%ld %s\n", statbuf->st_size, trozos[numtrozos-1]);
  311.         }
  312.     }
  313.  
  314. }
  315.  
  316.  
  317.  
  318. //Stat 2 (para list)
  319.  
  320. void cmdStat2(const char d_name[],int flagLong, int flagAcc, char ruta[]){
  321.     struct stat *statbuf;
  322.     statbuf = malloc(sizeof(struct stat));
  323.            
  324.    
  325.  
  326.     struct passwd *pws; //Id dispositivo
  327.     struct group *grp; //Id grupo
  328.     struct tm dtc, dta;
  329.    
  330.    
  331.    
  332.     if(numtrozos>2){
  333.         //Obtenemos los flags que se pasan
  334.        
  335.        
  336.        
  337.         if(lstat(ruta, statbuf)== -1){
  338.             printf("Ha habido un error: %s\n", strerror(errno));
  339.         }
  340.         else{
  341.             pws = getpwuid(statbuf->st_uid);
  342.             grp = getgrgid(statbuf->st_gid);
  343.            
  344.             dtc = *(gmtime(&statbuf->st_ctime));
  345.             dta = *(gmtime(&statbuf->st_atime));
  346.            
  347.            
  348.             if(flagAcc == 1 && flagLong==0){
  349.                 printf("%d/%d/%d-%d:%.2d  ", dta.tm_year + 1900, dta.tm_mon+1, dta.tm_mday,  
  350.                 dta.tm_hour+2, dta.tm_min);
  351.             }
  352.            
  353.             if(flagLong==1){
  354.                 //strmode(st_mode, statbuf->st_mode);
  355.                 char mode[11];
  356.                 st_mode_to_str(statbuf->st_mode,mode);
  357.                 printf("%d/%d/%d-%d:%.2d %ld, ( %ld)    %s %s %s ", dtc.tm_year + 1900, dtc.tm_mon+1, dtc.tm_mday,  
  358.                 dtc.tm_hour+2, dtc.tm_min,statbuf->st_nlink, statbuf->st_ino, pws->pw_name, grp->gr_name, mode);
  359.             }
  360.             printf("%ld %s\n", statbuf->st_size, d_name);
  361.         }
  362.     }
  363.  
  364. }
  365.  
  366.  
  367. void cmdListaREC(const char *dirname,int fun, int flagHid, int flagLong){
  368.     if(fun==0){
  369.    
  370.     DIR* dir = opendir(dirname);
  371.    
  372.     struct dirent* dirent;
  373.     dirent = readdir(dir);
  374.    
  375.     char path[100] = { 0 };
  376.     strcat(path, dirname);
  377.     strcat(path, "/");
  378.     strcat(path, dirent->d_name);
  379.            
  380.    
  381.    
  382.     if (dir == NULL) {
  383.         return;
  384.     }
  385.  
  386.     printf("************%s\n",dirname);
  387.  
  388.    
  389.     while (dirent != NULL) {
  390.         if(dirent->d_name[0] != '.' || flagHid == 1){
  391.             if(flagLong==1){
  392.                 cmdStat2(dirent->d_name,1,1,path);
  393.                 }else{
  394.                     printf("%hhd %s\n", dirent->d_type, dirent->d_name);
  395.                     }
  396.         }
  397.        
  398.         dirent = readdir(dir);
  399.     }
  400.  
  401.     closedir(dir);
  402.    
  403.    
  404.     dir = opendir(dirname);
  405.     if (dir == NULL) {
  406.         return;
  407.     }
  408.  
  409.  
  410.     dirent = readdir(dir);
  411.     while (dirent != NULL) {
  412.        
  413.        
  414.    
  415.        if (dirent->d_type == DT_DIR && strcmp(dirent->d_name, ".") != 0 && strcmp(dirent->d_name, "..") != 0 && (dirent->d_name[0] != '.'|| flagHid==1)){
  416.          
  417.            char path[100] = { 0 };
  418.             strcat(path, dirname);
  419.             strcat(path, "/");
  420.             strcat(path, dirent->d_name);
  421.             cmdListaREC(path,0,flagHid,flagLong);
  422.         }
  423.         dirent = readdir(dir);
  424.     }
  425.  
  426.     closedir(dir);
  427.        
  428.     }
  429.    
  430.     else if (fun==1){
  431.        
  432.        
  433.    
  434.     DIR* dir = opendir(dirname);
  435.    
  436.     struct dirent* dirent;
  437.     dirent = readdir(dir);
  438.    
  439.     char path[100] = { 0 };
  440.     strcat(path, dirname);
  441.     strcat(path, "/");
  442.     strcat(path, dirent->d_name);
  443.     if (dir == NULL) {
  444.         return;
  445.     }
  446.  
  447.    
  448.     while (dirent != NULL) {
  449.        
  450.         if (dirent->d_type == DT_DIR && strcmp(dirent->d_name, ".") != 0 && strcmp(dirent->d_name, "..") != 0 && (dirent->d_name[0] != '.' || flagHid ==1)) {
  451.             char path[100] = { 0 };
  452.             printf("************%s/%s\n",dirname,dirent->d_name);
  453.             strcat(path, dirname);
  454.             strcat(path, "/");
  455.             strcat(path, dirent->d_name);
  456.             cmdListaREC(path,1,flagHid,flagLong);
  457.             printf("************%s\n",dirname);
  458.         }
  459.        
  460.         dirent = readdir(dir);
  461.     }
  462.  
  463.     closedir(dir);
  464.    
  465.    
  466.     dir = opendir(dirname);
  467.     if (dir == NULL) {
  468.         return;
  469.     }
  470.  
  471.  
  472.     dirent = readdir(dir);
  473.     while (dirent != NULL) {
  474.        
  475.        if(dirent->d_name[0] != '.' || flagHid == 1){
  476.             if(flagLong==1){
  477.                 cmdStat2(dirent->d_name,1,1,path);
  478.                 }else{
  479.                     printf("%hhd %s\n", dirent->d_type, dirent->d_name);
  480.                     }
  481.         }
  482.        
  483.         dirent = readdir(dir);
  484.     }
  485.  
  486.     closedir(dir);
  487.        
  488.     }
  489. }
  490.  
  491. //Comando list
  492. void cmdList(){
  493.            
  494.    
  495.     char ruta[PATH_MAX];
  496.     int flagHid=0,flagLong=0, flagAcc=0, flagReca=0, flagRecb=0; //flags para detectar las opciones que se pasan
  497.    
  498.    
  499.     DIR *d;
  500.     struct dirent *dirent;
  501.     getcwd(ruta, PATH_MAX);
  502.     strcat(ruta, "/");
  503.     strcat(ruta, trozos[numtrozos-1]);
  504.    
  505.     if(numtrozos==1)
  506.         cmdCarpeta();
  507.    
  508.     if(numtrozos==2){
  509.        
  510.    
  511.         if((d=opendir(ruta)) == NULL){perror("opendir"); return;}
  512.         printf("************%s\n",trozos[numtrozos-1]);
  513.         while((dirent = readdir(d))!= NULL){
  514.             if(dirent->d_name[0] != '.'){
  515.             printf("%s\n", dirent->d_name);
  516.         }
  517.        }
  518.     }
  519.    
  520.    
  521.     if(numtrozos>2){
  522.  
  523.        
  524.        
  525.         //Obtenemos los flags que se pasan
  526.         for(int i = 1; i < numtrozos && trozos[i][0] == '-' ; i++){
  527.             if(strcmp(trozos[i],"-hid")==0) flagHid = 1;
  528.             else if(strcmp(trozos[i], "-long") == 0) flagLong = 1;
  529.             else if(strcmp(trozos[i], "-acc") == 0) flagAcc = 1;
  530.             else if(strcmp(trozos[i], "-reca") == 0) flagReca = 1;
  531.             else if(strcmp(trozos[i], "-recb") == 0) flagRecb = 1;
  532.         }
  533.    
  534.    
  535.     if((d=opendir(ruta)) == NULL){perror("opendir"); return;}
  536.    
  537.    
  538.    
  539.         if(flagAcc==1 && flagLong==0 && flagHid==0){
  540.             printf("************%s\n",trozos[numtrozos-1]);
  541.             while((dirent = readdir(d))!= NULL){
  542.             if(dirent->d_name[0] != '.'){
  543.             cmdStat2(dirent->d_name,0,1,ruta);
  544.         }
  545.        }   
  546.     }
  547.    
  548.         if(flagAcc==1 && flagLong==0 && flagHid==1){
  549.             printf("************%s\n",trozos[numtrozos-1]);
  550.             while((dirent = readdir(d))!= NULL){
  551.             cmdStat2(dirent->d_name,0,1,ruta);
  552.        }   
  553.     }
  554.        
  555.         if(flagHid==1 && flagLong==0 && flagAcc==0 && flagReca==0 && flagRecb==0){
  556.             printf("************%s\n",trozos[numtrozos-1]);
  557.             while((dirent = readdir(d))!= NULL){
  558.             printf("%s\n", dirent->d_name);
  559.         }
  560.       }
  561.      
  562.       if(flagLong==1 && flagHid == 0 && flagAcc==0 && flagReca==0 && flagRecb==0){   
  563.          
  564.          
  565.           printf("************%s\n",trozos[numtrozos-1]);
  566.             while((dirent = readdir(d))!= NULL){
  567.             if(dirent->d_name[0] != '.'){
  568.             cmdStat2(dirent->d_name,1,0,ruta);
  569.         }
  570.        }
  571.       }
  572.      
  573.      
  574.       if(flagLong==1 && flagHid == 1 && flagReca ==0 && flagRecb==0){    
  575.           printf("************%s\n",trozos[numtrozos-1]);
  576.             while((dirent = readdir(d))!= NULL){
  577.             cmdStat2(dirent->d_name,1,0,ruta);
  578.        }
  579.       }
  580.      
  581.      
  582.       if(flagReca==1){   
  583.         cmdListaREC(trozos[numtrozos-1],0,flagHid, flagLong);
  584.       }else if(flagRecb==1){     
  585.         cmdListaREC(trozos[numtrozos-1],1,flagHid, flagLong);
  586.       }
  587.        
  588.        
  589.     }
  590. }
  591.  
  592.  
  593.  
  594. //Comando ayuda
  595. void cmdAyuda() {
  596.     if (numtrozos == 1) {
  597.         printf("'ayuda cmd' donde cmd es uno de los siguientes comandos:\n"
  598.                "fin salir bye fecha pid autores hist comando carpeta infosis ayuda\n");
  599.     } else if (numtrozos > 1 && strcmp(trozos[1], "fin") == 0) {
  600.         printf("fin \tTermina la ejecucion del shell\n");
  601.     } else if (numtrozos > 1 && strcmp(trozos[1], "salir") == 0) {
  602.         printf("salir \tTermina la ejecucion del shell\n");
  603.     } else if (numtrozos > 1 && strcmp(trozos[1], "bye") == 0) {
  604.         printf("bye \tTermina la ejecucion del shell\n");
  605.     } else if (numtrozos > 1 && strcmp(trozos[1], "fecha") == 0) {
  606.         printf("fecha [-d|.h\tMuestra la fecha y o la hora actual\n");
  607.     } else if (numtrozos > 1 && strcmp(trozos[1], "pid") == 0) {
  608.         printf("pid [-p]\tMuestra el pid del shell o de su proceso padre\n");
  609.     }else if (numtrozos > 1 && strcmp(trozos[1], "autores") == 0) {
  610.         printf("autores [-n|-l]\tMuestra los nombres y logins de los autores\n");
  611.     }else if (numtrozos > 1 && strcmp(trozos[1], "hist") == 0) {
  612.         printf("hist [-c|-N]\tMuestra el historico de comandos, con -c lo borra\n");
  613.     }else if (numtrozos > 1 && strcmp(trozos[1], "comando") == 0) {
  614.         printf("comando [-N]\tRepite el comando N (del historico)\n");
  615.     }else if (numtrozos > 1 && strcmp(trozos[1], "carpeta") == 0) {
  616.         printf("carpeta [dir]\tCambia (o muestra) el directorio actual del shell\n");
  617.     }else if (numtrozos > 1 && strcmp(trozos[1], "carpeta") == 0) {
  618.         printf("infosis \tMuestra informacion de la maquina donde corre el shell\n");
  619.     }else if (numtrozos > 1 && strcmp(trozos[1], "ayuda") == 0) {
  620.         printf("ayuda [cmd]\tMuestra ayuda sobre los comandos\n");
  621.     }else if (numtrozos > 1 && strcmp(trozos[1], "create") == 0) {
  622.         printf("create [-f] [name]  Crea un directorio o un fichero (-f)\n");
  623.     }else if (numtrozos > 1 && strcmp(trozos[1], "stat") == 0) {
  624.         printf("stat [-long][-link][-acc] name1 name2 ..    lista ficheros;\n-long: listado largo\n-acc: acesstime\n-link: si es enlace simbolico, el path contenido\n");
  625.     }else if (numtrozos > 1 && strcmp(trozos[1], "list") == 0) {
  626.         printf("list [-reca] [-recb] [-hid][-long][-link][-acc] n1 n2 ..    lista contenidos de directorios\n-hid: incluye los ficheros ocultos\n-reca: recursivo (antes)\n-recb: recursivo (despues)\nresto parametros como stat\n");
  627.     }else if (numtrozos > 1 && strcmp(trozos[1], "delete") == 0) {
  628.         printf("delete [name1 name2 ..] Borra ficheros o directorios vacios\n");
  629.     }else if (numtrozos > 1 && strcmp(trozos[1], "deltree") == 0) {
  630.         printf("deltree [name1 name2 ..]    Borra ficheros o directorios no vacios recursivamente\n");
  631.     }
  632. }
  633.  
  634. struct cm_entrada{
  635.     char *cm_nombre;
  636.     void (*cm_fun)();
  637. };
  638.  
  639. struct cm_entrada cm_tabla[] = {
  640.     {"autores", cmdAutores},
  641.     {"ayuda", cmdAyuda},
  642.     {"bye", cmdFin},
  643.     {"carpeta", cmdCarpeta},
  644.     {"comando", cmdComandoN},
  645.     {"create", cmdCreate},
  646.     {"delete", cmdDelete},
  647.     {"fecha", cmdFecha},
  648.     {"fin", cmdFin},
  649.     {"hist", cmdHist},
  650.     {"infosis", cmdInfosis},
  651.     {"pid", cmdPid},
  652.     {"salir", cmdFin},
  653.     {"stat", cmdStat},
  654.     {"list", cmdList},
  655. };
  656.  
  657.  
  658. void ejecutarComando(char *linea){
  659.     int i;
  660.     char *copialinea = strdup(linea);
  661.     numtrozos = TrocearCadena(copialinea, trozos);
  662.    
  663.     if(numtrozos == 0) {free(copialinea); return;}
  664.     for( i=0; ; i++){
  665.         if(cm_tabla[i].cm_nombre == NULL){
  666.             printf("%s: comando no reconocido\n", trozos[0]);
  667.             free(copialinea);
  668.             break;
  669.         }
  670.         if(strcmp(cm_tabla[i].cm_nombre, trozos[0]) == 0){
  671.             cm_tabla[i].cm_fun();
  672.             free(copialinea);
  673.             break;
  674.         }
  675.     }
  676. }
  677.  
  678. int main(){
  679.  
  680.     while(1){
  681.         printf("@>");       //Prompt
  682.         if( fgets(linea, 4096, stdin) == NULL ){
  683.             exit(0);
  684.         }
  685.         ejecutarComando(linea);
  686.         histInsert(linea);
  687.     }
  688.     for(int i=0; i <= nhist; i++){
  689.         free(Hist[i]);
  690.     }
  691. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement