2021-04-07 00:23:23 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2018-2021 Maschell
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#include "WUPSConfigCategory.h"
|
|
|
|
#include "utils/logger.h"
|
|
|
|
#include <optional>
|
2021-04-07 00:23:23 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <wups/config.h>
|
|
|
|
|
|
|
|
class WUPSConfig {
|
|
|
|
public:
|
2023-11-04 15:32:45 +01:00
|
|
|
explicit WUPSConfig(std::string_view name) {
|
2021-04-07 00:23:23 +02:00
|
|
|
this->name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
~WUPSConfig() {
|
2023-11-04 15:32:45 +01:00
|
|
|
for (const auto &element : categories) {
|
2021-04-07 00:23:23 +02:00
|
|
|
delete element;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\return Returns the name of this WUPSConfig
|
|
|
|
**/
|
2022-05-14 14:00:20 +02:00
|
|
|
[[nodiscard]] const std::string &getName() const {
|
2021-04-07 00:23:23 +02:00
|
|
|
return this->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Creates a new WUPSCategory add its to this WUPSConfig.
|
|
|
|
The category will be added to the end of the list.
|
|
|
|
This class holds responsibility for deleting the created instance.
|
|
|
|
|
|
|
|
\param categoryName: The name of the category that will be created.
|
|
|
|
|
|
|
|
\return On success, the created and inserted category will be returned.
|
|
|
|
**/
|
2023-11-04 15:32:45 +01:00
|
|
|
std::optional<WUPSConfigCategory *> addCategory(std::string_view categoryName) {
|
2022-05-14 14:00:20 +02:00
|
|
|
auto curCat = new (std::nothrow) WUPSConfigCategory(categoryName);
|
2021-04-07 00:23:23 +02:00
|
|
|
if (curCat == nullptr) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
categories.push_back(curCat);
|
|
|
|
return curCat;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Adds a given WUPSConfigCategory to this WUPSConfig.
|
|
|
|
The category will be added to the end of the list.
|
|
|
|
This class holds responsibility for deleting the created instance.
|
|
|
|
|
|
|
|
\param category: The category that will be added to this config.
|
|
|
|
|
|
|
|
\return On success, the inserted category will be returned.
|
2021-09-25 14:26:18 +02:00
|
|
|
On error nullptr will be returned. In this case the caller still has the responsibility
|
2021-04-07 00:23:23 +02:00
|
|
|
for deleting the WUPSConfigCategory instance.
|
|
|
|
**/
|
|
|
|
WUPSConfigCategory *addCategory(WUPSConfigCategory *category) {
|
|
|
|
categories.push_back(category);
|
|
|
|
return category;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\return Returns a vector with all categories.
|
|
|
|
**/
|
|
|
|
const std::vector<WUPSConfigCategory *> &getCategories() {
|
|
|
|
return this->categories;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string name;
|
|
|
|
std::vector<WUPSConfigCategory *> categories = {};
|
|
|
|
};
|