2019-09-14 14:50:00 +02:00
|
|
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
2020-08-10 09:53:05 +02:00
|
|
|
*
|
2020-05-30 16:15:03 +02:00
|
|
|
* SPDX-FileCopyrightText: 2014-2015 Teo Mrnjavac <teo@kde.org>
|
|
|
|
* SPDX-FileCopyrightText: 2018-2019 Adriaan de Groot <groot@kde.org>
|
2020-08-10 09:53:05 +02:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2019-09-14 14:50:00 +02:00
|
|
|
*
|
|
|
|
* 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/>.
|
2020-05-30 16:15:03 +02:00
|
|
|
*
|
2019-09-14 14:50:00 +02:00
|
|
|
*/
|
|
|
|
#ifndef MODULESYSTEM_INSTANCEKEY_H
|
|
|
|
#define MODULESYSTEM_INSTANCEKEY_H
|
|
|
|
|
2020-01-24 22:53:14 +01:00
|
|
|
#include <QDebug>
|
2020-08-11 15:27:30 +02:00
|
|
|
#include <QList>
|
2019-09-14 14:50:00 +02:00
|
|
|
#include <QPair>
|
2019-09-14 19:03:25 +02:00
|
|
|
#include <QString>
|
|
|
|
|
2019-09-14 14:50:00 +02:00
|
|
|
namespace Calamares
|
|
|
|
{
|
|
|
|
namespace ModuleSystem
|
|
|
|
{
|
|
|
|
|
|
|
|
/** @brief A module instance's key (`module@id`)
|
|
|
|
*
|
|
|
|
* A module instance is identified by both the module's name
|
|
|
|
* (a Calamares module, e.g. `users`) and an instance id.
|
|
|
|
* Usually, the instance id is the same as the module name
|
|
|
|
* and the whole module instance key is `users@users`, but
|
|
|
|
* it is possible to use the same module more than once
|
|
|
|
* and then you distinguish those module instances by their
|
|
|
|
* secondary id (e.g. `users@one`).
|
|
|
|
*
|
|
|
|
* This is supported by the *instances* configuration entry
|
|
|
|
* in `settings.conf`.
|
|
|
|
*/
|
|
|
|
class InstanceKey : public QPair< QString, QString >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// @brief Create an instance key from explicit module and id.
|
|
|
|
InstanceKey( const QString& module, const QString& id )
|
|
|
|
: QPair( module, id )
|
|
|
|
{
|
|
|
|
if ( second.isEmpty() )
|
|
|
|
{
|
|
|
|
second = first;
|
|
|
|
}
|
2019-09-14 15:21:37 +02:00
|
|
|
validate();
|
2019-09-14 14:50:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief Create unusual, invalid instance key
|
|
|
|
InstanceKey()
|
|
|
|
: QPair( QString(), QString() )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @brief A valid module has both name and id
|
|
|
|
bool isValid() const { return !first.isEmpty() && !second.isEmpty(); }
|
|
|
|
|
|
|
|
/// @brief A custom module has a non-default id
|
|
|
|
bool isCustom() const { return first != second; }
|
|
|
|
|
|
|
|
QString module() const { return first; }
|
|
|
|
QString id() const { return second; }
|
|
|
|
|
|
|
|
/// @brief Create instance key from stringified version
|
2020-01-24 22:53:14 +01:00
|
|
|
static InstanceKey fromString( const QString& s );
|
2019-09-14 14:50:00 +02:00
|
|
|
|
2019-09-14 19:03:25 +02:00
|
|
|
QString toString() const
|
|
|
|
{
|
2019-09-30 17:55:11 +02:00
|
|
|
if ( isValid() )
|
|
|
|
{
|
|
|
|
return first + '@' + second;
|
|
|
|
}
|
|
|
|
return QString();
|
2019-09-14 19:03:25 +02:00
|
|
|
}
|
|
|
|
|
2019-09-14 15:21:37 +02:00
|
|
|
private:
|
|
|
|
/** @brief Check validity and reset module and id if needed. */
|
|
|
|
void validate()
|
|
|
|
{
|
|
|
|
if ( first.contains( '@' ) || second.contains( '@' ) )
|
|
|
|
{
|
|
|
|
first = QString();
|
|
|
|
second = QString();
|
|
|
|
}
|
|
|
|
}
|
2019-09-14 14:50:00 +02:00
|
|
|
};
|
|
|
|
|
2020-08-11 15:27:30 +02:00
|
|
|
using InstanceKeyList = QList< InstanceKey >;
|
|
|
|
|
2020-03-31 23:19:51 +02:00
|
|
|
QDebug& operator<<( QDebug& s, const Calamares::ModuleSystem::InstanceKey& i );
|
2020-01-24 22:53:14 +01:00
|
|
|
|
2019-09-14 19:03:25 +02:00
|
|
|
} // namespace ModuleSystem
|
|
|
|
} // namespace Calamares
|
|
|
|
|
2019-09-14 14:50:00 +02:00
|
|
|
#endif
|