-
Notifications
You must be signed in to change notification settings - Fork 20
/
QtCUrl.cpp
193 lines (159 loc) · 4.53 KB
/
QtCUrl.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/* This file is part of QtCurl
*
* Copyright (C) 2013-2014 Pavel Shmoylov <[email protected]>
*
* Thanks to Sergey Romanenko for QStringList options support and for
* trace function.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "QtCUrl.h"
#include <iostream>
#include <QUrl>
#include <QDebug>
#include <QTextCodec>
#include <QStringList>
CURLcode curlGlobalInit() {
return curl_global_init(CURL_GLOBAL_ALL);
}
int writer(char* data, size_t size, size_t nmemb, std::string* buffer) {
// What we will return
int result = 0;
// Is there anything in the buffer?
if (buffer != NULL) {
// Append the data to the buffer
buffer->append(data, size * nmemb);
// How much did we write?
result = size * nmemb;
}
return result;
}
#ifdef QTCURL_DEBUG
int trace(CURL *handle, curl_infotype type, unsigned char *data, size_t size, void *userp)
{
std::cerr<< data << std::endl;
return 1;
}
#endif
QtCUrl::QtCUrl(): _textCodec(0) {
/*
* It's necessarily to call curl_global_init ones before the first use
* of curl_easy_init.
*
* http://curl.haxx.se/libcurl/c/curl_easy_init.html
*/
static CURLcode __global = curlGlobalInit();
Q_UNUSED(__global)
_curl = curl_easy_init();
_errorBuffer = new char[CURL_ERROR_SIZE];
}
QtCUrl::~QtCUrl() {
while(_slist.count()) {
curl_slist_free_all(_slist.first());
_slist.removeFirst();
}
curl_easy_cleanup(_curl);
delete[] _errorBuffer;
}
void QtCUrl::setTextCodec(const char* codecName) {
_textCodec = QTextCodec::codecForName(codecName);
}
void QtCUrl::setTextCodec(QTextCodec* codec) {
_textCodec = codec;
}
QString QtCUrl::exec(Options& opt) {
setOptions(opt);
_lastCode = Code(curl_easy_perform(_curl));
const char* reply = opt[CURLOPT_WRITEDATA].value<std::string*>()->c_str();
if (_textCodec) {
return _textCodec->toUnicode(reply);
}
return reply;
}
void QtCUrl::setOptions(Options& opt) {
Options defaults;
defaults[CURLOPT_FAILONERROR] = true;
defaults[CURLOPT_ERRORBUFFER].setValue(_errorBuffer);
defaults[CURLOPT_WRITEFUNCTION].setValue(&writer);
defaults[CURLOPT_WRITEDATA].setValue(&_buffer);
#ifdef QTCURL_DEBUG
curl_easy_setopt(_curl, CURLOPT_VERBOSE, 1);
curl_easy_setopt(_curl, CURLOPT_DEBUGFUNCTION, trace);
#endif
OptionsIterator i(defaults);
while (i.hasNext()) {
i.next();
if (! opt.contains(i.key())) {
opt[i.key()] = i.value();
}
}
i = opt;
while (i.hasNext()) {
i.next();
QVariant value = i.value();
switch (value.type()) {
case QVariant::Bool:
case QVariant::Int: {
int val = value.toInt();
curl_easy_setopt(_curl, i.key(), val);
break;
}
case QVariant::ByteArray: {
QByteArray ba = value.toByteArray();
curl_easy_setopt(_curl, i.key(), ba.constData());
break;
}
case QVariant::Url: {
QByteArray ba = value.toUrl().toEncoded();
curl_easy_setopt(_curl, i.key(), ba.constData());
break;
}
case QVariant::String: {
std::string str = value.toString().toStdString();
curl_easy_setopt(_curl, i.key(), str.c_str());
break;
}
case QVariant::ULongLong: {
qulonglong val = value.toULongLong();
curl_easy_setopt(_curl, i.key(), (void*) val);
break;
}
case QVariant::StringList: {
struct curl_slist *slist = NULL;
foreach (const QString &tmp, value.toStringList()) {
slist = curl_slist_append(slist, tmp.toUtf8().data());
}
_slist.append(slist);
curl_easy_setopt(_curl, i.key(), slist);
break;
}
default:
const QString typeName = value.typeName();
if (typeName == "QtCUrl::WriterPtr") {
curl_easy_setopt(_curl, i.key(), value.value<WriterPtr>());
}
else if (typeName == "std::string*") {
curl_easy_setopt(_curl, i.key(), value.value<std::string*>());
}
else if (typeName == "char*") {
curl_easy_setopt(_curl, i.key(), value.value<char*>());
}
else {
qDebug() << "[QtCUrl] Unsupported option type: " << typeName;
}
}
}
}