diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2021-06-08 15:27:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-06-10 11:55:20 (GMT) |
commit | ccc0466fc56dc90de043f0d55781bf9b0ff1365a (patch) | |
tree | c6be8f8cab40e4bfdb86dae5ec585f5f50e296ef /Source | |
parent | 3e5b609547750f0498b6ca924fb70379457653da (diff) | |
download | CMake-ccc0466fc56dc90de043f0d55781bf9b0ff1365a.zip CMake-ccc0466fc56dc90de043f0d55781bf9b0ff1365a.tar.gz CMake-ccc0466fc56dc90de043f0d55781bf9b0ff1365a.tar.bz2 |
cmScanDepFormat: P1689R4: Implement source-path related fields
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmScanDepFormat.cxx | 107 | ||||
-rw-r--r-- | Source/cmScanDepFormat.h | 10 |
2 files changed, 114 insertions, 3 deletions
diff --git a/Source/cmScanDepFormat.cxx b/Source/cmScanDepFormat.cxx index a40a552..6620221 100644 --- a/Source/cmScanDepFormat.cxx +++ b/Source/cmScanDepFormat.cxx @@ -3,11 +3,14 @@ #include "cmScanDepFormat.h" +#include <cassert> #include <cctype> #include <cstdio> #include <utility> #include <cm/optional> +#include <cm/string_view> +#include <cmext/string_view> #include <cm3p/json/reader.h> #include <cm3p/json/value.h> @@ -165,6 +168,30 @@ bool cmScanDepFormat_P1689_Parse(std::string const& arg_pp, cmStrCat(provide_info.LogicalName, ".mod"); } + if (provide.isMember("unique-on-source-path")) { + Json::Value const& unique_on_source_path = + provide["unique-on-source-path"]; + if (!unique_on_source_path.isBool()) { + cmSystemTools::Error( + cmStrCat("-E cmake_ninja_dyndep failed to parse ", arg_pp, + ": unique-on-source-path is not a boolean")); + return false; + } + provide_info.UseSourcePath = unique_on_source_path.asBool(); + } else { + provide_info.UseSourcePath = false; + } + + if (provide.isMember("source-path")) { + Json::Value const& source_path = provide["source-path"]; + PARSE_FILENAME(source_path, provide_info.SourcePath); + } else if (provide_info.UseSourcePath) { + cmSystemTools::Error( + cmStrCat("-E cmake_ninja_dyndep failed to parse ", arg_pp, + ": source-path is missing")); + return false; + } + info->Provides.push_back(provide_info); } } @@ -191,6 +218,56 @@ bool cmScanDepFormat_P1689_Parse(std::string const& arg_pp, require_info.CompiledModulePath); } + if (require.isMember("unique-on-source-path")) { + Json::Value const& unique_on_source_path = + require["unique-on-source-path"]; + if (!unique_on_source_path.isBool()) { + cmSystemTools::Error( + cmStrCat("-E cmake_ninja_dyndep failed to parse ", arg_pp, + ": unique-on-source-path is not a boolean")); + return false; + } + require_info.UseSourcePath = unique_on_source_path.asBool(); + } else { + require_info.UseSourcePath = false; + } + + if (require.isMember("source-path")) { + Json::Value const& source_path = require["source-path"]; + PARSE_FILENAME(source_path, require_info.SourcePath); + } else if (require_info.UseSourcePath) { + cmSystemTools::Error( + cmStrCat("-E cmake_ninja_dyndep failed to parse ", arg_pp, + ": source-path is missing")); + return false; + } + + if (require.isMember("lookup-method")) { + Json::Value const& lookup_method = require["lookup-method"]; + if (!lookup_method.isString()) { + cmSystemTools::Error( + cmStrCat("-E cmake_ninja_dyndep failed to parse ", arg_pp, + ": lookup-method is not a string")); + return false; + } + + std::string lookup_method_str = lookup_method.asString(); + if (lookup_method_str == "by-name"_s) { + require_info.Method = LookupMethod::ByName; + } else if (lookup_method_str == "include-angle"_s) { + require_info.Method = LookupMethod::IncludeAngle; + } else if (lookup_method_str == "include-quote"_s) { + require_info.Method = LookupMethod::IncludeQuote; + } else { + cmSystemTools::Error(cmStrCat( + "-E cmake_ninja_dyndep failed to parse ", arg_pp, + ": lookup-method is not a valid: ", lookup_method_str)); + return false; + } + } else if (require_info.UseSourcePath) { + require_info.Method = LookupMethod::ByName; + } + info->Requires.push_back(require_info); } } @@ -230,7 +307,12 @@ bool cmScanDepFormat_P1689_Write(std::string const& path, EncodeFilename(provide.CompiledModulePath); } - // TODO: Source file tracking. See below. + if (provide.UseSourcePath) { + provide_obj["unique-on-source-path"] = true; + provide_obj["source-path"] = EncodeFilename(provide.SourcePath); + } else if (!provide.SourcePath.empty()) { + provide_obj["source-path"] = EncodeFilename(provide.SourcePath); + } provides.append(provide_obj); } @@ -247,8 +329,27 @@ bool cmScanDepFormat_P1689_Write(std::string const& path, EncodeFilename(require.CompiledModulePath); } - // TODO: Source filename inclusion. Requires collating with the provides - // filenames (as a sanity check if available on both sides). + if (require.UseSourcePath) { + require_obj["unique-on-source-path"] = true; + require_obj["source-path"] = EncodeFilename(require.SourcePath); + } else if (!require.SourcePath.empty()) { + require_obj["source-path"] = EncodeFilename(require.SourcePath); + } + + const char* lookup_method = nullptr; + switch (require.Method) { + case LookupMethod::ByName: + lookup_method = "by-name"; + break; + case LookupMethod::IncludeAngle: + lookup_method = "include-angle"; + break; + case LookupMethod::IncludeQuote: + lookup_method = "include-quote"; + break; + } + assert(lookup_method); + require_obj["lookup-method"] = lookup_method; reqs.append(require_obj); } diff --git a/Source/cmScanDepFormat.h b/Source/cmScanDepFormat.h index cb8921d..dae28d9 100644 --- a/Source/cmScanDepFormat.h +++ b/Source/cmScanDepFormat.h @@ -5,10 +5,20 @@ #include <string> #include <vector> +enum class LookupMethod +{ + ByName, + IncludeAngle, + IncludeQuote, +}; + struct cmSourceReqInfo { std::string LogicalName; + std::string SourcePath; std::string CompiledModulePath; + bool UseSourcePath = false; + LookupMethod Method = LookupMethod::ByName; }; struct cmScanDepInfo |