Advertisement
techno-

P1 SO CON RECA RECB

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