2015-04-05 84 views
0

我正在處理這個命令shell程序,我想知道爲什麼我在一個地方使用malloc而不是其他地方?我爲tmp變量使用malloc,爲什麼不爲其他變量?爲什麼一個變量需要動態記憶而不是其他變量?爲什麼我不需要爲const變量創建malloc?

struct command 
{ 
    const char **argv; 
}; 

int 
spawn_proc (int in, int out, struct command *cmd) 
{ 
    pid_t pid; 

    if ((pid = fork()) == 0) 
    { 
     if (in != 0) 
     { 
      dup2 (in, 0); 
      close (in); 
     } 

     if (out != 1) 
     { 
      dup2 (out, 1); 
      close (out); 
     } 

     return execvp (cmd->argv [0], (char * const *)cmd->argv); 
    } 

    return pid; 
} 

int 
fork_pipes (int n, struct command *cmd) 
{ 
    int i; 
    pid_t pid; 
    int in, fd [2]; 

    /* The first process should get its input from the original file descriptor 0. */ 
    in = 0; 

    /* Note the loop bound, we spawn here all, but the last stage of the pipeline. */ 
    for (i = 0; i < n - 1; ++i) 
    { 
     pipe (fd); 

     /* f [1] is the write end of the pipe, we carry `in` from the prev iteration. */ 
     spawn_proc (in, fd [1], cmd + i); 

     /* No need for the write and of the pipe, the child will write here. */ 
     close (fd [1]); 

     /* Keep the read end of the pipe, the next child will read from there. */ 
     in = fd [0]; 
    } 

    /* Last stage of the pipeline - set stdin be the read end of the previous pipe 
     and output to the original file descriptor 1. */ 
    if (in != 0) 
     dup2 (in, 0); 

    /* Execute the last stage with the current process. */ 
    return execvp (cmd [i].argv [0], (char * const *)cmd [i].argv); 
} 

int 
main (int argc, char ** argv) 
{ 
    printf("in main..."); 
    int i; 

    if (argc == 1) { 
     const char *printenv[] = { "printenv", 0}; 
     const char *sort[] = { "sort", 0 }; 
     const char *less[] = { "less", 0 }; 

     struct command cmd [] = { {printenv}, {sort}, {less} }; 
     return fork_pipes (3, cmd); 
    } 
    if (argc > 1) { 
     char *tmp; 

    // Compute required buffer length 
    int len = 1; // adds 1 to the length to account for the \0 terminating char 
    for(i=1; i<argc; i++) 
    { 
     len += strlen(argv[i]) + 2; // +2 accounts for length of "\\|" 
    } 

    // Allocate buffer 
    tmp = (char*) malloc(len); 
    tmp[0] = '\0'; 
    // Concatenate argument into buffer 
    int pos = 0; 
    for(i=1; i<argc; i++) 
    { 
     pos += sprintf(tmp+pos, "%s%s", (i==1?"":"|"), argv[i]); 
    } 

    printf("tmp:%s", tmp); 
    fflush(stdout); // force string to be printed 

     const char *printenv[] = { "printenv", 0}; 
     const char *grep[] = { "grep", "-E", tmp, NULL}; 

     const char *sort[] = { "sort", 0 }; 
     const char *less[] = { "less", 0 }; 

     struct command cmd [] = { {printenv}, {grep}, {sort}, {less} }; 
     return fork_pipes (4, cmd); 
     free(tmp); 
    } 
} 
+1

您指的是哪些變量? – juanchopanza 2015-04-05 12:03:27

回答

1

由於其他指針指向常量值,數據已被編譯器放入內存。您不能更改它們或它們指向的數據(數據是文字並位於只讀內存塊中)。 tmp變量將指向內存的一個可變部分,因此您需要分配它。

當然,您可以靜態分配內存,以便您不需要malloc,但動態分配是,如名稱所示,動態,因此您可以分配您需要的任何數量定義的運行時間和編譯時間。就像在這種情況下一樣,編譯時內存的數量是未知的。

相關問題