summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2022-08-24 22:45:24 +0800
committerruki <[email protected]>2022-08-24 22:45:24 +0800
commitee55b56ef385023a290e495f6626ab7aeea2c5b8 (patch)
tree913bef27565fe91265b32b526b08877588287a42
parente94c67aea65b7b64246a79b7f125c11f3268371d (diff)
improve module deps
-rw-r--r--tests/projects/c++/modules/headerunits_person/src/Person.mpp20
-rw-r--r--tests/projects/c++/modules/headerunits_person/src/test.cpp11
-rw-r--r--tests/projects/c++/modules/headerunits_person/test.lua1
-rw-r--r--tests/projects/c++/modules/headerunits_person/xmake.lua4
-rw-r--r--tests/projects/c++/modules/partitions/test.lua1
-rw-r--r--tests/projects/c++/modules/partitions2/src/math.cpp15
-rw-r--r--tests/projects/c++/modules/partitions2/src/math.mpp7
-rw-r--r--tests/projects/c++/modules/partitions2/src/math_helpers.cpp7
-rw-r--r--tests/projects/c++/modules/partitions2/src/test.cpp7
-rw-r--r--tests/projects/c++/modules/partitions2/xmake.lua4
-rw-r--r--xmake/rules/c++/modules/modules_support/common.lua21
11 files changed, 88 insertions, 10 deletions
diff --git a/tests/projects/c++/modules/headerunits_person/src/Person.mpp b/tests/projects/c++/modules/headerunits_person/src/Person.mpp
new file mode 100644
index 000000000..e2dbf4044
--- /dev/null
+++ b/tests/projects/c++/modules/headerunits_person/src/Person.mpp
@@ -0,0 +1,20 @@
+module;
+
+#include <cstddef> //
+
+export module person;
+
+import <string>;
+
+export class Person {
+public:
+ Person(std::string firstName, std::string lastName)
+ : m_firstName{std::move(firstName)}, m_lastName{std::move(lastName)} {}
+
+ const std::string &getFirstName() const { return m_firstName; }
+ const std::string &getLastName() const { return m_lastName; }
+
+private:
+ std::string m_firstName;
+ std::string m_lastName;
+};
diff --git a/tests/projects/c++/modules/headerunits_person/src/test.cpp b/tests/projects/c++/modules/headerunits_person/src/test.cpp
new file mode 100644
index 000000000..7c01dc782
--- /dev/null
+++ b/tests/projects/c++/modules/headerunits_person/src/test.cpp
@@ -0,0 +1,11 @@
+import person;
+import <iostream>;
+import <string>; // For operator<< for std::string
+
+using namespace std;
+
+int main()
+{
+ Person person{ "Kole", "Webb" };
+ cout << person.getLastName() << ", " << person.getFirstName() << endl;
+}
diff --git a/tests/projects/c++/modules/headerunits_person/test.lua b/tests/projects/c++/modules/headerunits_person/test.lua
new file mode 100644
index 000000000..c18e5a1d0
--- /dev/null
+++ b/tests/projects/c++/modules/headerunits_person/test.lua
@@ -0,0 +1 @@
+inherit(".test_headerunits")
diff --git a/tests/projects/c++/modules/headerunits_person/xmake.lua b/tests/projects/c++/modules/headerunits_person/xmake.lua
new file mode 100644
index 000000000..c9290833b
--- /dev/null
+++ b/tests/projects/c++/modules/headerunits_person/xmake.lua
@@ -0,0 +1,4 @@
+set_languages("c++20")
+target("hello")
+ set_kind("binary")
+ add_files("src/*.cpp", "src/*.mpp")
diff --git a/tests/projects/c++/modules/partitions/test.lua b/tests/projects/c++/modules/partitions/test.lua
new file mode 100644
index 000000000..c18e5a1d0
--- /dev/null
+++ b/tests/projects/c++/modules/partitions/test.lua
@@ -0,0 +1 @@
+inherit(".test_headerunits")
diff --git a/tests/projects/c++/modules/partitions2/src/math.cpp b/tests/projects/c++/modules/partitions2/src/math.cpp
new file mode 100644
index 000000000..535d693eb
--- /dev/null
+++ b/tests/projects/c++/modules/partitions2/src/math.cpp
@@ -0,0 +1,15 @@
+module math;
+
+import :details;
+
+double Math::superLog(double z, double b)
+{
+ // Implementation omitted...
+ return someHelperFunction(z);
+}
+
+double Math::lerchZeta(double lambda, double alpha, double s)
+{
+ // Implementation omitted...
+ return someHelperFunction(s);
+}
diff --git a/tests/projects/c++/modules/partitions2/src/math.mpp b/tests/projects/c++/modules/partitions2/src/math.mpp
new file mode 100644
index 000000000..e9308b2af
--- /dev/null
+++ b/tests/projects/c++/modules/partitions2/src/math.mpp
@@ -0,0 +1,7 @@
+export module math; // math module declaration
+
+export namespace Math
+{
+ double superLog(double z, double b);
+ double lerchZeta(double lambda, double alpha, double s);
+}
diff --git a/tests/projects/c++/modules/partitions2/src/math_helpers.cpp b/tests/projects/c++/modules/partitions2/src/math_helpers.cpp
new file mode 100644
index 000000000..9d2eaaa27
--- /dev/null
+++ b/tests/projects/c++/modules/partitions2/src/math_helpers.cpp
@@ -0,0 +1,7 @@
+module math:details; // math:details implementation partition
+
+double someHelperFunction(double a)
+{
+ // Implementation omitted...
+ return 42;
+}
diff --git a/tests/projects/c++/modules/partitions2/src/test.cpp b/tests/projects/c++/modules/partitions2/src/test.cpp
new file mode 100644
index 000000000..a2ff757b1
--- /dev/null
+++ b/tests/projects/c++/modules/partitions2/src/test.cpp
@@ -0,0 +1,7 @@
+import math;
+
+int main()
+{
+ auto a{ Math::lerchZeta(1, 2, 3) };
+ auto b{ Math::superLog(1, 2) };
+}
diff --git a/tests/projects/c++/modules/partitions2/xmake.lua b/tests/projects/c++/modules/partitions2/xmake.lua
new file mode 100644
index 000000000..c9290833b
--- /dev/null
+++ b/tests/projects/c++/modules/partitions2/xmake.lua
@@ -0,0 +1,4 @@
+set_languages("c++20")
+target("hello")
+ set_kind("binary")
+ add_files("src/*.cpp", "src/*.mpp")
diff --git a/xmake/rules/c++/modules/modules_support/common.lua b/xmake/rules/c++/modules/modules_support/common.lua
index 734a2d070..1e3231231 100644
--- a/xmake/rules/c++/modules/modules_support/common.lua
+++ b/xmake/rules/c++/modules/modules_support/common.lua
@@ -381,29 +381,30 @@ function fallback_generate_dependencies(target, jsonfile, sourcefile)
local rule = {outputs = {jsonfile}}
rule["primary-output"] = target:objectfile(sourcefile)
- local module_name
+ local module_name_export
+ local module_name_private
local module_deps = {}
local sourcecode = io.readfile(sourcefile)
sourcecode = sourcecode:gsub("//.-\n", "\n")
sourcecode = sourcecode:gsub("/%*.-%*/", "")
for _, line in ipairs(sourcecode:split("\n", {plain = true})) do
- if not module_name then
- module_name = line:match("export%s+module%s+(.+)%s*;")
+ if not module_name_export then
+ module_name_export = line:match("export%s+module%s+(.+)%s*;")
end
- if not module_name then
- module_name = line:match("module%s+(.+)%s*;")
+ if not module_name_private then
+ module_name_private = line:match("module%s+(.+)%s*;")
end
local module_depname = line:match("import%s+(.+)%s*;")
-- we need parse module interface dep in cxx/impl_unit.cpp, e.g. hello.mpp and hello_impl.cpp
-- @see https://github.com/xmake-io/xmake/pull/2664#issuecomment-1213167314
if not module_depname and not has_module_extension(sourcefile) then
- module_depname = module_name
+ module_depname = module_name_private
end
if module_depname then
local module_dep = {}
-- partition? import :xxx;
if module_depname:startswith(":") then
- module_depname = (module_name or "") .. module_depname
+ module_depname = (module_name_export or module_name_private or "") .. module_depname
elseif module_depname:startswith("\"") then
module_depname = module_depname:sub(2, -2)
module_dep["lookup-method"] = "include-quote"
@@ -420,11 +421,11 @@ function fallback_generate_dependencies(target, jsonfile, sourcefile)
end
end
- if module_name then
- table.insert(rule.outputs, module_name .. bmi_extension(target))
+ if module_name_export then
+ table.insert(rule.outputs, module_name_export .. bmi_extension(target))
local provide = {}
- provide["logical-name"] = module_name
+ provide["logical-name"] = module_name_export
provide["source-path"] = path.absolute(sourcefile, project.directory())
rule.provides = {}