CURL C API:未调用回调

发布于 2024-09-05 22:50:34 字数 1554 浏览 10 评论 0原文

下面的代码是对 CURL C API 的测试。问题是回调函数write_callback永远不会被调用。为什么 ?

/** compilation: g++ source.cpp -lcurl */

#include <assert.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <curl/curl.h>

using namespace std;

static size_t write_callback(void *ptr, size_t size, size_t nmemb, void *userp)
{
    std::cerr << "CALLBACK WAS CALLED" << endl;
    exit(-1);
    return size*nmemb;
}

static void test_curl()
{
    int any_data=1;
    CURLM* multi_handle=NULL;
    CURL* handle_curl = ::curl_easy_init();
    assert(handle_curl!=NULL);
    ::curl_easy_setopt(handle_curl, CURLOPT_URL, "http://en.wikipedia.org/wiki/Main_Page");
    ::curl_easy_setopt(handle_curl, CURLOPT_WRITEDATA, &any_data);
    ::curl_easy_setopt(handle_curl, CURLOPT_VERBOSE, 1);
    ::curl_easy_setopt(handle_curl, CURLOPT_WRITEFUNCTION, write_callback);
    ::curl_easy_setopt(handle_curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");

    multi_handle = ::curl_multi_init();
    assert(multi_handle!=NULL);
    ::curl_multi_add_handle(multi_handle, handle_curl);
    int still_running=0;
    /* lets start the fetch */
    while(::curl_multi_perform(multi_handle, &still_running) ==
          CURLM_CALL_MULTI_PERFORM );
    std::cerr << "End of curl_multi_perform."<< endl;
    //cleanup should go here
    ::exit(EXIT_SUCCESS);
}

int main(int argc,char** argv)
{
    test_curl();
    return 0;
}

非常感谢

皮埃尔

The code below is a test for the CURL C API . The problem is that the callback function write_callback is never called. Why ?

/** compilation: g++ source.cpp -lcurl */

#include <assert.h>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cassert>
#include <curl/curl.h>

using namespace std;

static size_t write_callback(void *ptr, size_t size, size_t nmemb, void *userp)
{
    std::cerr << "CALLBACK WAS CALLED" << endl;
    exit(-1);
    return size*nmemb;
}

static void test_curl()
{
    int any_data=1;
    CURLM* multi_handle=NULL;
    CURL* handle_curl = ::curl_easy_init();
    assert(handle_curl!=NULL);
    ::curl_easy_setopt(handle_curl, CURLOPT_URL, "http://en.wikipedia.org/wiki/Main_Page");
    ::curl_easy_setopt(handle_curl, CURLOPT_WRITEDATA, &any_data);
    ::curl_easy_setopt(handle_curl, CURLOPT_VERBOSE, 1);
    ::curl_easy_setopt(handle_curl, CURLOPT_WRITEFUNCTION, write_callback);
    ::curl_easy_setopt(handle_curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");

    multi_handle = ::curl_multi_init();
    assert(multi_handle!=NULL);
    ::curl_multi_add_handle(multi_handle, handle_curl);
    int still_running=0;
    /* lets start the fetch */
    while(::curl_multi_perform(multi_handle, &still_running) ==
          CURLM_CALL_MULTI_PERFORM );
    std::cerr << "End of curl_multi_perform."<< endl;
    //cleanup should go here
    ::exit(EXIT_SUCCESS);
}

int main(int argc,char** argv)
{
    test_curl();
    return 0;
}

Many thanks

Pierre

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最初的梦 2024-09-12 22:50:34

您需要检查still_running的值,如果仍有待处理的操作,则再次调用curl_multi_perform()

简单的例子:

int still_running=0;
/* lets start the fetch */
do {
    while(::curl_multi_perform(multi_handle, &still_running) ==
        CURLM_CALL_MULTI_PERFORM);
} while (still_running);

You need to check the value of still_running and call curl_multi_perform() again if there are still pending operations.

Simple example:

int still_running=0;
/* lets start the fetch */
do {
    while(::curl_multi_perform(multi_handle, &still_running) ==
        CURLM_CALL_MULTI_PERFORM);
} while (still_running);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文