1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmQtAutoGeneratorRcc_h
#define cmQtAutoGeneratorRcc_h
#include "cmConfigure.h" // IWYU pragma: keep
#include "cmFileLock.h"
#include "cmQtAutoGenerator.h"
#include "cm_uv.h"
#include <string>
#include <vector>
class cmMakefile;
// @brief AUTORCC generator
class cmQtAutoGeneratorRcc : public cmQtAutoGenerator
{
public:
cmQtAutoGeneratorRcc();
~cmQtAutoGeneratorRcc() override;
cmQtAutoGeneratorRcc(cmQtAutoGeneratorRcc const&) = delete;
cmQtAutoGeneratorRcc& operator=(cmQtAutoGeneratorRcc const&) = delete;
private:
// -- Types
/// @brief Processing stage
enum class StageT : unsigned char
{
SETTINGS_READ,
TEST_QRC_RCC_FILES,
TEST_RESOURCES_READ,
TEST_RESOURCES,
TEST_INFO_FILE,
GENERATE,
GENERATE_RCC,
GENERATE_WRAPPER,
SETTINGS_WRITE,
FINISH,
END
};
// -- Abstract processing interface
bool Init(cmMakefile* makefile) override;
bool Process() override;
// -- Process stage
static void UVPollStage(uv_async_t* handle);
void PollStage();
void SetStage(StageT stage);
// -- Settings file
bool SettingsFileRead();
void SettingsFileWrite();
// -- Tests
bool TestQrcRccFiles();
bool TestResourcesRead();
bool TestResources();
void TestInfoFile();
// -- Generation
void GenerateParentDir();
bool GenerateRcc();
void GenerateWrapper();
// -- Utility
bool IsMultiConfig() const { return MultiConfig_; }
std::string MultiConfigOutput() const;
bool StartProcess(std::string const& workingDirectory,
std::vector<std::string> const& command,
bool mergedOutput);
private:
// -- Config settings
bool MultiConfig_ = false;
// -- Directories
std::string AutogenBuildDir_;
std::string IncludeDir_;
// -- Qt environment
std::string RccExecutable_;
std::vector<std::string> RccListOptions_;
// -- Job
std::string LockFile_;
cmFileLock LockFileLock_;
std::string QrcFile_;
std::string QrcFileName_;
std::string QrcFileDir_;
std::string RccPathChecksum_;
std::string RccFileName_;
std::string RccFileOutput_;
std::string RccFilePublic_;
std::vector<std::string> Options_;
std::vector<std::string> Inputs_;
// -- Subprocess
ProcessResultT ProcessResult_;
std::unique_ptr<ReadOnlyProcessT> Process_;
// -- Settings file
std::string SettingsFile_;
std::string SettingsString_;
bool SettingsChanged_ = false;
// -- libuv loop
StageT Stage_ = StageT::SETTINGS_READ;
bool Error_ = false;
bool Generate_ = false;
bool BuildFileChanged_ = false;
};
#endif
|