问题
启动 ./httpServer 8081后,
在浏览器地址栏输入:http://192.168.186.128:8081/test_cgi,按下回车
陆续获取几个新连接,
在第四次获取到新连接时,输出
get a new link ... sock fd== : 5
ReadLine函数 -> recv返回值为0
请求状态行的长度为:0
terminate called after throwing an instance of 'std::length_error'
what(): basic_string::resize
已放弃 (核心已转储)
分析
根据cout 输出调试和运行结果,捋了一遍代码,分析出原因是 line.size 值为0 , line.size()-1 为 -1 , resize抛出length_error异常
public member function
<string>
std::string::resize
Exception safety
Strong guarantee: if an exception is thrown, there are no changes in the string.
If n is greater than max_size, a length_error exception is thrown.
A bad_alloc exception is thrown if the function needs to allocate storage and fails.
解决办法
第一种:抓包分析,学习成本挺高的;
第二种方法,把大部分代码都注释掉,一点一点放开,让程序正常。
反思
1. 这次的错误是由于早就发现,但是一直不影响后续测试,就懒得改。现在后面也有错误了,在不改前面的错误,思路就乱套了。只好回头改,结果致此。
以后遇到问题就解决完问题,再往下做。
问题:为什么会有请求为0的请求??
问题:
虽然在不同的目录下执行,但是我执行的程序是一样的啊, 1.先cd output/,再./httpServer 8081 和 2.直接 ./output/httpServer 8081 是执行的同一个程序啊,为什么效果不同?
回答:
- 当你先执行
cd output/
然后执行./httpServer 8081
时,程序会将相对路径wwwroot/test_cgi
解析为output/wwwroot/test_cgi
,并尝试在该路径下查找文件。由于该文件存在,所以stat
函数返回成功,输出了"cgi -- 检测到文件存在..."。 - 当你直接执行
./output/httpServer 8081
时,程序会将相对路径wwwroot/test_cgi
解析为wwwroot/test_cgi
,并尝试在当前工作目录下查找文件。由于当前工作目录不是output/
,所以无法找到该文件,导致stat
函数返回失败,输出了"stat error:: No such file or directory"。
解决方法:output才是给用户用的,做出妥协,执行时跳入output文件夹,再启动服务器.