| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file Copyright.txt or https://cmake.org/licensing for details. */
- #include "cmFileAPICodemodel.h"
- #include <algorithm>
- #include <cassert>
- #include <cstddef>
- #include <functional>
- #include <limits>
- #include <map>
- #include <memory>
- #include <set>
- #include <string>
- #include <unordered_map>
- #include <utility>
- #include <vector>
- #include <cmext/algorithm>
- #include "cm_jsoncpp_value.h"
- #include "cmCryptoHash.h"
- #include "cmFileAPI.h"
- #include "cmGeneratorExpression.h"
- #include "cmGeneratorTarget.h"
- #include "cmGlobalGenerator.h"
- #include "cmInstallGenerator.h"
- #include "cmInstallSubdirectoryGenerator.h"
- #include "cmInstallTargetGenerator.h"
- #include "cmLinkLineComputer.h"
- #include "cmListFileCache.h"
- #include "cmLocalGenerator.h"
- #include "cmMakefile.h"
- #include "cmSourceFile.h"
- #include "cmSourceGroup.h"
- #include "cmState.h"
- #include "cmStateDirectory.h"
- #include "cmStateSnapshot.h"
- #include "cmStateTypes.h"
- #include "cmStringAlgorithms.h"
- #include "cmSystemTools.h"
- #include "cmTarget.h"
- #include "cmTargetDepend.h"
- #include "cmake.h"
- namespace {
- class Codemodel
- {
- cmFileAPI& FileAPI;
- unsigned long Version;
- Json::Value DumpPaths();
- Json::Value DumpConfigurations();
- Json::Value DumpConfiguration(std::string const& config);
- public:
- Codemodel(cmFileAPI& fileAPI, unsigned long version);
- Json::Value Dump();
- };
- class CodemodelConfig
- {
- cmFileAPI& FileAPI;
- unsigned long Version;
- std::string const& Config;
- std::string TopSource;
- std::string TopBuild;
- struct Directory
- {
- cmStateSnapshot Snapshot;
- cmLocalGenerator const* LocalGenerator = nullptr;
- Json::Value TargetIndexes = Json::arrayValue;
- Json::ArrayIndex ProjectIndex;
- bool HasInstallRule = false;
- };
- std::map<cmStateSnapshot, Json::ArrayIndex, cmStateSnapshot::StrictWeakOrder>
- DirectoryMap;
- std::vector<Directory> Directories;
- struct Project
- {
- cmStateSnapshot Snapshot;
- static const Json::ArrayIndex NoParentIndex =
- static_cast<Json::ArrayIndex>(-1);
- Json::ArrayIndex ParentIndex = NoParentIndex;
- Json::Value ChildIndexes = Json::arrayValue;
- Json::Value DirectoryIndexes = Json::arrayValue;
- Json::Value TargetIndexes = Json::arrayValue;
- };
- std::map<cmStateSnapshot, Json::ArrayIndex, cmStateSnapshot::StrictWeakOrder>
- ProjectMap;
- std::vector<Project> Projects;
- void ProcessDirectories();
- Json::ArrayIndex GetDirectoryIndex(cmLocalGenerator const* lg);
- Json::ArrayIndex GetDirectoryIndex(cmStateSnapshot s);
- Json::ArrayIndex AddProject(cmStateSnapshot s);
- Json::Value DumpTargets();
- Json::Value DumpTarget(cmGeneratorTarget* gt, Json::ArrayIndex ti);
- Json::Value DumpDirectories();
- Json::Value DumpDirectory(Directory& d);
- Json::Value DumpProjects();
- Json::Value DumpProject(Project& p);
- Json::Value DumpMinimumCMakeVersion(cmStateSnapshot s);
- public:
- CodemodelConfig(cmFileAPI& fileAPI, unsigned long version,
- std::string const& config);
- Json::Value Dump();
- };
- std::string RelativeIfUnder(std::string const& top, std::string const& in)
- {
- std::string out;
- if (in == top) {
- out = ".";
- } else if (cmSystemTools::IsSubDirectory(in, top)) {
- out = in.substr(top.size() + 1);
- } else {
- out = in;
- }
- return out;
- }
- std::string TargetId(cmGeneratorTarget const* gt, std::string const& topBuild)
- {
- cmCryptoHash hasher(cmCryptoHash::AlgoSHA3_256);
- std::string path = RelativeIfUnder(
- topBuild, gt->GetLocalGenerator()->GetCurrentBinaryDirectory());
- std::string hash = hasher.HashString(path);
- hash.resize(20, '0');
- return gt->GetName() + CMAKE_DIRECTORY_ID_SEP + hash;
- }
- class JBTIndex
- {
- public:
- JBTIndex() = default;
- explicit operator bool() const { return Index != None; }
- Json::ArrayIndex Index = None;
- static Json::ArrayIndex const None = static_cast<Json::ArrayIndex>(-1);
- };
- template <typename T>
- class JBT
- {
- public:
- JBT(T v = T(), JBTIndex bt = JBTIndex())
- : Value(std::move(v))
- , Backtrace(bt)
- {
- }
- T Value;
- JBTIndex Backtrace;
- friend bool operator==(JBT<T> const& l, JBT<T> const& r)
- {
- return l.Value == r.Value && l.Backtrace.Index == r.Backtrace.Index;
- }
- static bool ValueEq(JBT<T> const& l, JBT<T> const& r)
- {
- return l.Value == r.Value;
- }
- static bool ValueLess(JBT<T> const& l, JBT<T> const& r)
- {
- return l.Value < r.Value;
- }
- };
- class BacktraceData
- {
- std::string TopSource;
- std::unordered_map<std::string, Json::ArrayIndex> CommandMap;
- std::unordered_map<std::string, Json::ArrayIndex> FileMap;
- std::unordered_map<cmListFileContext const*, Json::ArrayIndex> NodeMap;
- Json::Value Commands = Json::arrayValue;
- Json::Value Files = Json::arrayValue;
- Json::Value Nodes = Json::arrayValue;
- Json::ArrayIndex AddCommand(std::string const& command)
- {
- auto i = this->CommandMap.find(command);
- if (i == this->CommandMap.end()) {
- auto cmdIndex = static_cast<Json::ArrayIndex>(this->Commands.size());
- i = this->CommandMap.emplace(command, cmdIndex).first;
- this->Commands.append(command);
- }
- return i->second;
- }
- Json::ArrayIndex AddFile(std::string const& file)
- {
- auto i = this->FileMap.find(file);
- if (i == this->FileMap.end()) {
- auto fileIndex = static_cast<Json::ArrayIndex>(this->Files.size());
- i = this->FileMap.emplace(file, fileIndex).first;
- this->Files.append(RelativeIfUnder(this->TopSource, file));
- }
- return i->second;
- }
- public:
- BacktraceData(std::string topSource);
- JBTIndex Add(cmListFileBacktrace const& bt);
- Json::Value Dump();
- };
- BacktraceData::BacktraceData(std::string topSource)
- : TopSource(std::move(topSource))
- {
- }
- JBTIndex BacktraceData::Add(cmListFileBacktrace const& bt)
- {
- JBTIndex index;
- if (bt.Empty()) {
- return index;
- }
- cmListFileContext const* top = &bt.Top();
- auto found = this->NodeMap.find(top);
- if (found != this->NodeMap.end()) {
- index.Index = found->second;
- return index;
- }
- Json::Value entry = Json::objectValue;
- entry["file"] = this->AddFile(top->FilePath);
- if (top->Line) {
- entry["line"] = static_cast<int>(top->Line);
- }
- if (!top->Name.empty()) {
- entry["command"] = this->AddCommand(top->Name);
- }
- if (JBTIndex parent = this->Add(bt.Pop())) {
- entry["parent"] = parent.Index;
- }
- index.Index = this->NodeMap[top] = this->Nodes.size();
- this->Nodes.append(std::move(entry)); // NOLINT(*)
- return index;
- }
- Json::Value BacktraceData::Dump()
- {
- Json::Value backtraceGraph;
- this->CommandMap.clear();
- this->FileMap.clear();
- this->NodeMap.clear();
- backtraceGraph["commands"] = std::move(this->Commands);
- backtraceGraph["files"] = std::move(this->Files);
- backtraceGraph["nodes"] = std::move(this->Nodes);
- return backtraceGraph;
- }
- struct CompileData
- {
- struct IncludeEntry
- {
- JBT<std::string> Path;
- bool IsSystem = false;
- IncludeEntry(JBT<std::string> path, bool isSystem)
- : Path(std::move(path))
- , IsSystem(isSystem)
- {
- }
- friend bool operator==(IncludeEntry const& l, IncludeEntry const& r)
- {
- return l.Path == r.Path && l.IsSystem == r.IsSystem;
- }
- };
- std::string Language;
- std::string Sysroot;
- std::vector<JBT<std::string>> Flags;
- std::vector<JBT<std::string>> Defines;
- std::vector<IncludeEntry> Includes;
- friend bool operator==(CompileData const& l, CompileData const& r)
- {
- return (l.Language == r.Language && l.Sysroot == r.Sysroot &&
- l.Flags == r.Flags && l.Defines == r.Defines &&
- l.Includes == r.Includes);
- }
- };
- }
- namespace std {
- template <>
- struct hash<CompileData>
- {
- std::size_t operator()(CompileData const& in) const
- {
- using std::hash;
- size_t result =
- hash<std::string>()(in.Language) ^ hash<std::string>()(in.Sysroot);
- for (auto const& i : in.Includes) {
- result = result ^
- (hash<std::string>()(i.Path.Value) ^
- hash<Json::ArrayIndex>()(i.Path.Backtrace.Index) ^
- (i.IsSystem ? std::numeric_limits<size_t>::max() : 0));
- }
- for (auto const& i : in.Flags) {
- result = result ^ hash<std::string>()(i.Value) ^
- hash<Json::ArrayIndex>()(i.Backtrace.Index);
- }
- for (auto const& i : in.Defines) {
- result = result ^ hash<std::string>()(i.Value) ^
- hash<Json::ArrayIndex>()(i.Backtrace.Index);
- }
- return result;
- }
- };
- } // namespace std
- namespace {
- class Target
- {
- cmGeneratorTarget* GT;
- std::string const& Config;
- std::string TopSource;
- std::string TopBuild;
- std::vector<cmSourceGroup> SourceGroupsLocal;
- BacktraceData Backtraces;
- std::map<std::string, CompileData> CompileDataMap;
- std::unordered_map<cmSourceFile const*, Json::ArrayIndex> SourceMap;
- Json::Value Sources = Json::arrayValue;
- struct SourceGroup
- {
- std::string Name;
- Json::Value SourceIndexes = Json::arrayValue;
- };
- std::unordered_map<cmSourceGroup const*, Json::ArrayIndex> SourceGroupsMap;
- std::vector<SourceGroup> SourceGroups;
- struct CompileGroup
- {
- std::unordered_map<CompileData, Json::ArrayIndex>::iterator Entry;
- Json::Value SourceIndexes = Json::arrayValue;
- };
- std::unordered_map<CompileData, Json::ArrayIndex> CompileGroupMap;
- std::vector<CompileGroup> CompileGroups;
- template <typename T>
- JBT<T> ToJBT(BT<T> const& bt)
- {
- return JBT<T>(bt.Value, this->Backtraces.Add(bt.Backtrace));
- }
- void ProcessLanguages();
- void ProcessLanguage(std::string const& lang);
- Json::ArrayIndex AddSourceGroup(cmSourceGroup* sg, Json::ArrayIndex si);
- CompileData BuildCompileData(cmSourceFile* sf);
- CompileData MergeCompileData(CompileData const& fd);
- Json::ArrayIndex AddSourceCompileGroup(cmSourceFile* sf,
- Json::ArrayIndex si);
- void AddBacktrace(Json::Value& object, cmListFileBacktrace const& bt);
- void AddBacktrace(Json::Value& object, JBTIndex bt);
- Json::Value DumpPaths();
- Json::Value DumpCompileData(CompileData const& cd);
- Json::Value DumpInclude(CompileData::IncludeEntry const& inc);
- Json::Value DumpDefine(JBT<std::string> const& def);
- Json::Value DumpSources();
- Json::Value DumpSource(cmGeneratorTarget::SourceAndKind const& sk,
- Json::ArrayIndex si);
- Json::Value DumpSourceGroups();
- Json::Value DumpSourceGroup(SourceGroup& sg);
- Json::Value DumpCompileGroups();
- Json::Value DumpCompileGroup(CompileGroup& cg);
- Json::Value DumpSysroot(std::string const& path);
- Json::Value DumpInstall();
- Json::Value DumpInstallPrefix();
- Json::Value DumpInstallDestinations();
- Json::Value DumpInstallDestination(cmInstallTargetGenerator* itGen);
- Json::Value DumpArtifacts();
- Json::Value DumpLink();
- Json::Value DumpArchive();
- Json::Value DumpLinkCommandFragments();
- Json::Value DumpCommandFragments(std::vector<JBT<std::string>> const& frags);
- Json::Value DumpCommandFragment(JBT<std::string> const& frag,
- std::string const& role = std::string());
- Json::Value DumpDependencies();
- Json::Value DumpDependency(cmTargetDepend const& td);
- Json::Value DumpFolder();
- public:
- Target(cmGeneratorTarget* gt, std::string const& config);
- Json::Value Dump();
- };
- Codemodel::Codemodel(cmFileAPI& fileAPI, unsigned long version)
- : FileAPI(fileAPI)
- , Version(version)
- {
- }
- Json::Value Codemodel::Dump()
- {
- Json::Value codemodel = Json::objectValue;
- codemodel["paths"] = this->DumpPaths();
- codemodel["configurations"] = this->DumpConfigurations();
- return codemodel;
- }
- Json::Value Codemodel::DumpPaths()
- {
- Json::Value paths = Json::objectValue;
- paths["source"] = this->FileAPI.GetCMakeInstance()->GetHomeDirectory();
- paths["build"] = this->FileAPI.GetCMakeInstance()->GetHomeOutputDirectory();
- return paths;
- }
- Json::Value Codemodel::DumpConfigurations()
- {
- Json::Value configurations = Json::arrayValue;
- cmGlobalGenerator* gg =
- this->FileAPI.GetCMakeInstance()->GetGlobalGenerator();
- const auto& makefiles = gg->GetMakefiles();
- if (!makefiles.empty()) {
- std::vector<std::string> const& configs =
- makefiles[0]->GetGeneratorConfigs();
- for (std::string const& config : configs) {
- configurations.append(this->DumpConfiguration(config));
- }
- }
- return configurations;
- }
- Json::Value Codemodel::DumpConfiguration(std::string const& config)
- {
- CodemodelConfig configuration(this->FileAPI, this->Version, config);
- return configuration.Dump();
- }
- CodemodelConfig::CodemodelConfig(cmFileAPI& fileAPI, unsigned long version,
- std::string const& config)
- : FileAPI(fileAPI)
- , Version(version)
- , Config(config)
- , TopSource(this->FileAPI.GetCMakeInstance()->GetHomeDirectory())
- , TopBuild(this->FileAPI.GetCMakeInstance()->GetHomeOutputDirectory())
- {
- static_cast<void>(this->Version);
- }
- Json::Value CodemodelConfig::Dump()
- {
- Json::Value configuration = Json::objectValue;
- configuration["name"] = this->Config;
- this->ProcessDirectories();
- configuration["targets"] = this->DumpTargets();
- configuration["directories"] = this->DumpDirectories();
- configuration["projects"] = this->DumpProjects();
- return configuration;
- }
- void CodemodelConfig::ProcessDirectories()
- {
- cmGlobalGenerator* gg =
- this->FileAPI.GetCMakeInstance()->GetGlobalGenerator();
- auto const& localGens = gg->GetLocalGenerators();
- // Add directories in forward order to process parents before children.
- this->Directories.reserve(localGens.size());
- for (const auto& lg : localGens) {
- auto directoryIndex =
- static_cast<Json::ArrayIndex>(this->Directories.size());
- this->Directories.emplace_back();
- Directory& d = this->Directories[directoryIndex];
- d.Snapshot = lg->GetStateSnapshot().GetBuildsystemDirectory();
- d.LocalGenerator = lg.get();
- this->DirectoryMap[d.Snapshot] = directoryIndex;
- d.ProjectIndex = this->AddProject(d.Snapshot);
- this->Projects[d.ProjectIndex].DirectoryIndexes.append(directoryIndex);
- }
- // Update directories in reverse order to process children before parents.
- for (auto di = this->Directories.rbegin(); di != this->Directories.rend();
- ++di) {
- Directory& d = *di;
- // Accumulate the presence of install rules on the way up.
- for (const auto& gen :
- d.LocalGenerator->GetMakefile()->GetInstallGenerators()) {
- if (!dynamic_cast<cmInstallSubdirectoryGenerator*>(gen.get())) {
- d.HasInstallRule = true;
- break;
- }
- }
- if (!d.HasInstallRule) {
- for (cmStateSnapshot const& child : d.Snapshot.GetChildren()) {
- cmStateSnapshot childDir = child.GetBuildsystemDirectory();
- Json::ArrayIndex const childIndex = this->GetDirectoryIndex(childDir);
- if (this->Directories[childIndex].HasInstallRule) {
- d.HasInstallRule = true;
- break;
- }
- }
- }
- }
- }
- Json::ArrayIndex CodemodelConfig::GetDirectoryIndex(cmLocalGenerator const* lg)
- {
- return this->GetDirectoryIndex(
- lg->GetStateSnapshot().GetBuildsystemDirectory());
- }
- Json::ArrayIndex CodemodelConfig::GetDirectoryIndex(cmStateSnapshot s)
- {
- auto i = this->DirectoryMap.find(s);
- assert(i != this->DirectoryMap.end());
- return i->second;
- }
- Json::ArrayIndex CodemodelConfig::AddProject(cmStateSnapshot s)
- {
- cmStateSnapshot ps = s.GetBuildsystemDirectoryParent();
- if (ps.IsValid() && ps.GetProjectName() == s.GetProjectName()) {
- // This directory is part of its parent directory project.
- Json::ArrayIndex const parentDirIndex = this->GetDirectoryIndex(ps);
- return this->Directories[parentDirIndex].ProjectIndex;
- }
- // This directory starts a new project.
- auto projectIndex = static_cast<Json::ArrayIndex>(this->Projects.size());
- this->Projects.emplace_back();
- Project& p = this->Projects[projectIndex];
- p.Snapshot = s;
- this->ProjectMap[s] = projectIndex;
- if (ps.IsValid()) {
- Json::ArrayIndex const parentDirIndex = this->GetDirectoryIndex(ps);
- p.ParentIndex = this->Directories[parentDirIndex].ProjectIndex;
- this->Projects[p.ParentIndex].ChildIndexes.append(projectIndex);
- }
- return projectIndex;
- }
- Json::Value CodemodelConfig::DumpTargets()
- {
- Json::Value targets = Json::arrayValue;
- std::vector<cmGeneratorTarget*> targetList;
- cmGlobalGenerator* gg =
- this->FileAPI.GetCMakeInstance()->GetGlobalGenerator();
- for (const auto& lg : gg->GetLocalGenerators()) {
- cm::append(targetList, lg->GetGeneratorTargets());
- }
- std::sort(targetList.begin(), targetList.end(),
- [](cmGeneratorTarget* l, cmGeneratorTarget* r) {
- return l->GetName() < r->GetName();
- });
- for (cmGeneratorTarget* gt : targetList) {
- if (gt->GetType() == cmStateEnums::GLOBAL_TARGET ||
- gt->GetType() == cmStateEnums::INTERFACE_LIBRARY) {
- continue;
- }
- targets.append(this->DumpTarget(gt, targets.size()));
- }
- return targets;
- }
- Json::Value CodemodelConfig::DumpTarget(cmGeneratorTarget* gt,
- Json::ArrayIndex ti)
- {
- Target t(gt, this->Config);
- std::string prefix = "target-" + gt->GetName();
- for (char& c : prefix) {
- // CMP0037 OLD behavior allows slashes in target names. Remove them.
- if (c == '/' || c == '\\') {
- c = '_';
- }
- }
- if (!this->Config.empty()) {
- prefix += "-" + this->Config;
- }
- Json::Value target = this->FileAPI.MaybeJsonFile(t.Dump(), prefix);
- target["name"] = gt->GetName();
- target["id"] = TargetId(gt, this->TopBuild);
- // Cross-reference directory containing target.
- Json::ArrayIndex di = this->GetDirectoryIndex(gt->GetLocalGenerator());
- target["directoryIndex"] = di;
- this->Directories[di].TargetIndexes.append(ti);
- // Cross-reference project containing target.
- Json::ArrayIndex pi = this->Directories[di].ProjectIndex;
- target["projectIndex"] = pi;
- this->Projects[pi].TargetIndexes.append(ti);
- return target;
- }
- Json::Value CodemodelConfig::DumpDirectories()
- {
- Json::Value directories = Json::arrayValue;
- for (Directory& d : this->Directories) {
- directories.append(this->DumpDirectory(d));
- }
- return directories;
- }
- Json::Value CodemodelConfig::DumpDirectory(Directory& d)
- {
- Json::Value directory = Json::objectValue;
- std::string sourceDir = d.Snapshot.GetDirectory().GetCurrentSource();
- directory["source"] = RelativeIfUnder(this->TopSource, sourceDir);
- std::string buildDir = d.Snapshot.GetDirectory().GetCurrentBinary();
- directory["build"] = RelativeIfUnder(this->TopBuild, buildDir);
- cmStateSnapshot parentDir = d.Snapshot.GetBuildsystemDirectoryParent();
- if (parentDir.IsValid()) {
- directory["parentIndex"] = this->GetDirectoryIndex(parentDir);
- }
- Json::Value childIndexes = Json::arrayValue;
- for (cmStateSnapshot const& child : d.Snapshot.GetChildren()) {
- childIndexes.append(
- this->GetDirectoryIndex(child.GetBuildsystemDirectory()));
- }
- if (!childIndexes.empty()) {
- directory["childIndexes"] = std::move(childIndexes);
- }
- directory["projectIndex"] = d.ProjectIndex;
- if (!d.TargetIndexes.empty()) {
- directory["targetIndexes"] = std::move(d.TargetIndexes);
- }
- Json::Value minimumCMakeVersion = this->DumpMinimumCMakeVersion(d.Snapshot);
- if (!minimumCMakeVersion.isNull()) {
- directory["minimumCMakeVersion"] = std::move(minimumCMakeVersion);
- }
- if (d.HasInstallRule) {
- directory["hasInstallRule"] = true;
- }
- return directory;
- }
- Json::Value CodemodelConfig::DumpProjects()
- {
- Json::Value projects = Json::arrayValue;
- for (Project& p : this->Projects) {
- projects.append(this->DumpProject(p));
- }
- return projects;
- }
- Json::Value CodemodelConfig::DumpProject(Project& p)
- {
- Json::Value project = Json::objectValue;
- project["name"] = p.Snapshot.GetProjectName();
- if (p.ParentIndex != Project::NoParentIndex) {
- project["parentIndex"] = p.ParentIndex;
- }
- if (!p.ChildIndexes.empty()) {
- project["childIndexes"] = std::move(p.ChildIndexes);
- }
- project["directoryIndexes"] = std::move(p.DirectoryIndexes);
- if (!p.TargetIndexes.empty()) {
- project["targetIndexes"] = std::move(p.TargetIndexes);
- }
- return project;
- }
- Json::Value CodemodelConfig::DumpMinimumCMakeVersion(cmStateSnapshot s)
- {
- Json::Value minimumCMakeVersion;
- if (std::string const* def =
- s.GetDefinition("CMAKE_MINIMUM_REQUIRED_VERSION")) {
- minimumCMakeVersion = Json::objectValue;
- minimumCMakeVersion["string"] = *def;
- }
- return minimumCMakeVersion;
- }
- Target::Target(cmGeneratorTarget* gt, std::string const& config)
- : GT(gt)
- , Config(config)
- , TopSource(gt->GetGlobalGenerator()->GetCMakeInstance()->GetHomeDirectory())
- , TopBuild(
- gt->GetGlobalGenerator()->GetCMakeInstance()->GetHomeOutputDirectory())
- , SourceGroupsLocal(this->GT->Makefile->GetSourceGroups())
- , Backtraces(this->TopSource)
- {
- }
- Json::Value Target::Dump()
- {
- Json::Value target = Json::objectValue;
- cmStateEnums::TargetType const type = this->GT->GetType();
- target["name"] = this->GT->GetName();
- target["type"] = cmState::GetTargetTypeName(type);
- target["id"] = TargetId(this->GT, this->TopBuild);
- target["paths"] = this->DumpPaths();
- if (this->GT->Target->GetIsGeneratorProvided()) {
- target["isGeneratorProvided"] = true;
- }
- this->AddBacktrace(target, this->GT->GetBacktrace());
- if (this->GT->Target->GetHaveInstallRule()) {
- target["install"] = this->DumpInstall();
- }
- if (this->GT->HaveWellDefinedOutputFiles()) {
- Json::Value artifacts = this->DumpArtifacts();
- if (!artifacts.empty()) {
- target["artifacts"] = std::move(artifacts);
- }
- }
- if (type == cmStateEnums::EXECUTABLE ||
- type == cmStateEnums::SHARED_LIBRARY ||
- type == cmStateEnums::MODULE_LIBRARY) {
- target["nameOnDisk"] = this->GT->GetFullName(this->Config);
- target["link"] = this->DumpLink();
- } else if (type == cmStateEnums::STATIC_LIBRARY) {
- target["nameOnDisk"] = this->GT->GetFullName(this->Config);
- target["archive"] = this->DumpArchive();
- }
- Json::Value dependencies = this->DumpDependencies();
- if (!dependencies.empty()) {
- target["dependencies"] = dependencies;
- }
- {
- this->ProcessLanguages();
- target["sources"] = this->DumpSources();
- Json::Value folder = this->DumpFolder();
- if (!folder.isNull()) {
- target["folder"] = std::move(folder);
- }
- Json::Value sourceGroups = this->DumpSourceGroups();
- if (!sourceGroups.empty()) {
- target["sourceGroups"] = std::move(sourceGroups);
- }
- Json::Value compileGroups = this->DumpCompileGroups();
- if (!compileGroups.empty()) {
- target["compileGroups"] = std::move(compileGroups);
- }
- }
- target["backtraceGraph"] = this->Backtraces.Dump();
- return target;
- }
- void Target::ProcessLanguages()
- {
- std::set<std::string> languages;
- this->GT->GetLanguages(languages, this->Config);
- for (std::string const& lang : languages) {
- this->ProcessLanguage(lang);
- }
- }
- void Target::ProcessLanguage(std::string const& lang)
- {
- CompileData& cd = this->CompileDataMap[lang];
- cd.Language = lang;
- if (const char* sysrootCompile =
- this->GT->Makefile->GetDefinition("CMAKE_SYSROOT_COMPILE")) {
- cd.Sysroot = sysrootCompile;
- } else if (const char* sysroot =
- this->GT->Makefile->GetDefinition("CMAKE_SYSROOT")) {
- cd.Sysroot = sysroot;
- }
- cmLocalGenerator* lg = this->GT->GetLocalGenerator();
- {
- // FIXME: Add flags from end section of ExpandRuleVariable,
- // which may need to be factored out.
- std::vector<BT<std::string>> flags =
- lg->GetTargetCompileFlags(this->GT, this->Config, lang);
- cd.Flags.reserve(flags.size());
- for (const BT<std::string>& f : flags) {
- cd.Flags.emplace_back(this->ToJBT(f));
- }
- }
- std::set<BT<std::string>> defines =
- lg->GetTargetDefines(this->GT, this->Config, lang);
- cd.Defines.reserve(defines.size());
- for (BT<std::string> const& d : defines) {
- cd.Defines.emplace_back(this->ToJBT(d));
- }
- std::vector<BT<std::string>> includePathList =
- lg->GetIncludeDirectories(this->GT, lang, this->Config);
- for (BT<std::string> const& i : includePathList) {
- cd.Includes.emplace_back(
- this->ToJBT(i),
- this->GT->IsSystemIncludeDirectory(i.Value, this->Config, lang));
- }
- }
- Json::ArrayIndex Target::AddSourceGroup(cmSourceGroup* sg, Json::ArrayIndex si)
- {
- auto i = this->SourceGroupsMap.find(sg);
- if (i == this->SourceGroupsMap.end()) {
- auto sgIndex = static_cast<Json::ArrayIndex>(this->SourceGroups.size());
- i = this->SourceGroupsMap.emplace(sg, sgIndex).first;
- SourceGroup g;
- g.Name = sg->GetFullName();
- this->SourceGroups.push_back(std::move(g));
- }
- this->SourceGroups[i->second].SourceIndexes.append(si);
- return i->second;
- }
- CompileData Target::BuildCompileData(cmSourceFile* sf)
- {
- CompileData fd;
- fd.Language = sf->GetOrDetermineLanguage();
- if (fd.Language.empty()) {
- return fd;
- }
- cmLocalGenerator* lg = this->GT->GetLocalGenerator();
- cmGeneratorExpressionInterpreter genexInterpreter(lg, this->Config, this->GT,
- fd.Language);
- const std::string COMPILE_FLAGS("COMPILE_FLAGS");
- if (cmProp cflags = sf->GetProperty(COMPILE_FLAGS)) {
- std::string flags = genexInterpreter.Evaluate(*cflags, COMPILE_FLAGS);
- fd.Flags.emplace_back(std::move(flags), JBTIndex());
- }
- const std::string COMPILE_OPTIONS("COMPILE_OPTIONS");
- for (BT<std::string> tmpOpt : sf->GetCompileOptions()) {
- tmpOpt.Value = genexInterpreter.Evaluate(tmpOpt.Value, COMPILE_OPTIONS);
- // After generator evaluation we need to use the AppendCompileOptions
- // method so we handle situations where backtrace entries have lists
- // and properly escape flags.
- std::string tmp;
- lg->AppendCompileOptions(tmp, tmpOpt.Value);
- BT<std::string> opt(tmp, tmpOpt.Backtrace);
- fd.Flags.emplace_back(this->ToJBT(opt));
- }
- // Add precompile headers compile options.
- std::vector<std::string> architectures;
- this->GT->GetAppleArchs(this->Config, architectures);
- if (architectures.empty()) {
- architectures.emplace_back();
- }
- std::unordered_map<std::string, std::string> pchSources;
- for (const std::string& arch : architectures) {
- const std::string pchSource =
- this->GT->GetPchSource(this->Config, fd.Language, arch);
- if (!pchSource.empty()) {
- pchSources.insert(std::make_pair(pchSource, arch));
- }
- }
- if (!pchSources.empty() && !sf->GetProperty("SKIP_PRECOMPILE_HEADERS")) {
- std::string pchOptions;
- auto pchIt = pchSources.find(sf->ResolveFullPath());
- if (pchIt != pchSources.end()) {
- pchOptions = this->GT->GetPchCreateCompileOptions(
- this->Config, fd.Language, pchIt->second);
- } else {
- pchOptions =
- this->GT->GetPchUseCompileOptions(this->Config, fd.Language);
- }
- BT<std::string> tmpOpt(pchOptions);
- tmpOpt.Value = genexInterpreter.Evaluate(tmpOpt.Value, COMPILE_OPTIONS);
- // After generator evaluation we need to use the AppendCompileOptions
- // method so we handle situations where backtrace entries have lists
- // and properly escape flags.
- std::string tmp;
- lg->AppendCompileOptions(tmp, tmpOpt.Value);
- BT<std::string> opt(tmp, tmpOpt.Backtrace);
- fd.Flags.emplace_back(this->ToJBT(opt));
- }
- // Add include directories from source file properties.
- {
- const std::string INCLUDE_DIRECTORIES("INCLUDE_DIRECTORIES");
- for (BT<std::string> tmpInclude : sf->GetIncludeDirectories()) {
- tmpInclude.Value =
- genexInterpreter.Evaluate(tmpInclude.Value, INCLUDE_DIRECTORIES);
- // After generator evaluation we need to use the AppendIncludeDirectories
- // method so we handle situations where backtrace entries have lists.
- std::vector<std::string> tmp;
- lg->AppendIncludeDirectories(tmp, tmpInclude.Value, *sf);
- for (std::string& i : tmp) {
- bool const isSystemInclude =
- this->GT->IsSystemIncludeDirectory(i, this->Config, fd.Language);
- BT<std::string> include(i, tmpInclude.Backtrace);
- fd.Includes.emplace_back(this->ToJBT(include), isSystemInclude);
- }
- }
- }
- const std::string COMPILE_DEFINITIONS("COMPILE_DEFINITIONS");
- std::set<BT<std::string>> fileDefines;
- for (BT<std::string> tmpDef : sf->GetCompileDefinitions()) {
- tmpDef.Value =
- genexInterpreter.Evaluate(tmpDef.Value, COMPILE_DEFINITIONS);
- // After generator evaluation we need to use the AppendDefines method
- // so we handle situations where backtrace entries have lists.
- std::set<std::string> tmp;
- lg->AppendDefines(tmp, tmpDef.Value);
- for (const std::string& i : tmp) {
- BT<std::string> def(i, tmpDef.Backtrace);
- fileDefines.insert(def);
- }
- }
- std::set<std::string> configFileDefines;
- const std::string defPropName =
- "COMPILE_DEFINITIONS_" + cmSystemTools::UpperCase(this->Config);
- if (cmProp config_defs = sf->GetProperty(defPropName)) {
- lg->AppendDefines(
- configFileDefines,
- genexInterpreter.Evaluate(*config_defs, COMPILE_DEFINITIONS));
- }
- fd.Defines.reserve(fileDefines.size() + configFileDefines.size());
- for (BT<std::string> const& def : fileDefines) {
- fd.Defines.emplace_back(this->ToJBT(def));
- }
- for (std::string const& d : configFileDefines) {
- fd.Defines.emplace_back(d, JBTIndex());
- }
- return fd;
- }
- CompileData Target::MergeCompileData(CompileData const& fd)
- {
- CompileData cd;
- cd.Language = fd.Language;
- if (cd.Language.empty()) {
- return cd;
- }
- CompileData const& td = this->CompileDataMap.at(cd.Language);
- // All compile groups share the sysroot of the target.
- cd.Sysroot = td.Sysroot;
- // Use target-wide flags followed by source-specific flags.
- cd.Flags.reserve(td.Flags.size() + fd.Flags.size());
- cd.Flags.insert(cd.Flags.end(), td.Flags.begin(), td.Flags.end());
- cd.Flags.insert(cd.Flags.end(), fd.Flags.begin(), fd.Flags.end());
- // Use source-specific includes followed by target-wide includes.
- cd.Includes.reserve(fd.Includes.size() + td.Includes.size());
- cd.Includes.insert(cd.Includes.end(), fd.Includes.begin(),
- fd.Includes.end());
- cd.Includes.insert(cd.Includes.end(), td.Includes.begin(),
- td.Includes.end());
- // Use target-wide defines followed by source-specific defines.
- cd.Defines.reserve(td.Defines.size() + fd.Defines.size());
- cd.Defines.insert(cd.Defines.end(), td.Defines.begin(), td.Defines.end());
- cd.Defines.insert(cd.Defines.end(), fd.Defines.begin(), fd.Defines.end());
- // De-duplicate defines.
- std::stable_sort(cd.Defines.begin(), cd.Defines.end(),
- JBT<std::string>::ValueLess);
- auto end = std::unique(cd.Defines.begin(), cd.Defines.end(),
- JBT<std::string>::ValueEq);
- cd.Defines.erase(end, cd.Defines.end());
- return cd;
- }
- Json::ArrayIndex Target::AddSourceCompileGroup(cmSourceFile* sf,
- Json::ArrayIndex si)
- {
- CompileData compileData = this->BuildCompileData(sf);
- auto i = this->CompileGroupMap.find(compileData);
- if (i == this->CompileGroupMap.end()) {
- Json::ArrayIndex cgIndex =
- static_cast<Json::ArrayIndex>(this->CompileGroups.size());
- i = this->CompileGroupMap.emplace(std::move(compileData), cgIndex).first;
- CompileGroup g;
- g.Entry = i;
- this->CompileGroups.push_back(std::move(g));
- }
- this->CompileGroups[i->second].SourceIndexes.append(si);
- return i->second;
- }
- void Target::AddBacktrace(Json::Value& object, cmListFileBacktrace const& bt)
- {
- if (JBTIndex backtrace = this->Backtraces.Add(bt)) {
- object["backtrace"] = backtrace.Index;
- }
- }
- void Target::AddBacktrace(Json::Value& object, JBTIndex bt)
- {
- if (bt) {
- object["backtrace"] = bt.Index;
- }
- }
- Json::Value Target::DumpPaths()
- {
- Json::Value paths = Json::objectValue;
- cmLocalGenerator* lg = this->GT->GetLocalGenerator();
- std::string const& sourceDir = lg->GetCurrentSourceDirectory();
- paths["source"] = RelativeIfUnder(this->TopSource, sourceDir);
- std::string const& buildDir = lg->GetCurrentBinaryDirectory();
- paths["build"] = RelativeIfUnder(this->TopBuild, buildDir);
- return paths;
- }
- Json::Value Target::DumpSources()
- {
- Json::Value sources = Json::arrayValue;
- cmGeneratorTarget::KindedSources const& kinded =
- this->GT->GetKindedSources(this->Config);
- for (cmGeneratorTarget::SourceAndKind const& sk : kinded.Sources) {
- sources.append(this->DumpSource(sk, sources.size()));
- }
- return sources;
- }
- Json::Value Target::DumpSource(cmGeneratorTarget::SourceAndKind const& sk,
- Json::ArrayIndex si)
- {
- Json::Value source = Json::objectValue;
- std::string const path = sk.Source.Value->ResolveFullPath();
- source["path"] = RelativeIfUnder(this->TopSource, path);
- if (sk.Source.Value->GetIsGenerated()) {
- source["isGenerated"] = true;
- }
- this->AddBacktrace(source, sk.Source.Backtrace);
- if (cmSourceGroup* sg =
- this->GT->Makefile->FindSourceGroup(path, this->SourceGroupsLocal)) {
- source["sourceGroupIndex"] = this->AddSourceGroup(sg, si);
- }
- switch (sk.Kind) {
- case cmGeneratorTarget::SourceKindObjectSource: {
- source["compileGroupIndex"] =
- this->AddSourceCompileGroup(sk.Source.Value, si);
- } break;
- case cmGeneratorTarget::SourceKindAppManifest:
- case cmGeneratorTarget::SourceKindCertificate:
- case cmGeneratorTarget::SourceKindCustomCommand:
- case cmGeneratorTarget::SourceKindExternalObject:
- case cmGeneratorTarget::SourceKindExtra:
- case cmGeneratorTarget::SourceKindHeader:
- case cmGeneratorTarget::SourceKindIDL:
- case cmGeneratorTarget::SourceKindManifest:
- case cmGeneratorTarget::SourceKindModuleDefinition:
- case cmGeneratorTarget::SourceKindResx:
- case cmGeneratorTarget::SourceKindXaml:
- case cmGeneratorTarget::SourceKindUnityBatched:
- break;
- }
- return source;
- }
- Json::Value Target::DumpCompileData(CompileData const& cd)
- {
- Json::Value result = Json::objectValue;
- if (!cd.Language.empty()) {
- result["language"] = cd.Language;
- }
- if (!cd.Sysroot.empty()) {
- result["sysroot"] = this->DumpSysroot(cd.Sysroot);
- }
- if (!cd.Flags.empty()) {
- result["compileCommandFragments"] = this->DumpCommandFragments(cd.Flags);
- }
- if (!cd.Includes.empty()) {
- Json::Value includes = Json::arrayValue;
- for (auto const& i : cd.Includes) {
- includes.append(this->DumpInclude(i));
- }
- result["includes"] = includes;
- }
- if (!cd.Defines.empty()) {
- Json::Value defines = Json::arrayValue;
- for (JBT<std::string> const& d : cd.Defines) {
- defines.append(this->DumpDefine(d));
- }
- result["defines"] = std::move(defines);
- }
- return result;
- }
- Json::Value Target::DumpInclude(CompileData::IncludeEntry const& inc)
- {
- Json::Value include = Json::objectValue;
- include["path"] = inc.Path.Value;
- if (inc.IsSystem) {
- include["isSystem"] = true;
- }
- this->AddBacktrace(include, inc.Path.Backtrace);
- return include;
- }
- Json::Value Target::DumpDefine(JBT<std::string> const& def)
- {
- Json::Value define = Json::objectValue;
- define["define"] = def.Value;
- this->AddBacktrace(define, def.Backtrace);
- return define;
- }
- Json::Value Target::DumpSourceGroups()
- {
- Json::Value sourceGroups = Json::arrayValue;
- for (auto& sg : this->SourceGroups) {
- sourceGroups.append(this->DumpSourceGroup(sg));
- }
- return sourceGroups;
- }
- Json::Value Target::DumpSourceGroup(SourceGroup& sg)
- {
- Json::Value group = Json::objectValue;
- group["name"] = sg.Name;
- group["sourceIndexes"] = std::move(sg.SourceIndexes);
- return group;
- }
- Json::Value Target::DumpCompileGroups()
- {
- Json::Value compileGroups = Json::arrayValue;
- for (auto& cg : this->CompileGroups) {
- compileGroups.append(this->DumpCompileGroup(cg));
- }
- return compileGroups;
- }
- Json::Value Target::DumpCompileGroup(CompileGroup& cg)
- {
- Json::Value group =
- this->DumpCompileData(this->MergeCompileData(cg.Entry->first));
- group["sourceIndexes"] = std::move(cg.SourceIndexes);
- return group;
- }
- Json::Value Target::DumpSysroot(std::string const& path)
- {
- Json::Value sysroot = Json::objectValue;
- sysroot["path"] = path;
- return sysroot;
- }
- Json::Value Target::DumpInstall()
- {
- Json::Value install = Json::objectValue;
- install["prefix"] = this->DumpInstallPrefix();
- install["destinations"] = this->DumpInstallDestinations();
- return install;
- }
- Json::Value Target::DumpInstallPrefix()
- {
- Json::Value prefix = Json::objectValue;
- std::string p =
- this->GT->Makefile->GetSafeDefinition("CMAKE_INSTALL_PREFIX");
- cmSystemTools::ConvertToUnixSlashes(p);
- prefix["path"] = p;
- return prefix;
- }
- Json::Value Target::DumpInstallDestinations()
- {
- Json::Value destinations = Json::arrayValue;
- auto installGens = this->GT->Target->GetInstallGenerators();
- for (auto itGen : installGens) {
- destinations.append(this->DumpInstallDestination(itGen));
- }
- return destinations;
- }
- Json::Value Target::DumpInstallDestination(cmInstallTargetGenerator* itGen)
- {
- Json::Value destination = Json::objectValue;
- destination["path"] = itGen->GetDestination(this->Config);
- this->AddBacktrace(destination, itGen->GetBacktrace());
- return destination;
- }
- Json::Value Target::DumpArtifacts()
- {
- Json::Value artifacts = Json::arrayValue;
- // Object libraries have only object files as artifacts.
- if (this->GT->GetType() == cmStateEnums::OBJECT_LIBRARY) {
- if (!this->GT->GetGlobalGenerator()->HasKnownObjectFileLocation(nullptr)) {
- return artifacts;
- }
- std::vector<cmSourceFile const*> objectSources;
- this->GT->GetObjectSources(objectSources, this->Config);
- std::string const obj_dir = this->GT->GetObjectDirectory(this->Config);
- for (cmSourceFile const* sf : objectSources) {
- const std::string& obj = this->GT->GetObjectName(sf);
- Json::Value artifact = Json::objectValue;
- artifact["path"] = RelativeIfUnder(this->TopBuild, obj_dir + obj);
- artifacts.append(std::move(artifact)); // NOLINT(*)
- }
- return artifacts;
- }
- // Other target types always have a "main" artifact.
- {
- Json::Value artifact = Json::objectValue;
- artifact["path"] =
- RelativeIfUnder(this->TopBuild,
- this->GT->GetFullPath(
- this->Config, cmStateEnums::RuntimeBinaryArtifact));
- artifacts.append(std::move(artifact)); // NOLINT(*)
- }
- // Add Windows-specific artifacts produced by the linker.
- if (this->GT->HasImportLibrary(this->Config)) {
- Json::Value artifact = Json::objectValue;
- artifact["path"] =
- RelativeIfUnder(this->TopBuild,
- this->GT->GetFullPath(
- this->Config, cmStateEnums::ImportLibraryArtifact));
- artifacts.append(std::move(artifact)); // NOLINT(*)
- }
- if (this->GT->IsDLLPlatform() &&
- this->GT->GetType() != cmStateEnums::STATIC_LIBRARY) {
- cmGeneratorTarget::OutputInfo const* output =
- this->GT->GetOutputInfo(this->Config);
- if (output && !output->PdbDir.empty()) {
- Json::Value artifact = Json::objectValue;
- artifact["path"] = RelativeIfUnder(this->TopBuild,
- output->PdbDir + '/' +
- this->GT->GetPDBName(this->Config));
- artifacts.append(std::move(artifact)); // NOLINT(*)
- }
- }
- return artifacts;
- }
- Json::Value Target::DumpLink()
- {
- Json::Value link = Json::objectValue;
- std::string lang = this->GT->GetLinkerLanguage(this->Config);
- link["language"] = lang;
- {
- Json::Value commandFragments = this->DumpLinkCommandFragments();
- if (!commandFragments.empty()) {
- link["commandFragments"] = std::move(commandFragments);
- }
- }
- if (const char* sysrootLink =
- this->GT->Makefile->GetDefinition("CMAKE_SYSROOT_LINK")) {
- link["sysroot"] = this->DumpSysroot(sysrootLink);
- } else if (const char* sysroot =
- this->GT->Makefile->GetDefinition("CMAKE_SYSROOT")) {
- link["sysroot"] = this->DumpSysroot(sysroot);
- }
- if (this->GT->IsIPOEnabled(lang, this->Config)) {
- link["lto"] = true;
- }
- return link;
- }
- Json::Value Target::DumpArchive()
- {
- Json::Value archive = Json::objectValue;
- {
- // The "link" fragments not relevant to static libraries are empty.
- Json::Value commandFragments = this->DumpLinkCommandFragments();
- if (!commandFragments.empty()) {
- archive["commandFragments"] = std::move(commandFragments);
- }
- }
- std::string lang = this->GT->GetLinkerLanguage(this->Config);
- if (this->GT->IsIPOEnabled(lang, this->Config)) {
- archive["lto"] = true;
- }
- return archive;
- }
- Json::Value Target::DumpLinkCommandFragments()
- {
- Json::Value linkFragments = Json::arrayValue;
- std::string linkLanguageFlags;
- std::vector<BT<std::string>> linkFlags;
- std::string frameworkPath;
- std::vector<BT<std::string>> linkPath;
- std::vector<BT<std::string>> linkLibs;
- cmLocalGenerator* lg = this->GT->GetLocalGenerator();
- cmLinkLineComputer linkLineComputer(lg,
- lg->GetStateSnapshot().GetDirectory());
- lg->GetTargetFlags(&linkLineComputer, this->Config, linkLibs,
- linkLanguageFlags, linkFlags, frameworkPath, linkPath,
- this->GT);
- linkLanguageFlags = cmTrimWhitespace(linkLanguageFlags);
- frameworkPath = cmTrimWhitespace(frameworkPath);
- if (!linkLanguageFlags.empty()) {
- linkFragments.append(
- this->DumpCommandFragment(std::move(linkLanguageFlags), "flags"));
- }
- if (!linkFlags.empty()) {
- for (BT<std::string> frag : linkFlags) {
- frag.Value = cmTrimWhitespace(frag.Value);
- linkFragments.append(
- this->DumpCommandFragment(this->ToJBT(frag), "flags"));
- }
- }
- if (!frameworkPath.empty()) {
- linkFragments.append(
- this->DumpCommandFragment(std::move(frameworkPath), "frameworkPath"));
- }
- if (!linkPath.empty()) {
- for (BT<std::string> frag : linkPath) {
- frag.Value = cmTrimWhitespace(frag.Value);
- linkFragments.append(
- this->DumpCommandFragment(this->ToJBT(frag), "libraryPath"));
- }
- }
- if (!linkLibs.empty()) {
- for (BT<std::string> frag : linkLibs) {
- frag.Value = cmTrimWhitespace(frag.Value);
- linkFragments.append(
- this->DumpCommandFragment(this->ToJBT(frag), "libraries"));
- }
- }
- return linkFragments;
- }
- Json::Value Target::DumpCommandFragments(
- std::vector<JBT<std::string>> const& frags)
- {
- Json::Value commandFragments = Json::arrayValue;
- for (JBT<std::string> const& f : frags) {
- commandFragments.append(this->DumpCommandFragment(f));
- }
- return commandFragments;
- }
- Json::Value Target::DumpCommandFragment(JBT<std::string> const& frag,
- std::string const& role)
- {
- Json::Value fragment = Json::objectValue;
- fragment["fragment"] = frag.Value;
- if (!role.empty()) {
- fragment["role"] = role;
- }
- this->AddBacktrace(fragment, frag.Backtrace);
- return fragment;
- }
- Json::Value Target::DumpDependencies()
- {
- Json::Value dependencies = Json::arrayValue;
- cmGlobalGenerator* gg = this->GT->GetGlobalGenerator();
- for (cmTargetDepend const& td : gg->GetTargetDirectDepends(this->GT)) {
- dependencies.append(this->DumpDependency(td));
- }
- return dependencies;
- }
- Json::Value Target::DumpDependency(cmTargetDepend const& td)
- {
- Json::Value dependency = Json::objectValue;
- dependency["id"] = TargetId(td, this->TopBuild);
- this->AddBacktrace(dependency, td.GetBacktrace());
- return dependency;
- }
- Json::Value Target::DumpFolder()
- {
- Json::Value folder;
- if (cmProp f = this->GT->GetProperty("FOLDER")) {
- folder = Json::objectValue;
- folder["name"] = *f;
- }
- return folder;
- }
- }
- Json::Value cmFileAPICodemodelDump(cmFileAPI& fileAPI, unsigned long version)
- {
- Codemodel codemodel(fileAPI, version);
- return codemodel.Dump();
- }
|