2011-07-06 15:48:52 +00:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2011-07-06 15:48:52 +00:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
#include "networkaccessmanager.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QLocale>
|
|
|
|
|
#include <QUrl>
|
|
|
|
|
#include <QNetworkReply>
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-08-30 15:57:00 +02:00
|
|
|
#include <app/app_version.h>
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
/*!
|
2011-07-15 15:24:43 +02:00
|
|
|
\class Utils::NetworkManager
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
\brief Network Access Manager for use with Qt Creator.
|
|
|
|
|
|
|
|
|
|
Common initialization, Qt Creator User Agent
|
|
|
|
|
*/
|
|
|
|
|
|
2011-07-15 15:24:43 +02:00
|
|
|
namespace Utils {
|
2010-11-11 16:49:17 +01: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;
|
|
|
|
|
if (uname(&uts) == 0) {
|
|
|
|
|
osString += QLatin1String(uts.sysname);
|
|
|
|
|
osString += QLatin1Char(' ');
|
|
|
|
|
osString += QLatin1String(uts.release);
|
|
|
|
|
} else {
|
|
|
|
|
osString += QLatin1String("Unix (Unknown)");
|
|
|
|
|
}
|
|
|
|
|
#else
|
2011-07-20 17:27:06 +02:00
|
|
|
osString = QLatin1String("Unknown OS");
|
2010-11-11 16:49:17 +01:00
|
|
|
#endif
|
|
|
|
|
return osString;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NetworkAccessManager::NetworkAccessManager(QObject *parent)
|
|
|
|
|
: QNetworkAccessManager(parent)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NetworkAccessManager::getUrl(const QUrl &url)
|
|
|
|
|
{
|
|
|
|
|
QNetworkRequest req;
|
|
|
|
|
req.setUrl(url);
|
|
|
|
|
get(req);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QNetworkReply* NetworkAccessManager::createRequest(Operation op, const QNetworkRequest &request, QIODevice *outgoingData)
|
|
|
|
|
{
|
|
|
|
|
QString agentStr = QString::fromLatin1("Qt-Creator/%1 (QNetworkAccessManager %2; %3; %4; %5 bit)")
|
2012-01-04 17:34:08 +01:00
|
|
|
.arg(QLatin1String(Core::Constants::IDE_VERSION_LONG),
|
|
|
|
|
QLatin1String(qVersion()),
|
|
|
|
|
getOsString(), QLocale::system().name())
|
2010-11-11 16:49:17 +01:00
|
|
|
.arg(QSysInfo::WordSize);
|
|
|
|
|
QNetworkRequest req(request);
|
|
|
|
|
req.setRawHeader("User-Agent", agentStr.toLatin1());
|
|
|
|
|
return QNetworkAccessManager::createRequest(op, req, outgoingData);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace utils
|