我当前的curl设置调用网页,将其保存为字符串,并在睡眠一秒后重复该过程。这是写入字符串的代码:
#include <curl/curl.h>
#include <string>
#include <iostream>
#include <thread>
#include <chrono>
size_t curl_writefunc(void* ptr, size_t size, size_t nmemb, std::string* data)
{
data->append((const char*)ptr, size * nmemb);
return size * nmemb;
}
void curl_handler(std::string& data)
{
int http_code = 0;
CURL* curl;
// Initialize cURL
curl = curl_easy_init();
// Set the function to call when there is new data
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_writefunc);
// Set the parameter to append the new data to
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &data);
// Set the URL to download; just for this question.
curl_easy_setopt(curl, CURLOPT_URL, "http://www.example.com/");
// Download
curl_easy_perform(curl);
// Get the HTTP response code
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
// Clean up
curl_easy_cleanup(curl);
curl_global_cleanup();
}
int main()
{
bool something = true;
std::string data;
while (something)
{
curl_handler(data);
std::cout << data << '\n';
data.clear();
std:: this_thread:: sleep_for (std:: chrono:: seconds(1));
}
}
然而,它在运行时间大约20分钟后遇到问题,这是它面临的信息:
140377776379824:error:02001018:system library:fopen:Too many open files:bss_file.c:173:fopen('/etc/ssl/openssl.cnf','rb')
140377776379824:error:2006D002:BIO routines:BIO_new_file:system lib:bss_file.c:178:
140377776379824:error:0E078002:configuration file routines:DEF_LOAD:system lib:conf_def.c:199:
它似乎源于一个openssl文件,一旦它在单次迭代中完成其任务就不会关闭。如果多次迭代,打开的文件会累加起来,并且必然会在某个时刻输入错误。 我仍然是一个初学程序员,因此不想开始搞乱openSSL,所以我来这里问,这个问题有解决方案。可以通过在召回函数之外声明卷曲对象来解决吗?
答案 0 :(得分:0)
必须要做的只是在获取数据之前声明句柄及其设置。然后在循环中重复实际下载及其伴随的响应。建议尽可能多地重复使用处理程序,因为部分资源(如在此会话中打开的文件)可能需要再次重新部署。