cmake/Source/CPack/IFW/cmCPackIFWRepository.h

86 lines
1.6 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2021-09-14 00:13:48 +02:00
#pragma once
2016-07-09 11:21:54 +02:00
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
#include <string>
#include <vector>
2016-07-09 11:21:54 +02:00
2020-02-01 23:06:01 +01:00
#include "cmCPackIFWCommon.h"
2016-07-09 11:21:54 +02:00
class cmXMLWriter;
/** \class cmCPackIFWRepository
* \brief A remote repository to be created CPack IFW generator
*/
2017-07-20 19:35:53 +02:00
class cmCPackIFWRepository : public cmCPackIFWCommon
2016-07-09 11:21:54 +02:00
{
public:
// Types
enum Action
{
None,
Add,
Remove,
Replace
};
2020-02-01 23:06:01 +01:00
using RepositoriesVector = std::vector<cmCPackIFWRepository*>;
2016-07-09 11:21:54 +02:00
public:
// Constructor
/**
* Construct repository
*/
cmCPackIFWRepository();
public:
// Configuration
/// Internal repository name
std::string Name;
/// Optional update action
Action Update;
/// Is points to a list of available components
std::string Url;
/// Is points to a list that will replaced
std::string OldUrl;
/// Is points to a list that will replace to
std::string NewUrl;
/// With "0" disabling this repository
std::string Enabled;
/// Is used as user on a protected repository
std::string Username;
/// Is password to use on a protected repository
std::string Password;
/// Is optional string to display instead of the URL
std::string DisplayName;
public:
// Internal implementation
bool IsValid() const;
bool ConfigureFromOptions();
bool PatchUpdatesXml();
2021-09-14 00:13:48 +02:00
void WriteRepositoryConfig(cmXMLWriter& xout) const;
void WriteRepositoryUpdate(cmXMLWriter& xout) const;
2016-07-09 11:21:54 +02:00
void WriteRepositoryUpdates(cmXMLWriter& xout);
RepositoriesVector RepositoryUpdate;
std::string Directory;
};