mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 02:06:07 +03:00
- Added some debug in rss
This commit is contained in:
parent
0fb78727d5
commit
c019b0d72c
3 changed files with 31 additions and 12 deletions
|
@ -45,7 +45,7 @@ class downloadThread : public QThread {
|
|||
QMutex mutex;
|
||||
QWaitCondition condition;
|
||||
bool abort;
|
||||
URLStream url_stream;
|
||||
URLStream *url_stream;
|
||||
QList<downloadThread*> subThreads;
|
||||
bool subThread;
|
||||
|
||||
|
@ -58,10 +58,11 @@ class downloadThread : public QThread {
|
|||
|
||||
public:
|
||||
downloadThread(QObject* parent, bool subThread = false) : QThread(parent){
|
||||
mutex.lock();
|
||||
qDebug("Creating downloadThread");
|
||||
abort = false;
|
||||
mutex.unlock();
|
||||
this->subThread = subThread;
|
||||
url_stream = 0;
|
||||
qDebug("downloadThread created");
|
||||
}
|
||||
|
||||
~downloadThread(){
|
||||
|
@ -69,10 +70,14 @@ class downloadThread : public QThread {
|
|||
abort = true;
|
||||
condition.wakeOne();
|
||||
mutex.unlock();
|
||||
if(url_stream != 0)
|
||||
delete url_stream;
|
||||
wait();
|
||||
}
|
||||
|
||||
void downloadUrl(QString url){
|
||||
if(url_stream == 0)
|
||||
url_stream = new URLStream();
|
||||
QMutexLocker locker(&mutex);
|
||||
url_list << url;
|
||||
if(!isRunning()){
|
||||
|
@ -139,31 +144,31 @@ class downloadThread : public QThread {
|
|||
std::cerr << "Error: could't create temporary file: " << (const char*)filePath.toUtf8() << '\n';
|
||||
continue;
|
||||
}
|
||||
URLStream::Error status = url_stream.get((const char*)url.toUtf8());
|
||||
URLStream::Error status = url_stream->get((const char*)url.toUtf8());
|
||||
if(status){
|
||||
// Failure
|
||||
QString error_msg = QString(misc::toString(status).c_str());
|
||||
QString error_msg = errorCodeToString(status);
|
||||
qDebug("Download failed for %s, reason: %s", (const char*)url.toUtf8(), (const char*)error_msg.toUtf8());
|
||||
url_stream.close();
|
||||
emit downloadFailureST(this, url, errorCodeToString(status));
|
||||
url_stream->close();
|
||||
emit downloadFailureST(this, url, error_msg);
|
||||
continue;
|
||||
}
|
||||
qDebug("Downloading %s...", (const char*)url.toUtf8());
|
||||
char cbuf[1024];
|
||||
int len;
|
||||
while(!url_stream.eof()) {
|
||||
url_stream.read(cbuf, sizeof(cbuf));
|
||||
len = url_stream.gcount();
|
||||
while(!url_stream->eof()) {
|
||||
url_stream->read(cbuf, sizeof(cbuf));
|
||||
len = url_stream->gcount();
|
||||
if(len > 0)
|
||||
dest_file.write(cbuf, len);
|
||||
if(abort){
|
||||
dest_file.close();
|
||||
url_stream.close();
|
||||
url_stream->close();
|
||||
return;
|
||||
}
|
||||
}
|
||||
dest_file.close();
|
||||
url_stream.close();
|
||||
url_stream->close();
|
||||
emit downloadFinishedST(this, url, filePath);
|
||||
qDebug("download completed here: %s", (const char*)filePath.toUtf8());
|
||||
}else{
|
||||
|
|
11
src/rss.h
11
src/rss.h
|
@ -161,18 +161,26 @@ class RssStream : public QObject{
|
|||
|
||||
public:
|
||||
RssStream(QString _url) {
|
||||
qDebug("New rss stream created");
|
||||
url = _url;
|
||||
alias = url;
|
||||
read = true;
|
||||
qDebug("Creating rss & ico downloadThreads");
|
||||
downloaderRss = new downloadThread(this);
|
||||
downloaderIcon = new downloadThread(this);
|
||||
qDebug("RSS & ico downloaders created");
|
||||
connect(downloaderRss, SIGNAL(downloadFinished(QString, QString)), this, SLOT(processDownloadedFile(QString, QString)));
|
||||
connect(downloaderRss, SIGNAL(downloadFailure(QString, QString)), this, SLOT(handleDownloadFailure(QString, QString)));
|
||||
qDebug("RSS is calling downloadUrl");
|
||||
downloaderRss->downloadUrl(url);
|
||||
qDebug("downloadUrl called, ok");
|
||||
// XXX: remove it when gif can be displayed
|
||||
iconPath = ":/Icons/rss.png";
|
||||
qDebug("Calling getIcon");
|
||||
getIcon();
|
||||
qDebug("getIcon called");
|
||||
lastRefresh.start();
|
||||
qDebug("RSSStream constructed");
|
||||
}
|
||||
|
||||
~RssStream(){
|
||||
|
@ -451,10 +459,13 @@ class RssManager : public QObject{
|
|||
unsigned int streamListUrlSize = streamListUrl.size();
|
||||
for(unsigned int i=0; i<streamListUrlSize; ++i){
|
||||
RssStream *stream = new RssStream(streamListUrl.at(i));
|
||||
qDebug("Setting rss alias");
|
||||
stream->setAlias(streamListAlias.at(i));
|
||||
qDebug("RSS Alias set");
|
||||
streamList.append(stream);
|
||||
connect(stream, SIGNAL(refreshFinished(QString, const unsigned short&)), this, SLOT(streamNeedRefresh(QString, const unsigned short&)));
|
||||
}
|
||||
qDebug("Streams loaded");
|
||||
}
|
||||
|
||||
// save the list of the rss stream for the next session
|
||||
|
|
|
@ -182,6 +182,7 @@
|
|||
|
||||
// fills the streamList
|
||||
void RSSImp::refreshStreamList() {
|
||||
qDebug("Refreshing stream list");
|
||||
unsigned short nbstream = rssmanager.getNbStreams();
|
||||
listStreams->clear();
|
||||
QList<QTreeWidgetItem *> streams;
|
||||
|
@ -190,6 +191,7 @@
|
|||
updateStreamName(i, NEWS);
|
||||
stream->setToolTip(0, QString("<b>")+tr("Description:")+QString("</b> ")+rssmanager.getStream(i)->getDescription()+QString("<br/><b>")+tr("url:")+QString("</b> ")+rssmanager.getStream(i)->getUrl()+QString("<br/><b>")+tr("Last refresh:")+QString("</b> ")+rssmanager.getStream(i)->getLastRefreshElapsedString());
|
||||
}
|
||||
qDebug("Stream list refreshed");
|
||||
}
|
||||
|
||||
// fills the newsList
|
||||
|
@ -294,6 +296,7 @@
|
|||
refreshTimeTimer.start(60000); // 1min
|
||||
refreshStreamList();
|
||||
refreshTextBrowser();
|
||||
qDebug("RSSImp constructed");
|
||||
}
|
||||
|
||||
RSSImp::~RSSImp(){
|
||||
|
|
Loading…
Reference in a new issue