2009-05-12 09:48:41 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2009-05-12 09:48:41 +02:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-05-12 09:48:41 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** No Commercial Usage
|
2009-05-12 09:48:41 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** This file contains pre-release code and may not be distributed.
|
|
|
|
|
** You may use this file in accordance with the terms and conditions
|
|
|
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
|
|
|
** this package.
|
2009-05-12 09:48:41 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
2009-05-12 09:48:41 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-03-31 11:49:06 +02:00
|
|
|
#include "rssfetcher.h"
|
2010-09-24 17:30:10 +02:00
|
|
|
#include "coreconstants.h"
|
2010-03-31 11:49:06 +02:00
|
|
|
|
2009-05-12 09:48:41 +02:00
|
|
|
#include <QtCore/QDebug>
|
2009-05-28 13:47:15 +02:00
|
|
|
#include <QtCore/QSysInfo>
|
|
|
|
|
#include <QtCore/QLocale>
|
2010-05-05 16:02:54 +02:00
|
|
|
#include <QtCore/QEventLoop>
|
2010-11-01 16:29:45 +01:00
|
|
|
#include <QtCore/QUrl>
|
2009-05-12 09:48:41 +02:00
|
|
|
#include <QtGui/QDesktopServices>
|
|
|
|
|
#include <QtGui/QLineEdit>
|
2010-02-18 17:36:17 +01:00
|
|
|
#include <QtNetwork/QNetworkReply>
|
|
|
|
|
#include <QtNetwork/QNetworkRequest>
|
2009-05-29 12:39:56 +02:00
|
|
|
#include <QtNetwork/QNetworkProxyFactory>
|
2010-03-31 11:49:06 +02:00
|
|
|
#include <QtNetwork/QNetworkAccessManager>
|
2010-10-13 12:28:37 +02:00
|
|
|
#include <QtNetwork/QNetworkConfiguration>
|
2009-05-12 09:48:41 +02:00
|
|
|
|
2010-03-31 11:49:06 +02:00
|
|
|
#include <QtCore/QXmlStreamReader>
|
2009-05-12 09:48:41 +02:00
|
|
|
|
2009-05-28 13:47:15 +02:00
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-11-01 16:29:45 +01:00
|
|
|
namespace Core {
|
2009-05-12 09:48:41 +02:00
|
|
|
|
2009-05-28 13:47:15 +02:00
|
|
|
static const QString getOsString()
|
|
|
|
|
{
|
|
|
|
|
QString osString;
|
|
|
|
|
#if defined(Q_OS_WIN)
|
|
|
|
|
switch (QSysInfo::WindowsVersion) {
|
|
|
|
|
case (QSysInfo::WV_4_0):
|
|
|
|
|
osString += QLatin1String("WinNT4.0");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::WV_5_0):
|
|
|
|
|
osString += QLatin1String("Windows NT 5.0");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::WV_5_1):
|
|
|
|
|
osString += QLatin1String("Windows NT 5.1");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::WV_5_2):
|
|
|
|
|
osString += QLatin1String("Windows NT 5.2");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::WV_6_0):
|
|
|
|
|
osString += QLatin1String("Windows NT 6.0");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::WV_6_1):
|
|
|
|
|
osString += QLatin1String("Windows NT 6.1");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
osString += QLatin1String("Windows NT (Unknown)");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#elif defined (Q_OS_MAC)
|
|
|
|
|
if (QSysInfo::ByteOrder == QSysInfo::BigEndian)
|
|
|
|
|
osString += QLatin1String("PPC ");
|
|
|
|
|
else
|
|
|
|
|
osString += QLatin1String("Intel ");
|
|
|
|
|
osString += QLatin1String("Mac OS X ");
|
|
|
|
|
switch (QSysInfo::MacintoshVersion) {
|
|
|
|
|
case (QSysInfo::MV_10_3):
|
|
|
|
|
osString += QLatin1String("10_3");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::MV_10_4):
|
|
|
|
|
osString += QLatin1String("10_4");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::MV_10_5):
|
|
|
|
|
osString += QLatin1String("10_5");
|
|
|
|
|
break;
|
|
|
|
|
case (QSysInfo::MV_10_6):
|
|
|
|
|
osString += QLatin1String("10_6");
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
osString += QLatin1String("(Unknown)");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#elif defined (Q_OS_UNIX)
|
|
|
|
|
struct utsname uts;
|
2010-03-31 11:49:06 +02:00
|
|
|
if (uname(&uts) == 0) {
|
|
|
|
|
osString += QLatin1String(uts.sysname);
|
|
|
|
|
osString += QLatin1Char(' ');
|
|
|
|
|
osString += QLatin1String(uts.release);
|
|
|
|
|
} else {
|
2009-05-28 13:47:15 +02:00
|
|
|
osString += QLatin1String("Unix (Unknown)");
|
2010-03-31 11:49:06 +02:00
|
|
|
}
|
2009-05-28 13:47:15 +02:00
|
|
|
#else
|
|
|
|
|
ossttring = QLatin1String("Unknown OS");
|
|
|
|
|
#endif
|
|
|
|
|
return osString;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-24 17:30:10 +02:00
|
|
|
RssFetcher::RssFetcher(int maxItems)
|
|
|
|
|
: QThread(0), m_maxItems(maxItems), m_items(0),
|
|
|
|
|
m_requestCount(0), m_networkAccessManager(0)
|
2010-03-31 11:49:06 +02:00
|
|
|
{
|
2010-11-01 16:29:45 +01:00
|
|
|
qRegisterMetaType<Core::RssItem>("Core::RssItem");
|
2010-05-05 16:02:54 +02:00
|
|
|
moveToThread(this);
|
2010-03-31 11:49:06 +02:00
|
|
|
}
|
|
|
|
|
|
2010-09-24 17:30:10 +02:00
|
|
|
RssFetcher::~RssFetcher()
|
2009-05-12 09:48:41 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-24 17:30:10 +02:00
|
|
|
void RssFetcher::run()
|
2010-05-05 16:02:54 +02:00
|
|
|
{
|
|
|
|
|
exec();
|
|
|
|
|
delete m_networkAccessManager;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-24 17:30:10 +02:00
|
|
|
void RssFetcher::fetch(const QUrl &url)
|
2009-05-12 09:48:41 +02:00
|
|
|
{
|
2010-03-31 11:49:06 +02:00
|
|
|
QString agentStr = QString::fromLatin1("Qt-Creator/%1 (QHttp %2; %3; %4; %5 bit)")
|
2009-05-28 13:47:15 +02:00
|
|
|
.arg(Core::Constants::IDE_VERSION_LONG).arg(qVersion())
|
|
|
|
|
.arg(getOsString()).arg(QLocale::system().name())
|
|
|
|
|
.arg(QSysInfo::WordSize);
|
2010-02-18 17:36:17 +01:00
|
|
|
QNetworkRequest req(url);
|
|
|
|
|
req.setRawHeader("User-Agent", agentStr.toLatin1());
|
2010-05-05 16:02:54 +02:00
|
|
|
if (!m_networkAccessManager) {
|
|
|
|
|
m_networkAccessManager = new QNetworkAccessManager;
|
2010-10-13 12:28:37 +02:00
|
|
|
m_networkAccessManager->setConfiguration(QNetworkConfiguration());
|
2010-05-05 16:02:54 +02:00
|
|
|
connect(m_networkAccessManager, SIGNAL(finished(QNetworkReply*)),
|
2010-03-31 11:49:06 +02:00
|
|
|
SLOT(fetchingFinished(QNetworkReply*)));
|
|
|
|
|
}
|
2010-09-24 17:30:10 +02:00
|
|
|
m_requestCount++;
|
2010-03-31 11:49:06 +02:00
|
|
|
m_networkAccessManager->get(req);
|
2009-05-12 09:48:41 +02:00
|
|
|
}
|
|
|
|
|
|
2010-09-24 17:30:10 +02:00
|
|
|
void RssFetcher::fetchingFinished(QNetworkReply *reply)
|
2009-05-12 09:48:41 +02:00
|
|
|
{
|
2010-03-31 11:49:06 +02:00
|
|
|
const bool error = (reply->error() != QNetworkReply::NoError);
|
2010-02-18 17:36:17 +01:00
|
|
|
if (!error) {
|
2010-03-31 11:49:06 +02:00
|
|
|
parseXml(reply);
|
2010-02-18 17:36:17 +01:00
|
|
|
m_items = 0;
|
2009-05-12 09:48:41 +02:00
|
|
|
}
|
2010-09-24 17:30:10 +02:00
|
|
|
if (--m_requestCount == 0)
|
|
|
|
|
emit finished(error);
|
2010-02-18 17:36:17 +01:00
|
|
|
reply->deleteLater();
|
2009-05-12 09:48:41 +02:00
|
|
|
}
|
|
|
|
|
|
2010-09-24 17:30:10 +02:00
|
|
|
RssFetcher::TagElement RssFetcher::tagElement(const QStringRef &r, TagElement prev)
|
2009-05-12 09:48:41 +02:00
|
|
|
{
|
2010-03-31 11:49:06 +02:00
|
|
|
if (r == QLatin1String("item"))
|
|
|
|
|
return itemElement;
|
|
|
|
|
if (r == QLatin1String("title"))
|
|
|
|
|
return titleElement;
|
2010-09-24 17:30:10 +02:00
|
|
|
if (r == QLatin1String("category"))
|
|
|
|
|
return categoryElement;
|
2010-03-31 11:49:06 +02:00
|
|
|
if (r == QLatin1String("description"))
|
|
|
|
|
return descriptionElement;
|
2010-09-24 17:30:10 +02:00
|
|
|
if (r == QLatin1String("image"))
|
|
|
|
|
return imageElement;
|
|
|
|
|
if (r == QLatin1String("link")) {
|
|
|
|
|
if (prev == imageElement)
|
|
|
|
|
return imageLinkElement;
|
|
|
|
|
else
|
|
|
|
|
return linkElement;
|
|
|
|
|
}
|
2010-03-31 11:49:06 +02:00
|
|
|
return otherElement;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-24 17:30:10 +02:00
|
|
|
void RssFetcher::parseXml(QIODevice *device)
|
2010-03-31 11:49:06 +02:00
|
|
|
{
|
|
|
|
|
QXmlStreamReader xmlReader(device);
|
|
|
|
|
|
|
|
|
|
TagElement currentTag = otherElement;
|
2010-09-24 17:30:10 +02:00
|
|
|
RssItem item;
|
2010-03-31 11:49:06 +02:00
|
|
|
while (!xmlReader.atEnd()) {
|
|
|
|
|
switch (xmlReader.readNext()) {
|
|
|
|
|
case QXmlStreamReader::StartElement:
|
2010-09-24 17:30:10 +02:00
|
|
|
currentTag = tagElement(xmlReader.name(), currentTag);
|
2010-03-31 11:49:06 +02:00
|
|
|
if (currentTag == itemElement) {
|
2010-09-24 17:30:10 +02:00
|
|
|
item = RssItem();
|
2009-05-12 19:47:54 +02:00
|
|
|
}
|
2010-03-31 11:49:06 +02:00
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::EndElement:
|
|
|
|
|
if (xmlReader.name() == QLatin1String("item")) {
|
2009-05-12 09:48:41 +02:00
|
|
|
m_items++;
|
2010-09-24 17:30:10 +02:00
|
|
|
if ((uint)m_items > (uint)m_maxItems)
|
2009-05-12 09:48:41 +02:00
|
|
|
return;
|
2010-09-24 17:30:10 +02:00
|
|
|
emit newsItemReady(item.title, item.description, item.url);
|
|
|
|
|
emit rssItemReady(item);
|
2009-05-12 09:48:41 +02:00
|
|
|
}
|
2010-03-31 11:49:06 +02:00
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::Characters:
|
|
|
|
|
if (!xmlReader.isWhitespace()) {
|
|
|
|
|
switch (currentTag) {
|
|
|
|
|
case titleElement:
|
2010-09-24 17:30:10 +02:00
|
|
|
item.title += xmlReader.text().toString();
|
2010-03-31 11:49:06 +02:00
|
|
|
break;
|
|
|
|
|
case descriptionElement:
|
2010-09-24 17:30:10 +02:00
|
|
|
item.description += xmlReader.text().toString();
|
|
|
|
|
break;
|
|
|
|
|
case categoryElement:
|
|
|
|
|
item.category += xmlReader.text().toString();
|
2010-03-31 11:49:06 +02:00
|
|
|
break;
|
|
|
|
|
case linkElement:
|
2010-09-24 17:30:10 +02:00
|
|
|
item.url += xmlReader.text().toString();
|
|
|
|
|
break;
|
|
|
|
|
case imageLinkElement:
|
|
|
|
|
item.imagePath += xmlReader.text().toString();
|
2010-03-31 11:49:06 +02:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} // !xmlReader.isWhitespace()
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
2009-05-12 09:48:41 +02:00
|
|
|
}
|
|
|
|
|
}
|
2010-03-31 11:49:06 +02:00
|
|
|
if (xmlReader.error() && xmlReader.error() != QXmlStreamReader::PrematureEndOfDocumentError) {
|
2010-09-15 15:16:13 +02:00
|
|
|
qWarning("Welcome::Internal::RSSFetcher: XML ERROR: %d: %s (%s)",
|
|
|
|
|
int(xmlReader.lineNumber()),
|
|
|
|
|
qPrintable(xmlReader.errorString()),
|
2010-09-24 17:30:10 +02:00
|
|
|
qPrintable(item.title));
|
2009-05-12 09:48:41 +02:00
|
|
|
}
|
|
|
|
|
}
|
2010-11-01 16:29:45 +01:00
|
|
|
|
|
|
|
|
} // namespace Core
|