c++ - thread正确处理socket后抛出错误
迷茫
迷茫 2017-04-17 13:42:36
0
3
579

最近在学习写个简单的http server,流程是来个request就开个线程处理,然后主线程循环accept,但处理request的线程正常运行结束后总是抛出个stat error:no such file or directory。代码如下:

while(true)
{
    int client=accept(listen_sock,(sockaddr*)&remote,&len);
    if(client<0)
        die_err(std::string("accept error").c_str());

    std::thread(process_request,client).detach();
}

void process_request(int client)
{
    std::string method;
    char line[1024];
    std::string firstline;
    std::string path;
    std::string htoc("/Users/imagecmos/untitled");
    if(recv(client,line,sizeof(line),0)<0)
        die_err(std::string("recv error").c_str());
    getline(line, sizeof(line),method,path,firstline);
    htoc+=path;
    struct stat urlpath;
    if(stat(htoc.c_str(),&urlpath)<0)
        die_err(std::string("stat error").c_str());
    if(S_ISDIR(urlpath.st_mode))
    {
        _default(client);
    }
    else if(S_ISREG(urlpath.st_mode))
    {
        normalresponse(client,htoc);
    }
    close(client);
}

奇怪的是我把while(true)去掉,这个错误就没了,请问是什么原因?调了好长时间没看出问题。

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(3)
大家讲道理

Did the questioner modify the file, change its name, delete or move it after the first request was returned? So the second time the same request comes, the file cannot be found.

The information given is a bit lacking and I’m not very good at reading it

大家讲道理
void process_request(int client)
{
    std::string method;
    char line[1024];
    std::string firstline;
    std::string path;
    std::string htoc("/Users/imagecmos/untitled");
    if(recv(client,line,sizeof(line),0)<0)
        die_err(std::string("recv error").c_str());      
    getline(line, sizeof(line),method,path,firstline);
    htoc+=path;
    struct stat urlpath;
    if(stat(htoc.c_str(),&urlpath)<0)
        die_err(std::string("stat error").c_str());    // 楼主确定是处理结束了吗?看起来
                                                       // 错误是这里抛出的
    if(S_ISDIR(urlpath.st_mode))
    {
        _default(client);
    }
    else if(S_ISREG(urlpath.st_mode))
    {
        normalresponse(client,htoc);
    }
    close(client);
}

Please post the program more completely. . .
I just said why I couldn't find while(true). It turns out that it is a statement block, not a function. . .

小葫芦
if(stat(htoc.c_str(),&urlpath)<0)
        die_err(std::string("stat error").c_str());

Here is the problem.

std::string htoc("/Users/imagecmos/untitled");

Does the above file (directory) exist?

When you remove while(true) and there is no error, then there are two possibilities.
1. Your program only handles one connection, no problem
2. It doesn’t handle it at all, and the program exits. Because there is no while(true), the main thread exits, and the newly opened separate thread exits before executing this step.
I suggest you stop and see where the problem lies?
The second is

if(stat(htoc.c_str(),&urlpath)<0){
        die_err(std::string("stat error").c_str());
        close(clinet);
}

If your step is related to the later one, you should handle this error.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!