qt5base-lts/tests/manual/qsysinfo/main.cpp
Thiago Macieira 41ef1965c5 QSysInfo: expand Linux distribution detection to /etc/lsb-release
Some older (or weird) Linux distributions don't have /etc/os-release, so
let's try to read /etc/lsb-release instead. If we find a file called
/etc/<distronamelowercase>-release and it's bigger than the pretty name
we read from /etc/lsb-release, use that.

Because the order of the keys changes between the two *-release files,
we can't do a sorted search anymore.

Change-Id: I1a800c709d3543699131ffff13c48532d5074f3c
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Reviewed-by: Dirk Hohndel <dirk@hohndel.org>
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
2015-02-25 15:49:20 +00:00

140 lines
4.8 KiB
C++

/****************************************************************************
**
** Copyright (C) 2015 Intel Corporation
** Contact: http://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** 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 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** As a special exception, The Qt Company gives you certain additional
** rights. These rights are described in The Qt Company LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <QCoreApplication>
#include <QSysInfo>
#include <stdio.h>
// I'm lazy
#define CASE_VERSION(v) case QSysInfo::v: return QT_STRINGIFY(v)
QByteArray windowsVersionToString(QSysInfo::WinVersion v)
{
switch (v) {
CASE_VERSION(WV_None);
CASE_VERSION(WV_32s);
CASE_VERSION(WV_95);
CASE_VERSION(WV_98);
CASE_VERSION(WV_Me);
case QSysInfo::WV_DOS_based: // shouldn't happen
break;
CASE_VERSION(WV_NT);
CASE_VERSION(WV_2000);
CASE_VERSION(WV_XP);
CASE_VERSION(WV_2003);
CASE_VERSION(WV_VISTA);
CASE_VERSION(WV_WINDOWS7);
CASE_VERSION(WV_WINDOWS8);
CASE_VERSION(WV_WINDOWS8_1);
CASE_VERSION(WV_WINDOWS10);
case QSysInfo::WV_NT_based: // shouldn't happen
break;
CASE_VERSION(WV_CE);
CASE_VERSION(WV_CENET);
CASE_VERSION(WV_CE_5);
CASE_VERSION(WV_CE_6);
case QSysInfo::WV_CE_based: // shouldn't happen
break;
}
return "WinVersion(0x" + QByteArray::number(v, 16) + ')';
}
QByteArray macVersionToString(QSysInfo::MacVersion v)
{
switch (v) {
CASE_VERSION(MV_None);
CASE_VERSION(MV_Unknown);
CASE_VERSION(MV_9);
CASE_VERSION(MV_10_0);
CASE_VERSION(MV_10_1);
CASE_VERSION(MV_10_2);
CASE_VERSION(MV_10_3);
CASE_VERSION(MV_10_4);
CASE_VERSION(MV_10_5);
CASE_VERSION(MV_10_6);
CASE_VERSION(MV_10_7);
CASE_VERSION(MV_10_8);
CASE_VERSION(MV_10_9);
CASE_VERSION(MV_10_10);
CASE_VERSION(MV_IOS_4_3);
CASE_VERSION(MV_IOS_5_0);
CASE_VERSION(MV_IOS_5_1);
CASE_VERSION(MV_IOS_6_0);
CASE_VERSION(MV_IOS_6_1);
CASE_VERSION(MV_IOS_7_0);
CASE_VERSION(MV_IOS_7_1);
CASE_VERSION(MV_IOS_8_0);
case QSysInfo::MV_IOS: // shouldn't happen:
break;
}
if (v & QSysInfo::MV_IOS) {
int major = (v >> 4) & 0xf;
int minor = v & 0xf;
return "MacVersion(Q_MV_IOS("
+ QByteArray::number(major) + ", "
+ QByteArray::number(minor) + "))";
}
return "MacVersion(Q_MV_OSX(10, " + QByteArray::number(v - 2) + "))";
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
printf("QSysInfo::WordSize = %d\n", QSysInfo::WordSize);
printf("QSysInfo::ByteOrder = QSysInfo::%sEndian\n",
QSysInfo::ByteOrder == QSysInfo::LittleEndian ? "Little" : "Big");
printf("QSysInfo::WindowsVersion = QSysInfo::%s\n",
windowsVersionToString(QSysInfo::WindowsVersion).constData());
printf("QSysInfo::MacintoshVersion = QSysInfo::%s\n",
macVersionToString(QSysInfo::MacintoshVersion).constData());
printf("QSysInfo::buildCpuArchitecture() = %s\n", qPrintable(QSysInfo::buildCpuArchitecture()));
printf("QSysInfo::currentCpuArchitecture() = %s\n", qPrintable(QSysInfo::currentCpuArchitecture()));
printf("QSysInfo::buildAbi() = %s\n", qPrintable(QSysInfo::buildAbi()));
printf("QSysInfo::kernelType() = %s\n", qPrintable(QSysInfo::kernelType()));
printf("QSysInfo::kernelVersion() = %s\n", qPrintable(QSysInfo::kernelVersion()));
printf("QSysInfo::productType() = %s\n", qPrintable(QSysInfo::productType()));
printf("QSysInfo::productVersion() = %s\n", qPrintable(QSysInfo::productVersion()));
printf("QSysInfo::prettyProductName() = %s\n", qPrintable(QSysInfo::prettyProductName()));
return 0;
}