2021-04-07 00:23:23 +02:00
|
|
|
/****************************************************************************
|
2023-12-16 17:36:57 +01: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/>.
|
|
|
|
****************************************************************************/
|
2021-04-07 00:23:23 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#include "WUPSConfigItem.h"
|
2023-12-16 17:36:57 +01:00
|
|
|
#include <optional>
|
2021-04-07 00:23:23 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <wups/config.h>
|
|
|
|
|
2023-12-16 17:36:57 +01:00
|
|
|
namespace WUPSConfigAPIBackend {
|
|
|
|
class WUPSConfigCategory {
|
|
|
|
public:
|
|
|
|
explicit WUPSConfigCategory(std::string_view name) : mName(name) {
|
2021-04-07 00:23:23 +02:00
|
|
|
}
|
|
|
|
|
2023-12-16 17:36:57 +01:00
|
|
|
virtual ~WUPSConfigCategory() = default;
|
|
|
|
|
|
|
|
/**
|
|
|
|
\return Returns the name of this WUPSConfigCategory
|
2021-04-07 00:23:23 +02:00
|
|
|
**/
|
2023-12-16 17:36:57 +01:00
|
|
|
[[nodiscard]] const std::string &getName() const {
|
|
|
|
return mName;
|
|
|
|
}
|
2021-04-07 00:23:23 +02:00
|
|
|
|
2023-12-16 17:36:57 +01:00
|
|
|
/**
|
|
|
|
\brief Adds a given WUPSConfigItem to this WUPSConfigCategory.
|
|
|
|
The item will be added to the end of the list.
|
|
|
|
This class holds responsibility for deleting the created instance.
|
2021-04-07 00:23:23 +02:00
|
|
|
|
2023-12-16 17:36:57 +01:00
|
|
|
\param item: The item that will be added to this config.
|
2021-04-07 00:23:23 +02:00
|
|
|
|
2023-12-16 17:36:57 +01:00
|
|
|
\return On success, true will be returned.
|
|
|
|
On error false will be returned. In this case the caller still has the responsibility
|
|
|
|
for deleting the WUPSConfigItem instance.
|
|
|
|
**/
|
|
|
|
[[nodiscard]] bool addItem(std::unique_ptr<WUPSConfigItem> &item) {
|
|
|
|
if (item != nullptr) {
|
|
|
|
mItems.push_back(std::move(item));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\return Returns a vector with all items.
|
|
|
|
**/
|
|
|
|
[[nodiscard]] const std::vector<std::unique_ptr<WUPSConfigItem>> &getItems() const {
|
|
|
|
return mItems;
|
2021-04-07 00:23:23 +02:00
|
|
|
}
|
|
|
|
|
2023-12-16 17:36:57 +01:00
|
|
|
/**
|
|
|
|
\return Returns a vector with all categories.
|
2021-04-07 00:23:23 +02:00
|
|
|
**/
|
2023-12-16 17:36:57 +01:00
|
|
|
[[nodiscard]] const std::vector<std::unique_ptr<WUPSConfigCategory>> &getCategories() const {
|
|
|
|
return mCategories;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Adds a given WUPSConfigCategory to this WUPSConfigCategory.
|
|
|
|
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, true will be returned.
|
|
|
|
On error false will be returned. In this case the caller still has the responsibility
|
|
|
|
for deleting the WUPSConfigCategory instance.
|
|
|
|
**/
|
|
|
|
[[nodiscard]] bool addCategory(std::unique_ptr<WUPSConfigCategory> &category) {
|
|
|
|
mCategories.push_back(std::move(category));
|
|
|
|
return true;
|
|
|
|
}
|
2021-04-07 00:23:23 +02:00
|
|
|
|
2023-12-16 17:36:57 +01:00
|
|
|
private:
|
|
|
|
std::string mName;
|
|
|
|
std::vector<std::unique_ptr<WUPSConfigItem>> mItems;
|
|
|
|
std::vector<std::unique_ptr<WUPSConfigCategory>> mCategories;
|
|
|
|
};
|
|
|
|
} // namespace WUPSConfigAPIBackend
|