forked from qt-creator/qt-creator
Meson: Use Utils::FilePaths in parser
Change-Id: Idb256110e519c642420580ebd159bcffa11c0f1b Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
@@ -17,41 +17,5 @@
|
||||
namespace MesonProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
class BuildSystemFilesParser
|
||||
{
|
||||
std::vector<Utils::FilePath> m_files;
|
||||
static void appendFiles(const std::optional<QJsonArray> &arr, std::vector<Utils::FilePath> &dest)
|
||||
{
|
||||
if (arr)
|
||||
std::transform(std::cbegin(*arr),
|
||||
std::cend(*arr),
|
||||
std::back_inserter(dest),
|
||||
[](const auto &file) {
|
||||
return Utils::FilePath::fromString(file.toString());
|
||||
});
|
||||
}
|
||||
|
||||
public:
|
||||
BuildSystemFilesParser(const Utils::FilePath &buildDir)
|
||||
{
|
||||
Utils::FilePath path = buildDir / Constants::MESON_INFO_DIR / Constants::MESON_INTRO_BUILDSYSTEM_FILES;
|
||||
auto arr = load<QJsonArray>(path.toFSPathString());
|
||||
appendFiles(arr, m_files);
|
||||
}
|
||||
|
||||
BuildSystemFilesParser(const QJsonDocument &js)
|
||||
{
|
||||
auto arr = get<QJsonArray>(js.object(), "projectinfo", "buildsystem_files");
|
||||
appendFiles(arr, m_files);
|
||||
const auto subprojects = get<QJsonArray>(js.object(), "projectinfo", "subprojects");
|
||||
for (const auto &subproject : *subprojects) {
|
||||
auto arr = get<QJsonArray>(subproject.toObject(), "buildsystem_files");
|
||||
appendFiles(arr, m_files);
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<Utils::FilePath> files() { return m_files; };
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace MesonProjectManager
|
||||
|
||||
Reference in New Issue
Block a user