[hostinfo] New module with information about the host, in GS
This commit is contained in:
parent
ffbc1a3e7d
commit
5c7acdeb44
29
src/modules/hostinfo/CMakeLists.txt
Normal file
29
src/modules/hostinfo/CMakeLists.txt
Normal file
@ -0,0 +1,29 @@
|
||||
calamares_add_plugin( hostinfo
|
||||
TYPE job
|
||||
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
||||
SOURCES
|
||||
HostInfoJob.cpp
|
||||
LINK_PRIVATE_LIBRARIES
|
||||
calamares
|
||||
SHARED_LIB
|
||||
)
|
||||
|
||||
if ( KF5CoreAddons_FOUND AND KF5CoreAddons_VERSION VERSION_GREATER_EQUAL 5.58 )
|
||||
target_compile_definitions( calamares_job_hostinfo PRIVATE WITH_KOSRelease )
|
||||
endif()
|
||||
|
||||
if( ECM_FOUND AND BUILD_TESTING )
|
||||
ecm_add_test(
|
||||
Tests.cpp
|
||||
HostInfoJob.cpp # Builds it a second time
|
||||
TEST_NAME
|
||||
hostinfotest
|
||||
LINK_LIBRARIES
|
||||
${CALAMARES_LIBRARIES}
|
||||
calamaresui
|
||||
${YAMLCPP_LIBRARY}
|
||||
Qt5::Core
|
||||
Qt5::Test
|
||||
)
|
||||
calamares_automoc( hostinfotest )
|
||||
endif()
|
163
src/modules/hostinfo/HostInfoJob.cpp
Normal file
163
src/modules/hostinfo/HostInfoJob.cpp
Normal file
@ -0,0 +1,163 @@
|
||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
||||
*
|
||||
* Copyright 2019, Adriaan de Groot <groot@kde.org>
|
||||
*
|
||||
* Calamares is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Calamares 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "HostInfoJob.h"
|
||||
|
||||
#include "GlobalStorage.h"
|
||||
#include "JobQueue.h"
|
||||
#include "utils/CalamaresUtilsSystem.h"
|
||||
#include "utils/Logger.h"
|
||||
|
||||
#include <QDir>
|
||||
#include <QFile>
|
||||
|
||||
#ifdef WITH_KOSRelease
|
||||
#include <KOSRelease>
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_FREEBSD
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
HostInfoJob::HostInfoJob( QObject* parent )
|
||||
: Calamares::CppJob( parent )
|
||||
{
|
||||
}
|
||||
|
||||
HostInfoJob::~HostInfoJob() {}
|
||||
|
||||
|
||||
QString
|
||||
HostInfoJob::prettyName() const
|
||||
{
|
||||
return tr( "Collecting information about your machine." );
|
||||
}
|
||||
|
||||
QString
|
||||
hostOS()
|
||||
{
|
||||
#if defined( Q_OS_FREEBSD )
|
||||
return QStringLiteral( "FreeBSD" );
|
||||
#elif defined( Q_OS_LINUX )
|
||||
return QStringLiteral( "Linux" );
|
||||
#else
|
||||
return QStringLiteral( "<unknown>" );
|
||||
#endif
|
||||
}
|
||||
|
||||
QString
|
||||
hostOSName()
|
||||
{
|
||||
#ifdef WITH_KOSRelease
|
||||
KOSRelease r;
|
||||
return r.name();
|
||||
#else
|
||||
return hostOS();
|
||||
#endif
|
||||
}
|
||||
|
||||
static QString
|
||||
hostCPUmatch( const QString& s )
|
||||
{
|
||||
const QString line = s.toLower();
|
||||
if ( line.contains( "intel" ) )
|
||||
{
|
||||
return QStringLiteral( "Intel" );
|
||||
}
|
||||
else if ( line.contains( "amd" ) )
|
||||
{
|
||||
return QStringLiteral( "AMD" );
|
||||
}
|
||||
return QString();
|
||||
}
|
||||
|
||||
#if defined( Q_OS_FREEBSD )
|
||||
QString
|
||||
hostCPU_FreeBSD()
|
||||
{
|
||||
constexpr const size_t sysctl_buffer_size = 128;
|
||||
char sysctl_buffer[ sysctl_buffer_size ];
|
||||
size_t s = sysctl_buffer_size;
|
||||
|
||||
memset( sysctl_buffer, 0, sizeof( sysctl_buffer ) );
|
||||
int r = sysctlbyname( "hw.model", &sysctl_buffer, &s, NULL, 0 );
|
||||
if ( r )
|
||||
{
|
||||
return QString();
|
||||
}
|
||||
|
||||
sysctl_buffer[ sysctl_buffer_size - 1 ] = 0;
|
||||
QString model( sysctl_buffer );
|
||||
return hostCPUmatch( model );
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined( Q_OS_LINUX )
|
||||
QString
|
||||
hostCPU_Linux()
|
||||
{
|
||||
QFile cpuinfo( "/proc/cpuinfo" );
|
||||
if ( cpuinfo.open( QIODevice::ReadOnly ) )
|
||||
{
|
||||
QTextStream in( &cpuinfo );
|
||||
QString line;
|
||||
while ( in.readLineInto( line ) )
|
||||
{
|
||||
if ( line.startsWith( "cpu_type" ) )
|
||||
{
|
||||
return hostCPUmatch( line );
|
||||
}
|
||||
}
|
||||
}
|
||||
return QString(); // Not open, or not found
|
||||
}
|
||||
#endif
|
||||
|
||||
QString
|
||||
hostCPU()
|
||||
{
|
||||
#if defined( Q_OS_FREEBSD )
|
||||
return hostCPU_FreeBSD();
|
||||
#elif defined( Q_OS_LINUX )
|
||||
return hostCPU_Linux();
|
||||
#else
|
||||
return QString();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Calamares::JobResult
|
||||
HostInfoJob::exec()
|
||||
{
|
||||
cDebug() << "Collecting host information...";
|
||||
|
||||
auto* gs = Calamares::JobQueue::instance()->globalStorage();
|
||||
gs->insert( "hostOS", hostOS() );
|
||||
gs->insert( "hostOSName", hostOSName() );
|
||||
gs->insert( "hostCPU", hostCPU() );
|
||||
|
||||
return Calamares::JobResult::ok();
|
||||
}
|
||||
|
||||
void
|
||||
HostInfoJob::setConfigurationMap( const QVariantMap& )
|
||||
{
|
||||
}
|
||||
|
||||
CALAMARES_PLUGIN_FACTORY_DEFINITION( HostInfoJobFactory, registerPlugin< HostInfoJob >(); )
|
66
src/modules/hostinfo/HostInfoJob.h
Normal file
66
src/modules/hostinfo/HostInfoJob.h
Normal file
@ -0,0 +1,66 @@
|
||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
||||
*
|
||||
* Copyright 2019, Adriaan de Groot <groot@kde.org>
|
||||
*
|
||||
* Calamares is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Calamares 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef HOSTINFOJOB_H
|
||||
#define HOSTINFOJOB_H
|
||||
|
||||
#include "CppJob.h"
|
||||
#include "PluginDllMacro.h"
|
||||
#include "utils/PluginFactory.h"
|
||||
|
||||
#include <QObject>
|
||||
#include <QVariantMap>
|
||||
|
||||
/** @brief the compile-time host OS
|
||||
*
|
||||
* Returns "FreeBSD" or "Linux" or empty.
|
||||
*/
|
||||
QString hostOS();
|
||||
|
||||
/** @brief the run-time host OS
|
||||
*
|
||||
* Returns os-release NAME information, or if that is blank or not available,
|
||||
* the same as hostOS().
|
||||
*/
|
||||
QString hostOSName();
|
||||
|
||||
/** @brief the run-time CPU architecture
|
||||
*
|
||||
* Returns "Intel" or "AMD" or blank, if Calamares can determine what
|
||||
* CPU is currently in use (based on /proc/cpuinfo or hw.model).
|
||||
*/
|
||||
QString hostCPU();
|
||||
|
||||
class PLUGINDLLEXPORT HostInfoJob : public Calamares::CppJob
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit HostInfoJob( QObject* parent = nullptr );
|
||||
virtual ~HostInfoJob() override;
|
||||
|
||||
QString prettyName() const override;
|
||||
|
||||
Calamares::JobResult exec() override;
|
||||
|
||||
void setConfigurationMap( const QVariantMap& configurationMap ) override;
|
||||
};
|
||||
|
||||
CALAMARES_PLUGIN_FACTORY_DECLARATION( HostInfoJobFactory )
|
||||
|
||||
#endif // HOSTINFOJOB_H
|
69
src/modules/hostinfo/Tests.cpp
Normal file
69
src/modules/hostinfo/Tests.cpp
Normal file
@ -0,0 +1,69 @@
|
||||
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
||||
*
|
||||
* Copyright 2019, Adriaan de Groot <groot@kde.org>
|
||||
*
|
||||
* Calamares is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Calamares 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "HostInfoJob.h"
|
||||
|
||||
#include "GlobalStorage.h"
|
||||
#include "JobQueue.h"
|
||||
#include "Settings.h"
|
||||
|
||||
#include "utils/Logger.h"
|
||||
#include "utils/Yaml.h"
|
||||
|
||||
#include <QtTest/QtTest>
|
||||
|
||||
class HostInfoTests : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
HostInfoTests() {}
|
||||
virtual ~HostInfoTests() {}
|
||||
|
||||
private Q_SLOTS:
|
||||
void initTestCase();
|
||||
|
||||
void testHostOS();
|
||||
};
|
||||
|
||||
void
|
||||
HostInfoTests::initTestCase()
|
||||
{
|
||||
Logger::setupLogLevel( Logger::LOGDEBUG );
|
||||
cDebug() << "HostInfo test started.";
|
||||
}
|
||||
|
||||
void
|
||||
HostInfoTests::testHostOS()
|
||||
{
|
||||
#if defined( Q_OS_FREEBSD )
|
||||
QString expect( "FreeBSD" );
|
||||
#elif defined( Q_OS_LINUX )
|
||||
QString expect( "Linux" );
|
||||
#else
|
||||
QString expect( "Plan8" ); // Expect failure
|
||||
#endif
|
||||
|
||||
QCOMPARE( expect, hostOS() );
|
||||
QCOMPARE( expect, hostOSName() ); // Might be the same
|
||||
QCOMPARE( QStringLiteral( "Intel" ), hostCPU() ); // On all my developer machines
|
||||
}
|
||||
|
||||
|
||||
QTEST_GUILESS_MAIN( HostInfoTests )
|
||||
|
||||
#include "Tests.moc"
|
||||
#include "utils/moc-warnings.h"
|
Loading…
Reference in New Issue
Block a user