cmake/Source/cmRuntimeDependencyArchive.h

78 lines
2.9 KiB
C
Raw Normal View History

2020-02-01 23:06:01 +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
2020-02-01 23:06:01 +01:00
#include <map>
#include <memory>
#include <set>
#include <string>
#include <vector>
#include "cmsys/RegularExpression.hxx"
#include "cmBinUtilsLinker.h"
class cmExecutionStatus;
class cmMakefile;
class cmRuntimeDependencyArchive
{
public:
explicit cmRuntimeDependencyArchive(
cmExecutionStatus& status, std::vector<std::string> searchDirectories,
std::string bundleExecutable,
const std::vector<std::string>& preIncludeRegexes,
const std::vector<std::string>& preExcludeRegexes,
const std::vector<std::string>& postIncludeRegexes,
2021-09-14 00:13:48 +02:00
const std::vector<std::string>& postExcludeRegexes,
std::vector<std::string> postIncludeFiles,
std::vector<std::string> postExcludeFiles,
std::vector<std::string> postExcludeFilesStrict);
2020-02-01 23:06:01 +01:00
bool Prepare();
bool GetRuntimeDependencies(const std::vector<std::string>& executables,
const std::vector<std::string>& libraries,
const std::vector<std::string>& modules);
void SetError(const std::string& e);
2021-09-14 00:13:48 +02:00
const std::string& GetBundleExecutable() const;
const std::vector<std::string>& GetSearchDirectories() const;
const std::string& GetGetRuntimeDependenciesTool() const;
bool GetGetRuntimeDependenciesCommand(
const std::string& search, std::vector<std::string>& command) const;
bool IsPreExcluded(const std::string& name) const;
bool IsPostExcluded(const std::string& name) const;
2020-02-01 23:06:01 +01:00
void AddResolvedPath(const std::string& name, const std::string& path,
2021-09-14 00:13:48 +02:00
bool& unique, std::vector<std::string> rpaths = {});
2020-02-01 23:06:01 +01:00
void AddUnresolvedPath(const std::string& name);
2021-09-14 00:13:48 +02:00
cmMakefile* GetMakefile() const;
const std::map<std::string, std::set<std::string>>& GetResolvedPaths() const;
const std::set<std::string>& GetUnresolvedPaths() const;
const std::map<std::string, std::vector<std::string>>& GetRPaths() const;
static bool PlatformSupportsRuntimeDependencies(const std::string& platform);
2020-02-01 23:06:01 +01:00
private:
cmExecutionStatus& Status;
std::unique_ptr<cmBinUtilsLinker> Linker;
std::string GetRuntimeDependenciesTool;
std::vector<std::string> GetRuntimeDependenciesCommand;
std::vector<std::string> SearchDirectories;
std::string BundleExecutable;
std::vector<cmsys::RegularExpression> PreIncludeRegexes;
std::vector<cmsys::RegularExpression> PreExcludeRegexes;
std::vector<cmsys::RegularExpression> PostIncludeRegexes;
std::vector<cmsys::RegularExpression> PostExcludeRegexes;
2021-09-14 00:13:48 +02:00
std::vector<std::string> PostIncludeFiles;
std::vector<std::string> PostExcludeFiles;
std::vector<std::string> PostExcludeFilesStrict;
2020-02-01 23:06:01 +01:00
std::map<std::string, std::set<std::string>> ResolvedPaths;
std::set<std::string> UnresolvedPaths;
2021-09-14 00:13:48 +02:00
std::map<std::string, std::vector<std::string>> RPaths;
2020-02-01 23:06:01 +01:00
};