用C编写Shell,传递给函数时char**消失



我只发现了一些这样的线程,没有一个包含我能够理解的信息。我在用C编程一个shell,我觉得它应该很简单,但是我的C编程不是很新鲜。我有传递一个双指针和内容消失的问题

我觉得我在正确的轨道上,这听起来像是与初始化有关,但我已经尝试了一些事情,设置指针为NULL只是为了确保。谢谢。

void runProgram (char **cLine);
char **parse(char *str);
/*
 * 
 */
int main(int argc, char** argv) 
{
    char *cin = NULL;
    ssize_t buffer = 0;
    char **tempArgs = NULL;
    printf(">");
    while(1)
    {
        getline(&cin, &buffer, stdin);
        tempArgs = parse(cin);  //malloc, parse, and return
        printf("passing %s", tempArgs[0]);  //works just fine here, can see the string
        runProgram(tempArgs); //enter this function and array is lost
    }
    return (EXIT_SUCCESS);
}
char** parse( char* str )
{
    char *token = NULL;
    char tokens[256];
    char** args = malloc( 256 );    
    int i = 0;
    strcpy( tokens, str );
    args[i] = strtok( tokens, " " );
    while( args[i] )
    {
        i++;
        args[i] = strtok(NULL, " ");
    }
    args[i] = NULL;
    return args;
}

在main中可见,直到函数调用

void runProgram (char **cLine)
{
   //function that calls fork and execvp
}

最简单的解决方法是在parse()函数中根本不使用tokens:

int main(void) 
{
    char  *buffer = NULL;
    size_t buflen = 0;
    char **tempArgs = NULL;
    printf("> ");
    while (getline(&buffer, &buflen, stdin) != -1)
    {
        tempArgs = parse(buffer);
        printf("passing %s", tempArgs[0]);
        runProgram(tempArgs);
        printf("> ");
        free(tempArgs);  // Free the space allocated by parse()
    }
    free(buffer);        // Free the space allocated by getline()
    return (EXIT_SUCCESS);
}
char **parse(char *str)
{
    char **args = malloc(256); 
    if (args == 0)
        …handle error appropriately…   
    int i = 0;
    args[i] = strtok(str, " ");
    // Bounds checking omitted
    while (args[i])
        args[++i] = strtok(NULL, " ");
    return args;
}

请注意,当循环结束时,数组已经为空终止,因此没有必要进行额外的赋值操作(但安全总比后悔好)。

相关内容

  • 没有找到相关文章

最新更新