-2

私はAZLyricsのようなサイトから歌詞をダウンロードするプログラムに取り組んでいます。私はlibcurlを使用しています。
それは私のコードです

LyricsDownloader.cpp

#include "lyricsDownloader.h"
#include <curl/curl.h>
#include <cstring>
#include <iostream>

#define DEBUG 1

/////////////////////////////////////////////////////////////////////////////


size_t lyricsDownloader::write_data_to_var(char *ptr, size_t size, size_t nmemb, void *userdata) // this function is a static member function
{
    ostringstream * stream = (ostringstream*) userdata;
    size_t count = size * nmemb;
    stream->write(ptr, count);
    return count;
}


string AZLyricsDownloader::toProviderCode() const
{ /*this creates an url*/ }

CURLcode AZLyricsDownloader::download()
{
    CURL * handle;
    CURLcode err;
    ostringstream buff;
    handle = curl_easy_init();
    if (! handle) return static_cast<CURLcode>(-1);
    // set verbose if debug on
    curl_easy_setopt( handle, CURLOPT_VERBOSE, DEBUG );
    curl_easy_setopt( handle, CURLOPT_URL, toProviderCode().c_str() ); // set the download url to the generated one
    curl_easy_setopt(handle, CURLOPT_WRITEDATA, &buff);
    curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, &AZLyricsDownloader::write_data_to_var);
    err = curl_easy_perform(handle); // The segfault should be somewhere here - after calling the function but before it ends
    cerr << "cleanup\n";
    curl_easy_cleanup(handle);

    // copy the contents to text variable
    lyrics = buff.str();
    return err;
}

main.cpp

#include <QString>
#include <QTextEdit>
#include <iostream>
#include "lyricsDownloader.h"

int main(int argc, char *argv[])
{
        AZLyricsDownloader dl(argv[1], argv[2]);
        dl.perform();
        QTextEdit qtexted(QString::fromStdString(dl.lyrics));
        cout << qPrintable(qtexted.toPlainText());
        return 0;
}

走っているとき

./maelyrica Anthrax Madhouse

これをcurlからログに記録しています

* About to connect() to azlyrics.com port 80 (#0)
*   Trying 174.142.163.250... * connected
* Connected to azlyrics.com (174.142.163.250) port 80 (#0)
> GET /lyrics/anthrax/madhouse.html HTTP/1.1
Host: azlyrics.com
Accept: */*

< HTTP/1.1 301 Moved Permanently
< Server: nginx/1.0.12
< Date: Thu, 05 Jul 2012 16:59:21 GMT
< Content-Type: text/html
< Content-Length: 185
< Connection: keep-alive
< Location: http://www.azlyrics.com/lyrics/anthrax/madhouse.html
< 
Segmentation fault

不思議なことに、ファイルはそこにあります。そのようなページがない場合も同じエラーが表示されます(azlyrics.comのメインページにリダイレクトしてください)

私は何が間違っているのですか?

前もって感謝します

編集:データを書き込むための関数を静的にしましたが、これは何も変更しません。wgetでさえ問題があるようです

$ wget http://www.azlyrics.com/lyrics/anthrax/madhouse.html
--2012-07-06 10:36:05--  http://www.azlyrics.com/lyrics/anthrax/madhouse.html
Resolving www.azlyrics.com... 174.142.163.250
Connecting to www.azlyrics.com|174.142.163.250|:80... connected.
HTTP request sent, awaiting response... No data received.
Retrying.

ブラウザでページを開くことが機能し、wget / curlが機能しないのはなぜですか?

EDIT2:これを追加した後:

curl_easy_setopt(handle, CURLOPT_FOLLOWLOCATION, 1);

そして、関数を静的にすることはすべてOKです。

4

1 に答える 1

1

あなたのコード

    curl_easy_setopt(handle,CURLOPT_WRITEFUNCTION,&AZLyricsDownloader::write_data_to_var);

libcurlのドキュメントからの次の引用

libcurl とのインターフェイスで C の代わりに C++ を使用する場合、基本的に 1 つだけ注意する必要があります。

コールバックは、非静的クラス メンバー関数にすることはできません

C++ コードの例:

class AClass { static size_t write_data(void *ptr, size_t size, size_t nmemb, void* ourpointer) { /* データを処理します */ } }

関数は静的メンバーではないため、問題の原因になる可能性があります。そうでなくても、あなたはこの規則に違反しています。

これは問題を解決しないかもしれませんが、例に投稿したコードの量を考えると、すぐに頭に浮かんだ最初のことであり、libcurl が推奨するようにこれを変更する価値があります。それでも問題が解決しない場合は、発生しているエラーをより詳細に特定して、次回より具体的な質問を提示できるようにすることをお勧めします (表示されるコードははるかに少なくなります)。

于 2012-07-05T17:18:15.497 に答える